/* ==================================================
   ECOMNIGHTHQ — ABOUT PAGE STYLESHEET
   Premium Design System Matching Main Site
   ================================================== */

:root {
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    --font-mono: 'Inter Tight', monospace;
    --nav-height: 80px;
    --ticker-height: 34px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

[data-theme="dark"] {
    --bg-void: #000000;
    --bg-surface: rgba(8, 8, 12, 0.85);
    --bg-glass: rgba(12, 12, 16, 0.5);
    --bg-glass-hover: rgba(18, 18, 24, 0.6);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0BC;
    --text-muted: #6B6B78;
    --accent: #4D7CFF;
    --accent-dim: rgba(77, 124, 255, 0.15);
    --accent-glow: rgba(77, 124, 255, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.15);
    --green: #34D399;
    --green-dim: rgba(52, 211, 153, 0.1);
    --panel-bg: rgba(10, 10, 14, 0.9);
    --ticker-bg: rgba(5, 5, 8, 0.95);
    --nav-scrolled-bg: rgba(5, 5, 8, 0.85);
    --mobile-menu-bg: rgba(0, 0, 0, 0.95);
    --btn-primary-bg: #FFFFFF;
    --btn-primary-color: #000000;
    --btn-ghost-bg: rgba(255, 255, 255, 0.03);
    --btn-ghost-border: rgba(255, 255, 255, 0.1);
    --btn-ghost-hover-bg: rgba(255, 255, 255, 0.06);
    --metric-card-bg: rgba(255, 255, 255, 0.02);
    --logo-svg-color: #FFFFFF;
}

[data-theme="light"] {
    --bg-void: #F8F9FC;
    --bg-surface: rgba(255, 255, 255, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(255, 255, 255, 0.85);
    --text-primary: #0F1419;
    --text-secondary: #536471;
    --text-muted: #8899A6;
    --accent: #2563EB;
    --accent-dim: rgba(37, 99, 235, 0.1);
    --accent-glow: rgba(37, 99, 235, 0.3);
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-glass: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    --green: #059669;
    --green-dim: rgba(5, 150, 105, 0.08);
    --panel-bg: rgba(255, 255, 255, 0.95);
    --ticker-bg: rgba(255, 255, 255, 0.98);
    --nav-scrolled-bg: rgba(255, 255, 255, 0.9);
    --mobile-menu-bg: rgba(255, 255, 255, 0.98);
    --btn-primary-bg: #0F1419;
    --btn-primary-color: #FFFFFF;
    --btn-ghost-bg: rgba(0, 0, 0, 0.03);
    --btn-ghost-border: rgba(0, 0, 0, 0.1);
    --btn-ghost-hover-bg: rgba(0, 0, 0, 0.06);
    --metric-card-bg: rgba(0, 0, 0, 0.02);
    --logo-svg-color: #0F1419;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg-void); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
img, video { max-width: 100%; display: block; }

/* Custom Cursor */
.custom-cursor { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 99999; }
.cursor-dot { position: absolute; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-ring { position: absolute; width: 36px; height: 36px; border: 1.5px solid var(--accent); border-radius: 50%; opacity: 0.5; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, opacity 0.3s; }
@media (max-width: 1024px) { .custom-cursor { display: none; } body, a, button { cursor: auto; } }

/* Ticker */
.top-ticker { position: fixed; top: 0; left: 0; width: 100%; height: var(--ticker-height); background: var(--ticker-bg); border-bottom: 1px solid var(--border-subtle); z-index: 1000; overflow: hidden; backdrop-filter: blur(10px); }
.ticker-track { display: flex; align-items: center; height: 100%; animation: tickerScroll 40s linear infinite; white-space: nowrap; gap: 24px; padding: 0 24px; }
.ticker-track span { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ticker-track .dot { color: var(--accent); font-size: 8px; }
.ticker-track .icon-sm { width: 12px; height: 12px; color: var(--accent); }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Background */
.bg-elements { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.bg-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px), linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.3; }
.bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; }
.bg-glow-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -200px; }
.bg-glow-2 { width: 500px; height: 500px; background: #8B5CF6; bottom: -150px; left: -150px; }
.bg-glow-accent { width: 400px; height: 400px; background: var(--green); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.05; }

/* About Main */
.about-main { position: relative; z-index: 1; padding-top: calc(var(--ticker-height) + var(--nav-height) + 40px); }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 100px; background: var(--accent-dim); border: 1px solid rgba(77, 124, 255, 0.2); font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 20px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.5px; }
.section-badge svg { width: 14px; height: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: var(--text-primary); }
.gradient-text { background: linear-gradient(135deg, var(--accent), #8B5CF6, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    border: none;
    font-family: var(--font-body);
}
.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-color);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.btn-ghost {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--btn-ghost-border);
    color: var(--text-primary);
}
.btn-ghost:hover {
    background: var(--btn-ghost-hover-bg);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn:hover .btn-shine {
    left: 100%;
}
.btn-text {
    position: relative;
    z-index: 1;
}

/* Hero */
.about-hero { padding: 20px 0 100px; }
.about-hero-container { max-width: 800px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; text-align: center; }
.about-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 100px; background: var(--green-dim); border: 1px solid rgba(52, 211, 153, 0.2); font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 24px; font-family: var(--font-mono); }
.about-hero-badge svg { width: 14px; height: 14px; }
.about-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.15; margin-bottom: 20px; color: var(--text-primary); }
.about-hero-title .ah-size-lg { font-size: 1em; display: inline-block; }
.about-hero-title .ah-size-md { font-size: 0.68em; display: inline-block; }
.about-hero-title .ah-size-sm { font-size: 0.45em; display: inline-block; }
.about-hero-title .ah-size-xs { font-size: 0.32em; display: inline-block; }
.about-hero-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin: 0 auto 32px; max-width: 520px; }
.about-hero-cta, .about-hero-buttons { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.about-hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid var(--border-subtle); justify-content: center; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-number { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text-primary); }
.hero-stat-label { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.5px; }

