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

:root {
    --color-bg: #08071c;
    --color-bg-secondary: #0f0e24;
    --color-accent: #00ffff;
    --color-accent-blue: #0099ff;
    --color-accent-purple: #a855f7;
    --color-accent-pink: #ec4899;
    --color-accent-green: #22c55e;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-text-subtle: rgba(255, 255, 255, 0.4);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-card-bg: rgba(255, 255, 255, 0.03);
    --color-card-border: rgba(255, 255, 255, 0.08);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-glow: 0 0 40px rgba(0, 255, 255, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(0, 255, 255, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue), var(--color-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(8, 7, 28, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
}

.logo-icon-svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-icon-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon-svg,
.logo:hover .logo-icon-img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

/* Dashboard Nav Link with Badge */
.nav-link-dashboard {
    position: relative;
    display: inline-block;
}

.nav-new-badge {
    position: absolute;
    top: -8px;
    right: -20px;
    display: inline-flex;
    align-items: center;
    padding: 1px 5px;
    background: linear-gradient(135deg, #00ffff, #0099ff);
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #08071c;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4); }
    50% { box-shadow: 0 0 8px 2px rgba(0, 255, 255, 0.3); }
}

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

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue));
    color: var(--color-bg);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-muted);
}

.btn-ghost:hover {
    color: var(--color-text);
}

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

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 145px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 7, 28, 0.75);
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 255, 255, 0.15) 0%, rgba(0, 153, 255, 0.1) 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.text-left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.text-left .section-description {
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.testimonial-card {
    padding: 40px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-quote {
    margin-bottom: 32px;
}

.quote-icon {
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-bg);
    font-size: 1.125rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.author-title {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Client Logos Card */
.client-logos-card {
    padding: 40px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logos-label {
    color: var(--color-text-subtle);
    font-size: 0.85rem;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.logos-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.logo-item {
    opacity: 1;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 140px;
    max-height: 45px;
    min-height: 25px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    max-width: 100%;
}

.about .section-header.text-left {
    text-align: center;
    margin-bottom: 24px;
}

.about .section-tag {
    background: rgba(0, 153, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.2);
    color: #0099ff;
}

.about .section-title {
    color: #1a1a2e;
}

.about-text {
    margin-top: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-intro {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #4a4a5a;
    line-height: 1.7;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.about-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about-card:hover {
    border-color: #0099ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 153, 255, 0.12);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 255, 255, 0.08) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1px solid rgba(0, 153, 255, 0.2);
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.about-card-text {
    font-size: 1rem;
    color: #5a5a6a;
    line-height: 1.7;
}

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

/* Not a Lead Vendor Section */
.not-vendor {
    padding: 100px 0;
    background: var(--color-bg);
}

.not-vendor-content {
    max-width: 1100px;
    margin: 0 auto;
}

.not-vendor-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.not-vendor-intro {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.not-vendor-statement {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
}

.not-vendor-statement strong {
    color: var(--color-accent);
}

.not-vendor-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vendor-model {
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
}

.vendor-model-bad {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.vendor-model-good {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.vendor-model-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.vendor-model-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-model-icon-bad {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.vendor-model-icon-good {
    background: rgba(0, 255, 255, 0.15);
    color: var(--color-accent);
}

.vendor-model-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.vendor-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.flow-node {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.flow-node-you {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.flow-node-axedia {
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.2), rgba(0, 255, 255, 0.15));
    border-color: rgba(0, 255, 255, 0.3);
    color: var(--color-accent);
    font-weight: 600;
}

.flow-node-direct {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #86efac;
    font-weight: 600;
}

.flow-arrow-down {
    color: rgba(255, 255, 255, 0.2);
}

.flow-arrow-good {
    color: var(--color-accent);
}

.vendor-problems {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vendor-problems li {
    padding: 10px 0;
    color: #fca5a5;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
    position: relative;
    padding-left: 20px;
}

.vendor-problems li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #f87171;
    font-size: 0.75rem;
}

.vendor-problems li:last-child {
    border-bottom: none;
}

.vendor-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vendor-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--color-text);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.vendor-benefits li:last-child {
    border-bottom: none;
}

.vendor-benefits li svg {
    color: #22c55e;
    flex-shrink: 0;
}

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

/* Why Us / Features Section */
.why-us {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

/* Comparison Table */
.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.comparison-header .comparison-col {
    padding: 24px 32px;
}

.comparison-header .comparison-col-bad {
    background: rgba(239, 68, 68, 0.12);
    border-bottom: 2px solid rgba(239, 68, 68, 0.3);
}

.comparison-header .comparison-col-good {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.18), rgba(0, 153, 255, 0.12));
    border-bottom: 2px solid rgba(0, 255, 255, 0.4);
}

.comparison-label {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    text-align: center;
    letter-spacing: -0.01em;
}

.comparison-label-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.comparison-logo {
    width: 32px;
    height: 32px;
}

.comparison-col-bad .comparison-label {
    color: #ff6b6b;
}

.comparison-col-good .comparison-label {
    color: var(--color-accent);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.comparison-row:nth-child(odd) .comparison-col-good {
    background: rgba(0, 255, 255, 0.06);
}

.comparison-row:nth-child(odd) .comparison-col-bad {
    background: rgba(239, 68, 68, 0.04);
}

.comparison-row:nth-child(even) .comparison-col-good {
    background: rgba(0, 255, 255, 0.03);
}

.comparison-row:nth-child(even) .comparison-col-bad {
    background: rgba(239, 68, 68, 0.02);
}

.comparison-row:last-child .comparison-col {
    border-radius: 0;
}

.comparison-row:last-child .comparison-col-bad {
    border-bottom: none;
}

.comparison-row:last-child .comparison-col-good {
    border-bottom: none;
}

.comparison-col {
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-col-bad {
    border-left: none;
    border-right: none;
}

.comparison-col-good {
    border-left: 1px solid rgba(0, 255, 255, 0.15);
    border-right: none;
}

.comparison-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-icon-bad {
    background: rgba(239, 68, 68, 0.2);
    color: #ff6b6b;
}

.comparison-icon-good {
    background: rgba(0, 255, 255, 0.2);
    color: var(--color-accent);
}

.comparison-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.comparison-col-good .comparison-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

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

/* =====================================================
   LEAD ANATOMY / WHAT'S IN EVERY LEAD SECTION
   ===================================================== */
.lead-anatomy {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.lead-anatomy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.lead-anatomy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

/* Lead Card Showcase */
.lead-card-showcase {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 4px 40px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 153, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.lead-card-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-blue));
}

.lead-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.lead-card-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.lead-card-time {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.lead-card-body {
    padding: 8px;
}

.lead-section {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.lead-section:hover {
    background: rgba(0, 153, 255, 0.05);
}

.lead-section-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15) 0%, rgba(0, 119, 204, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--color-accent);
}

.lead-section-content {
    flex: 1;
}

.lead-section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.lead-section-data {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.data-item {
    font-size: 0.9375rem;
    color: var(--color-text);
}

.lead-section-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0, 153, 255, 0.15);
    color: var(--color-accent);
    white-space: nowrap;
}

.lead-section-badge.badge-compliant {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.lead-section-badge.badge-verified {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

/* Qualifying Questions */
.qualifying-data {
    gap: 8px;
}

.qa-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.qa-question {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.qa-answer {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #22c55e;
}

/* Consent Data */
.consent-data {
    gap: 6px;
}

.consent-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.consent-item svg {
    color: #22c55e;
}

/* Verification Data */
.verification-data {
    gap: 8px;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

.verification-logo {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: var(--radius-sm);
    color: #a855f7;
}

.verification-id {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

/* Metadata */
.metadata-data {
    gap: 4px;
}

.meta-item {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.meta-item strong {
    color: var(--color-text);
}

/* Lead Card Footer */
.lead-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.lead-card-id {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.lead-card-actions {
    display: flex;
    gap: 8px;
}

.lead-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lead-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.lead-action-btn.primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue));
    color: white;
    border-color: transparent;
}

.lead-action-btn.primary:hover {
    opacity: 0.9;
}

/* Features List */
.lead-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lead-features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.lead-feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.lead-feature-item:hover {
    background: rgba(0, 153, 255, 0.05);
    border-color: rgba(0, 153, 255, 0.2);
    transform: translateX(8px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15) 0%, rgba(0, 119, 204, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--color-accent);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Comparison Callout */
.lead-comparison-callout {
    margin-top: 60px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-xl);
}

.callout-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.callout-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-lg);
    color: #ef4444;
}

.callout-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 8px;
}

.callout-text p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Lead Anatomy Responsive */
@media (max-width: 1024px) {
    .lead-anatomy-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lead-card-showcase {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .lead-anatomy {
        padding: 80px 0;
    }

    .lead-anatomy-container {
        margin-top: 40px;
    }

    .lead-section {
        flex-wrap: wrap;
        gap: 12px;
    }

    .lead-section-badge {
        margin-left: auto;
    }

    .lead-feature-item {
        flex-direction: column;
        gap: 16px;
    }

    .lead-feature-item:hover {
        transform: none;
    }

    .callout-content {
        flex-direction: column;
        text-align: center;
    }

    .callout-icon {
        margin: 0 auto;
    }

    .lead-card-footer {
        flex-direction: column;
        gap: 12px;
    }

    .lead-card-actions {
        width: 100%;
    }

    .lead-action-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lead-section {
        padding: 16px;
    }

    .lead-section-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .lead-section-icon svg {
        width: 18px;
        height: 18px;
    }

    .qa-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .verification-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
    background: var(--color-bg);
}

.timeline {
    position: relative;
    padding-top: 40px;
}

.timeline-phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.timeline-phase {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-phase.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-phase:nth-child(1) { transition-delay: 0s; }
.timeline-phase:nth-child(2) { transition-delay: 0.2s; }
.timeline-phase:nth-child(3) { transition-delay: 0.4s; }
.timeline-phase:nth-child(4) { transition-delay: 0.6s; }

.timeline-track {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-blue), var(--color-accent-purple));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.3s ease, transform 1.2s ease;
}

.timeline-track.visible {
    opacity: 0.4;
    transform: scaleX(1);
}

.phase-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    position: relative;
}

.phase-dot::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
}

/* Heartbeat animation for Launch phase */
.phase-dot-heartbeat {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.phase-dot-heartbeat::before {
    border-color: rgba(255, 68, 68, 0.3);
    animation: heartbeat-ring 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    }
    15% {
        transform: scale(1.25);
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.8);
    }
    30% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    }
    45% {
        transform: scale(1.15);
        box-shadow: 0 0 25px rgba(255, 68, 68, 0.7);
    }
    60% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    }
}

@keyframes heartbeat-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    15% {
        transform: scale(1.3);
        opacity: 0.6;
    }
    30% {
        transform: scale(1);
        opacity: 0.3;
    }
    45% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    60% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.phase-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(0, 153, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phase-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.phase-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 260px;
}

/* Live Transfer Section */
.use-cases {
    padding: 100px 0;
    background: var(--color-bg-secondary);
}

.section-tag-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-tag-group .section-tag {
    margin-bottom: 0;
}

.new-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    text-transform: uppercase;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.7); }
}

/* Horizontal Flow Illustration */
.transfer-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 48px 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flow-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 50%;
    color: var(--color-text-muted);
}

.flow-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.4;
}

.flow-arrow {
    color: var(--color-border);
    padding: 0 8px;
}

/* Highlighted middle step */
.flow-step-highlight .flow-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 153, 255, 0.05));
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

