/* Fonts */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-v12-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-v12-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary-purple: #6A1B9A;
    --light-purple: #F3E5F5;
    --accent-purple: #9C27B0;
    --dark-purple: #4A148C;
    --text-dark: #2D2D2D;
    --text-muted: #666666;
    --white: #ffffff;
    --bg-light: #FBF9FF;
    --bg-mesh: radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
               radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
               radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(106, 27, 154, 0.1);
    --shadow-lg: 0 20px 50px rgba(106, 27, 154, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --gradient: linear-gradient(135deg, #6A1B9A 0%, #9C27B0 100%);
    --gradient-soft: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

body.light-purple-theme {
    background: #fff;
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(156, 39, 176, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 0% 100%, rgba(106, 27, 154, 0.05) 0%, transparent 25%);
    background-attachment: fixed;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Banner */
.sticky-banner {
    background: var(--dark-purple);
    color: var(--white);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1010;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.banner-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.banner-label {
    font-size: 1rem;
    font-weight: 700;
}

.banner-promo {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.show-mobile {
    display: none;
}

.badge {
    background: var(--accent-purple);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.code-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    background: var(--white);
    color: var(--primary-purple);
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.btn-banner {
    padding: 6px 16px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-banner:hover {
    background: var(--white);
    color: var(--primary-purple);
}

/* Navbar */
.navbar {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 40px; /* Adjusted dynamically by JS */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.nav-container {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-code-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(106, 27, 154, 0.2);
}

.nav-code-val {
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-nav-copy {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.btn-nav-copy:hover {
    background: rgba(255, 255, 255, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-purple);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.menu-toggle i {
    width: 28px;
    height: 28px;
}

/* Hero */
.hero {
    padding: 60px 0 60px;
    background: radial-gradient(circle at top right, var(--light-purple), transparent);
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text-center {
    max-width: 800px;
    margin-bottom: 30px;
    z-index: 2;
}

.eyebrow {
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
}

.freshness-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 860px;
    margin: 0 auto 28px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(106, 27, 154, 0.18);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(106, 27, 154, 0.12);
    backdrop-filter: blur(12px);
    animation: freshnessPulse 3.2s ease-in-out infinite;
}

.freshness-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.freshness-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 800;
}

.freshness-item strong {
    color: var(--primary-purple);
    font-size: 0.98rem;
}

.freshness-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(106, 27, 154, 0.08);
    border: 1px solid rgba(106, 27, 154, 0.16);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-purple);
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.45);
    animation: livePulse 2s ease-in-out infinite;
}

.freshness-code {
    color: var(--primary-purple);
    font-weight: 800;
    letter-spacing: 1px;
}

.freshness-live-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: lowercase;
}

@keyframes freshnessPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 28px rgba(106, 27, 154, 0.12), 0 0 0 0 rgba(156, 39, 176, 0.0);
    }
    50% {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 14px 34px rgba(106, 27, 154, 0.16), 0 0 0 10px rgba(156, 39, 176, 0.08);
    }
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.35);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(156, 39, 176, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(156, 39, 176, 0);
    }
}

.hero-actions-center {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.stats-grid-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin: 0 auto;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--light-purple);
}

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

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-visual-center {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-visual-circle {
    width: 380px;
    height: 380px;
    background: var(--gradient-soft);
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 0 50px rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-box {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 8px 8px 8px 15px;
    border-radius: var(--radius-md);
    border: 2px solid var(--light-purple);
    box-shadow: var(--shadow-sm);
}

.code-val {
    font-family: monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 15px;
    color: var(--primary-purple);
}

.floating-card {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    width: 200px;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.card-1 { top: 5%; right: 0; }
.card-2 { bottom: 15%; left: -5%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.card-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.card-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 27, 154, 0.4);
}

.btn-banner {
    padding: 6px 15px;
    font-size: 0.85rem;
    background: var(--white);
    color: var(--primary-purple);
}

.btn-copy-icon {
    padding: 10px;
    background: var(--light-purple);
    color: var(--primary-purple);
    border-radius: var(--radius-sm);
}

.btn-white {
    background: var(--white);
    color: var(--primary-purple);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bg-light { background-color: var(--bg-light); }
.bg-purple-light { background-color: var(--light-purple); }

/* Reward Grid */
.reward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.reward-card {
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--light-purple);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
}

.reward-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.reward-card.featured {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.05);
    z-index: 2;
    border: none;
    box-shadow: 0 20px 40px rgba(106, 27, 154, 0.25);
}

.reward-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
}

.reward-card.featured p { 
    color: rgba(255,255,255,0.9); 
    margin-bottom: 30px;
}

.reward-card.featured .btn {
    margin-top: auto;
}

.reward-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reward-card.featured .reward-icon {
    color: var(--white);
}

.reward-amount {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -1px;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: var(--light-purple);
}

.timeline-num {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-purple);
    flex-shrink: 0;
    z-index: 1;
}

.timeline-item.highlight .timeline-num {
    background: var(--primary-purple);
    color: var(--white);
}

.timeline-content h3 {
    margin-bottom: 10px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--white);
    padding: 40px 32px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-purple);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-purple);
}