/* Video Wrappers */
.about-hero-video { position: relative; }
.video-wrapper { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-glass); background: var(--bg-glass); aspect-ratio: 9/16; max-height: 560px; margin: 0 auto; }
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease-out-expo); z-index: 2; }
.video-play-btn svg { width: 24px; height: 24px; color: #FFFFFF; margin-left: 3px; }
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: rgba(255, 255, 255, 0.25); }
.video-play-btn.hidden { opacity: 0; pointer-events: none; }
.video-glow { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 80%; height: 60px; background: var(--accent-glow); filter: blur(40px); opacity: 0.3; border-radius: 50%; }

/* Results */
.about-results { padding: 100px 0; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.result-card { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-glass); background: var(--bg-glass); transition: all 0.4s var(--ease-out-expo); opacity: 0; transform: translateY(30px); animation: fadeInUp 0.6s var(--ease-out-expo) forwards; }
.result-card:nth-child(1) { animation-delay: 0s; }
.result-card:nth-child(2) { animation-delay: 0.1s; }
.result-card:nth-child(3) { animation-delay: 0.2s; }
.result-card:nth-child(4) { animation-delay: 0.3s; }
.result-card:nth-child(5) { animation-delay: 0.4s; }
.result-card:nth-child(6) { animation-delay: 0.5s; }
.result-card:nth-child(7) { animation-delay: 0.6s; }
.result-card:nth-child(8) { animation-delay: 0.7s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.result-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.result-card-image { position: relative; aspect-ratio: 9/16; overflow: hidden; }
.result-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.result-card:hover .result-card-image img { transform: scale(1.05); }
.result-card-overlay { position: absolute; top: 12px; left: 12px; z-index: 2; }
.result-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; font-family: var(--font-mono); backdrop-filter: blur(10px); }
.live-badge { background: rgba(52, 211, 153, 0.15); border: 1px solid rgba(52, 211, 153, 0.3); color: var(--green); }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
.result-card-info { padding: 16px; background: var(--panel-bg); border-top: 1px solid var(--border-subtle); }
.result-brand-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.result-metrics { display: flex; gap: 16px; }
.result-metric { display: flex; flex-direction: column; gap: 2px; }
.metric-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; font-family: var(--font-mono); letter-spacing: 0.5px; }
.metric-value { font-size: 14px; font-weight: 600; color: var(--text-primary); }