.flow-step-highlight .flow-icon-box svg {
    color: var(--color-accent);
}

.flow-box-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    white-space: nowrap;
}

/* Final step - success state */
.flow-step-final .flow-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 204, 106, 0.1));
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.flow-step-final .flow-label {
    color: var(--color-text);
    font-weight: 500;
}

.demo-cta-simple {
    text-align: center;
    margin-top: 24px;
}

.demo-cta-simple .btn {
    margin-bottom: 12px;
}

.cta-microcopy {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq .section-tag {
    background: rgba(0, 153, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.2);
    color: #0099ff;
}

.faq .section-title {
    color: #1a1a2e;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: #1a1a2e;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: color 0.2s;
}

.faq-question:hover {
    color: #0099ff;
}

.faq-icon {
    color: #0099ff;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.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: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #5a5a6a;
    font-size: 1rem;
    line-height: 1.7;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 100px 0;
    background: #f8f9fc;
    position: relative;
    overflow: hidden;
}

/* Light section text overrides for dashboard */
.dashboard-preview .section-tag {
    background: rgba(0, 153, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.3);
    color: #0077cc;
}

.dashboard-preview .section-title {
    color: #1a1a2e;
}

.dashboard-preview .section-title .gradient-text {
    background: linear-gradient(135deg, #00aaaa, #0088dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-preview .section-description {
    color: #444;
}

.dashboard-showcase {
    position: relative;
    margin: 60px auto 60px;
    max-width: 1100px;
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 153, 255, 0.15) 0%, rgba(0, 200, 200, 0.08) 30%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.dashboard-frame {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.9), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 153, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboard-frame:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(0, 255, 255, 0.2),
        0 35px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(0, 153, 255, 0.25);
}

.dashboard-browser-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(17, 24, 39, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.browser-dots span:first-child {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:last-child {
    background: #28ca41;
}

.browser-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 6px;
    margin-right: 80px;
}

.dashboard-image-wrapper {
    position: relative;
    overflow: hidden;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-feature {
    text-align: center;
    padding: 24px;
}

.dashboard-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.12), rgba(0, 153, 255, 0.08));
    border: 1px solid rgba(0, 119, 204, 0.25);
    border-radius: 14px;
}

