/* ============================================
   CarOner — Black & Gold Premium Theme
   ============================================ */

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    
    /* Brand Colors — Black & Gold */
    --gold: #D4A843;
    --gold-light: #F0D060;
    --gold-dark: #B8922E;
    --gold-pale: #E8C85A;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4A843 0%, #F0D060 50%, #D4A843 100%);
    --gradient-gold-text: linear-gradient(90deg, #D4A843 0%, #F0D060 40%, #E8C85A 70%, #D4A843 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(240, 208, 96, 0.05));
    --gradient-gold-cta: linear-gradient(135deg, #D4A843 0%, #B8922E 100%);
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 168, 67, 0.25);
    --border-gold-bright: rgba(212, 168, 67, 0.5);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 0 30px rgba(212, 168, 67, 0.1);
    --shadow-gold-strong: 0 8px 30px rgba(212, 168, 67, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 12px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0;
}
.logo-img {
    height: 72px;
    width: auto;
    background: transparent;
    mix-blend-mode: normal;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}
.btn-primary {
    background: var(--gradient-gold-cta);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}
.btn-green {
    background: var(--gradient-gold);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.25);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}
.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
}
.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.05);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-nav { padding: 8px 20px; font-size: 0.85rem; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}
.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.4), transparent);
    top: -150px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.2), transparent);
    bottom: -100px; left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(240, 208, 96, 0.15), transparent);
    top: 50%; left: 40%;
    animation: float 12s ease-in-out infinite;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 67, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 67, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.gradient-text {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-subtitle strong { color: var(--gold-light); }
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-gold);
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-mockup { position: relative; }
.phone-frame {
    width: 280px;
    background: #0a0a0a;
    border-radius: 36px;
    padding: 12px;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 168, 67, 0.08);
    position: relative;
    overflow: hidden;
}
.phone-notch {
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 12px;
}
.phone-screen {
    background: #000;
    border-radius: 24px;
    padding: 20px 16px;
    min-height: 420px;
}
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.app-greeting {
    font-weight: 600;
    font-size: 0.95rem;
}
.app-location {
    font-size: 0.75rem;
    color: var(--gold);
}
.app-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.app-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.app-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 4px;
    background: rgba(212, 168, 67, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.6rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.app-service-item:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--border-gold);
    transform: scale(1.05);
}
.app-icon { font-size: 1.3rem; }
.app-promo {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(240, 208, 96, 0.08));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-light);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    animation: float-card 6s ease-in-out infinite;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}
.card-1 { top: 10%; right: -30px; animation-delay: 0s; }
.card-2 { bottom: 30%; left: -40px; animation-delay: 2s; }
.card-3 { bottom: 10%; right: -20px; animation-delay: 4s; }
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.wheel {
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ============================================
   Sections Common
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-tag-green {
    background: rgba(212, 168, 67, 0.08);
    border-color: var(--border-gold);
    color: var(--gold);
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Problem Section
   ============================================ */
.section-problem {
    background: var(--bg-secondary);
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s;
}
.problem-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.problem-card:hover::before { opacity: 1; }
.problem-icon { font-size: 2.5rem; margin-bottom: 16px; }
.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.problem-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.problem-stat {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   Services Section
   ============================================ */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
}
.tab-btn.active {
    background: var(--gradient-gold);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.25);
    font-weight: 700;
}
.tab-btn:hover:not(.active) {
    border-color: var(--border-gold);
    color: var(--gold);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.services-grid:not(.active) { display: none; }
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
}
.service-card:hover::after { opacity: 1; }
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   How It Works
   ============================================ */
.section-how {
    background: var(--bg-secondary);
}
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}
.step {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.step:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}
.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}
.step-content { flex: 1; }
.step-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { color: var(--text-secondary); font-size: 0.95rem; }
.step-visual { font-size: 2.5rem; flex-shrink: 0; }
.step-connector {
    width: 2px; height: 30px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
}

/* ============================================
   Why CarOner (USP)
   ============================================ */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.usp-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.usp-icon { font-size: 2.5rem; margin-bottom: 16px; }
.usp-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.usp-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   Market Section
   ============================================ */
.section-market {
    background: var(--bg-secondary);
}
.market-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.market-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s;
}
.market-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}
.market-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.market-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.market-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: width 1.5s ease;
}
.market-source {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.market-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.highlight { text-align: center; }
.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}
.highlight-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   Community Section
   ============================================ */
.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.community-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 16px 0 20px;
}
.community-text > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.community-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.community-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}
.community-features .check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.community-features strong { color: var(--text-primary); }

.community-card-stack { position: relative; padding: 20px; }
.c-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    transition: all 0.3s;
}
.c-card:hover {
    border-color: var(--border-gold);
    transform: translateX(8px);
}
.c-card-avatar { font-size: 2rem; flex-shrink: 0; }
.c-card strong { display: block; margin-bottom: 4px; font-size: 0.9rem; }
.c-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 4px; }
.c-stars { font-size: 0.7rem; }

/* ============================================
   Blog Preview
   ============================================ */
.section-blog { background: var(--bg-secondary); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}
.blog-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.blog-thumb {
    height: 180px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.blog-card-body { padding: 24px; }
.blog-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 8px;
}
.blog-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.blog-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}
.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 8px; }
.blog-view-all { text-align: center; margin-top: 40px; }

/* ============================================
   Roadmap
   ============================================ */
.section-roadmap { background: var(--bg-primary); }
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark), rgba(212,168,67,0.2));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -33px; top: 8px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--gold-dark);
}
.timeline-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.5);
}
.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.timeline-phase {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}
.timeline-content h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   CTA / Waitlist
   ============================================ */
.section-cta { padding: 80px 0; }
.cta-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    text-align: center;
    overflow: hidden;
}
.cta-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}
.cta-orb-1 {
    width: 300px; height: 300px;
    background: rgba(212, 168, 67, 0.5);
    top: -100px; left: -50px;
}
.cta-orb-2 {
    width: 300px; height: 300px;
    background: rgba(240, 208, 96, 0.3);
    bottom: -100px; right: -50px;
}
.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.cta-box > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.waitlist-form {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.form-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all 0.3s;
    outline: none;
}
.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}
.form-input::placeholder { color: var(--text-muted); }
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
select.form-input option { background: var(--bg-card); color: var(--text-primary); }
.btn-submit { flex-shrink: 0; white-space: nowrap; }
.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 16px 0 8px;
    line-height: 1.6;
}
.footer-company {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 16px !important;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-2px);
}
.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   Animations
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
}
[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .market-stats { grid-template-columns: repeat(2, 1fr); }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-gold);
    }
    .hamburger { display: flex; }
    .btn-nav { display: none; }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat-divider { display: none; }
    .section { padding: 70px 0; }
    .section-header h2 { font-size: 2rem; }
    .problems-grid,
    .usp-grid,
    .market-stats { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .community-content { grid-template-columns: 1fr; }
    .market-highlights { gap: 30px; }
    .step { flex-direction: column; text-align: center; gap: 16px; }
    .step-number { font-size: 2.5rem; }
    .form-row { flex-direction: column; }
    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .floating-card { display: none; }
    .phone-frame { width: 250px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .services-tabs { gap: 6px; }
    .tab-btn { padding: 8px 16px; font-size: 0.8rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.testimonial-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    font-size: 2rem;
}
.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}
.author-detail {
    color: var(--gold);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   App Features Section
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}
.feature-card p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 750px;
    margin: 48px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.3s;
}
.faq-question:hover {
    color: var(--gold);
}
.faq-icon {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}
.faq-answer p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
}
