/* ============================================================
   SCANMARK – Premium Landing Page CSS
   Design Language: Minimalist, Dark-accented, Professional
   ============================================================ */

/* ---- 1. TOKENS & RESET ---- */
:root {
    --bg:           #F7F7F5;
    --surface:      #FFFFFF;
    --ink:          #111110;
    --ink-2:        #6B6B6B;
    --ink-3:        #A0A0A0;
    --border:       rgba(0,0,0,0.08);
    --border-strong:rgba(0,0,0,0.14);
    --green:        #1A6638;
    --green-mid:    #22874A;
    --green-light:  #EAF4EE;
    --green-glow:   rgba(26, 102, 56, 0.18);
    --yellow:       #F5C842;
    --yellow-pale:  #FEFAE8;
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    36px;
    --radius-pill:  999px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl:    0 24px 64px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.06);
    --font:         'Geist', 'Inter', system-ui, -apple-system, sans-serif;
    --mono:         'Geist Mono', 'JetBrains Mono', monospace;
    --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ---- 2. LAYOUT UTILITIES ---- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 100px 0;
}

/* ---- 3. TYPOGRAPHY ---- */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; font-weight: 700; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    background: var(--green-light);
    border: 1px solid rgba(26,102,56,0.15);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--ink-2);
    line-height: 1.7;
}

/* ---- 4. BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.925rem;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    white-space: nowrap;
    -webkit-user-select: none;
}

.btn:active { transform: scale(0.97) !important; }

.btn-dark {
    background: var(--ink);
    color: #fff;
    padding: 13px 28px;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-green {
    background: var(--green);
    color: #fff;
    padding: 13px 28px;
    box-shadow: 0 4px 20px var(--green-glow);
}
.btn-green:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--green-glow);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 12px 26px;
    border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
    background: var(--surface);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Watch Demo button: always visible on the dark hero */
.hero .btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.60);
    background: rgba(255,255,255,0.08);
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: white;
    box-shadow: none;
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 12px 20px;
    font-weight: 500;
}
.btn-ghost:hover { color: white; background: rgba(255,255,255,0.08); }

.nav.scrolled .btn-ghost { color: var(--ink-2); }
.nav.scrolled .btn-ghost:hover { color: var(--ink); background: transparent; }

/* Nav dark button adapts on scroll */
.nav.scrolled .btn-dark { background: var(--ink); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

.play-icon {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.play-icon svg { width: 11px; height: 11px; margin-left: 1px; }

/* ---- 5. NAVIGATION ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
    /* Start fully transparent over the hero bg image */
    background: transparent;
}

.nav.scrolled {
    background: rgba(247,247,245,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.4s;
}

.nav.scrolled .nav-logo { color: var(--ink); }

.nav-logo .dot { color: var(--green); }

.nav-logo-icon {
    width: 34px; height: 34px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    padding: 5px;
    box-shadow: var(--shadow-sm);
}

.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: var(--radius-pill);
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav.scrolled .nav-links a         { color: var(--ink-2); }
.nav.scrolled .nav-links a:hover   { color: var(--ink); background: rgba(0,0,0,0.05); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.25s var(--ease-out), background 0.4s;
    transform-origin: center;
}

.nav.scrolled .nav-hamburger span { background: var(--ink); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--surface);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-drawer.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.nav-drawer a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: color 0.2s, background 0.2s;
}

.nav-drawer a:hover { color: var(--green); }

.nav-drawer-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 80%;
}

.nav-drawer-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
}

/* ---- 6. HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Dark overlay so text remains readable */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 20, 12, 0.75) 0%,
        rgba(5, 20, 12, 0.55) 50%,
        rgba(5, 20, 12, 0.40) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Bottom fade into the next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    z-index: 0;
}

/* Decorative glow blobs (complement the image) */
.hero-glow {
    position: absolute;
    top: 5%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,102,56,0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,200,66,0.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-pill);
    padding: 6px 14px 6px 8px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.80);
}