/* Testimonials */
.about-testimonials { padding: 100px 0; }
.testimonials-showcase { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.testimonial-video-card { position: sticky; top: 140px; display: flex; flex-direction: column; align-items: center; }
.testimonial-video-wrapper { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-glass); background: #000; aspect-ratio: 9/16; max-height: 500px; width: auto; max-width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.testimonial-video-wrapper video { width: 100%; height: 100%; object-fit: contain; }
.testimonial-video-info { padding: 20px; text-align: center; max-width: 320px; margin: 0 auto; }
.testimonial-video-info h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.testimonial-video-info p { font-size: 14px; color: var(--text-secondary); }
.testimonials-grid { display: flex; flex-direction: column; gap: 20px; }
.testimonial-card { padding: 28px; border-radius: 16px; background: var(--bg-glass); border: 1px solid var(--border-glass); transition: all 0.3s var(--ease-out-expo); opacity: 0; transform: translateY(20px); animation: fadeInUp 0.6s var(--ease-out-expo) forwards; }
.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }
.testimonial-stars { color: #FBBF24; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(77, 124, 255, 0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--accent); }
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }

/* Founder */
.about-founder { padding: 100px 0; }
.founder-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.founder-video-wrapper { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-glass); background: var(--bg-glass); aspect-ratio: 9/16; max-height: 520px; margin: 0 auto; }
.founder-video-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.founder-info-side .section-badge { margin-bottom: 16px; }
.founder-info-side .section-title { text-align: left; margin-bottom: 20px; }
.founder-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.founder-identity { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.founder-photo-wrap { width: 76px; height: 76px; border-radius: 18px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--border-glass); background: var(--bg-glass); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.founder-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; font-family: var(--font-display); background: linear-gradient(135deg, var(--accent), #8B5CF6); color: #fff; }
.founder-identity-text { display: flex; flex-direction: column; gap: 2px; }
.founder-name { font-size: 17px; font-weight: 700; color: var(--text-primary); font-family: var(--font-display); }
.founder-role { font-size: 13px; color: var(--text-secondary); }
.founder-achievements { display: flex; flex-direction: column; gap: 20px; }
.achievement-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 12px; background: var(--bg-glass); border: 1px solid var(--border-glass); transition: all 0.3s; }
.achievement-item:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); }
.achievement-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.achievement-icon svg { width: 20px; height: 20px; color: var(--accent); }
.achievement-text { display: flex; flex-direction: column; gap: 2px; }
.achievement-number { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-primary); }
.achievement-label { font-size: 13px; color: var(--text-muted); }

/* Process */
.about-process { padding: 100px 0; }
.process-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.process-line { position: absolute; left: 32px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent), var(--accent-dim), transparent); }
.process-step { display: flex; gap: 24px; margin-bottom: 40px; position: relative; opacity: 0; transform: translateY(20px); animation: fadeInUp 0.6s var(--ease-out-expo) forwards; }
.process-step:nth-child(2) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(4) { animation-delay: 0.3s; }
.process-step:nth-child(5) { animation-delay: 0.4s; }
.process-step:nth-child(6) { animation-delay: 0.5s; }
.process-step:last-child { margin-bottom: 0; }
.step-number { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-glass); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--accent); flex-shrink: 0; position: relative; z-index: 2; }
.step-content { flex: 1; padding: 20px 24px; border-radius: 16px; background: var(--bg-glass); border: 1px solid var(--border-glass); transition: all 0.3s; }
.step-content:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); }
.step-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.step-icon svg { width: 20px; height: 20px; color: var(--accent); }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Story */
.about-story { padding: 100px 0; }
.story-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.story-content .section-badge { margin-bottom: 16px; }
.story-content .section-title { text-align: left; margin-bottom: 32px; }
.story-blocks { display: flex; flex-direction: column; gap: 24px; }
.story-block { display: flex; gap: 16px; padding: 20px; border-radius: 14px; background: var(--bg-glass); border: 1px solid var(--border-glass); transition: all 0.3s; }
.story-block:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); }
.story-block-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.story-block-icon svg { width: 20px; height: 20px; color: var(--accent); }
.story-block-content h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.story-block-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.story-visual { display: flex; align-items: center; justify-content: center; }
.story-stats-card { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 32px; border-radius: 20px; background: var(--bg-glass); border: 1px solid var(--border-glass); width: 100%; }
.story-stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 20px; border-radius: 12px; background: var(--metric-card-bg); border: 1px solid var(--border-subtle); }
.story-stat-number { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text-primary); }
.story-stat-label { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.5px; }

