/* ============================================================
   DIABLO AI — Landing Page Styles
   diablo-ai.com

   Font: Outfit (Google Fonts) — headlines + body
   Stats: JetBrains Mono (Google Fonts)

   Breakpoints:
   - Mobile first (default)
   - 768px  (tablet)
   - 1024px (desktop)
   - 1200px (wide)
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Brand Colors */
    --diablo-blue: #4A8FE7;
    --diablo-blue-hover: #3A7BD4;
    --diablo-blue-light: rgba(74, 143, 231, 0.15);
    --deep-navy: #0A0F1E;
    --primary-navy: #131B38;
    --mid-navy: #1A2548;
    --light-navy: #212E58;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FB;
    --light-gray: #F5F7FA;
    --border-light: #E5E7EB;
    --text-dark: #1A1A2E;
    --text-body: #374151;
    --text-light: #6B7280;
    --text-muted: #8892A7;
    --text-on-dark: #B0B8C8;

    /* Status Colors */
    --success-green: #22C55E;
    --error-red: #EF4444;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

    /* Spacing */
    --section-py: 64px;
    --section-py-desktop: 96px;
    --container-px: 20px;
    --container-px-desktop: 48px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-medium: 300ms ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--diablo-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

@media (min-width: 1024px) {
    .container {
        padding-left: var(--container-px-desktop);
        padding-right: var(--container-px-desktop);
    }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; }     /* 44px mobile */
h2 { font-size: 1.75rem; }     /* 28px mobile */
h3 { font-size: 1.375rem; }    /* 22px mobile */

@media (min-width: 768px) {
    h1 { font-size: 3.75rem; }  /* 60px tablet */
    h2 { font-size: 2.25rem; }  /* 36px tablet */
}

@media (min-width: 1024px) {
    h1 { font-size: 5rem; }     /* 80px desktop */
    h2 { font-size: 2.5rem; }   /* 40px desktop */
    h3 { font-size: 1.75rem; }  /* 28px desktop */
}

@media (min-width: 1200px) {
    h1 { font-size: 5.5rem; }   /* 88px wide */
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
}

.btn:hover { text-decoration: none; }

.btn-primary {
    background: var(--diablo-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(74, 143, 231, 0.3);
}
.btn-primary:hover {
    background: var(--diablo-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 143, 231, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
    border-color: var(--diablo-blue);
    color: var(--diablo-blue);
}

.btn-white {
    background: var(--white);
    color: var(--deep-navy);
    font-weight: 700;
}
.btn-white:hover {
    background: #F0F4FA;
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; }

.btn-text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    color: var(--diablo-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.btn-text:hover { color: var(--diablo-blue-hover); text-decoration: none; }

/* ============================================================
   SECTION LABELS & COMMON
   ============================================================ */
.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--diablo-blue);
    margin-bottom: 16px;
}

.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

@media (min-width: 1024px) {
    .section {
        padding-top: var(--section-py-desktop);
        padding-bottom: var(--section-py-desktop);
    }
}

.section-light { background: var(--white); }
.section-light-alt { background: var(--off-white); }
.section-dark { background: var(--deep-navy); }

.section-headline {
    color: var(--text-dark);
    margin-bottom: 20px;
}
.section-headline-light { color: var(--white); }

.section-body {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-body);
    max-width: 680px;
    margin-bottom: 48px;
}
.section-body-light { color: var(--text-on-dark); }

.section-cta {
    margin-top: 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .section-body { font-size: 18px; }
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition-medium), box-shadow var(--transition-medium), padding var(--transition-medium);
}

.site-header.scrolled {
    background: var(--deep-navy);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .header-inner { padding: 0 var(--container-px-desktop); }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo:hover { text-decoration: none; }

.logo-svg {
    height: 64px;
    width: auto;
    display: block;
}

/* Footer logo */
.footer-logo-svg {
    height: 58px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.header-cta { flex-shrink: 0; }

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--deep-navy);
    padding-top: 80px;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.7);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 32px;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 64px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.hero-content {
    max-width: 700px;
}