.hero-badge-chip {
    background: var(--green);
    color: white;
    border-radius: var(--radius-pill);
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title .line-highlight {
    position: relative;
    display: inline;
}

.hero-title .green-text {
    color: var(--green);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.hero-avatars {
    display: flex;
}

.hero-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid rgba(255,255,255,0.25);
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.hero-avatar:first-child { margin-left: 0; }
.hero-avatar:nth-child(1) { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.hero-avatar:nth-child(2) { background: linear-gradient(135deg, #2196F3, #1565C0); }
.hero-avatar:nth-child(3) { background: linear-gradient(135deg, #FF9800, #E65100); }
.hero-avatar:nth-child(4) { background: linear-gradient(135deg, #9C27B0, #6A1B9A); }

.hero-proof-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}

.hero-proof-text strong { color: rgba(255,255,255,0.9); }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow-xl),
                0 0 0 1px rgba(0,0,0,0.08);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s var(--ease-out);
}

.hero-screenshot:hover {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0.5deg) scale(1.01);
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
}

.float-card:nth-child(2) { animation-delay: -2s; }

.float-card-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.float-card-icon svg { width: 16px; height: 16px; }

.float-card-icon.green  { background: var(--green-light); color: var(--green); }
.float-card-icon.yellow { background: var(--yellow-pale); color: #D97706; }

.float-card .sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--ink-2);
    display: block;
}

.float-card-1 {
    bottom: 12%;
    left: -8%;
}

.float-card-2 {
    top: 10%;
    right: -5%;
}

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

/* ---- 7. STATS STRIP ---- */
.stats-strip {
    background: var(--ink);
    color: white;
    padding: 56px 0;
}

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

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

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
    color: white;
}

.stat-number span {
    color: var(--yellow);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ---- 8. FEATURES / BENTO ---- */
.features {
    background: var(--bg);
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* Card base */
.bcard {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out), border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.bcard:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    transform: translateY(-4px);
    border-color: rgba(26, 102, 56, 0.25);
}

/* Span helpers */
.bcard-wide     { grid-column: span 7; }
.bcard-narrow   { grid-column: span 5; }
.bcard-half     { grid-column: span 6; }
.bcard-third    { grid-column: span 4; }
.bcard-full     { grid-column: span 12; }

/* Featured dark flagship card */
.bcard-featured {
    background: linear-gradient(145deg, #091710 0%, #0d2217 60%, #06110b 100%);
    border-color: rgba(34, 197, 94, 0.2);
    color: white;
    box-shadow: 0 12px 36px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.bcard-featured:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 20px 50px rgba(9, 23, 16, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.bcard-featured .bcard-title { color: #ffffff; }
.bcard-featured .bcard-desc  { color: rgba(255,255,255,0.7); }

.bcard-body {
    padding: 28px 30px 18px;
    flex: 0 0 auto;
    z-index: 2;
}

.bcard-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    background: rgba(0,0,0,0.04);
    color: var(--ink-2);
}

.bcard-tag-green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.tag-pulse {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: dot-pulse 1.8s infinite;
}

.bcard-tag-blue,
.bcard-tag-purple {
    background: rgba(0, 0, 0, 0.04);
    color: var(--ink-2);
    border: 1px solid var(--border);
}

.bcard-tag-yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.bcard-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--ink);
}

.bcard-desc {
    font-size: 0.9rem;
    color: var(--ink-2);
    line-height: 1.6;
}

.bcard-visual {
    padding: 10px 28px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
}

/* ============================================================
   CARD 1: LIVE QR ATTENDANCE HUD
   ============================================================ */
.bcard-visual-scan {
    padding-top: 5px;
}

.scan-hud {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
    backdrop-filter: blur(8px);
}

/* QR Box */
.scan-qr-box {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(34, 197, 94, 0.3);
}

.scan-qr-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: #4ade80;
    border-style: solid;
}
.scan-qr-corner.tl { top: 4px; left: 4px; border-width: 2px 0 0 2px; }
.scan-qr-corner.tr { top: 4px; right: 4px; border-width: 2px 2px 0 0; }
.scan-qr-corner.bl { bottom: 4px; left: 4px; border-width: 0 0 2px 2px; }
.scan-qr-corner.br { bottom: 4px; right: 4px; border-width: 0 2px 2px 0; }

.scan-qr-matrix {
    position: relative;
    width: 82px;
    height: 82px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    padding: 6px;
    overflow: hidden;
}

.qr-matrix-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 3px;
    width: 100%;
    height: 100%;
}

.qrm-cell {
    background: rgba(255,255,255,0.75);
    border-radius: 1px;
}
.qrm-cell.c1 { opacity: 0.95; }
.qrm-cell.c2 { opacity: 0.35; }
.qrm-cell.c3 { opacity: 0.15; }

.scan-laser-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    box-shadow: 0 0 10px #4ade80, 0 0 18px rgba(74, 222, 128, 0.8);
    animation: laser-sweep 2.4s ease-in-out infinite;
}

@keyframes laser-sweep {
    0%   { top: 5%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 92%; opacity: 0; }
}

.scan-qr-badge {
    margin-top: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.08);
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 6px #4ade80;
    animation: dot-pulse 1.5s infinite;
}

/* Feed Box */
.scan-feed-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feed-title { color: rgba(255,255,255,0.6); }
.feed-count { color: #4ade80; }

.feed-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 10px;
    border-radius: 8px;
    transition: transform 0.2s, background 0.2s;
}

.feed-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
}

