/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid #30363d;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00ff88;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.page-subtitle {
    color: #8b949e;
    font-size: 1.1rem;
}

/* Main Content */
.main {
    padding: 40px 0;
}

/* Section Title */
.section-title {
    font-size: 1.4rem;
    margin: 50px 0 30px;
    color: #f0f6fc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '>';
    color: #00ff88;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 20px;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #30363d;
}

.pricing-table thead tr {
    background: rgba(48, 54, 61, 0.5);
}

.pricing-table th {
    padding: 16px 20px;
    text-align: left;
    color: #8b949e;
    font-weight: 500;
    border-bottom: 2px solid #30363d;
}

.pricing-table th:last-child {
    text-align: right;
}

.pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #21262d;
}

.pricing-table td:last-child {
    text-align: right;
    color: #00ff88;
    font-weight: 600;
}

.pricing-table tbody tr:hover {
    background: rgba(88, 166, 255, 0.05);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.price-note {
    color: #8b949e;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Service Description */
.service-desc {
    color: #8b949e;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    margin: 60px 0 40px;
}

.cta-section h2 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

body.light-theme .cta-button {
    border-color: #00884d;
    color: #00884d;
}

body.light-theme .cta-button:hover {
    background: rgba(0, 136, 77, 0.1);
    box-shadow: 0 0 20px rgba(0, 136, 77, 0.15);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #30363d;
    color: #8b949e;
    font-size: 0.9rem;
}

.footer .php-tag {
    color: #ff7b72;
}

/* Light Theme — page-specific overrides */
body.light-theme .header {
    border-bottom: 1px solid #d0d7de;
}

body.light-theme .page-title {
    color: #0969da;
    text-shadow: none;
}

body.light-theme .page-subtitle {
    color: #57606a;
}

body.light-theme .section-title {
    color: #24292f;
}

body.light-theme .section-title::before {
    color: #00884d;
}

body.light-theme .pricing-table {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #d0d7de;
}

body.light-theme .pricing-table thead tr {
    background: rgba(246, 248, 250, 0.8);
}

body.light-theme .pricing-table th {
    color: #57606a;
    border-bottom: 2px solid #d0d7de;
}

body.light-theme .pricing-table td {
    border-bottom: 1px solid #d0d7de;
    color: #24292f;
}

body.light-theme .pricing-table td:last-child {
    color: #00884d;
}

body.light-theme .pricing-table tbody tr:hover {
    background: rgba(9, 105, 218, 0.05);
}

body.light-theme .cta-section {
    background: linear-gradient(135deg, rgba(9, 105, 218, 0.1) 0%, rgba(0, 136, 77, 0.1) 100%);
    border: 1px solid #d0d7de;
}

body.light-theme .cta-section h2 {
    color: #0969da;
}

body.light-theme .footer {
    border-top: 1px solid #d0d7de;
    color: #57606a;
}

body.light-theme .footer .php-tag {
    color: #cf222e;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .header {
        padding: 40px 0 30px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 30px 20px;
    }
}