/* Action */
.about-action { padding: 100px 0; }
.action-video-showcase { max-width: 500px; margin: 0 auto; }
.action-video-wrapper { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-glass); background: var(--bg-glass); aspect-ratio: 9/16; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4); }
.action-video-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.action-play-btn { width: 80px; height: 80px; }
.action-play-btn svg { width: 28px; height: 28px; }
.play-btn-ring { position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.2); animation: ringPulse 2s infinite; }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0; } }

/* CTA */
.about-cta { padding: 100px 0; }
.cta-card { position: relative; padding: 60px; border-radius: 24px; background: var(--bg-glass); border: 1px solid var(--border-glass); text-align: center; overflow: hidden; }
.cta-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: var(--accent-glow); border-radius: 50%; filter: blur(100px); opacity: 0.2; }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: var(--text-primary); }
.cta-desc { font-size: 16px; color: var(--text-secondary); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.cta-trust { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-family: var(--font-mono); }
.trust-item svg { width: 16px; height: 16px; color: var(--green); }

/* ==================================================
   PREMIUM FOOTER
   ================================================== */
.premium-footer {
    position: relative;
    padding: 0 0 2rem;
    background: var(--bg-void);
    overflow: hidden;
}

/* Animated Gradient Divider */
.footer-divider {
    position: relative;
    width: 100%;
    height: 2px;
    margin-bottom: 4rem;
    overflow: hidden;
}

.footer-divider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), var(--green), var(--accent), transparent);
    animation: footerDividerSlide 4s linear infinite;
}

@keyframes footerDividerSlide {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity 0.3s var(--ease-out-expo);
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 10px;
    color: var(--accent);
    border: 1px solid var(--border-glass);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-brand-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 320px;
}

/* Footer Socials */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-muted);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-out-expo);
    text-decoration: none;
}

.footer-social-link:hover {
    color: var(--accent);
    border-color: var(--accent-dim);
    background: var(--accent-dim);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

/* Footer Links Columns */
.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.25s var(--ease-out-expo);
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Footer Contact */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Newsletter Section */
.footer-newsletter {
    margin-bottom: 2.5rem;
}

.footer-newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-newsletter-content {
    flex: 1;
}

.footer-newsletter-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.footer-newsletter-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.footer-newsletter-form {
    flex: 1;
    max-width: 400px;
}

.footer-newsletter-input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-glass-hover);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease-out-expo);
}

.footer-newsletter-input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-primary);
}

.footer-newsletter-input::placeholder {
    color: var(--text-muted);
}

.footer-newsletter-btn {
    position: relative;
    padding: 0.85rem 1.5rem;
    background: var(--accent);
    border: none;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}

.footer-newsletter-btn:hover {
    background: var(--accent-glow);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.footer-newsletter-btn-text,
.footer-newsletter-btn-icon {
    transition: all 0.3s var(--ease-out-expo);
}

.footer-newsletter-btn-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.3s var(--ease-out-expo);
    color: #FFFFFF;
}

.footer-newsletter-btn.success .footer-newsletter-btn-text,
.footer-newsletter-btn.success .footer-newsletter-btn-icon {
    opacity: 0;
    transform: translateY(10px);
}