.feed-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.feed-avatar.av-1 { background: linear-gradient(135deg, #10B981, #059669); }
.feed-avatar.av-2 { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.feed-avatar.av-3 { background: linear-gradient(135deg, #F59E0B, #D97706); }

.feed-info {
    flex: 1;
    min-width: 0;
}

.feed-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-meta {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.badge-verified {
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(74, 222, 128, 0.3);
    white-space: nowrap;
}

/* ============================================================
   CARD 2: TACTICAL GPS RADAR HUD
   ============================================================ */
.geo-radar-hud {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.radar-grid-rings {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 102, 56, 0.06) 0%, rgba(247, 247, 245, 0.8) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(26, 102, 56, 0.18);
    overflow: hidden;
}

.radar-grid-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(26, 102, 56, 0.22);
}
.radar-grid-ring.r1 { width: 44px; height: 44px; }
.radar-grid-ring.r2 { width: 84px; height: 84px; }
.radar-grid-ring.r3 { width: 120px; height: 120px; }

.radar-crosshair {
    position: absolute;
    background: rgba(26, 102, 56, 0.14);
}
.radar-crosshair.h { width: 100%; height: 1px; }
.radar-crosshair.v { height: 100%; width: 1px; }

.radar-sweep {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(26, 102, 56, 0.3) 0deg, transparent 60deg, transparent 360deg);
    animation: sweep-spin 3.5s linear infinite;
}

@keyframes sweep-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.radar-pin-hall {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hall-pin-core {
    width: 22px;
    height: 22px;
    color: var(--green);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.hall-pin-core svg { width: 100%; height: 100%; }

.hall-pin-label {
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--ink);
    background: white;
    padding: 1px 6px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-top: 1px;
    white-space: nowrap;
}

.radar-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    z-index: 2;
    animation: dot-pulse 2s infinite;
}
.radar-dot.dot-1 { top: 28px; left: 34px; animation-delay: 0.2s; }
.radar-dot.dot-2 { bottom: 32px; right: 38px; animation-delay: 0.7s; }
.radar-dot.dot-3 { top: 78px; left: 22px; animation-delay: 1.1s; }

.geo-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.76rem;
    color: var(--ink-2);
}

.geo-status-pill strong { color: var(--ink); }

.geo-pill-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(26, 102, 56, 0.6);
}

/* ============================================================
   CARD 3: LIVE ANALYTICS HUD
   ============================================================ */
.analytics-card-hud {
    width: 100%;
    background: #FAFAF8;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analytics-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.analytics-huge-num {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
}

.analytics-huge-num span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-3);
}

.analytics-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-2);
    margin-top: 4px;
}

.analytics-velocity-badge {
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    color: var(--ink-2);
}