.pricing-card.popular {
    border-color: var(--primary-purple);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    white-space: nowrap;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Grid 2 */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse-mobile {
    display: grid;
}

.feature-rows {
    margin-top: 40px;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.f-icon {
    font-size: 1.5rem;
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Mockup */
.mockup-container {
    perspective: 1000px;
}

.mockup-card {
    width: 350px;
    height: 220px;
    background: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);
    border-radius: 20px;
    padding: 30px;
    color: var(--white);
    transform: rotateY(-20deg) rotateX(10deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.3);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.m-chip {
    width: 45px;
    height: 35px;
    background: #FFD700;
    border-radius: 5px;
    margin-bottom: 30px;
}

.m-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    font-weight: 800;
    font-size: 1.2rem;
}

.m-number {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: monospace;
}

/* CTA Box */
.cta-box {
    background: var(--gradient);
    color: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.big-code-display {
    font-size: 3rem;
    font-weight: 800;
    font-family: monospace;
    background: rgba(255,255,255,0.2);
    padding: 10px 30px;
    border-radius: var(--radius-md);
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 100px 0 60px;
    border-top: 1px solid var(--light-purple);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-muted);
    max-width: 320px;
    margin-bottom: 25px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--primary-purple);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}


.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-purple);
    margin-bottom: 40px;
    line-height: 1.8;
}

.footer-disclaimer h5 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-top: 40px;
    border-top: 1px solid var(--light-purple);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #2D2D2D;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.toast i {
    color: #4CAF50;
    width: 20px;
    height: 20px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Modern Decorative Elements */
.bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--light-purple);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.blob-1 { top: -100px; right: -100px; background: rgba(156, 39, 176, 0.1); }
.blob-2 { bottom: 20%; left: -200px; background: rgba(106, 27, 154, 0.1); }

/* Hero Enhancement */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

@media (max-width: 1200px) {
    .hero h1 { font-size: 3.5rem; }
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.main-visual-circle {
    width: 400px;
    height: 400px;
    background: var(--gradient-soft);
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 0 50px rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Grid Vertical */
.feature-vertical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.v-feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-purple);
    transition: all 0.3s ease;
}

.v-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
}

.v-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

/* Info Section with Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* More Section Styles */
.info-block {
    margin-bottom: 80px;
}

.info-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-purple);
    box-shadow: var(--shadow-sm);
}

/* Comparison Table Modernization */
.comparison-table th {
    background: var(--primary-purple);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Dark Section */
.bg-dark-purple {
    background: var(--dark-purple);
    color: var(--white);
    padding: 120px 0;
    overflow: hidden;
}

.bg-dark-purple .section-header h2 { color: var(--white); }
.bg-dark-purple .section-header p { color: rgba(255,255,255,0.7); }



/* Animations */
[data-lucide] {
    vertical-align: middle;
}
.footer-disclaimer {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: var(--radius-md);
    margin-top: 40px;
}

.footer-disclaimer h5 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 800;
}
.purple-text { color: var(--primary-purple); }
.code-pill {
    background: var(--light-purple);
    padding: 4px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-weight: 700;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 40px;
}

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

.comparison-table th, .comparison-table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid var(--light-purple);
    white-space: nowrap;
}

.comparison-table th:first-child, .comparison-table td:first-child {
    min-width: 150px;
    white-space: normal;
}

.comparison-table th:not(:first-child), .comparison-table td:not(:first-child) {
    min-width: 130px;
}