/* Hero section label — larger and bolder */
.hero .section-label {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .hero .section-label {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

/* Hero headline — BIG and commanding */
.hero-headline {
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.0;
    letter-spacing: -0.03em;
}

/* Hero subhead — noticeably larger */
.hero-subhead {
    font-size: 20px;
    line-height: 1.55;
    color: var(--text-on-dark);
    margin-bottom: 40px;
    max-width: 580px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-subhead {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .hero-subhead {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (min-width: 1200px) {
    .hero-subhead {
        font-size: 26px;
    }
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================================
   HERO FEED — Premium Notification Timeline
   ============================================================ */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-feed {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    gap: 0;
}

/* Ambient glow behind the card stack */
.feed-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(74, 143, 231, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Each feed item: timeline + card */
.feed-item {
    display: flex;
    gap: 0;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    position: relative;
    z-index: 1;
}

.feed-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Vertical timeline connector */
.feed-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32px;
    flex-shrink: 0;
    padding-top: 20px;
}

.timeline-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-dot-blue {
    background: rgba(74, 143, 231, 0.12);
    border: 1.5px solid rgba(74, 143, 231, 0.35);
}

.timeline-dot-green {
    background: rgba(34, 197, 94, 0.12);
    border: 1.5px solid rgba(34, 197, 94, 0.35);
}

.timeline-line {
    width: 1.5px;
    flex: 1;
    min-height: 12px;
    background: linear-gradient(to bottom, rgba(74, 143, 231, 0.3), rgba(74, 143, 231, 0.08));
}

/* ---- Feed Card (glassmorphism base) ---- */
.feed-card {
    flex: 1;
    background: rgba(19, 27, 56, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(74, 143, 231, 0.1);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    margin-bottom: 8px;
}

.feed-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border-color: rgba(74, 143, 231, 0.25);
}

/* Highlight card (AI Engaged) */
.feed-card-highlight {
    border-color: rgba(74, 143, 231, 0.25);
    box-shadow: 0 4px 24px rgba(74, 143, 231, 0.08);
}

/* Success card (Appointment Booked) */
.feed-card-success {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.06);
}

.feed-card-success:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
}

/* ---- Card Header ---- */
.feed-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 0;
}

.feed-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(176, 184, 200, 0.7);
}

.feed-label-green { color: rgba(34, 197, 94, 0.8); }

/* Status badges */
.feed-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 4px;
}

.feed-badge-blue {
    background: rgba(74, 143, 231, 0.15);
    color: var(--diablo-blue);
    border: 1px solid rgba(74, 143, 231, 0.25);
}

.feed-badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: var(--success-green);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

/* Time pill (12s counter) */
.feed-time-pill {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--diablo-blue);
    background: rgba(74, 143, 231, 0.1);
    border: 1px solid rgba(74, 143, 231, 0.2);
    padding: 2px 10px;
    border-radius: 20px;
    line-height: 1.4;
}

/* ---- Card Body ---- */
.feed-card-body {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
}

.feed-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feed-icon-blue {
    background: rgba(74, 143, 231, 0.1);
    border: 1px solid rgba(74, 143, 231, 0.15);
}

.feed-icon-green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.feed-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.feed-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    line-height: 1.3;
}

.feed-meta {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.feed-meta-quote {
    font-style: italic;
    color: rgba(176, 184, 200, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ---- Card Footer ---- */
.feed-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.feed-source {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(136, 146, 167, 0.6);
}

.feed-source svg { opacity: 0.5; }

.feed-channel {
    font-size: 11px;
    font-weight: 500;
    color: rgba(136, 146, 167, 0.5);
}

/* Trust Strip */
.trust-strip {
    background: var(--primary-navy);
    padding: 14px 0;
    margin-top: auto;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.55);
    padding: 0 20px;
    white-space: nowrap;
}

.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--diablo-blue);
    flex-shrink: 0;
    opacity: 0.7;
}

.trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .trust-items {
        gap: 8px;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        padding: 0 12px;
        font-size: 12px;
    }
}

