/**
 * GrociKart V3 — Premium Design System
 * Mobile-First, Commercial-Grade, Startup-Quality
 */

/* ============================================
   ROOT VARIABLES — V3 DESIGN TOKENS
   ============================================ */
:root {
    /* Brand Palette */
    --brand-primary:  #2E7D32;
    --brand-fresh:    #43A047;
    --brand-dark:     #1B5E20;
    --brand-accent:   #F4C20D;
    --brand-accent-h: #F6B800;
    --brand-bg:       #F5F7F4;
    --brand-bg-warm:  #FAFBF8;
    --brand-white:    #FFFFFF;

    /* Text */
    --text-primary:   #182026;
    --text-secondary: #52606D;
    --text-muted:     #8896A5;

    /* Borders & Shadows */
    --border-soft:    #E5ECE6;
    --shadow-xs:  0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.05);
    --shadow-md:  0 6px 20px rgba(0,0,0,0.07);
    --shadow-lg:  0 16px 40px rgba(0,0,0,0.09);
    --shadow-xl:  0 24px 60px rgba(0,0,0,0.12);
    --shadow-green: 0 12px 30px rgba(46,125,50,0.18);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Layout */
    --header-height: 80px;
    --section-v:     100px;
    --section-v-lg:  140px;
    --radius-sm:     10px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-xl:     36px;
    --radius-pill:   999px;

    /* Bootstrap overrides */
    --bs-body-color:  var(--text-primary);
    --bs-body-bg:     var(--brand-white);
}

/* ============================================
   GLOBAL BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: var(--header-height);
}

section[id] {
    scroll-margin-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--brand-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--header-height);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-secondary); line-height: 1.8; }

a { color: inherit; }

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.section-padding {
    padding: var(--section-v) 0;
}
@media (min-width: 992px) {
    .section-padding { padding: var(--section-v-lg) 0; }
}

/* Section label (eyebrow text) */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 4px;
}

.section-heading {
    margin-bottom: 1.1rem;
    letter-spacing: -0.04em;
}

/* Background variants */
.bg-brand-bg   { background-color: var(--brand-bg) !important; }
.bg-warm       { background-color: var(--brand-bg-warm) !important; }
.bg-accent     { background-color: var(--brand-accent) !important; }
.bg-brand      { background-color: var(--brand-primary) !important; }
.bg-brand-dark { background-color: var(--brand-dark) !important; }
.bg-brand-light { background-color: rgba(46,125,50,0.06) !important; }
.bg-brand-primary { background-color: var(--brand-primary) !important; }
.bg-brand-fresh { background-color: var(--brand-fresh) !important; }

/* Color utilities */
.text-brand   { color: var(--brand-primary) !important; }
.text-accent  { color: var(--brand-accent) !important; }
.text-primary { color: var(--text-primary) !important; }
.border-soft  { border-color: var(--border-soft) !important; }

/* ============================================
   ANIMATION SYSTEM
   ============================================ */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes floatSlow {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-8px) rotate(2deg); }
}
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(46,125,50,0.25); }
    70%  { box-shadow: 0 0 0 16px rgba(46,125,50,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,125,50,0); }
}

.animate-float     { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: floatSlow 6s ease-in-out infinite; }

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.hover-lift {
    transition: transform 0.28s cubic-bezier(0.165,0.84,0.44,1),
                box-shadow 0.28s cubic-bezier(0.165,0.84,0.44,1);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-brand {
    background: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    letter-spacing: -0.01em;
}
.btn-brand:hover, .btn-brand:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-accent {
    background: var(--brand-accent);
    border: 2px solid var(--brand-accent);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
}
.btn-accent:hover, .btn-accent:focus {
    background: var(--brand-accent-h);
    border-color: var(--brand-accent-h);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(244,194,13,0.35);
}

.btn-outline-brand {
    background: transparent;
    border: 2px solid var(--border-soft);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
}
.btn-outline-brand:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: rgba(46,125,50,0.04);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    z-index: 1050;
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border-soft);
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(10px);
}

.brand-icon {
    width: 42px; height: 42px;
    background: var(--brand-primary);
    color: white;
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}
.brand-text .accent { color: var(--brand-primary); }

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    padding: 0.5rem 0.9rem !important;
    transition: color 0.2s;
    border-radius: 8px;
}
.nav-link:hover, .nav-link.active { color: var(--brand-primary) !important; }

/* Mobile nav overlay */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1.25rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-xl);
        margin-top: 12px;
        position: absolute;
        top: 100%;
        left: 1rem; right: 1rem;
        width: auto;
        border: 1px solid var(--border-soft);
    }
}

/* Contact chip in header */
.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(46,125,50,0.07);
    color: var(--brand-primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(46,125,50,0.15);
}
.contact-chip:hover {
    background: rgba(46,125,50,0.12);
    color: var(--brand-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 60px;
    background: var(--brand-white);
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern bg */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(46,125,50,0.04) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(244,194,13,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: var(--text-primary);
}
.hero-title .brand-word {
    color: var(--brand-primary);
    position: relative;
}
.hero-title .brand-word::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 5px;
    background: var(--brand-accent);
    border-radius: 4px;
    opacity: 0.7;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Trust chips */
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: var(--brand-white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-xs);
    transition: all 0.2s;
}
.trust-chip i { color: var(--brand-primary); font-size: 1rem; }
.trust-chip:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Hero image frame */
.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid white;
}
.hero-image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}
.hero-image-frame:hover img { transform: scale(1.03); }

