/* ============================================
   BART MARKETING - DARK THEME
   Inspired by opal.so
   ============================================ */

:root {
    --blue: #479ed8;
    --blue-dark: #3578a8;
    --blue-glow: rgba(71, 158, 216, 0.15);
    --blue-glow-strong: rgba(71, 158, 216, 0.3);
    --teal: #76d7c4;
    --teal-glow: rgba(118, 215, 196, 0.15);
    --yellow: #e8a317;
    --coral: #f1948a;

    --bg: #0a0e17;
    --bg-surface: #0f1420;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);

    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-faint: rgba(255, 255, 255, 0.25);
    --white: #ffffff;

    --shadow-glow: 0 0 60px rgba(71, 158, 216, 0.08);
    --shadow-glow-strong: 0 0 80px 20px rgba(71, 158, 216, 0.12);

    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 0 20px rgba(71, 158, 216, 0.2);
}

.btn-primary:hover {
    background: #52aae4;
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(71, 158, 216, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background: var(--bg-card-hover);
    border-color: var(--blue);
    color: var(--white);
}

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

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(71, 158, 216, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 32px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--teal);
}

.hero h1 {
    margin-bottom: 24px;
    max-width: 800px;
}

.hero h1 .highlight {
    color: var(--blue);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(71, 158, 216, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-stats {
    display: flex;
    gap: 64px;
    margin-top: 80px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Phone Frame - iPhone 15 Pro */
.phone-frame {
    width: 280px;
    background: #1a1a1e;
    border-radius: 48px;
    padding: 6px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 25px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.dynamic-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    aspect-ratio: 1260 / 2736;
    position: relative;
}

/* Screenshot image in phone frame */
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   SIMPLIFIED APP MOCKUPS (CSS placeholders)
   ============================================ */
.app-landing {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
    background: linear-gradient(180deg, #191e29 0%, #141820 100%);
}

.app-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    flex-shrink: 0;
}

.app-logo svg {
    width: 100%;
    height: 100%;
}

.app-title {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.app-subtitle {
    color: rgba(255,255,255,0.45);
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 220px;
}

.app-swipe-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.swipe-arrow {
    width: 20px;
    height: 20px;
    animation: float 2.5s ease-in-out infinite;
}

.swipe-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-6px); opacity: 1; }
}

/* Simplified categorise mockup */
.mock-categorise {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 14px;
    gap: 10px;
    background: #191e29;
}

.mock-header {
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-header-title {
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
}

.mock-header-sub {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.625rem;
}

.mock-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.mock-dot.green { background: var(--teal); box-shadow: 0 0 6px var(--teal-glow); }
.mock-dot.red { background: var(--coral); }

.mock-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.mock-msg {
    display: flex;
    gap: 8px;
}

.mock-avatar {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.mock-avatar svg {
    width: 100%;
    height: 100%;
}

.mock-avatar.user {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-avatar.user span {
    color: white;
    font-size: 0.5rem;
    font-weight: 600;
}

.mock-bubble {
    flex: 1;
}

.mock-bubble-meta {
    font-size: 0.5rem;
    margin-bottom: 2px;
}

.mock-bubble-meta .name {
    color: var(--white);
    font-weight: 600;
}

.mock-bubble-meta .time {
    color: var(--text-muted);
    margin-left: 4px;
}

.mock-bubble-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.625rem;
    line-height: 1.4;
}

.mock-transaction {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px;
}

.mock-txn-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.mock-txn-name {
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
}

.mock-txn-amount {
    color: var(--teal);
    font-size: 0.8125rem;
    font-weight: 700;
}

.mock-txn-date {
    color: var(--text-muted);
    font-size: 0.5rem;
    margin-bottom: 8px;
}

.mock-pills {
    display: flex;
    gap: 4px;
}

.mock-pill {
    flex: 1;
    padding: 5px 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    text-align: center;
    font-size: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
}

.mock-pill.income { color: var(--blue); border-color: rgba(71,158,216,0.2); }
.mock-pill.allowable { color: var(--teal); border-color: rgba(118,215,196,0.2); }
.mock-pill.disallow { color: var(--coral); border-color: rgba(241,148,138,0.2); }

.mock-input {
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 0.6875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-send {
    width: 16px;
    height: 16px;
    color: var(--blue);
}

/* All-done mockup */
.mock-alldone {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 14px;
    gap: 10px;
    background: #191e29;
}

.mock-alldone-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trust-bar .container {
    text-align: center;
}

.trust-bar p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-items span {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-items span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--teal-glow);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES - BENTO GRID
   ============================================ */
.features {
    padding: 120px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 215, 196, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(71, 158, 216, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(71, 158, 216, 0.1);
    border: 1px solid rgba(71, 158, 216, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--blue);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.125rem;
    position: relative;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    position: relative;
}

/* ============================================
   APP SHOWCASE
   ============================================ */
.app-showcase {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(71, 158, 216, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.showcase-tab {
    padding: 10px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.showcase-tab:hover {
    background: var(--bg-card-hover);
    color: var(--white);
    border-color: var(--border-light);
}

.showcase-tab.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 0 20px rgba(71, 158, 216, 0.2);
}

.showcase-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.showcase-phone {
    width: 270px;
    background: #1a1a1e;
    border-radius: 46px;
    padding: 6px;
    flex-shrink: 0;
    box-shadow:
        0 25px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}

.showcase-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 500px;
    background: radial-gradient(circle, rgba(71, 158, 216, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.showcase-screen {
    background: #000;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1260 / 2736;
}

.showcase-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-info {
    max-width: 400px;
}

.showcase-info h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.showcase-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.showcase-features {
    list-style: none;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.showcase-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--teal-glow);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 120px 0;
    border-top: 1px solid var(--border-subtle);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(71, 158, 216, 0.1);
    border: 1px solid rgba(71, 158, 216, 0.2);
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-content h3 {
    margin-bottom: 8px;
    font-size: 1.375rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   ELIGIBILITY CHECKER
   ============================================ */
.eligibility {
    padding: 120px 0;
    border-top: 1px solid var(--border-subtle);
}

.eligibility-container {
    max-width: 600px;
    margin: 0 auto;
}

.eligibility-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}

.eligibility-start .eligibility-icon {
    width: 72px;
    height: 72px;
    background: rgba(71, 158, 216, 0.1);
    border: 1px solid rgba(71, 158, 216, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.eligibility-start .eligibility-icon svg {
    width: 32px;
    height: 32px;
    color: var(--blue);
}

.eligibility-start h3 { font-size: 1.5rem; margin-bottom: 12px; }
.eligibility-start p { color: var(--text-secondary); margin-bottom: 24px; max-width: 400px; margin-left: auto; margin-right: auto; }

.eligibility-skip {
    display: block;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.eligibility-skip:hover { color: var(--blue); }

.eligibility-progress {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    margin-bottom: 32px;
    overflow: hidden;
}

.eligibility-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.eligibility-question { animation: fadeIn 0.3s ease; }
.eligibility-question h4 { font-size: 1.25rem; margin-bottom: 8px; }
.eligibility-question p { color: var(--text-secondary); font-size: 0.9375rem; margin-bottom: 24px; }
.eligibility-question p a { color: var(--blue); text-decoration: underline; }
.eligibility-question p a:hover { color: #52aae4; }

.eligibility-options { display: flex; flex-direction: column; gap: 10px; }

.eligibility-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.eligibility-option:hover {
    border-color: rgba(71, 158, 216, 0.3);
    background: rgba(71, 158, 216, 0.05);
}

.eligibility-option-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.eligibility-option:hover .eligibility-option-indicator { border-color: var(--blue); }
.eligibility-option-text { flex: 1; }
.eligibility-option-text strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 2px; }
.eligibility-option-text span { font-size: 0.875rem; color: var(--text-secondary); }

.eligibility-option.selected { border-color: var(--blue); background: rgba(71, 158, 216, 0.08); }
.eligibility-option.selected .eligibility-option-indicator { border-color: var(--blue); background: var(--blue); }
.eligibility-option.selected .eligibility-option-indicator::after { content: ''; width: 8px; height: 8px; background: var(--white); border-radius: 50%; }

.eligibility-result { animation: fadeIn 0.3s ease; }
.result-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.result-icon.success { background: rgba(118, 215, 196, 0.1); border: 1px solid rgba(118, 215, 196, 0.15); }
.result-icon.success svg { width: 36px; height: 36px; color: var(--teal); }
.result-icon.warning { background: rgba(232, 163, 23, 0.1); border: 1px solid rgba(232, 163, 23, 0.15); }
.result-icon.warning svg { width: 36px; height: 36px; color: var(--yellow); }
.eligibility-result h3 { font-size: 1.5rem; margin-bottom: 12px; }
.eligibility-result.eligible h3 { color: var(--blue); }
.eligibility-result p { color: var(--text-secondary); margin-bottom: 24px; max-width: 400px; margin-left: auto; margin-right: auto; }

.ineligibility-reasons { list-style: none; text-align: left; background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 24px; }
.ineligibility-reasons li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); color: var(--text-primary); font-size: 0.9375rem; }
.ineligibility-reasons li:last-child { border-bottom: none; }
.ineligibility-reasons li::before { content: '\00d7'; color: var(--coral); font-weight: 700; font-size: 1.125rem; line-height: 1.2; }

.eligibility-waitlist { background: rgba(71, 158, 216, 0.05); border: 1px solid rgba(71, 158, 216, 0.1); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.eligibility-waitlist p { margin-bottom: 16px; color: var(--text-primary); font-weight: 500; }

.waitlist-form { display: flex; gap: 12px; }
.waitlist-input { flex: 1; padding: 12px 16px; border: 1px solid var(--border-subtle); border-radius: 50px; font-size: 0.9375rem; background: rgba(255,255,255,0.04); color: var(--white); }
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-input:focus { outline: none; border-color: var(--blue); }

.eligibility-restart { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: var(--text-muted); font-size: 0.875rem; cursor: pointer; transition: color 0.2s; }
.eligibility-restart:hover { color: var(--blue); }

.eligibility-alternative { text-align: center; margin-top: 32px; }
.eligibility-alternative p { color: var(--text-muted); margin-bottom: 12px; }

.eligibility-note { display: block; margin-top: 4px; font-size: 0.8125rem; color: var(--blue); font-style: italic; }

.waitlist-success { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--teal); font-weight: 500; }
.waitlist-success svg { width: 20px; height: 20px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .eligibility-card { padding: 32px 24px; }
    .waitlist-form { flex-direction: column; }
    .eligibility-options { gap: 8px; }
    .eligibility-option { padding: 14px 16px; }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 120px 0;
    border-top: 1px solid var(--border-subtle);
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.pricing-header { margin-bottom: 32px; }

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price .currency { font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); margin-top: 8px; }
.price .amount { font-size: 5rem; font-weight: 700; color: var(--white); line-height: 1; }
.price .period { font-size: 1.25rem; color: var(--text-muted); align-self: flex-end; margin-bottom: 12px; }
.price-annual { color: var(--text-muted); margin-top: 8px; }

.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg { width: 18px; height: 18px; color: var(--teal); min-width: 18px; }

.pricing-note { margin-top: 16px; color: var(--text-muted); font-size: 0.875rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(71, 158, 216, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta h2 { margin-bottom: 16px; position: relative; }
.cta p { color: var(--text-secondary); font-size: 1.25rem; margin-bottom: 32px; position: relative; }
.cta .btn { position: relative; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p { color: var(--text-muted); margin-top: 16px; max-width: 280px; font-size: 0.875rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-links h4 { color: var(--text-secondary); margin-bottom: 20px; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.footer-company {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-stats { gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-content { flex-direction: column; gap: 48px; }
    .showcase-info { text-align: center; max-width: 100%; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 120px 0 80px; }
    .hero-cta { flex-direction: column; width: 100%; max-width: 320px; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .step { flex-direction: column; text-align: center; align-items: center; }
    .trust-items { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .phone-frame { width: 240px; border-radius: 42px; }
    .phone-frame .dynamic-island { top: 14px; width: 72px; height: 20px; }
    .phone-screen { border-radius: 36px; }
    .showcase-phone { width: 230px; border-radius: 42px; }
    .showcase-phone .dynamic-island { top: 14px; width: 72px; height: 20px; }
    .showcase-screen { border-radius: 36px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn-large { padding: 14px 28px; font-size: 0.9375rem; }
    .phone-frame { width: 220px; border-radius: 38px; }
    .phone-frame .dynamic-island { top: 12px; width: 64px; height: 18px; }
    .phone-screen { border-radius: 32px; }
    .showcase-phone { width: 210px; border-radius: 38px; }
    .showcase-phone .dynamic-island { top: 12px; width: 64px; height: 18px; }
    .showcase-screen { border-radius: 32px; }
    .pricing-card { padding: 32px 20px; }
    .price .amount { font-size: 4rem; }
    .showcase-tabs { gap: 4px; }
    .showcase-tab { padding: 8px 14px; font-size: 0.75rem; }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cookie-banner-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    z-index: 9999;
    padding: 24px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--blue);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #52aae4;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 10px 22px;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.cookie-manage-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8125rem;
    cursor: pointer;
    padding: 0;
    margin-top: 12px;
    transition: color 0.2s;
    text-decoration: underline;
}

.cookie-manage-link:hover {
    color: var(--blue);
}

.cookie-preferences {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.cookie-preferences.visible {
    display: block;
}

.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 2px;
}

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

.cookie-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
    margin-left: 16px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    bottom: 3px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: rgba(71, 158, 216, 0.3);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(18px);
    background: var(--blue);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-save-prefs {
    margin-top: 16px;
    text-align: right;
}

@media (max-width: 768px) {
    .cookie-banner-main {
        flex-direction: column;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-banner .btn {
        flex: 1;
    }
}