.dashboard-feature-icon svg {
    stroke: #0077cc;
}

.dashboard-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.dashboard-feature p {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .dashboard-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .dashboard-features {
        grid-template-columns: 1fr;
    }

    .browser-url {
        display: none;
    }

    .dashboard-frame {
        border-radius: 12px;
    }
}

/* Pilot Offer Section */
.pilot {
    padding: 100px 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.pilot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pilot-content {
    position: relative;
    z-index: 1;
}

.pilot-details {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pilot-price {
    margin-bottom: 24px;
}

.pilot-price .price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--color-accent);
}

.pilot-price .price-period {
    display: block;
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.pilot-includes {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.pilot-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 32px;
}

.pilot-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--color-text);
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
}

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

.pilot-features li svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.pilot-guarantee {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: var(--radius-md);
}

.pilot-guarantee p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 4px;
}

.pilot-guarantee p:last-child {
    margin-bottom: 0;
}

.pilot-guarantee strong {
    color: var(--color-text);
}

/* Minimal Pilot Details Variant */
.pilot-details-minimal {
    max-width: 500px;
}

.pilot-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pilot-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.pilot-benefit:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 153, 255, 0.2);
}

.pilot-benefit svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.pilot-benefit span {
    color: var(--color-text);
    font-size: 1rem;
    text-align: left;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-areas h4 {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul,
.footer-services ul,
.footer-areas ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services li,
.footer-areas li {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-subtle);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-legal {
    font-size: 0.8rem !important;
    color: var(--color-text-subtle);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .timeline-phases {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .timeline-track {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
    }

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

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

    .footer-description {
        max-width: none;
        margin: 0 auto;
    }

    .footer-links,
    .footer-services,
    .footer-areas {
        text-align: center;
    }

    .footer-links ul,
    .footer-services ul,
    .footer-areas ul {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        border-radius: var(--radius-lg);
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comparison-header .comparison-col {
        padding: 16px 20px;
    }

    .comparison-header .comparison-col-good {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .comparison-header .comparison-col-bad {
        display: none;
    }

    .comparison-col {
        padding: 18px 20px;
    }

    .comparison-col-good {
        border-left: none;
    }

    .comparison-col-bad {
        display: none;
    }

    .comparison-text {
        font-size: 1rem;
    }

    .comparison-row:last-child .comparison-col-good {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .timeline-phases {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .phase-desc {
        max-width: none;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .features-grid,
    .methodology-grid,
    .about-cards {
        grid-template-columns: 1fr;
    }

    .transfer-flow {
        flex-direction: column;
        gap: 16px;
    }

    .flow-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .about-intro {
        font-size: 1.25rem;
    }

    .pilot-price .price-amount {
        font-size: 2.5rem;
    }

    .footer-links ul {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-services,
    .footer-areas {
        text-align: center;
    }

    .footer-links ul,
    .footer-services ul,
    .footer-areas ul {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        font-size: 1rem;
    }

    .pilot-features {
        max-width: none;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =====================================================
   ACCESSIBILITY - Skip Link
   ===================================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 16px;
}

/* Focus States for Accessibility */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.2);
}

.faq-question:focus-visible {
    outline: 2px solid #0099ff;
    outline-offset: 2px;
}

/* =====================================================
   SCROLL TO TOP BUTTON WITH PROGRESS RING
   ===================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-to-top:hover {
    background: rgba(0, 153, 255, 0.15);
    border-color: var(--color-accent-blue);
    transform: translateY(-3px);
}

.scroll-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.scroll-to-top .progress-ring-circle {
    stroke-dasharray: 138.23;
    stroke-dashoffset: 138.23;
    transition: stroke-dashoffset 0.1s ease;
}

.scroll-to-top .arrow-icon {
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.scroll-to-top:hover .arrow-icon {
    color: var(--color-accent);
}

/* =====================================================
   MOBILE STICKY CTA BAR
   ===================================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 7, 28, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    padding: 12px 20px;
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-cta .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top .progress-ring {
        width: 44px;
        height: 44px;
    }

    .scroll-to-top .progress-ring-circle {
        r: 19;
        cx: 22;
        cy: 22;
        stroke-dasharray: 119.38;
        stroke-dashoffset: 119.38;
    }
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 12, 30, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    min-width: 280px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: var(--font-primary);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue));
    color: var(--color-bg);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-text);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner {
        padding-bottom: 80px; /* Space for mobile CTA */
    }
}

/* =====================================================
   HOVER MICRO-INTERACTIONS FOR CARDS
   ===================================================== */
.about-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.15);
}

.about-card:hover .about-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(0, 255, 255, 0.15) 100%);
}

.about-card-icon {
    transition: all 0.3s ease;
}

.testimonial-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.vendor-model {
    transition: all 0.3s ease;
}

.vendor-model:hover {
    transform: translateY(-4px);
}

.vendor-model-good:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

.pilot-benefit {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pilot-benefit:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
}

.pilot-benefit:hover svg {
    transform: scale(1.2);
}

.pilot-benefit svg {
    transition: transform 0.3s ease;
}

.dashboard-feature {
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
}

.dashboard-feature:hover {
    background: rgba(0, 119, 204, 0.05);
    transform: translateY(-4px);
}

.dashboard-feature:hover .dashboard-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.2);
}

