/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0e17;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

button {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    display: block;
}

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

.accent { color: #E5A358; }
.accent-text { color: #E5A358 !important; }

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(10, 14, 23, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 32px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #fff;
}

.nav-cta {
    padding: 9px 22px !important;
    background: #E5A358;
    color: #000 !important;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: #f0b46a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(229,163,88,0.35);
}

.nav-cta-outline {
    padding: 8px 20px !important;
    border: 1.5px solid rgba(229,163,88,0.5);
    border-radius: 8px;
    font-weight: 600 !important;
    color: #E5A358 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
}

.nav-cta-outline:hover {
    border-color: #E5A358;
    background: rgba(229,163,88,0.08);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Shared Section Styles ===== */
.section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.section-sub {
    text-align: center;
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 48px;
}

/* ===== Glassmorphism Card Mixin ===== */
.glass {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
}

/* ===== Buttons ===== */
.btn-ember {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #E5A358;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.btn-ember:hover {
    background: #f0b46a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229,163,88,0.35);
}

.btn-ember svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-ember.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.btn-glass svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== Section 1: Hero ===== */
.hero {
    position: relative;
    padding: 90px 0 40px;
    overflow: hidden;
    background: linear-gradient(170deg, #0f1a2e 0%, #0a0e17 40%, #111b2d 70%, #0a0e17 100%);
}

.hero-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229,163,88,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88,130,229,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    max-width: 540px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #E5A358;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-proof .stars {
    color: #E5A358;
    font-size: 18px;
    letter-spacing: 2px;
}

.hero-proof span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Hero Image */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrap {
    width: 100%;
    max-width: 504px;
    border-radius: 20px;
    overflow: hidden;
    filter: drop-shadow(0 20px 60px rgba(229,163,88,0.18));
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ===== Section 2: Comparison ===== */
.section-comparison {
    padding: 100px 0 80px;
    background: #0c1220;
}

/* Comparison Table */
.cmp-table-wrap {
    max-width: 820px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cmp-table {
    display: grid;
    grid-template-columns: 1fr;
}

.cmp-row {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.25s ease;
}

.cmp-row:last-child {
    border-bottom: none;
}

.cmp-row:not(.cmp-header):hover {
    background: rgba(255,255,255,0.03);
}

.cmp-cell {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.cmp-feature-cell {
    justify-content: flex-start;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

/* Header row */
.cmp-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cmp-header .cmp-cell {
    flex-direction: column;
    gap: 4px;
    padding: 20px;
}

.cmp-brand-name {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255,255,255,0.6);
}

.cmp-brand-price {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
}

.cmp-free {
    color: #E5A358 !important;
    font-weight: 800 !important;
    font-size: 13px !important;
}

/* OlaFic column highlight */
.cmp-olafic-cell {
    background: rgba(229,163,88,0.06);
    position: relative;
    border-left: 2px solid rgba(229,163,88,0.35);
    border-right: 2px solid rgba(229,163,88,0.35);
}

.cmp-row:first-child .cmp-olafic-cell {
    border-top: 2px solid rgba(229,163,88,0.35);
    border-radius: 12px 12px 0 0;
}

.cmp-row:last-child .cmp-olafic-cell {
    border-bottom: 2px solid rgba(229,163,88,0.35);
    border-radius: 0 0 12px 12px;
}

.cmp-header .cmp-olafic-cell {
    background: rgba(229,163,88,0.1);
    box-shadow: inset 0 0 30px rgba(229,163,88,0.06);
}

.cmp-header .cmp-olafic-cell .cmp-brand-name {
    color: #E5A358;
    font-size: 17px;
}

/* Recommended Badge */
.cmp-recommended {
    display: inline-block;
    padding: 3px 12px;
    background: #E5A358;
    color: #000;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 2px;
}

/* Check / X / Partial symbols */
.cmp-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    color: #22c55e;
    font-size: 16px;
    font-weight: 700;
}

.cmp-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(239,68,68,0.08);
    color: #ef4444;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.7;
}

.cmp-partial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(245,158,11,0.08);
    color: #f59e0b;
    font-size: 16px;
    font-weight: 700;
    opacity: 0.8;
}

/* CTA After Comparison */
.cmp-cta {
    text-align: center;
    margin-top: 48px;
}

.cmp-cta p {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

/* ===== Section 3: Feature Showcase ===== */
.section-features {
    padding: 100px 0;
    background: #0a0e17;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(229,163,88,0.1);
    color: #E5A358;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.feature-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.feature-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-stat {
    font-size: 13px;
    font-weight: 600;
    color: #E5A358;
}

.feature-visual {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.feature-visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
}

/* ===== Section 4: Audience Tabs ===== */
.section-audience {
    padding: 100px 0;
    background: #0c1220;
}

.audience-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 4px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.audience-tab {
    flex: 1;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audience-tab.active {
    background: #E5A358;
    color: #000;
    font-weight: 700;
}

.audience-tab:hover:not(.active) {
    color: #fff;
}

.audience-panel {
    display: none;
}

.audience-panel.active {
    display: block;
}

.audience-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.audience-info {
    flex: 1;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.audience-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.audience-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.audience-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ===== Section 5: Social Proof ===== */
.section-proof {
    padding: 100px 0;
    background: #0a0e17;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.proof-card {
    border-radius: 20px;
    padding: 32px 28px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s ease;
}

.proof-card:hover {
    transform: translateY(-4px);
}

.proof-stars {
    color: #E5A358;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.proof-quote {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.proof-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.proof-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.proof-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.proof-stat {
    text-align: center;
}

.proof-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #E5A358;
}

.proof-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* ===== Section 6: Pricing ===== */
.section-pricing {
    padding: 100px 0;
    background: #0c1220;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    border-radius: 20px;
    padding: 36px 28px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: transform 0.4s ease;
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-featured {
    border-color: rgba(229,163,88,0.3);
    background: rgba(229,163,88,0.05);
    transform: scale(1.03);
}

.price-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: #E5A358;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    letter-spacing: 1px;
}

.price-card-head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price-card-head h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 36px;
    font-weight: 900;
}

.price-amount span {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.pf-check {
    color: #22c55e;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.pf-check.accent {
    color: #E5A358;
}

.price-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.price-btn.btn-ember {
    background: #E5A358;
    color: #000;
    border-color: transparent;
}

.price-btn.btn-ember:hover {
    background: #f0b46a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229,163,88,0.3);
}

/* ===== Section 7: Final CTA ===== */
.section-cta {
    padding: 100px 0;
    background: linear-gradient(170deg, #0a0e17 0%, #15192a 50%, #0a0e17 100%);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229,163,88,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
}

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

/* ===== Sticky Download Bar ===== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 10px 16px;
    background: rgba(10,14,23,0.9);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(229,163,88,0.2);
    display: none;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #E5A358;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    border-radius: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(229,163,88,0.3);
}

.sticky-btn svg {
    width: 18px;
    height: 18px;
}

.sticky-btn:hover {
    background: #f0b46a;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #080c14;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-logo-img {
    height: 28px;
    width: auto;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #E5A358;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ===== Tablet (≤1024px) ===== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 38px;
    }

    .feature-row {
        gap: 40px;
    }

    .compare-grid {
        gap: 16px;
    }

    .pricing-grid {
        gap: 16px;
    }
}

/* ===== Tablet Portrait (≤768px) ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,14,23,0.97);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .header-nav.open {
        display: flex;
    }

    .nav-cta, .nav-cta-outline {
        text-align: center;
    }

    .hero {
        padding: 80px 0 30px;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-headline {
        font-size: 34px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-img-wrap {
        max-width: 384px;
        margin: 0 auto;
    }

    .section-heading {
        font-size: 28px;
    }

    .cmp-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 16px;
    }

    .cmp-row {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        min-width: 520px;
    }

    .cmp-cell {
        padding: 12px 14px;
        font-size: 13px;
    }

    .cmp-table-wrap::after {
        content: 'Scroll \2192';
        display: block;
        text-align: center;
        padding: 10px;
        font-size: 12px;
        color: rgba(255,255,255,0.3);
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .feature-visual {
        width: 100%;
        max-width: 100%;
    }

    .feature-text {
        text-align: center;
    }

    .audience-content {
        flex-direction: column;
        gap: 30px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .proof-logos {
        flex-wrap: wrap;
        gap: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-featured {
        transform: none;
    }

    .price-featured:hover {
        transform: translateY(-4px);
    }

    .cta-inner h2 {
        font-size: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-col a {
        padding: 4px 0;
        margin-bottom: 6px;
    }

    .sticky-bar {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .section-comparison,
    .section-features,
    .section-audience,
    .section-proof,
    .section-pricing,
    .section-cta {
        padding: 70px 0;
    }
}

/* ===== Mobile (≤480px) ===== */
@media (max-width: 480px) {
    .hero {
        padding: 70px 0 24px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-ember, .btn-glass {
        width: 100%;
        justify-content: center;
    }

    .hero-img-wrap {
        max-width: 312px;
    }

    .section-heading {
        font-size: 24px;
    }

    .cmp-cell {
        padding: 10px 10px;
        font-size: 12px;
    }

    .cmp-check, .cmp-x, .cmp-partial {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .feature-text h3 {
        font-size: 22px;
    }

    .proof-logos {
        gap: 20px;
    }

    .proof-stat strong {
        font-size: 24px;
    }

    .cta-inner h2 {
        font-size: 24px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-comparison,
    .section-features,
    .section-audience,
    .section-proof,
    .section-pricing,
    .section-cta {
        padding: 50px 0;
    }

}

/* ===== Small devices fix ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 24px;
    }

    .section-heading {
        font-size: 22px;
    }

    .cmp-row {
        min-width: 460px;
    }

    .btn-ember, .btn-glass {
        padding: 12px 20px;
        font-size: 14px;
    }
}