.footer-newsletter-btn.success .footer-newsletter-btn-success {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.footer-newsletter-btn.success {
    background: var(--green);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* ==================================================
   FOOTER RESPONSIVE
   ================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-grid .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-newsletter-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.75rem 2rem;
    }

    .footer-newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-divider {
        margin-bottom: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-grid .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-container {
        padding: 0 1.25rem;
    }

    .footer-newsletter-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .footer-newsletter-title {
        font-size: 1.1rem;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-newsletter-input-wrap {
        flex-direction: column;
        border-radius: 12px;
    }

    .footer-newsletter-input {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .footer-newsletter-btn {
        width: 100%;
        justify-content: center;
        border-radius: 0 0 10px 10px;
        padding: 0.85rem;
    }

    .footer-socials {
        gap: 0.4rem;
    }

    .footer-social-link {
        width: 34px;
        height: 34px;
    }
}

/* Back to Top */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; border-radius: 12px; background: var(--btn-primary-bg); color: var(--btn-primary-color); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 100; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg { width: 20px; height: 20px; }

/* Responsive */
@media (max-width: 1024px) {
    .about-hero-container { grid-template-columns: 1fr; gap: 40px; }
    .about-hero-video { max-width: 350px; margin: 0 auto; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-showcase { grid-template-columns: 1fr; }
    .testimonial-video-card { position: static; max-width: 350px; margin: 0 auto; }
    .founder-layout { grid-template-columns: 1fr; gap: 40px; }
    .founder-video-side { max-width: 350px; margin: 0 auto; }
    .founder-info-side .section-title { text-align: center; }
    .founder-identity { justify-content: center; text-align: left; }
    .story-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-newsletter { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .about-hero-stats { flex-wrap: wrap; gap: 20px; }
    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .process-step { gap: 16px; }
    .step-number { width: 48px; height: 48px; font-size: 14px; }
    .process-line { left: 24px; }
    .cta-card { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .section-container { padding: 0 16px; }
    .about-hero-container { padding: 0 16px; }
    .results-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .result-card-image { width: 100%; aspect-ratio: 3/4; }
    .result-card-info { padding: 10px; }
    .result-brand-name { font-size: 12px; }
    .testimonial-card { padding: 20px; }
    .about-hero-stats { gap: 16px; }
    .hero-stat-number { font-size: 22px; }
}
/* ===== ABOUT PAGE — MOBILE SLIDERS ===== */
@media (max-width: 768px) {
    .abt-slider-container { position: relative; display: flex; flex-direction: column; }
    .abt-slider-wrap { width: 100%; overflow: hidden; order: 1; }
    .abt-slider-track { position: relative; }

    .abt-slide { width: 100%; display: block; }

    .abt-slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 20px;
        order: 2;
        width: 100%;
        flex-wrap: wrap;
    }

    .abt-slider-arrow {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 50%;
        color: var(--text-primary, #fff);
        cursor: pointer;
        transition: background 0.25s, border-color 0.25s;
        flex-shrink: 0;
    }

    [data-theme="light"] .abt-slider-arrow {
        background: rgba(0,0,0,0.05);
        border-color: rgba(0,0,0,0.12);
        color: var(--text-primary, #111);
    }

    .abt-slider-arrow:hover {
        background: var(--accent, #7c3aed);
        border-color: var(--accent, #7c3aed);
        color: #fff;
    }

    .abt-slider-dots {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .abt-slider-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }

    [data-theme="light"] .abt-slider-dot {
        background: rgba(0,0,0,0.2);
    }

    .abt-slider-dot.active {
        background: var(--accent, #7c3aed);
        transform: scale(1.35);
    }
}
/* ===== RESULTS LIGHTBOX ===== */
#resultsLightbox {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#resultsLightbox.rlb-open {
    opacity: 1;
    pointer-events: all;
}

/* Backdrop */
.rlb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Panel */
.rlb-panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 92vw;
    transform: scale(0.93) translateY(14px);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

#resultsLightbox.rlb-open .rlb-panel {
    transform: scale(1) translateY(0);
}

/* Image wrap */
.rlb-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rlb-img {
    display: block;
    max-height: 84vh;
    max-width: 68vw;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

/* Live badge */
.rlb-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 100px;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: #34D399;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-mono, monospace);
    backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
}

.rlb-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34D399;
    flex-shrink: 0;
    animation: rlbPulse 2s infinite;
}

@keyframes rlbPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.5); }
}

/* Close button — top-right corner of image */
.rlb-close {
    position: absolute;
    top: -13px;
    right: -13px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.rlb-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: scale(1.12) rotate(90deg);
}

/* Nav arrows */
.rlb-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(10px);
}

.rlb-nav:hover {
    background: var(--accent, #4D7CFF);
    border-color: var(--accent, #4D7CFF);
    transform: scale(1.08);
}

/* Counter */
.rlb-footer {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.rlb-counter {
    font-family: var(--font-mono, monospace);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* Cursor hint on cards */
#results .result-card {
    cursor: zoom-in;
}

/* Mobile */
@media (max-width: 768px) {
    .rlb-panel  { gap: 10px; max-width: 96vw; }
    .rlb-nav    { width: 40px; height: 40px; }
    .rlb-img    { max-width: 76vw; max-height: 78vh; }
    .rlb-close  { top: -12px; right: -12px; width: 34px; height: 34px; }
}

@media (max-width: 480px) {
    .rlb-nav    { display: none; }
    .rlb-img    { max-width: 90vw; }
    .rlb-img-wrap { border-radius: 14px; }
}