.dashboard-feature-icon {
    transition: all 0.3s ease;
}

/* Flow step hover effects */
.flow-step .flow-icon {
    transition: all 0.3s ease;
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
    border-color: var(--color-accent);
}

.flow-step-highlight:hover .flow-icon-box {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.25);
}

/* =====================================================
   SCROLL-TRIGGERED ANIMATIONS
   ===================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.animated > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.animated > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.animated > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.animated > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.animated > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.animated > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.animated > * {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   CALENDAR BOOKING POPUP
   ===================================================== */
.calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 7, 28, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.calendar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.calendar-popup {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.calendar-popup.calendly-popup {
    max-width: 650px;
    padding: 20px;
    padding-top: 50px;
    overflow: hidden;
}

.calendly-inline-widget {
    border-radius: 12px;
    overflow: hidden;
}

.calendar-overlay.active .calendar-popup {
    transform: translateY(0) scale(1);
}

.calendar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.calendar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border-color: var(--color-accent);
}

.calendar-header {
    padding: 40px 40px 24px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.calendar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.calendar-logo img {
    width: 40px;
    height: 40px;
}

.calendar-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.calendar-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.calendar-header p {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.calendar-content {
    padding: 32px 40px 40px;
}

.calendar-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calendar-step.hidden {
    display: none;
}

.calendar-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

/* Calendar Navigation */
.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-nav-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border-color: var(--color-accent);
}

.calendar-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-month {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Calendar Grid */
.calendar-grid {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-subtle);
    text-transform: uppercase;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--color-text);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: rgba(0, 153, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.3);
}