/* ============================================================
   SECTION 2: THE PROBLEM — Layout with Video
   ============================================================ */
.problem-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .problem-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
    }
}

.problem-content {
    min-width: 0;
}

.problem-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-watermark-wrap {
    position: relative;
    display: inline-block;
    max-width: 520px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
}

.video-logo-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #000;
    padding: 8px 16px 10px 16px;
    z-index: 2;
    line-height: 0;
}

.video-logo-overlay svg {
    width: 100px;
    height: auto;
    display: block;
}

.problem-video-player {
    width: 100%;
    max-width: 520px;
    border-radius: 0;
    display: block;
}

@media (min-width: 1024px) {
    .problem-video-player {
        max-width: 100%;
    }
}

/* ============================================================
   STATS ROW (Used in Problem + Results sections)
   ============================================================ */
.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .stats-row { grid-template-columns: repeat(3, 1fr); }
    .stats-row-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .problem-content .stats-row { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .problem-content .stats-row { grid-template-columns: repeat(3, 1fr); }
    .problem-content .stat-card { padding: 16px 8px; }
    .problem-content .stat-number { font-size: 2.5rem; }
    .stats-row-4 { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--diablo-blue);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .stat-number { font-size: 3.5rem; }
}

.stat-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.stat-source {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* ============================================================
   SECTION 3: PRODUCT CARDS
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
    background: var(--primary-navy);
    border: 1px solid var(--mid-navy);
    border-radius: 12px;
    padding: 28px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--diablo-blue);
}

.product-icon { display: none; }

.product-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.15;
}

/* Product card header with spot image */
.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.product-header .product-name {
    margin-bottom: 0;
}

.product-spot-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    margin-top: -8px;
}

@media (min-width: 1024px) {
    .product-spot-img {
        width: 120px;
        height: 120px;
    }
}

.product-price {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--diablo-blue);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-on-dark);
    margin-bottom: 16px;
}

.product-stat {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--diablo-blue);
    background: var(--diablo-blue-light);
    padding: 4px 10px;
    border-radius: 4px;
}

.platform-replaces {
    text-align: center;
    color: var(--text-on-dark);
    font-size: 16px;
    margin-top: 40px;
    font-style: italic;
}

/* ============================================================
   SECTION 4: CHAT COMPARISON
   ============================================================ */
