/* =========================================
   VARIABLES & GLOBALS
   Railway x LeadBird aesthetic
========================================= */
:root {
    /* Color Palette */
    --bg-dark: #0b0c10;
    --bg-card: #14161d;
    --bg-card-hover: #1c1f29;

    --text-primary: #f0f2f5;
    --text-secondary: #9aa0a6;

    --accent-primary: #7b61ff;
    --accent-secondary: #00f0ff;
    --accent-tertiary: #ff007f;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(123, 97, 255, 0.4);

    /* Layout */
    --container-width: 1100px;
    --container-large: 1200px;
    --spacer-section: 100px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-large {
    max-width: var(--container-large);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================================
   GLOWING MESH BACKGROUND
========================================= */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}

.glow-orb {
    position: absolute;
    filter: blur(140px);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 60%);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 60%);
    opacity: 0.15;
    animation-delay: -5s;
}

.orb-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 60%);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 10%) scale(1.1); }
    66% { transform: translate(-5%, 5%) scale(0.9); }
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.2;
}

.title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 48px;
    font-weight: 400;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #b0b8c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-hero {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   COMPONENTS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.glow-btn {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary), var(--accent-tertiary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-btn:hover {
    color: #fff;
    box-shadow: 0 0 30px var(--accent-primary);
    border-color: transparent;
}

.glow-btn:hover::before {
    opacity: 1;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
}

.glass-card {
    background: rgba(20, 22, 29, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(94, 106, 210, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(94, 106, 210, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-accent {
    background: rgba(223, 68, 162, 0.1);
    color: var(--accent-tertiary);
    border-color: rgba(223, 68, 162, 0.3);
}

/* =========================================
   NAVIGATION
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 100;
    transition: background 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-mark {
    color: var(--accent-primary);
    display: flex;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
}

/* =========================================
   SECTIONS
========================================= */
.section {
    padding: var(--spacer-section) 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* =========================================
   01. HERO — Bold Claim + VSL Above the Fold
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-centered {
    text-align: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-title-centered {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 900;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-guarantee {
    font-size: 0.85em;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
}

.hero-subtitle-centered {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0 auto 40px;
    max-width: 680px;
    line-height: 1.7;
}

.hero-actions-centered {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    .hero-title-centered {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    .hero-actions-centered {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================
   02. VSL (embedded in hero)
========================================= */
.vsl-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
}

.vsl-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--bg-card), #0f1115);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vsl-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(123, 97, 255, 0.1) 0%, transparent 70%);
}

.vsl-placeholder:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(123, 97, 255, 0.15);
}

.vsl-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(123, 97, 255, 0.2);
    border: 2px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.vsl-play-btn svg {
    margin-left: 4px;
    width: 32px;
    height: 32px;
}

.vsl-placeholder:hover .vsl-play-btn {
    background: var(--accent-primary);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.5);
}

.vsl-coming-soon {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
}

/* =========================================
   04. LOGO CLOUD
========================================= */
.logo-cloud {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(11, 12, 16, 0.4);
}

.logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
}

.logo-item {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

/* =========================================
   05. PAIN POINTS
========================================= */
.pain-section {
    position: relative;
    z-index: 1;
}

.pain-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    align-items: start;
}

/* Ad Cost Chart Card */
.pain-chart-card {
    background: #0f1115;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
    position: sticky;
    top: 120px;
}

.pain-chart-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(223, 68, 162, 0.3);
}

.pain-chart-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pain-chart-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.pain-chart-graphic {
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    width: 100%;
}

.chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Pain cards stack */
.pain-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 28px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pain-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    border-color: rgba(255, 0, 127, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pain-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(255, 0, 127, 0.08);
    border: 1px solid rgba(255, 0, 127, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.pain-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .pain-visual-grid {
        grid-template-columns: 1fr;
    }
    .pain-chart-card {
        position: static;
    }
}

/* =========================================
   06. WHY CHOOSE YOU
========================================= */
.why-section {
    position: relative;
    z-index: 1;
}

.why-stat-grid-wide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.stat-box-lg {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    transition: all 0.3s ease;
}

.stat-box-lg:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 97, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stat-box-lg h4 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 8px;
    line-height: 1;
    font-weight: 900;
}

.stat-box-lg span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Why Us visual row: chart + diff cards */
.why-visual-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 60px;
    align-items: start;
}

.roi-chart-card {
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.1), rgba(0, 210, 255, 0.05));
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
}