.calendar-day.today {
    border-color: var(--color-accent);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue));
    color: var(--color-bg);
    font-weight: 600;
}

.calendar-day.disabled {
    color: var(--color-text-subtle);
    cursor: not-allowed;
    opacity: 0.4;
}

.calendar-day.other-month {
    color: var(--color-text-subtle);
    opacity: 0.3;
}

/* Timezone */
.calendar-timezone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.calendar-timezone svg {
    color: var(--color-accent);
}

/* Time Slots */
.time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
}

.time-slots::-webkit-scrollbar {
    width: 4px;
}

.time-slots::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 2px;
}

.time-slots-empty {
    color: var(--color-text-subtle);
    font-size: 0.9rem;
    text-align: center;
    padding: 40px 20px;
}

.time-slot {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.time-slot:hover {
    background: rgba(0, 153, 255, 0.1);
    border-color: rgba(0, 153, 255, 0.3);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue));
    color: var(--color-bg);
    font-weight: 500;
    border-color: transparent;
}

/* Back Button */
.calendar-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.calendar-back:hover {
    color: var(--color-accent);
}

/* Booking Summary */
.booking-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 153, 255, 0.08);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.booking-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-icon svg {
    color: var(--color-bg);
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.booking-time {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.booking-form label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.2s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--color-text-subtle);
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    background: rgba(0, 153, 255, 0.05);
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Confirmation */
#stepConfirm {
    display: none;
}

