/* ===== EARNZO — ELITE DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Poppins:wght@400;500;600&display=swap');

:root {
    --bg-deep: #120424;
    --bg-mid: #1E0A3C;
    --bg-card: rgba(255, 255, 255, 0.035);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.12);
    --gold: #FFD700;
    --gold-dim: rgba(255, 215, 0, 0.7);
    --green: #00E676;
    --green-dark: #00C853;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', system-ui, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

.loader-logo-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(124, 77, 255, 0.06) 40%, transparent 70%);
    animation: loaderGlow 1.5s ease-in-out infinite;
}

@keyframes loaderGlow {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
    }
}

.loader-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 6px;
    color: var(--gold);
    opacity: 0.9;
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--green));
    border-radius: 4px;
    animation: loaderFill 0.8s ease-out forwards;
    position: relative;
}

.loader-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 0.8s ease-in-out infinite;
}

@keyframes loaderFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(18, 4, 36, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.85rem 2rem;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-decoration: none;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(15deg) scale(1.08);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(180deg, #00E676 0%, #00C853 100%) !important;
    color: var(--bg-deep) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.3px;
    transition: all 0.15s ease !important;
    box-shadow:
        0 3px 0px #00994D,
        0 4px 15px rgba(0, 230, 118, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow:
        0 5px 0px #00994D,
        0 6px 20px rgba(0, 230, 118, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.nav-cta:active {
    transform: translateY(2px) !important;
    box-shadow:
        0 1px 0px #00994D,
        0 2px 6px rgba(0, 230, 118, 0.1) !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 102;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    max-width: 300px;
    height: 100vh;
    background: rgba(18, 4, 36, 0.98);
    backdrop-filter: blur(30px);
    padding: 5rem 2rem 2rem;
    z-index: 101;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-subtle);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.25s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.open {
    opacity: 1;
    display: block;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 5rem;
    background: linear-gradient(168deg, var(--bg-mid) 0%, var(--bg-deep) 50%, #0A0118 100%);
}

.hero-grid {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(180deg, #00E676 0%, #00C853 100%);
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: all 0.15s ease;
    box-shadow:
        0 4px 0px #00994D,
        0 6px 20px rgba(0, 230, 118, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0px #00994D,
        0 10px 30px rgba(0, 230, 118, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0px #00994D,
        0 2px 8px rgba(0, 230, 118, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.15s ease;
    box-shadow:
        0 3px 0px rgba(255, 255, 255, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.btn-secondary:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: var(--border-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow:
        0 5px 0px rgba(255, 255, 255, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.35);
}

.btn-secondary:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0px rgba(255, 255, 255, 0.03),
        0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* HERO VISUAL */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ===== MOCKUP CONTAINERS (Shared) ===== */
.mockup-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.1) 0%, transparent 70%);
    animation: glowPulse 5s ease-in-out infinite;
}

.mockup-glow-gold {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, rgba(124, 77, 255, 0.04) 40%, transparent 70%);
}

.mockup-glow-cyan {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, rgba(124, 77, 255, 0.04) 40%, transparent 70%);
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* Glare overlay */
.mockup-glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.0) 40%,
            rgba(255, 255, 255, 0.0) 60%,
            rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Hero mockup (16:9 banner) */
.hero-mockup-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(124, 77, 255, 0.1),
        0 4px 0px rgba(255, 255, 255, 0.03);
    background: var(--bg-card);
}

.hero-mockup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
}

/* Feature section mockups */
.feature-mockup-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(124, 77, 255, 0.06);
    background: var(--bg-card);
}

.feature-mockup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2rem;
}

/* ===== FEATURE ROWS (Z-Pattern) ===== */
.feature-row {
    max-width: 1100px;
    margin: 0 auto 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse>* {
    direction: ltr;
}

.feature-row-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-row-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-row-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-row-title .gold {
    color: var(--gold);
}

.feature-row-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.feature-row-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-row-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Compact features grid (4-col) */
.features-compact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 7rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--gold-dim);
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-badge .badge-icon {
    width: 14px;
    height: 14px;
    color: var(--gold-dim);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-title .gold {
    color: var(--gold);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== FEATURES ===== */
#features {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
    background: var(--bg-deep);
}

.steps-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.steps-line {
    position: absolute;
    left: 28px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--gold-dim);
    position: relative;
    z-index: 2;
}

.step-content {
    padding-top: 0.35rem;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

/* ===== REWARDS ===== */
#rewards {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
}

/* Redeem screenshots showcase */
.redeem-showcase {
    max-width: 700px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.redeem-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redeem-mockup-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(124, 77, 255, 0.06);
    background: var(--bg-card);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.redeem-mockup-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(124, 77, 255, 0.1);
}

.redeem-mockup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.75rem;
}

.rewards-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.reward-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.reward-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.reward-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.reward-icon-wrapper svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.reward-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    margin-bottom: 0.3rem;
}

.reward-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reward-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--bg-deep);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    border-radius: 0 16px 0 10px;
    letter-spacing: 0.8px;
}

.reward-tag.grand {
    background: linear-gradient(135deg, #7C4DFF, #B388FF);
    color: #fff;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--bg-deep);
}

.testimonials-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial-card blockquote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
}

.testimonial-handle {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== CTA ===== */
#cta {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
    text-align: center;
    padding: 8rem 2rem;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.cta-inner p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-inner .btn-primary {
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.825rem;
    font-weight: 500;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: var(--text-secondary);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 5rem;
    }

    .feature-row-reverse {
        direction: ltr;
    }

    .feature-row-text {
        text-align: center;
        align-items: center;
    }

    .feature-row-highlights {
        align-items: flex-start;
        text-align: left;
    }

    .features-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .feature-mockup-container {
        max-width: 280px;
    }

    .feature-row {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .redeem-showcase {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .features-compact-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .rewards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    section {
        padding: 5rem 1.25rem;
    }

    .steps-line {
        left: 24px;
    }

    .step-num {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
}

@media (max-width:480px) {
    .hero-stats {
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .feature-mockup-container {
        max-width: 240px;
    }

    .rewards-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .features-compact-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}