:root {
    --primary: #1e3a8a;
    --primary-light: #2c5282;
    --primary-dark: #0f2744;
    --secondary: #f1f5f9;
    --accent: #06b6d4;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --border-radius: 16px;
    --border-radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: var(--text-primary);
    line-height: 1.7;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Header - matching index.html */
header {
    background-color: #ffffff;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 16px;
    z-index: 100;
    margin: 16px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo { text-decoration: none; display: flex; align-items: center; }
.logo img { height: 36px; width: auto; filter: brightness(0); }

nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 32px; }
nav ul li a { text-decoration: none; color: #0f172a; font-weight: 500; font-size: 16px; }

nav ul li a.nav-btn {
    background: #0f172a !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* Hero */
.pricing-hero {
    padding: 80px 0 60px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 700;
}

.pricing-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #0f172a;
    color: white;
    border: 2px solid #0f172a;
}

.btn-primary:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
}

.btn-secondary {
    background: white;
    color: #0f172a;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: #0f172a;
    background: #fff;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Pricing Cards */
.pricing-cards {
    padding: 0 24px 80px;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #0f172a;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: white;
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.featured .card-header {
    padding-top: 48px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.plan-tagline {
    min-height: 48px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-price {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
    color: var(--text-primary);
}

.plan-price .amount {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.plan-price .period {
    font-size: 15px;
    color: var(--text-secondary);
}

.plan-price .contact-text {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
}

.card-body {
    padding: 24px 28px;
}

.feature-group {
    margin-bottom: 24px;
}

.feature-group:last-child {
    margin-bottom: 0;
}

.feature-group h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.feature-group ul {
    list-style: none;
}

.feature-group li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-group li.disabled {
    color: var(--text-muted);
}

.check {
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: #0f172a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check::after {
    content: '';
    width: 5px;
    height: 5px;
    border-right: 1.5px solid white;
    border-bottom: 1.5px solid white;
    transform: rotate(45deg) translate(-1px, -1px);
}

.dash {
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.dash::after {
    content: '';
    width: 8px;
    height: 2px;
    background: var(--border-color);
}

.card-footer {
    padding: 0 28px 28px;
}

.card-footer .btn {
    width: 100%;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 24px;
    background: var(--secondary);
}

.comparison-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: #0f172a;
    color: white;
    font-weight: 600;
}

.comparison-table th.highlight {
    background: #1e293b;
}

.comparison-table td.highlight {
    background: #fff;
}

.comparison-table .category-row td {
    background: var(--secondary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.comparison-table .check {
    width: 18px;
    height: 18px;
}

.comparison-table .dash {
    width: 18px;
    height: 18px;
}

/* FAQ */
.faq-section {
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: var(--text-primary);
    font-family: inherit;
}

.faq-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    padding: 80px 24px;
    text-align: center;
    background: #0f172a;
    color: white;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #0f172a;
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: #fff;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 24px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header {
        margin: 8px;
        border-radius: 30px;
    }
    
    .header-container { padding: 12px 16px; }
    nav ul { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .pricing-hero h1 { font-size: 32px; }
    .pricing-hero { padding: 60px 0 40px; }
    .plan-price .amount { font-size: 36px; }
    
    .comparison-section h2,
    .faq-section h2,
    .cta-section h2 { font-size: 24px; }
    
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 300px; }
}

/* Feature items - use dash indicator */
.feature-group li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.feature-group li::before {
    content: '—';
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

.check, .dash {
    display: none;
}

/* Feature groups - consistent spacing */
.feature-group {
    margin-bottom: 20px;
}

.feature-group h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-group ul {
    list-style: none;
}

/* Override - Professional card no border, just badge */
.pricing-card.featured {
    border: 1px solid var(--border-color);
}

/* List items - simple bullet, not long dash */
.feature-group li::before {
    content: '•';
    color: #0f172a;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 8px;
    margin-top: 6px;
}

/* Buttons matching index */
.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #0f172a;
    color: white;
    border: 2px solid #0f172a;
}

.btn-primary:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.btn-secondary {
    background: transparent;
    color: #0f172a;
    border: 2px solid #0f172a;
}

.btn-secondary:hover {
    background: #fff;
}

.card-footer .btn {
    width: 100%;
    padding: 14px 32px;
}

/* Button hover matching index - lift and shadow */
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(15, 23, 42, 0.3);
}

/* Override - buttons just change color, no lift */
.card-footer .btn-primary:hover,
.card-footer .btn-secondary:hover,
.cta-buttons .btn:hover {
    transform: none;
    box-shadow: none;
}

.card-footer .btn-primary:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.card-footer .btn-secondary:hover {
    background: #fff;
}