.analytics-velocity-badge strong { color: #d97706; }

.v-icon {
    display: inline-flex;
    vertical-align: -2px;
}
.v-icon svg { width: 11px; height: 11px; fill: #d97706; }

.analytics-bar-track {
    width: 100%;
    height: 10px;
    background: #E5E7EB;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.analytics-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1A6638 0%, #22C55E 100%);
    border-radius: var(--radius-pill);
    transition: width 1.2s var(--ease-out);
}

.analytics-pills-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.a-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: var(--radius-pill);
    background: white;
    border: 1px solid var(--border);
}

.a-pill .p-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.a-pill.present .p-dot { background: #22C55E; }
.a-pill.late .p-dot    { background: #F59E0B; }
.a-pill.absent .p-dot  { background: #EF4444; }

/* ============================================================
   CARD 4: ONE-CLICK EXPORT WIDGET
   ============================================================ */
.export-widget-hud {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.export-format-selector {
    display: flex;
    gap: 6px;
}

.export-format-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 8px;
    font-size: 0.74rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: #F3F4F6;
    color: var(--ink-2);
    border: 1px solid transparent;
    cursor: default;
    transition: all 0.2s;
}

.export-format-tab.active {
    background: white;
    color: var(--ink);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-sm);
}

.fmt-icon { display: inline-flex; }
.fmt-icon svg { width: 13px; height: 13px; }

.export-preview-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
}

.preview-file-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.file-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--ink);
}

.file-name-icon { width: 12px; height: 12px; flex-shrink: 0; color: var(--ink-3); }

.file-meta {
    font-size: 0.65rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.preview-mini-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.68rem;
}

.pmt-row {
    display: grid;
    grid-template-columns: 20px 70px 1fr 50px;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 4px;
    color: var(--ink-2);
}

.pmt-head {
    font-weight: 700;
    background: #F9FAFB;
    color: var(--ink);
}

.pmt-row .status-ok {
    color: #10B981;
    font-weight: 700;
}

/* ============================================================
   BOTTOM 3 CARDS: MINI WIDGETS
   ============================================================ */
.bcard-visual-mini {
    min-height: 110px;
    flex-direction: column;
    gap: 12px;
    padding: 24px 24px 8px;
    align-items: flex-start;
}

.mini-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.mini-icon-green  { background: #EAF4EE; color: var(--green); border: 1px solid rgba(26, 102, 56, 0.2); }
.mini-icon-yellow { background: #FEFAE8; color: #D97706; border: 1px solid rgba(217, 119, 6, 0.2); }
.mini-icon-blue   { background: #F3F4F6; color: var(--ink-2); border: 1px solid var(--border); }

.browser-mock-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 5px 12px;
    font-size: 0.72rem;
    color: var(--ink-2);
    box-shadow: var(--shadow-sm);
}

.browser-url {
    font-family: var(--mono);
    color: var(--ink);
    font-weight: 600;
}

.browser-lock { display: inline-flex; color: var(--green); }
.browser-lock svg { width: 12px; height: 12px; }

.token-timer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 4px 12px 4px 6px;
    font-size: 0.72rem;
    box-shadow: var(--shadow-sm);
}

.token-timer-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FEFAE8;
    border: 1.5px solid #F59E0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 800;
    color: #D97706;
    animation: rotate-circle 5s linear infinite;
}

.token-hash {
    font-family: var(--mono);
    color: var(--ink-2);
}

.token-hash strong {
    color: var(--ink);
}

.data-speed-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 5px 12px;
    font-size: 0.72rem;
    box-shadow: var(--shadow-sm);
}

.data-badge {
    background: var(--green-light);
    color: var(--green);
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
}

.data-label {
    font-weight: 600;
    color: var(--ink-2);
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}

/* ---- 10. HOW IT WORKS ---- */
.how-section {
    background: var(--ink);
    color: white;
}

.how-section .section-header p { color: rgba(255,255,255,0.5); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
}

/* Horizontal line through step numbers */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.67% + 28px);
    right: calc(16.67% + 28px);
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}

.step {
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    margin-bottom: 28px;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
}

.step.active .step-num {
    background: var(--green);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 0 6px rgba(26,102,56,0.2);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.step-desc {
    font-size: 0.925rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ---- 11. TESTIMONIALS ---- */
.testimonials-section {
    background: var(--bg);
}

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

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.t-star {
    color: var(--yellow);
    font-size: 0.9rem;
}

.t-text {
    font-size: 0.975rem;
    color: var(--ink-2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.t-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
}

.t-role {
    font-size: 0.8rem;
    color: var(--ink-3);
}

/* ---- 12. PRICING ---- */
.pricing-section {
    background: var(--surface);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-2);
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-label.active { color: var(--ink); }

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-track {
    position: absolute;
    inset: 0;
    background: #D1D5DB;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.25s;
}

.toggle-track::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 3px; left: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s var(--ease-spring);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked ~ .toggle-track {
    background: var(--green);
}

.toggle-switch input:checked ~ .toggle-track::after {
    transform: translateX(22px);
}

.save-badge {
    background: var(--green-light);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
    align-items: start;
}

.pricing-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    background: var(--ink);
    border-color: transparent;
    color: white;
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.plan-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    margin-bottom: 12px;
}

.pricing-card.featured .plan-label { color: rgba(255,255,255,0.4); }

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink-2);
}