/* Floating hero cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    padding: 14px 18px;
}

/* Avatars */
.avatars-group img { margin-left: -12px; }
.avatars-group img:first-child { margin-left: 0; }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: var(--brand-white);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
}
.trust-item-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(46,125,50,0.07);
    color: var(--brand-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.25s;
}
.trust-item:hover .trust-item-icon {
    background: var(--brand-primary);
    color: white;
    transform: scale(1.08);
}
.trust-item-text strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}
.trust-item-text span {
    font-size: 0.83rem;
    color: var(--text-secondary);
}

@media (max-width: 767.98px) {
    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 10px;
        gap: 12px;
    }
    .trust-item-icon {
        margin: 0 auto;
    }
}

/* Trust dividers on desktop */
@media (min-width: 768px) {
    .trust-item + .trust-item {
        border-left: 1px solid var(--border-soft);
    }
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165,0.84,0.44,1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-fresh));
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,125,50,0.15);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 64px; height: 64px;
    background: rgba(46,125,50,0.08);
    color: var(--brand-primary);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}
.feature-card:hover .feature-icon {
    background: var(--brand-primary);
    color: white;
    box-shadow: var(--shadow-green);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    color: var(--text-secondary);
}

/* ============================================
   APP MOCKUP / SHOWCASE
   ============================================ */
.app-phone-frame {
    width: 280px;
    height: 560px;
    background: white;
    border-radius: 44px;
    border: 10px solid var(--text-primary);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.app-phone-notch {
    width: 80px; height: 22px;
    background: var(--text-primary);
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    z-index: 2;
}

/* Floating UI cards beside phone */
.app-float-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    padding: 12px 16px;
    position: absolute;
}

@media (max-width: 575.98px) {
    .app-phone-frame {
        width: 240px;
        height: 480px;
        border-width: 8px;
    }
    .app-phone-notch {
        width: 60px;
        height: 18px;
    }
    .app-float-card {
        display: none;
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-row {
    position: relative;
}
/* Connector line between steps (desktop only) */
@media (min-width: 992px) {
    .steps-row::before {
        content: '';
        position: absolute;
        top: 52px;
        left: calc(12.5% + 10px);
        right: calc(12.5% + 10px);
        height: 2px;
        background: linear-gradient(90deg, var(--border-soft) 0%, var(--brand-accent) 50%, var(--border-soft) 100%);
        z-index: 0;
    }
}

.step-bubble {
    width: 88px; height: 88px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.step-bubble .step-num {
    position: absolute;
    top: -5px; right: -5px;
    width: 28px; height: 28px;
    background: var(--brand-accent);
    color: var(--text-primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid white;
}
.step-item:hover .step-bubble {
    transform: scale(1.08);
    box-shadow: var(--shadow-green);
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,125,50,0.15);
}
.testimonial-stars { color: var(--brand-accent); font-size: 1.1rem; }
.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    flex: 1;
    margin: 1rem 0;
}
.testimonial-author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(46,125,50,0.1);
    color: var(--brand-primary);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    background: white;
    padding: 1.25rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-primary);
    background: white;
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23182026'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232E7D32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border-soft);
    box-shadow: 0 -6px 24px rgba(0,0,0,0.07);
    padding: 12px 20px;
    z-index: 1040;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
@media (max-width: 767.98px) {
    .sticky-mobile-cta { display: flex; }
    body { padding-bottom: 74px; }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 32px; right: 28px;
    width: 48px; height: 48px;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1030;
    box-shadow: var(--shadow-green);
}
.scroll-to-top.show { opacity: 1; visibility: visible; }
.scroll-to-top:hover {
    background: var(--brand-dark);
    transform: translateY(-4px);
}
@media (max-width: 767.98px) {
    .scroll-to-top { bottom: 90px; right: 18px; }
}

/* ============================================
   MISC & RESPONSIVE HELPERS
   ============================================ */
.cursor-pointer { cursor: pointer; }

@media (max-width: 991.98px) {
    :root {
        --section-v: 60px;
        --section-v-lg: 80px;
    }
    .hero-section {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 40px;
        text-align: center;
    }
    .hero-section .position-relative {
        min-height: auto !important;
        margin-top: 3rem;
    }
    .float-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 1rem auto !important;
        display: inline-flex !important;
        transform: none !important;
    }
}

@media (max-width: 575.98px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .section-padding { padding: 60px 0; }
    .container { padding-left: 20px; padding-right: 20px; }
}

/* Image helper */
.img-cover {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* Soft glow blob (decorative, positioned by parent) */
.glow-blob {
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.18;
    position: absolute;
    z-index: 0;
}

/* Premium play store btn */
.btn-playstore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}
.btn-playstore:hover {
    background: #0f1a20;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-playstore .ps-icon { font-size: 1.8rem; }
.btn-playstore .ps-text small {
    display: block;
    font-weight: 400;
    font-size: 0.7rem;
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 2px;
}
.btn-playstore .ps-text strong {
    font-size: 1rem;
    line-height: 1;
}
/* ============================================
   FINAL CTA (DOWNLOAD SECTION) - PREMIUM V3
   ============================================ */
.final-cta-section {
    position: relative;
    background: radial-gradient(circle at top right, #1a2e18, #0a1409);
    overflow: hidden;
    color: white;
}

/* Texture overlay */
.final-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-mockup-container {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}

.footer-mockup-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
    animation: float-mockup 6s ease-in-out infinite;
}

@keyframes float-mockup {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.cta-support-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 24px;
    border-radius: 1rem;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.cta-support-pill:hover {
    background: rgba(46, 125, 50, 0.2);
    border-color: var(--brand-accent);
}

.glow-blob-footer {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--brand-primary);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 0;
}

/* Responsive fixes for download section */
@media (max-width: 991.98px) {
    .final-cta-section {
        text-align: center;
        padding-top: 5rem;
    }
    .trust-badge-pill { justify-content: center; }
    .footer-mockup-container { margin-top: 4rem; }
}