.table-footnote {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

.comparison-table th {
    background: var(--light-purple);
    color: var(--primary-purple);
    font-weight: 800;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Requirement Grid */
.requirement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.faq-item h4 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 { font-size: 3.8rem; }
}

@media (max-width: 992px) {
     .faq-grid {
         grid-template-columns: 1fr;
     }
     .hero {
         padding: 60px 0 40px;
     }
     .hero h1 { font-size: 3.5rem; }
     .hero-lead { max-width: 600px; }
     .hero-visual-wrapper { height: 400px; }
     .main-visual-circle { width: 320px; height: 320px; }
     .floating-card { width: 180px; padding: 12px; }
     .card-1 { right: -5%; }
     .card-2 { left: -8%; }

     .reward-grid, .pricing-grid, .grid-2 {
         grid-template-columns: 1fr;
     }
     .footer-grid { grid-template-columns: 1fr; gap: 40px; }
     .pricing-card.popular { transform: none; }
     .reward-card.featured { transform: none; }
     .info-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
     .menu-toggle {
         display: block;
     }

     .nav-container {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: var(--white);
         padding: 20px;
         box-shadow: 0 10px 30px rgba(106, 27, 154, 0.1);
         border-top: 1px solid var(--light-purple);
         flex-direction: column;
         z-index: 1000;
     }

     .nav-container.active {
         display: flex;
     }

     .nav-links {
         display: flex;
         flex-direction: column;
         width: 100%;
         gap: 15px;
         align-items: center;
     }

     .nav-links li {
         width: 100%;
         text-align: center;
     }

     .nav-links a {
         display: block;
         padding: 10px;
         font-size: 1.1rem;
     }

     .nav-btn {
         width: 100%;
         text-align: center;
     }

     .nav-code-wrapper {
         width: 100%;
         display: flex;
         justify-content: center;
     }

     .nav-code-box {
         width: 100%;
         justify-content: center;
         padding: 12px;
     }

     .nav-code-val {
         font-size: 1.1rem;
     }

     .sticky-banner { padding: 8px 0; }
     .banner-flex {
         min-height: 40px;
     }
     .banner-content {
         gap: 12px;
         flex-wrap: wrap;
         justify-content: center;
     }
     .banner-promo.show-mobile {
         display: block;
         width: 100%;
         text-align: center;
         font-size: 0.8rem;
         margin-top: -5px;
         order: 10;
     }
     .banner-promo.hide-mobile {
         display: none;
     }
     .banner-label { font-size: 1rem; }
     .code-text { font-size: 1.1rem; padding: 2px 10px; }
     .btn-banner { padding: 6px 15px; font-size: 0.85rem; }
     .badge { display: none; }
     .hide-mobile { display: none; }
     .navbar { top: 56px; }
     .big-code-display { font-size: 2.2rem; }
     .cta-flex { flex-direction: column; width: 100%; }
     .cta-flex .btn { width: 100%; }
     .hero-actions-center {
         flex-direction: column;
         align-items: stretch;
         width: 100%;
         max-width: 350px;
         margin-left: auto;
         margin-right: auto;
         margin-bottom: 30px;
     }
     .copy-box { justify-content: center; }
     .code-val { margin-right: 15px; }

     .section { padding: 40px 0; }
     .bg-dark-purple { padding: 60px 0; }
     .hero { padding-top: 30px; padding-bottom: 40px; }
     .hero h1 { font-size: 3rem; line-height: 1.15; margin-bottom: 20px; }
     .hero-lead { font-size: 1.1rem; margin-bottom: 25px; }
     .eyebrow { font-size: 0.8rem; margin-bottom: 12px; }
     .freshness-bar {
         width: 100%;
     }
     .freshness-inline {
         text-align: center;
         gap: 10px;
     }
     .stats-grid-horizontal {
         flex-direction: column;
         gap: 20px;
         width: 100%;
         padding: 25px;
     }
     .stat-divider { width: 60px; height: 1px; }

    .grid-2 { gap: 40px; }
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    .main-visual-circle { width: 280px; height: 280px; }
    .mockup-card { width: 260px; height: 160px; padding: 20px; }
    .m-chip { width: 35px; height: 25px; margin-bottom: 20px; }
    .m-logo { top: 15px; right: 15px; font-size: 1rem; }
    .m-number { font-size: 0.9rem; }
    .hero-visual-wrapper { height: auto; min-height: 280px; }
    .floating-card { display: none; }
    .card-2 { display: none; }
}

@media (max-width: 480px) {
     .section { padding: 40px 0; }
     .bg-dark-purple { padding: 60px 0; }
     .hero { padding-top: 20px; padding-bottom: 30px; }
     .hero h1 { font-size: 2.5rem; letter-spacing: -1px; line-height: 1.2; margin-bottom: 18px; }
     .hero-lead { font-size: 1rem; margin-bottom: 20px; }
     .eyebrow { font-size: 0.75rem; margin-bottom: 10px; }
     .container { padding: 0 20px; overflow-x: hidden; }
     .freshness-bar { padding: 14px 16px; }
     .grid-2 { gap: 30px; }
     .hero-visual-wrapper { height: auto; min-height: 220px; padding: 10px 0; }
     .main-visual-circle { width: 220px; height: 220px; }
     .mockup-card { width: 200px; height: 120px; padding: 12px; }
     .m-chip { width: 25px; height: 18px; margin-bottom: 12px; }
     .m-logo { top: 10px; right: 10px; font-size: 0.8rem; }
     .m-number { font-size: 0.75rem; margin-bottom: 8px; }
     .m-name { font-size: 0.65rem; }
     .reward-card { padding: 40px 24px; }
     .navbar { top: 0; }
}
.reward-summary-card {
    margin-top: 60px;
    padding: 32px;
    background: var(--bg-light);
    border: 2px solid var(--primary-purple);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.reward-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.reward-summary-icon {
    background: var(--gradient);
    color: var(--white);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(106, 27, 154, 0.2);
}

.reward-summary-icon i {
    width: 32px;
    height: 32px;
}

.reward-summary-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.reward-summary-content p {
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-muted);
    font-weight: 500;
}

.reward-summary-content p strong {
    color: var(--primary-purple);
}

.total-bonus-amount {
    font-weight: 800;
    color: var(--primary-purple);
}

@media (max-width: 992px) {
    .reward-summary-card {
        padding: 24px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reward-summary-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 16px;
        white-space: normal;
    }
    
    .reward-summary-content {
        flex-direction: column;
        gap: 8px;
    }

    .reward-summary-content p {
        white-space: normal;
    }

    .total-bonus-amount {
        font-weight: 800;
    }
}