.pricing-card.featured .plan-price .currency { color: rgba(255,255,255,0.6); }

.plan-price .amount {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--ink);
    transition: transform 0.2s, opacity 0.2s;
}

.pricing-card.featured .plan-price .amount { color: white; }

.plan-price .period {
    font-size: 0.9rem;
    color: var(--ink-3);
    font-weight: 500;
}

.pricing-card.featured .plan-price .period { color: rgba(255,255,255,0.4); }

.plan-desc {
    font-size: 0.875rem;
    color: var(--ink-2);
    margin-bottom: 28px;
    line-height: 1.6;
    min-height: 44px;
}

.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.5); }

.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.pricing-card.featured .plan-divider { background: rgba(255,255,255,0.1); }

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ink-2);
}

.pricing-card.featured .plan-feature { color: rgba(255,255,255,0.65); }

.plan-check {
    width: 18px;
    height: 18px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card.featured .plan-check {
    background: rgba(255,255,255,0.1);
}

.plan-check svg { width: 10px; height: 10px; stroke: var(--green); }
.pricing-card.featured .plan-check svg { stroke: rgba(255,255,255,0.8); }

/* ---- 13. FAQ ---- */
.faq-section {
    background: var(--bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--green); }

.faq-chevron {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.faq-chevron svg {
    width: 10px;
    height: 10px;
    stroke: var(--ink);
    transition: stroke 0.2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--green);
    border-color: var(--green);
}

.faq-item.open .faq-chevron svg { stroke: white; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--ink-2);
    line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ---- 14. CTA SECTION ---- */
.cta-section {
    background: var(--surface);
    padding: 100px 0;
}

.cta-box {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative grid inside CTA */
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(26,102,56,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-watermark {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    opacity: 0.05;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: white;
    margin-bottom: 16px;
}

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

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- 15. FOOTER ---- */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.4);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    padding: 5px;
}

.footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; filter: brightness(0) invert(1); }

.footer-brand .logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
}

.footer-brand .logo span { color: var(--yellow); }

.footer-brand .tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: center;
}

.footer-powered {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.32);
}

.footer-powered strong {
    color: rgba(255,255,255,0.65);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-copy {
    font-size: 0.8rem;
}

/* ---- 16. SCROLL ANIMATIONS ---- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate="up"]    { transform: translateY(32px); }
[data-animate="left"]  { transform: translateX(-32px); }
[data-animate="right"] { transform: translateX(32px); }
[data-animate="scale"] { transform: scale(0.95); }

[data-animate].visible {
    opacity: 1;
    transform: none;
}

/* ---- 17. RESPONSIVE ---- */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bcard-wide { grid-column: span 2; }
    .bcard-narrow, .bcard-half, .bcard-third { grid-column: span 1; }
    .bcard-full { grid-column: span 2; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; gap: 48px; }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
    h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .section { padding: 72px 0; }
    .container { padding: 0 20px; }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-proof { justify-content: center; }
    .hero-screenshot { transform: none; }
    .hero-screenshot:hover { transform: scale(1.01); }
    .float-card-1 { display: none; }
    .float-card-2 { display: none; }

    .nav-links, .nav-actions { display: none; }
    .nav-hamburger { display: flex; }

    .bento-grid { grid-template-columns: 1fr; }
    .bcard-wide, .bcard-narrow, .bcard-half, .bcard-third, .bcard-full { grid-column: span 1; }

    .scan-hud {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .scan-qr-box {
        padding: 14px;
    }

    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-box { padding: 48px 28px; border-radius: var(--radius-lg); }
    .cta-watermark { display: none; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand { align-items: center; }

    .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .pricing-grid { max-width: 100%; }
}