/* 
  Index - WorkOS Inspired Aesthetic
  Minimalist, high density, sophisticated animations.
*/

html {
    scroll-behavior: auto;
    /* Control smoothing via JS for more precision */
    overflow-x: hidden;
    overflow-y: auto;
}

/* Enable snapping only on mobile where JS override is less preferred */
@media (max-width: 768px) {

    html,
    body {
        height: 100%;
        overflow: hidden;
        /* Prevent body scroll, use main for snapping */
    }

    main {
        height: 100dvh;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }
}

body {
    counter-reset: section;
}

main>section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (max-width: 768px) {
    main>section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

footer {
    height: auto;
}

/* CURVED SCROLL PROGRESS TRACK */
.curved-scroll-container {
    position: absolute;
    top: 50vh;
    left: 0;
    right: 0;
    height: 500vh;
    /* Updated for 6 sections (Hero to Combined CTA/Footer) */
    pointer-events: none;
    z-index: 1;
}

.curved-scroll-container svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.path-bg {
    stroke: rgba(0, 0, 0, 0.06);
    stroke-width: 3px;
    stroke-dasharray: 8 8;
    /* A dotted/dashed track looks super modern */
    fill: none;
    vector-effect: non-scaling-stroke;
}

.path-line {
    stroke: var(--primary);
    stroke-width: 4px;
    stroke-linecap: round;
    fill: none;
    vector-effect: non-scaling-stroke;
    /* dasharray handled by JS */
}

.scroll-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    /* JS will control rotation */
    color: var(--primary);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: left, top, transform;
}

.scroll-arrow i {
    font-size: 1.5rem;
    font-weight: 800;
}

:root {
    --grid-color: rgba(0, 0, 0, 0.04);
}

/* BASE ENTRANCE ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: visible !important;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* NAVIGATION */
.nav-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: transparent;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle white border for the dark hero */
}

/* HERO SECTION - Photographic Banner */
.hero {
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* BUTTONS - WorkOS Style (Sharp & Elegant) */
.btn-hero {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-hero-secondary {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: #000;
}

/* CREATION OPTIONS GRID */
.creation-options {
    position: relative;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: -1;
    filter: brightness(0.4);
}

.option-card:nth-child(1)::before {
    background-image: url('../assets/images/chef.png');
}

.option-card:nth-child(2)::before {
    background-image: url('../assets/images/qr_scan.png');
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    color: #fff;
}

.option-card:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.option-card:hover .option-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.option-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.option-card:hover .option-btn-secondary {
    background: #fff;
    color: #000;
}

.option-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(31, 168, 255, 0.1);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 32px;
}

.option-card h3 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.option-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
    min-height: 80px;
}

.option-btn {
    padding: 14px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
}

.option-btn i {
    font-size: 1.1rem;
}

.option-btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid var(--border-color);
}

.option-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* EXPERIENCE SECTION */
.experience-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.experience-section .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 24px;
}

.experience-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.experience-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.check-list li i {
    color: var(--primary);
    font-size: 1.5rem;
}

.premium-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .experience-section .grid-2 {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .experience-content h2 {
        font-size: 2.5rem;
    }

    .check-list li {
        justify-content: center;
    }
}

/* BENTO FEATURE GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bento-img-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.bento-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-img-container img {
    transform: scale(1.1);
}

.bento-text {
    padding: 32px;
}

.bento-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.bento-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* PRICING REFINED */
.pricing-minimal {
    background: #fafafa;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card-refined {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.pricing-info {
    padding: 48px;
    flex: 1;
    border-right: 1px solid var(--border-color);
}

.plan-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    margin: 16px 0;
    letter-spacing: -0.04em;
    color: #000;
}

.price-value span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    padding: 48px;
    flex: 1.2;
    background: #fdfdfd;
    display: flex;
    align-items: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* FOOTER - Tighter */
/* Replaced by integrated .footer-minimal */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* FINAL CTA */
.final-cta {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../assets/images/cta_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 0;
}

.final-cta .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* PERFECT CENTER */
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
    /* Slight visual nudge to sit perfectly under the arrow tip */
}

.cta-heading {
    font-size: 3.5rem;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    color: #000;
    font-weight: 800;
}

.btn-cta {
    padding: 20px 56px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
}

/* INTEGRATED FOOTER */
.footer-minimal {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 30px;
}

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

