/* ============================================
   Synclio — Professional Website Styles
   ============================================ */

/* --- Reset & Base --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    background: #f9fafb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Layout --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
}

.section--tight {
    padding: 54px 0;
}

/* --- Header / Nav --- */
.site-header {
    background: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 24px;
}

.site-logo {
    font-size: 22px;
    font-weight: 800;
    color: #667eea;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo__icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-nav__links {
    display: flex;
    gap: 32px;
}

.site-nav__links a {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a:focus {
    color: #667eea;
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #fff;
    padding: 80px 24px 80px;
}

.hero__icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}

.hero__title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: #fff;
    color: #667eea;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.btn--purple {
    background: #667eea;
    color: #fff;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
}

.btn--purple:hover {
    background: #5a6fd6;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn--orange {
    background: #f97316;
    color: #fff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn--orange:hover {
    background: #ea6c10;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn--block {
    display: block;
    width: 100%;
}

.btn--white-purple {
    background: #fff;
    color: #667eea;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

.btn--white-purple:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

/* --- Content Card (general white panel) --- */
.content-panel {
    background: #fff;
    border-radius: 16px;
    padding: 56px 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* --- Section Headings --- */
.section-heading {
    text-align: center;
    color: #667eea;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-subheading {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* --- Feature Cards (Home) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 36px 28px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-card__icon svg {
    width: 48px;
    height: 48px;
}

.feature-card__title {
    font-size: 19px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature-card__text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.65;
}

/* --- Features page: numbered feature list --- */
.features-count {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    letter-spacing: -0.3px;
    margin-bottom: 36px;
}

.numbered-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.numbered-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.numbered-feature:first-child {
    border-top: 1px solid #e5e7eb;
}

.numbered-feature:hover {
    background: #f9fafb;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 10px;
    border-color: transparent;
}

.numbered-feature__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* Spectrum gradient: purple → violet → pink → orange → amber → green */
.numbered-feature:nth-child(1) .numbered-feature__num {
    background: linear-gradient(135deg, #667eea, #764ba2);
}
.numbered-feature:nth-child(2) .numbered-feature__num {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.numbered-feature:nth-child(3) .numbered-feature__num {
    background: linear-gradient(135deg, #d946ef, #c026d3);
}
.numbered-feature:nth-child(4) .numbered-feature__num {
    background: linear-gradient(135deg, #f97316, #ea580c);
}
.numbered-feature:nth-child(5) .numbered-feature__num {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.numbered-feature:nth-child(6) .numbered-feature__num {
    background: linear-gradient(135deg, #10b981, #059669);
}

.numbered-feature__body {
    flex: 1;
    min-width: 0;
}

.numbered-feature__title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.numbered-feature__text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.65;
}

.feature-icon-emoji {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .numbered-feature {
        gap: 14px;
        padding: 20px 0;
    }

    .numbered-feature__num {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #fff;
    text-align: center;
    padding: 56px 40px;
    margin-top: 64px;
}

.cta-banner__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.cta-banner__text {
    font-size: 18px;
    opacity: 0.92;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* --- Feature Detail List (features page) --- */
.detail-list {
    margin-top: 56px;
}

.detail-list__title {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.detail-list ul {
    border-top: 1px solid #e5e7eb;
}

.detail-list li {
    padding: 18px 0 18px 32px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.detail-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.detail-list li strong {
    color: #1f2937;
}

/* --- Comparison Table (Why Synclio page) --- */
.comparison-table-wrap {
    margin-top: 0px;
}

.comparison-table__heading {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    letter-spacing: -0.3px;
    text-align: center;
}

.comparison-table__subheading {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 28px;
    max-width: 640px;
    line-height: 1.6;
}

.comparison-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #374151;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.comparison-table th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.comparison-table__label-col {
    text-align: left !important;
    width: 58%;
}

.comparison-table__os-col,
.comparison-table__synclio-col {
    width: 21%;
}

.comparison-table__os-label {
    font-weight: 400;
    opacity: 0.85;
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.15s;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table tbody td:first-child {
    padding: 16px 20px;
    font-size: 15px;
    color: #374151;
}

.comparison-table__cell {
    text-align: center;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 700;
}

.comparison-table__cell--yes {
    color: #10b981;
}

.comparison-table__cell--no {
    color: #ef4444;
}

.comparison-table__cell--maybe {
    font-size: 13px;
    font-weight: 600;
    color: #f59e0b;
    letter-spacing: 0.2px;
}

.comparison-table__footnote {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 14px;
    line-height: 1.6;
    max-width: 640px;
}

/* --- Why Synclio explainer points --- */
.why-explainer {
    margin-top: 64px;
}

.why-explainer__title {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.why-explainer__points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-explainer__point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: box-shadow 0.2s;
}

.why-explainer__point:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.why-explainer__point-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.why-explainer__point-title {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.why-explainer__point-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.65;
}

.why-explainer__point-text code {
    font-family: ui-monospace, monospace;
    font-size: 13px;
    background: #f3f4f6;
    padding: 1px 5px;
    border-radius: 4px;
    color: #374151;
}

/* --- Bottom CTA (home) --- */
.bottom-cta {
    margin-top: 72px;
    text-align: center;
}

.bottom-cta__title {
    color: #667eea;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.bottom-cta__text {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Download / Pricing --- */
.pricing-intro {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-intro__title {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.pricing-intro__text {
    font-size: 17px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
}

.price-display__currency {
    font-size: 20px;
}

/* Billing Toggle */
.billing-toggle {
    text-align: center;
    margin-bottom: 40px;
}

.billing-toggle__pill {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 30px;
    padding: 4px;
}

.billing-toggle__btn {
    padding: 10px 28px;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: #6b7280;
    transition: background 0.2s, color 0.2s;
}

.billing-toggle__btn--active {
    background: #667eea;
    color: #fff;
}

.billing-toggle__badge {
    display: inline-block;
    background: #10b981;
    color: #fff;
    padding: 2px 9px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

/* Pricing Card */
.pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    background: #fff;
    position: relative;
    transition: box-shadow 0.25s;
}

.pricing-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.pricing-card--studio {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: #fff;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card__header {
    text-align: center;
}

.pricing-card__name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2937;
}

.pricing-card--studio .pricing-card__name {
    color: #fff;
}

.pricing-card__desc {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
}

.pricing-card--studio .pricing-card__desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Price display */
.price-display {
    text-align: center;
}

.price-display__amount {
    font-size: 52px;
    font-weight: 800;
    color: #667eea;
    letter-spacing: -1px;
    line-height: 1.1;
}

.pricing-card--studio .price-display__amount {
    color: #fff;
}

.price-display__period {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
}

.pricing-card--studio .price-display__period {
    color: rgba(255, 255, 255, 0.8);
}

.price-display__savings {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card--studio .price-display__savings {
    color: rgba(255, 255, 255, 0.75);
}

/* Device stat block */
.device-stat {
    background: #f9fafb;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    margin-bottom: 28px;
}

.pricing-card--studio .device-stat {
    background: rgba(255, 255, 255, 0.13);
}

.device-stat__count {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.device-stat__label {
    font-size: 14px;
    color: #6b7280;
}

.pricing-card--studio .device-stat__label {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing feature list */
.pricing-features {
    margin-bottom: 28px;
    line-height: 2.4;
}

.pricing-features li {
    padding-left: 24px;
    position: relative;
    font-size: 15px;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #10b981;
}

.pricing-card--studio .pricing-features li::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing CTA */
.pricing-card__cta {
    text-align: center;
}

/* --- All Plans Include --- */
.all-plans {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    background: #fff;
}

.all-plans__title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 28px;
}

.all-plans__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.all-plans__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.all-plans__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
}

.all-plans__item strong {
    display: block;
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 2px;
}

.all-plans__item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* --- Why Subscribe --- */
.why-subscribe {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.why-subscribe__title {
    font-size: 22px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
}

.why-subscribe p {
    color: #4b5563;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.why-subscribe p:last-child {
    margin-bottom: 0;
}

/* --- Secure Payment --- */
.local-currency {
    background: #f8f9ff;
    border: 1px solid #e0e4ff;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 24px;
}

.local-currency__title {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
}

.local-currency p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 16px;
}

.local-currency__flags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.currency-badge {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

/* --- Secure Payment --- */
.secure-payment {
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.secure-payment__title {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secure-payment__title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.secure-payment p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 8px;
}

.secure-payment p:last-child {
    margin-bottom: 0;
}

/* --- Trust Bar --- */
.trust-bar {
    text-align: center;
    padding: 20px 24px;
    background: #fefce8;
    border-radius: 10px;
    margin-top: 8px;
}

.trust-bar p {
    color: #92400e;
    font-size: 15px;
    font-weight: 500;
}

.trust-bar__sep {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.4;
}

/* --- Footer --- */
.site-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: 40px 24px;
    margin-top: auto;
}

.site-footer__copy {
    font-size: 14px;
    margin-bottom: 6px;
}

.site-footer__tagline {
    font-size: 13px;
    opacity: 0.6;
}

/* --- Responsive --- */
/* --- Hamburger Toggle Button --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    border-radius: 6px;
    flex-shrink: 0;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #667eea;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 0px;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__subtitle {
        font-size: 17px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .all-plans__grid {
        grid-template-columns: 1fr;
    }

    .content-panel {
        padding: 32px 20px;
    }

    .section {
        padding: 46px 0;
    }

    .site-nav {
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
        padding: 14px 24px;
    }

    .site-logo {
        flex: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav__links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        transition: max-height 0.25s ease-in, opacity 0.2s ease-in, transform 0.2s ease-in;
        border-top: 0px solid #e5e7eb;
        margin-top: 0;
    }

    .site-nav__links.is-open {
        max-height: 260px;
        opacity: 1;
        transform: translateY(0);
        border-top-width: 1px;
        padding: 6px 0 12px;
        margin-top: 12px;
        transition: max-height 0.3s ease-out, opacity 0.25s ease-out, transform 0.25s ease-out;
    }
    .site-nav__links li {
        border-bottom: 1px solid #f3f4f6;
    }

    .site-nav__links li:last-child {
        border-bottom: none;
    }

    .site-nav__links a {
        display: block;
        padding: 12px 4px;
        font-size: 16px;
    }

    .btn--outline {
        margin-bottom: 40px;
    }

}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .price-display__amount {
        font-size: 40px;
    }
}

/* --- FAQ Page --- */
.faq-category {
    margin-bottom: 56px;
}

.faq-category__title {
    font-size: 22px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
    letter-spacing: -0.2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    gap: 16px;
    transition: color 0.15s;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question[aria-expanded="true"] {
    color: #667eea;
}

.faq-question__icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: #667eea;
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0 0 20px 0;
    color: #4b5563;
    line-height: 1.75;
    font-size: 16px;
    max-width: 780px;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 16px 0;
    }

    .faq-category__title {
        font-size: 19px;
    }
}

/* Hyperlink text */
.hyperlink {
    color: #5a6fd6;
    font-weight: 600;
}