.roi-chart-card:hover {
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.4);
}

.roi-chart-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.roi-chart-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* CSS Bar Chart */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 60px;
    height: 150px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: 100%;
    justify-content: flex-end;
}

.bar-col > span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.bar {
    width: 60px;
    border-radius: 6px 6px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    animation: growBar 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-origin: bottom;
}

.bar-email {
    background: linear-gradient(to top, var(--accent-primary), var(--accent-secondary));
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.bar-ads {
    background: #2a2e3a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.bar-label {
    position: absolute;
    top: -30px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* Differentiator Stack */
.differentiator-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 28px;
    transition: all 0.3s ease;
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(123, 97, 255, 0.3);
}

.diff-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.diff-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ROI Pipeline Infographic */
.roi-pipeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.roi-pipeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
    transform: translateY(-50%);
}

.roi-pipeline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    z-index: 0;
    transform: translateY(-50%);
    clip-path: inset(0 100% 0 0);
    animation: flowLine 3s ease-in-out infinite;
}

@keyframes flowLine {
    0% { clip-path: inset(0 100% 0 0); }
    50% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 0 100%); }
}

.roi-node {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    width: 31%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.roi-node:hover { transform: translateY(-10px); }
.node-1:hover { border-color: var(--accent-primary); box-shadow: 0 20px 50px rgba(123, 97, 255, 0.2); }
.node-2:hover { border-color: var(--accent-secondary); box-shadow: 0 20px 50px rgba(0, 240, 255, 0.2); }
.node-3:hover { border-color: var(--accent-tertiary); box-shadow: 0 20px 50px rgba(255, 0, 127, 0.2); }

.roi-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}

.node-1 .roi-icon { border-color: var(--accent-primary); color: var(--accent-primary); box-shadow: 0 0 25px rgba(123, 97, 255, 0.5); }
.node-2 .roi-icon { border-color: var(--accent-secondary); color: var(--accent-secondary); box-shadow: 0 0 25px rgba(0, 240, 255, 0.5); }
.node-3 .roi-icon { border-color: var(--accent-tertiary); color: var(--accent-tertiary); box-shadow: 0 0 25px rgba(255, 0, 127, 0.5); }

.roi-node h3 { font-size: 1.25rem; margin-bottom: 10px; }
.roi-node p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

.roi-metric {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.node-1 .roi-metric { color: var(--accent-primary); border-color: rgba(123, 97, 255, 0.2); background: rgba(123, 97, 255, 0.05); }
.node-2 .roi-metric { color: var(--accent-secondary); border-color: rgba(0, 240, 255, 0.2); background: rgba(0, 240, 255, 0.05); }
.node-3 .roi-metric { color: var(--accent-tertiary); border-color: rgba(255, 0, 127, 0.2); background: rgba(255, 0, 127, 0.05); }

@media (max-width: 992px) {
    .why-visual-row {
        grid-template-columns: 1fr;
    }
    .why-stat-grid-wide {
        grid-template-columns: 1fr;
    }
    .roi-pipeline {
        flex-direction: column;
        gap: 40px;
    }
    .roi-pipeline::before, .roi-pipeline::after {
        width: 3px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    .roi-node {
        width: 100%;
        max-width: 360px;
    }
}

/* =========================================
   08. PROCESS (The LoopLift Method)
========================================= */
.process-section {
    position: relative;
    z-index: 1;
}

.process-container {
    position: relative;
    padding-top: 20px;
}

.process-path {
    position: absolute;
    top: 60px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(94, 106, 210, 0), rgba(94, 106, 210, 0.5), rgba(94, 106, 210, 0));
    z-index: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(94, 106, 210, 0.3);
}

.card-letter {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-dark);
    color: var(--text-primary);
    border: 2px solid var(--border-glow);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(94, 106, 210, 0.2);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-path {
        display: none;
    }
}