.footer-logo {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #000;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
}

.footer-minimal a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-minimal a:hover {
    color: var(--primary);
}

.footer-bottom {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Common Classes used on both mobile/desktop but now without inline styles */
.nav-btn-ghost {
    font-weight: 600;
    color: #fff !important;
    font-size: 0.9rem;
}

.nav-btn-primary {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-description {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.btn-pricing {
    padding: 14px 32px;
    font-weight: 700;
}

/* Footer elements */
.footer-logo {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .pricing-card-refined {
        flex-direction: column;
    }

    .pricing-info {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 40px;
    }

    .pricing-features {
        padding: 40px;
    }
}

/* ----------------------------------- */
/* MOBILE OVERHAUL: FLUID & BEAUTIFUL  */
/* ----------------------------------- */

@media (max-width: 768px) {

    /* 1. Reels Style Snapping on Mobile */
    html,
    body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        /* Lock body, use main for scroll */
    }

    main {
        height: 100dvh;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        position: relative !important;
        background: #000;
    }

    main>section {
        height: 100dvh;
        min-height: 100dvh;
        width: 100%;
        position: relative !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px 24px 40px !important;
        /* Fixed padding for the header */
        scroll-snap-align: start;
        scroll-snap-stop: always;
        overflow: hidden;
        text-align: center;
    }

    /* Fixed sections overlap prevention */
    /* Fixed sections overlap prevention */
    .hero,
    .creation-options,
    .experience-section,
    #funciona,
    .pricing-minimal,
    .final-cta {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        height: 100dvh !important;
        /* Force dynamic viewport height */
        min-height: 100dvh !important;
        overflow: hidden !important;
        /* Prevent double scrollbars within snap points */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    /* 2. Hide SVG background tracker on mobile */
    .curved-scroll-container {
        display: none !important;
    }

    /* 3. Header Adjustments */
    .nav-header {
        position: fixed;
        /* Keep it fixed over the scroller */
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0;
        z-index: 2000;
    }

    .nav-btn-ghost,
    .nav-btn-primary {
        font-size: 0.8rem !important;
        padding: 8px 12px !important;
    }

    /* 4. Hero Visuals */
    .hero {
        background-position: center;
    }

    .hero h1 {
        font-size: 2.25rem !important;
        /* Smaller for mobile */
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0;
        margin-bottom: 24px;
        color: rgba(255, 255, 255, 0.7);
    }

    .hero .flex.items-center.justify-center {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    /* 5. Creation Options Grid */
    .options-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        width: 100%;
    }

    .option-card {
        padding: 24px 20px !important;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #fdfdfd !important;
    }

    .option-card h3 {
        font-size: 1.4rem !important;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .option-card p {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
    }

    /* 6. Typography Overhaul for Mobile */
    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
        line-height: 1.1 !important;
        color: inherit;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.1;
    }

    .experience-content p,
    .bento-text p,
    .hero p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        opacity: 0.9;
    }

    .section-header p {
        font-size: 1rem !important;
        color: inherit;
        opacity: 0.8;
    }

    .label {
        display: inline-block;
        font-size: 0.75rem !important;
        font-weight: 700;
        color: var(--primary) !important;
        background: rgba(var(--primary-rgb), 0.1);
        padding: 4px 12px;
        border-radius: 100px;
        letter-spacing: 0.05em;
        margin-bottom: 20px !important;
    }

    /* 6.1 Section Specific Adjustments */
    .creation-options {
        background: #fff !important;
        color: #000 !important;
    }

    #funciona {
        background: #fafafa !important;
        color: #000 !important;
    }

    .experience-section {
        background: #000 !important;
        color: #fff !important;
        text-align: left !important;
        justify-content: flex-start !important;
        padding-top: 80px !important;
    }

    .experience-section .experience-content {
        padding: 0 !important;
    }

    .experience-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 6px !important;
    }

    .experience-section p {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }

    .experience-section .check-list {
        margin: 8px 0 !important;
        display: flex;
        flex-direction: column;
        gap: 6px !important;
        width: 100%;
    }

    .experience-section .check-list li {
        color: #fff !important;
        font-size: 0.8rem !important;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 12px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px !important;
        text-align: left;
    }

    .experience-section .check-list li i {
        color: var(--primary);
        font-size: 1.1rem;
    }

    .premium-img {
        max-height: 210px;
        width: 100% !important;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        margin: 12px auto 0;
    }

    /* 6.2 Bento Grid: Horizontal Slider for Mobile */
    .bento-grid {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        /* Remove vertical scroll */
        scroll-snap-type: x mandatory;
        padding: 0 0 20px !important;
        gap: 20px !important;
        width: calc(100% + 48px);
        margin-left: -24px !important;
        padding: 0 24px !important;
        -webkit-overflow-scrolling: touch;
    }

    .bento-card {
        flex: 0 0 88%;
        scroll-snap-align: center;
        text-align: center;
        background: #fff !important;
        border: 1px solid var(--border-color) !important;
        min-height: 60dvh;
        margin-bottom: 0 !important;
        border-radius: 16px !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .bento-img-container {
        height: 150px !important;
        background: #f8f9fa;
    }

    .bento-text {
        padding: 24px 20px !important;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #000 !important;
    }

    .bento-card h3 {
        font-size: 1.35rem !important;
        margin-bottom: 8px !important;
        font-weight: 800;
        color: #000 !important;
    }

    .bento-card i {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
        color: var(--primary);
    }

    /* 7. Pricing adjustments */
    .pricing-minimal {
        background: #fff !important;
        color: #000 !important;
    }

    .pricing-info {
        padding: 24px 20px !important;
        /* Compact pricing */
        text-align: center;
    }

    .plan-description {
        color: #444 !important;
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .price-value {
        font-size: 3rem !important;
        color: #000 !important;
    }

    .pricing-features {
        padding: 24px 20px !important;
        background: #fcfcfc !important;
    }

    .feature-list {
        font-size: 0.95rem !important;
        gap: 10px !important;
        color: #000 !important;
    }

    /* 8. Footer Reformat - Integrated */
    .footer-minimal {
        margin-top: 60px !important;
        padding-top: 40px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        position: static !important;
        /* Flow naturally on mobile */
    }

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

    .footer-minimal a,
    .footer-tagline,
    .footer-bottom {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.9rem;
    }

    .footer-title {
        color: #fff !important;
        margin-bottom: 16px;
    }

    /* 9. Final CTA Layout */
    .final-cta {
        padding: 0 24px !important;
        background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../assets/images/cta_bg.png') !important;
        background-size: cover !important;
        background-position: center !important;
        color: #fff !important;
        min-height: 100dvh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        /* Center content vertically */
        align-items: center !important;
    }

    .final-cta .container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        /* Button at center */
        min-height: 100dvh !important;
        padding-top: 70px !important;
        /* NAVBAR CLEARANCE */
        position: relative !important;
    }

    .cta-content {
        padding: 0 !important;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .final-cta h2,
    .final-cta .cta-heading {
        font-size: 2rem !important;
        color: #fff !important;
        margin-bottom: 24px !important;
        line-height: 1.1;
    }

    .btn-cta {
        width: 100%;
        display: block;
        text-align: center;
        padding: 16px !important;
    }

    /* 10. Intelligent Scaling for Short Screens (Phones with bars/link overlays) */
    @media (max-height: 720px) {
        h2 {
            font-size: 1.4rem !important;
            margin-bottom: 8px !important;
        }

        .hero h1 {
            font-size: 1.8rem !important;
        }

        .hero p,
        .experience-content p,
        .bento-text p {
            font-size: 0.85rem !important;
            margin-bottom: 12px !important;
        }

        .option-card {
            padding: 16px !important;
        }

        .option-card h3 {
            font-size: 1.2rem !important;
        }

        .option-card p {
            font-size: 0.8rem !important;
        }

        .experience-section .check-list li {
            padding: 6px 12px !important;
            font-size: 0.75rem !important;
        }

        .premium-img {
            max-height: 140px !important;
        }

        .bento-card {
            min-height: 55dvh !important;
        }

        .bento-img-container {
            height: 120px !important;
        }

        .bento-text {
            padding: 16px !important;
        }

        .price-value {
            font-size: 2.5rem !important;
        }

        .pricing-features {
            padding: 16px !important;
        }

        .final-cta h2 {
            font-size: 1.8rem !important;
        }

        .nav-header {
            height: 60px !important;
        }

        .curved-scroll-container {
            display: none !important;
        }
    }
}