.chat-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .chat-comparison { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* --- Generic side: muted, deflated --- */
.chat-column {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.chat-generic {
    border: 1px solid #D1D5DB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    opacity: 0.85;
    filter: saturate(0.4);
}

/* --- Diablo side: vibrant, winning --- */
.chat-diablo {
    border: 2px solid var(--diablo-blue);
    box-shadow: 0 8px 40px rgba(74, 143, 231, 0.2), 0 2px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .chat-diablo {
        transform: scale(1.03);
    }
    .chat-diablo:hover {
        transform: scale(1.045);
    }
}

/* --- Phone-style header bar --- */
.chat-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.chat-header::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chat-header-generic {
    background: #E5E7EB;
}
.chat-header-generic::before {
    background: #9CA3AF;
}

.chat-header-diablo {
    background: linear-gradient(135deg, var(--diablo-blue) 0%, #3A7BD5 100%);
}
.chat-header-diablo::before {
    background: var(--success-green);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 4px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 12px rgba(34, 197, 94, 0.8); }
}

.chat-label {
    font-weight: 700;
    font-size: 15px;
}

.chat-header-generic .chat-label { color: #6B7280; }
.chat-header-diablo .chat-label { color: var(--white); }

.ai-pulse {
    display: none; /* replaced by ::before dot */
}

/* --- Chat message area --- */
.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--white);
    min-height: 200px;
}

.chat-generic .chat-messages { background: #F9FAFB; }
.chat-diablo .chat-messages { background: #FAFCFF; }

/* --- Bubbles --- */
.chat-bubble {
    max-width: 88%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.55;
    position: relative;
}

.bubble-sender {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    opacity: 0.6;
}

.bubble-customer {
    background: #F3F4F6;
    color: var(--text-dark);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bubble-generic {
    background: #E5E7EB;
    color: var(--text-body);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.bubble-diablo {
    background: rgba(74, 143, 231, 0.08);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border-left: 3px solid var(--diablo-blue);
}

.bubble-no-reply {
    opacity: 0.45;
    font-style: italic;
}

/* --- Outcome badges --- */
.chat-outcome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.chat-outcome svg {
    flex-shrink: 0;
}

.outcome-lost {
    background: #FEF2F2;
    color: #DC2626;
    border-top: 1px solid #FECACA;
}

.outcome-booked {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    color: #16A34A;
    border-top: 1px solid #BBF7D0;
}

/* --- Tagline --- */
.comparison-tagline {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================================
   SECTION 5: RESULTS (Redesigned)
   ============================================================ */
.results-section {
    background: linear-gradient(170deg, var(--deep-navy) 0%, var(--primary-navy) 50%, #0D1425 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 143, 231, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Result Card */
.result-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(74, 143, 231, 0.12);
    border-radius: 16px;
    padding: 32px 28px 28px;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    overflow: hidden;
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 143, 231, 0.3);
    box-shadow: 0 12px 40px rgba(74, 143, 231, 0.08);
}

.result-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--diablo-blue), rgba(74, 143, 231, 0.3));
    border-radius: 16px 16px 0 0;
}

.result-card-accent-gold {
    background: linear-gradient(90deg, #F59E0B, #FBBF24, #F59E0B);
}

.result-card-featured {
    background: rgba(74, 143, 231, 0.06);
    border-color: rgba(74, 143, 231, 0.2);
}

@media (min-width: 768px) {
    .result-card-featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 40px;
        align-items: start;
    }
    .result-card-featured .result-card-accent { grid-column: span 2; }
    .result-card-featured .result-product-tag { grid-column: 1; }
    .result-card-featured .result-number { grid-column: 1; grid-row: 2; }
    .result-card-featured .result-metric { grid-column: 1; grid-row: 3; }
    .result-card-featured .result-context { grid-column: 2; grid-row: 1 / 4; align-self: center; }
}

/* Product Tag */
.result-product-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--diablo-blue);
    background: rgba(74, 143, 231, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* Result Number */
.result-number {
    display: block;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.result-number-large {
    font-size: 3rem;
}

@media (min-width: 768px) {
    .result-number { font-size: 3.5rem; }
    .result-number-large { font-size: 4rem; }
}

@media (min-width: 1024px) {
    .result-number { font-size: 4rem; }
    .result-number-large { font-size: 4.5rem; }
}

/* Metric Label */
.result-metric {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(74, 143, 231, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

/* Context Paragraph */
.result-context {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-on-dark);
    margin: 0;
}

/* Results Testimonial */
.results-testimonial {
    position: relative;
    max-width: 760px;
    margin: 56px auto 40px;
    padding: 32px 36px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(74, 143, 231, 0.15);
    border-radius: 16px;
    text-align: center;
}

.results-quote-mark {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 800;
    line-height: 0.5;
    color: var(--diablo-blue);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 28px;
}

.results-testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
}

.results-testimonial cite {
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: 0.02em;
}

/* Trust Bar */
.results-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px 16px;
}

.trust-badge svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Glow Button Variant */
.btn-glow {
    box-shadow: 0 0 20px rgba(74, 143, 231, 0.25), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(74, 143, 231, 0.35), 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Legacy testimonial/trust (keep for other sections) */
.testimonial {
    max-width: 700px;
    margin: 48px auto 32px;
    padding: 24px 28px;
    border-left: 4px solid var(--diablo-blue);
    background: var(--white);
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.trust-indicators {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.trust-divider {
    color: var(--border-light);
    display: none;
}

@media (min-width: 768px) {
    .trust-divider { display: inline; }
}

/* ============================================================
   SECTION 6: PRICING
   ============================================================ */
.pricing-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .pricing-layout { grid-template-columns: 1fr 1fr; }
}

/* Bundle Card */
.pricing-bundle {
    background: var(--white);
    border: 2px solid var(--diablo-blue);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 8px 32px rgba(74, 143, 231, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--diablo-blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    margin-top: 8px;
}

.pricing-tagline {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.pricing-dollar {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child { border-bottom: none; }

.check {
    color: var(--success-green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.val {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-savings {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 24px;
    text-align: center;
}

.savings-line {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.savings-highlight {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--success-green);
    margin-top: 4px;
}

/* Individual Product Cards */
.pricing-individuals {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-single {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pricing-single:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .pricing-single {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 16px;
    }
}

.pricing-name-sm {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-amount-sm {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-dollar-sm {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.pricing-period-sm {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-desc-sm {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Add-ons */
.addons {
    margin-top: 72px;
    padding-top: 64px;
    border-top: none;
    background: var(--deep-navy);
    border-radius: 20px;
    padding: 48px 36px;
}

@media (min-width: 1024px) {
    .addons { padding: 56px 48px; }
}

.addons-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--diablo-blue);
    margin-bottom: 12px;
}

.addons-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .addons-title { font-size: 2.25rem; }
}

.addons-subtitle {
    font-size: 16px;
    color: var(--text-on-dark);
    margin-bottom: 32px;
    max-width: 500px;
}

@media (min-width: 768px) {
    .addons-subtitle { font-size: 18px; }
}

.addon-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .addon-row { grid-template-columns: 1fr 1fr; }
}

.addon-card {
    background: var(--primary-navy);
    border: 1px solid var(--mid-navy);
    border-radius: 14px;
    padding: 28px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    border-color: rgba(74, 143, 231, 0.25);
}

.addon-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .addon-card h4 { font-size: 1.375rem; }
}

.addon-price {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
    color: var(--diablo-blue);
    margin-bottom: 12px;
    background: rgba(74, 143, 231, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
}

.addon-card p {
    font-size: 15px;
    color: var(--text-on-dark);
    line-height: 1.6;
}

.addon-row-single {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .addon-row-single { grid-template-columns: 1fr; }
}

.addon-card-full p {
    max-width: 720px;
}

/* Pricing Anchor — Cost Breakdown Comparison */
.pricing-anchor {
    margin-top: 56px;
}

.anchor-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

@media (min-width: 1024px) {
    .anchor-headline { font-size: 1.75rem; }
}

.anchor-intro {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.55;
}

.anchor-breakdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media (min-width: 1024px) {
    .anchor-breakdown {
        grid-template-columns: 1fr auto 1fr;
        gap: 32px;
        align-items: center;
    }
}

/* Stack containers */
.anchor-stack {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.anchor-stack-header {
    padding: 14px 24px;
}

.anchor-stack-header-them {
    background: var(--light-gray);
}

.anchor-stack-header-us {
    background: var(--deep-navy);
}

.anchor-stack-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.anchor-stack-header-them .anchor-stack-label {
    color: var(--text-muted);
}

.anchor-stack-header-us .anchor-stack-label {
    color: var(--diablo-blue);
}

/* Line items (their costs) */
.anchor-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid var(--light-gray);
    background: var(--white);
}

.anchor-line-item:last-of-type {
    border-bottom: none;
}

.anchor-line-item-highlight {
    background: #FEF8F0;
    border-bottom-color: #FDE8C8;
}

.anchor-line-item-highlight .anchor-line-name {
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
}

.anchor-line-item-highlight .anchor-line-cost {
    color: #B45309;
    font-style: italic;
}

.anchor-line-name {
    font-size: 14px;
    color: var(--text-body);
}

.anchor-line-cost {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    margin-left: 16px;
}

.anchor-line-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: var(--light-gray);
    border-top: 2px solid var(--border-light);
}

.anchor-line-total .anchor-line-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.anchor-line-total .anchor-line-cost {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.anchor-stack-note {
    display: block;
    padding: 10px 24px 14px;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--white);
    font-style: italic;
}

/* Arrow column */
.anchor-arrow-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
}

.anchor-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--diablo-blue);
    box-shadow: 0 4px 16px rgba(74, 143, 231, 0.35);
}

.anchor-arrow-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--diablo-blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

@media (max-width: 1023px) {
    .anchor-arrow-col {
        flex-direction: row;
        gap: 12px;
    }
    .anchor-arrow-circle {
        width: 40px;
        height: 40px;
    }
    .anchor-arrow-circle svg {
        transform: rotate(90deg);
    }
}

/* Diablo price */
.anchor-diablo-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    padding: 24px 24px 16px;
    background: var(--deep-navy);
}

.anchor-diablo-amount {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.anchor-diablo-period {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (min-width: 1024px) {
    .anchor-diablo-amount { font-size: 3.5rem; }
}

/* Includes checklist */
.anchor-diablo-includes {
    padding: 0 24px 20px;
    background: var(--deep-navy);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.anchor-check-item {
    font-size: 14px;
    color: var(--text-on-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.anchor-check {
    color: var(--success-green);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Savings bar */
.anchor-savings-bar {
    background: rgba(34, 197, 94, 0.08);
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    padding: 14px 24px;
    text-align: center;
}

.anchor-savings-text {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--success-green);
}

.anchor-savings-sub {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================================
   SECTION 7: HOW IT WORKS (STEPS)
   ============================================================ */
.steps-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .steps-row {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }
}

.step {
    text-align: center;
    max-width: 280px;
    padding: 24px 16px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--diablo-blue);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-on-dark);
    line-height: 1.55;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: var(--mid-navy);
    border-left: 2px dashed var(--mid-navy);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .step-connector {
        width: 60px;
        height: 2px;
        border-left: none;
        border-top: 2px dashed var(--mid-navy);
    }
}

.steps-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 32px;
}

/* ============================================================
   SECTION 8: FINAL CTA + FORM
   ============================================================ */
.section-cta-final {
    background: var(--diablo-blue);
    padding: 80px 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .section-cta-final { padding: 100px 0; }
}

.cta-headline {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subhead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Demo Form */
.demo-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select {
    font-family: var(--font-primary);
    font-size: 16px;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: border-color var(--transition-fast), background var(--transition-fast);
    min-height: 48px;
}

.form-group input::placeholder { color: rgba(255, 255, 255, 0.4); }

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    color: var(--text-dark);
    background: var(--white);
}

.cta-phone {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.cta-phone a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--deep-navy);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 1.5fr 1fr; }
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 400px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col li {
    font-size: 14px;
    color: var(--text-on-dark);
    padding: 4px 0;
}

.footer-col a {
    color: var(--text-on-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--diablo-blue); text-decoration: none; }

.footer-bottom {
    border-top: 1px solid var(--mid-navy);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        transition-delay: var(--delay, 0s);
    }

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hero feed cascade */
    .feed-item {
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .notification-lead { transition-delay: 0.2s; }
    .notification-timer { transition-delay: 0.7s; }
    .notification-booked { transition-delay: 1.2s; }

    /* LIVE badge pulse */
    .feed-badge-blue {
        animation: badge-pulse 2.5s ease-in-out infinite;
    }

    @keyframes badge-pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    /* Ambient glow slow drift */
    .feed-glow {
        animation: glow-drift 6s ease-in-out infinite alternate;
    }

    @keyframes glow-drift {
        0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
        100% { transform: translate(-48%, -52%) scale(1.08); opacity: 1; }
    }

    /* Card hover */
    .product-card,
    .pricing-single {
        transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    }
}

/* Reduced motion: show everything immediately */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
    .feed-item {
        opacity: 1;
        transform: none;
    }
    .feed-badge-blue,
    .feed-glow {
        animation: none;
    }
}

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 16px;
}
.lang-toggle a {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
    border-radius: 50%;
    overflow: hidden;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.lang-toggle a:hover { opacity: 0.85; }
.lang-toggle a.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--diablo-blue);
}
.lang-toggle img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: cover;
}