#stepConfirm:not(.hidden) {
    display: block;
}

.confirmation-content {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon svg {
    color: #22c55e;
}

.confirmation-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.confirmation-content > p {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 24px;
}

.confirmation-summary {
    justify-content: center;
    max-width: 300px;
    margin: 0 auto 24px;
}

.confirmation-summary .booking-details {
    text-align: center;
}

.confirmation-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.confirmation-note strong {
    color: var(--color-accent);
}

/* Calendar Responsive */
@media (max-width: 768px) {
    .calendar-popup {
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }

    .calendar-header {
        padding: 32px 24px 20px;
    }

    .calendar-header h2 {
        font-size: 1.5rem;
    }

    .calendar-content {
        padding: 24px;
    }

    .calendar-step {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .calendar-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

    .time-slots {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .calendar-overlay {
        padding: 10px;
    }

    .calendar-header {
        padding: 28px 20px 16px;
    }

    .calendar-content {
        padding: 20px;
    }

    .calendar-header p {
        font-size: 0.9rem;
    }

    .booking-summary {
        flex-direction: column;
        text-align: center;
    }
}

/* What's In Every Lead Section */
.lead-includes {
    padding: 100px 0;
    background: var(--color-bg-darker);
    position: relative;
}

.lead-includes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
}

.lead-items-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.lead-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.lead-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateY(-4px);
}

.lead-item-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.lead-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.lead-item p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Responsive for lead-includes */
@media (max-width: 1200px) {
    .lead-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lead-includes {
        padding: 80px 0;
    }

    .lead-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }

    .lead-item {
        padding: 24px 16px;
    }

    .lead-item-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .lead-item-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .lead-items-grid {
        grid-template-columns: 1fr;
    }

    .lead-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }

    .lead-item-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .lead-item h3 {
        margin-bottom: 4px;
    }
}