/* =========================================
   09. WHAT'S INCLUDED — Flywheel
========================================= */
.section-flywheel {
    background: rgba(11, 12, 16, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.flywheel-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.flywheel-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.flywheel-list {
    list-style: none;
    padding: 0;
}

.flywheel-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.flywheel-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(94, 106, 210, 0.3);
}

.flywheel-list h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.flywheel-list p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.list-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Flywheel spinning ring visual */
.flywheel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.css-flywheel-ring {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.2);
    position: relative;
    animation: spinRing 40s linear infinite;
}

@keyframes spinRing {
    100% { transform: rotate(360deg); }
}

.fw-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(20px);
}

.fw-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    margin-left: -4px;
    box-shadow: 0 0 15px currentColor;
    transform-origin: 4px 179px;
    animation: orbitParticle 8s linear infinite;
}

@keyframes orbitParticle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.particle-1 { color: var(--accent-primary); background: var(--accent-primary); animation-delay: 0s; }
.particle-2 { color: var(--accent-secondary); background: var(--accent-secondary); animation-delay: -2s; }
.particle-3 { color: var(--accent-tertiary); background: var(--accent-tertiary); animation-delay: -4s; }
.particle-4 { color: #eab308; background: #eab308; animation-delay: -6s; }

.fw-node {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: antiSpinRing 40s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes antiSpinRing {
    100% { transform: rotate(-360deg); }
}

.fw-top {
    top: -25px;
    left: 50%;
    margin-left: -55px;
    border-color: var(--accent-primary);
    box-shadow: 0 0 25px rgba(123, 97, 255, 0.4);
    color: var(--accent-primary);
}

.fw-right {
    top: 50%;
    right: -40px;
    margin-top: -25px;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    color: var(--accent-secondary);
}

.fw-left {
    top: 50%;
    left: -40px;
    margin-top: -25px;
    border-color: var(--accent-tertiary);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.4);
    color: var(--accent-tertiary);
}

.fw-bottom {
    top: 100%;
    left: 50%;
    margin-left: -55px;
    margin-top: -25px;
    border-color: #eab308;
    box-shadow: 0 0 25px rgba(234, 179, 8, 0.4);
    color: #eab308;
}

@media (max-width: 992px) {
    .flywheel-wrapper {
        grid-template-columns: 1fr;
    }
    .flywheel-visual {
        margin-top: 60px;
    }
}

/* =========================================
   10. MID-PAGE CTA
========================================= */
.cta-section {
    padding-bottom: 100px;
}

.cta-glow-container {
    padding: 80px 40px;
    background: linear-gradient(to bottom, rgba(20, 22, 29, 0.6), rgba(11, 12, 16, 0.9));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-glow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.cta-gradient-title {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-glow-container .subtitle {
    margin-bottom: 32px;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* =========================================
   11. ABOUT
========================================= */
.about-section {
    position: relative;
    z-index: 1;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .badge {
    display: inline-block;
}

.about-content .title {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-stats-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.about-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.about-stat:hover {
    border-color: rgba(123, 97, 255, 0.3);
    transform: translateX(4px);
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    min-width: 100px;
}

.about-stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   12. FAQ
========================================= */
.faq-section {
    background: rgba(11, 12, 16, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   13. CALENDLY
========================================= */
.calendly-section {
    padding-bottom: 60px;
}

.calendly-section .section-header {
    margin-bottom: 32px;
}

.calendly-inline-widget {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    background: #08090c;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.link-column h4 {
    margin-bottom: 24px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.link-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.link-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}