/* ================================
   FM Ops - V4 Refined Brutalist
   Monochrome + Electric Blue
   Expert-reviewed iteration
   ================================ */

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #555555;
    --gray-light: #888888;
    --gray-dark: #1a1a1a;
    --gray-border: #2a2a2a;
    --accent: #0066FF;
    --accent-hover: #0052cc;
    --accent-light: #e6f0ff;

    --font-main: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --header-height: 72px;
    --container-width: 1000px;
}

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

/* ================================
   Animations & Transitions
   ================================ */

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 400ms; }

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

/* Fade in from different directions */
.fade-up { transform: translateY(40px); }
.fade-down { transform: translateY(-40px); }
.fade-left { transform: translateX(40px); }
.fade-right { transform: translateX(-40px); }
.fade-scale { transform: scale(0.95); }

.fade-up.is-visible,
.fade-down.is-visible,
.fade-left.is-visible,
.fade-right.is-visible,
.fade-scale.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Hero text animation */
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.6s ease forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Line reveal for text */
.line-reveal {
    overflow: hidden;
}

.line-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: lineReveal 0.8s ease forwards;
}

@keyframes lineReveal {
    to { transform: translateY(0); }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

/* Smooth font rendering during animations */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.7;
    color: var(--white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
}

/* Page load animation */
body.loading * {
    animation: none !important;
    transition: none !important;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-loaded .hero-content {
    animation: heroReveal 1s ease forwards;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

.accent {
    color: var(--accent);
}

strong {
    font-weight: 600;
    color: inherit;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-light {
    background: var(--white);
    color: var(--black);
}

/* ================================
   Header
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-border);
    z-index: 1000;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo:hover .accent {
    color: var(--white);
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Button hover lift effect */
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-header {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--gray-border);
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
}

.btn-header:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    font-size: 1.0625rem;
    padding: 1rem 1.75rem;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.3);
}

.btn-cta {
    background: var(--black);
    color: var(--white);
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
    border: 2px solid var(--black);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0);
}

.btn-cta:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta:active {
    transform: translateY(0);
}

/* ================================
   Hero
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--header-height) + 60px) 2rem 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
    flex-shrink: 0;
}

/* Hero Visual - Abstract Lines */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 400px;
    max-width: 550px;
}

.abstract-visual {
    position: relative;
    width: 100%;
}

.abstract-svg {
    width: 100%;
    height: auto;
}

/* Animated flow lines */
.flow-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 1.5s ease forwards;
}

/* Staggered line animations */
.line-main-1 { animation-delay: 0s; }
.line-main-2 { animation-delay: 0.3s; }
.line-main-3 { animation-delay: 0.6s; }
.line-sec-1 { animation-delay: 0.2s; }
.line-sec-2 { animation-delay: 0.5s; }
.line-ter-1 { animation-delay: 0.4s; }
.line-ter-2 { animation-delay: 0.7s; }
.line-ter-3 { animation-delay: 0.9s; }
.line-cross-1 { animation-delay: 0.8s; }
.line-cross-2 { animation-delay: 1s; }
.line-cross-3 { animation-delay: 1.2s; }

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Nodes */
.node {
    opacity: 0;
    animation: nodeAppear 0.3s ease forwards;
}

/* Staggered node animations */
.node-p1 { animation-delay: 0.1s; }
.node-p2 { animation-delay: 0.4s; }
.node-p3 { animation-delay: 0.7s; }
.node-p4 { animation-delay: 1s; }
.node-s1 { animation-delay: 0.3s; }
.node-s2 { animation-delay: 0.6s; }
.node-s3 { animation-delay: 0.9s; }
.node-j1 { animation-delay: 0.15s; }
.node-j2 { animation-delay: 0.2s; }
.node-j3 { animation-delay: 0.35s; }
.node-j4 { animation-delay: 0.65s; }
.node-j5 { animation-delay: 0.25s; }
.node-j6 { animation-delay: 0.45s; }
.node-j7 { animation-delay: 0.75s; }
.node-j8 { animation-delay: 0.5s; }
.node-j9 { animation-delay: 0.55s; }
.node-j10 { animation-delay: 0.6s; }
.node-j11 { animation-delay: 0.8s; }
.node-j12 { animation-delay: 0.85s; }
.node-j13 { animation-delay: 1.1s; }
.node-j14 { animation-delay: 1.15s; }
.node-j15 { animation-delay: 1.2s; }
.node-j16 { animation-delay: 0.95s; }
.node-j17 { animation-delay: 1.05s; }
.node-j18 { animation-delay: 1.1s; }

@keyframes nodeAppear {
    to { opacity: 1; }
}

/* Traveling pulse glow */
.travel-pulse {
    filter: drop-shadow(0 0 4px #0066FF) drop-shadow(0 0 8px #0066FF) drop-shadow(0 0 12px #0066FF);
}

.pulse-1 { filter: drop-shadow(0 0 6px #0066FF) drop-shadow(0 0 12px #0066FF); }
.pulse-2 { filter: drop-shadow(0 0 5px #0066FF) drop-shadow(0 0 10px #0066FF); }
.pulse-3 { filter: drop-shadow(0 0 4px #0066FF) drop-shadow(0 0 8px #0066FF); }
.pulse-4 { filter: drop-shadow(0 0 3px #0066FF) drop-shadow(0 0 6px #0066FF); }

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 0;
}

.hero-cta-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--gray);
}

/* ================================
   Proof Bar
   ================================ */

.proof-bar {
    background: var(--accent);
    color: var(--white);
    padding: 1.25rem 2rem;
    position: relative;
    overflow: hidden;
}

.proof-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.proof-bar-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9375rem;
}

.proof-item strong {
    font-weight: 700;
}

.proof-divider {
    opacity: 0.5;
}

/* ================================
   About (Trust-building)
   ================================ */

.about-grid {
    max-width: 640px;
}

.about-with-video {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.about-video {
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: 280px;
    height: 280px;
    background: var(--gray-dark);
    border: 2px solid var(--gray-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-placeholder:hover {
    border-color: var(--accent);
    background: rgba(0, 102, 255, 0.1);
}

.video-play-btn {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-play-btn {
    transform: scale(1.1);
}

.video-label {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin: 0;
}

.about-greeting {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-text {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-text strong {
    color: var(--white);
}

.about-location {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent);
    margin-top: 1.5rem;
}

/* ================================
   Content Split Layout
   ================================ */

.content-split {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    letter-spacing: -0.02em;
}

.section-title-dark {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    letter-spacing: -0.02em;
}

.section-title-center {
    position: static;
    text-align: center;
    margin-bottom: 3rem;
}

/* ================================
   Problem Section
   ================================ */

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    padding: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
    font-size: 1.0625rem;
    color: var(--gray);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray-light);
}

.problem-punchline {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--black);
}

.problem-punchline strong {
    color: var(--accent);
}

/* ================================
   Solution Section
   ================================ */

.solution-lead {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.solution-list {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1.0625rem;
    color: var(--gray-light);
}

.check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.solution-result {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}

.solution-result strong {
    color: var(--accent);
}

/* ================================
   Testimonials
   ================================ */

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial:hover {
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(0, 102, 255, 0.1);
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-text strong {
    color: var(--black);
}

.testimonial-result {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--gray);
}

.testimonial-wide {
    grid-column: 1 / -1;
    max-width: 640px;
    margin: 0 auto;
}

/* ================================
   Lead Magnet
   ================================ */

.section-leadmagnet {
    background: var(--gray-dark);
    padding: 3rem 2rem;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}

.leadmagnet-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.leadmagnet-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.leadmagnet-desc {
    font-size: 0.9375rem;
    color: var(--gray-light);
    margin: 0;
}

.leadmagnet-desc strong {
    color: var(--white);
}

.leadmagnet-form {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.leadmagnet-input {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-main);
    background: var(--black);
    border: 1px solid var(--gray-border);
    color: var(--white);
    width: 240px;
}

.leadmagnet-input::placeholder {
    color: var(--gray);
}

.leadmagnet-input:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-leadmagnet {
    background: var(--accent);
    color: var(--white);
    white-space: nowrap;
}

.btn-leadmagnet:hover {
    background: var(--accent-hover);
}

/* ================================
   Process
   ================================ */

.process-list {
    max-width: 640px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-border);
    transition: all 0.3s ease;
}

.process-step:hover {
    padding-left: 1rem;
}

.process-step:hover .process-number {
    transform: scale(1.1);
}

.process-step:last-child {
    border-bottom: none;
}

.process-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    width: 2rem;
    transition: transform 0.3s ease;
}

.process-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.process-info p {
    color: var(--gray-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.tag-free {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    background: var(--accent);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.process-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-border);
    font-style: italic;
}

/* ================================
   Who This Is For
   ================================ */

.fit-intro {
    font-size: 1.0625rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.fit-list {
    list-style: none;
    margin-bottom: 2rem;
}

.fit-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.0625rem;
    color: var(--black);
    border-bottom: 1px solid #e8e8e8;
}

.fit-list li:last-child {
    border-bottom: none;
}

.fit-list li strong {
    color: var(--accent);
}

.fit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.fit-note {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* ================================
   CTA Section
   ================================ */

.section-cta {
    background: var(--accent);
    color: var(--white);
    padding: 100px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10%, 10%); }
    50% { transform: translate(-5%, 5%); }
    75% { transform: translate(5%, -10%); }
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-sub {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.cta-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-bottom: 1.5rem;
}

.cta-list li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    opacity: 0.95;
}

.cta-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.cta-promise {
    font-size: 0.9375rem;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.cta-roi {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.call-breakdown {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.call-breakdown-title {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.call-breakdown-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.call-step {
    font-size: 0.9375rem;
}

.call-step strong {
    display: block;
    font-size: 1rem;
}

.call-divider {
    opacity: 0.5;
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

.calendly-embed {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.calendly-embed iframe {
    display: block;
}

.cta-alt {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.8;
}

.cta-alt a {
    color: var(--white);
    text-decoration: none;
    position: relative;
}

.cta-alt a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.cta-alt a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-spots {
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
}

/* ================================
   Examples Grid
   ================================ */

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.example-card {
    padding: 1.75rem;
    background: var(--accent-light);
    border-top: 4px solid var(--accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
}

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
}

.example-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.example-list {
    list-style: none;
}

.example-list li {
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
}

.example-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.examples-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray);
    font-style: italic;
}

/* Integrations */
.integrations {
    margin-top: 3rem;
    text-align: center;
}

.integrations-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.integrations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.integration-item {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--black);
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.integration-item:last-child {
    background: transparent;
    color: var(--accent);
    font-weight: 600;
}

/* ================================
   Case Study Carousel (Coverflow)
   ================================ */

.carousel-wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.carousel {
    position: relative;
    height: 520px;
    perspective: 1000px;
}

.carousel-slide {
    position: absolute;
    width: 600px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Center/Active slide */
.carousel-slide.active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
}

/* Previous slide (left) */
.carousel-slide.prev {
    opacity: 0.5;
    z-index: 5;
    transform: translateX(-95%) scale(0.85);
    pointer-events: auto;
    cursor: pointer;
}

/* Next slide (right) */
.carousel-slide.next {
    opacity: 0.5;
    z-index: 5;
    transform: translateX(-5%) scale(0.85);
    pointer-events: auto;
    cursor: pointer;
}

/* Far slides (barely visible) */
.carousel-slide.far-prev {
    opacity: 0.2;
    z-index: 1;
    transform: translateX(-130%) scale(0.7);
}

.carousel-slide.far-next {
    opacity: 0.2;
    z-index: 1;
    transform: translateX(30%) scale(0.7);
}

.carousel-slide.prev:hover,
.carousel-slide.next:hover {
    opacity: 0.7;
}

.case-study {
    background: var(--gray-dark);
    border: 1px solid var(--gray-border);
    height: 500px;
    overflow: hidden;
}

.case-study-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-border);
}

.case-study-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    display: block;
    margin-bottom: 0.375rem;
}

.case-study-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.case-study-content {
    padding: 1.25rem 1.5rem;
}

.case-study-section {
    margin-bottom: 1rem;
}

.case-study-section:last-child {
    margin-bottom: 0;
}

.case-study-section h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.case-study-section p {
    color: var(--gray-light);
    margin: 0;
    line-height: 1.45;
    font-size: 0.875rem;
}

.case-study-results {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
}

.case-study-results li {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.case-study-results li strong {
    color: var(--white);
    display: block;
    font-size: 0.875rem;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--gray-border);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-border);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--accent);
}

/* ================================
   FAQ
   ================================ */

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

.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    padding-left: 1rem;
    border-color: var(--accent);
}

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

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--accent);
}

.faq-answer {
    color: var(--gray-light);
    margin: 0;
    line-height: 1.7;
}

/* ================================
   Footer
   ================================ */

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: var(--black);
    border-top: 1px solid var(--gray-border);
    font-size: 0.875rem;
    color: var(--gray);
}

.footer-logo {
    font-weight: 700;
    color: var(--white);
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 1100px) {
    .carousel-slide {
        width: 500px;
    }

    .carousel-slide.prev {
        transform: translateX(-90%) scale(0.8);
    }

    .carousel-slide.next {
        transform: translateX(-10%) scale(0.8);
    }

    .carousel-slide.far-prev,
    .carousel-slide.far-next {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title,
    .section-title-dark {
        position: static;
    }

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

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-results {
        grid-template-columns: 1fr;
    }

    .carousel {
        height: 540px;
    }

    .case-study {
        height: 520px;
    }

    .carousel-slide {
        width: 90%;
        max-width: 450px;
    }

    .carousel-slide.prev {
        transform: translateX(-85%) scale(0.75);
        opacity: 0.3;
    }

    .carousel-slide.next {
        transform: translateX(-15%) scale(0.75);
        opacity: 0.3;
    }
}

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

    .carousel {
        height: 480px;
    }

    .case-study {
        height: 460px;
    }

    .carousel-slide {
        width: 95%;
        max-width: 340px;
    }

    .carousel-slide.prev,
    .carousel-slide.next {
        opacity: 0.15;
    }

    .carousel-slide.prev {
        transform: translateX(-80%) scale(0.7);
    }

    .carousel-slide.next {
        transform: translateX(-20%) scale(0.7);
    }

    .case-study-header {
        padding: 1rem 1.25rem;
    }

    .case-study-content {
        padding: 1rem 1.25rem;
    }

    .case-study-title {
        font-size: 1.125rem;
    }

    .case-study-section p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
}

@media (max-width: 1200px) {
    .hero-visual {
        min-width: 350px;
        max-width: 450px;
    }
}

@media (max-width: 1000px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-visual {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    .about-with-video {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro {
        text-align: center;
    }

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

    .leadmagnet-form {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .leadmagnet-input {
        width: 100%;
    }
}

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

    .hero {
        padding-top: calc(var(--header-height) + 40px);
        min-height: auto;
        padding-bottom: 60px;
    }

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

    .hero-sub {
        font-size: 1.125rem;
    }

    .hero-visual {
        display: none;
    }

    .proof-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .proof-divider {
        display: none;
    }

    .about-greeting {
        font-size: 1.75rem;
    }

    .section-title,
    .section-title-dark {
        font-size: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        gap: 0.75rem;
    }

    .section-cta {
        padding: 80px 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .header {
        padding: 0 1.25rem;
    }

    .hero {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .btn-header {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ================================
   NEW: Expert-Recommended Additions
   ================================ */

/* Hero Eyebrow */
.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Hero Big Idea */
.hero-bigidea {
    font-size: 1.0625rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-bigidea em {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
}

/* Hero Proof Line */
.hero-proof {
    font-size: 0.9375rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
}

/* Solution Math (ROI Calculation) */
.solution-math {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.math-line {
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    color: var(--white);
    margin: 0;
    line-height: 1.8;
}

.math-line strong {
    color: var(--accent);
}

/* Guarantee Box */
.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.1) 100%);
    border: 2px solid var(--accent);
    text-align: center;
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.guarantee-note {
    font-size: 0.875rem;
    color: var(--gray-light);
    font-style: italic;
    margin: 0;
}

/* Value Stack */
.value-stack {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.value-stack-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.value-stack-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.value-stack-list li {
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-stack-list li:last-child {
    border-bottom: none;
}

.value-check {
    color: #00ff88;
    font-weight: 700;
    flex-shrink: 0;
}

.value-worth {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: auto;
    flex-shrink: 0;
}

.value-stack-total {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Urgency Note */
.urgency-note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-note p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
    font-style: italic;
}

/* Referral Box */
.referral-box {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.referral-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.referral-text {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

/* Leverage Section */
.leverage-section {
    max-width: 900px;
    margin: 0 auto;
}

.leverage-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.leverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.leverage-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-dark);
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
}

.leverage-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.leverage-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.leverage-number {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.leverage-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.leverage-item p {
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Intro/Note */
.testimonials-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.testimonials-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray);
    margin-top: 2rem;
}

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

/* Differentiator Grid */
.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.diff-item {
    padding: 2rem;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.diff-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.diff-bad {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    text-decoration: line-through;
    opacity: 0.6;
}

.diff-arrow {
    font-size: 0.75rem;
    color: var(--gray-light);
}

.diff-good {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
}

.diff-desc {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.diff-desc strong {
    color: var(--black);
}

/* Pricing Grid */
.pricing-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.pricing-tier {
    padding: 2rem;
    background: #fafafa;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-tier:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.tier-popular {
    border-color: var(--accent);
    background: var(--accent-light);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
}

.tier-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.tier-desc {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.tier-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tier-list li {
    font-size: 0.875rem;
    color: var(--gray);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.tier-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.tier-fit {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
    font-style: italic;
}

.pricing-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray);
}

/* Bonuses Grid */
.bonuses-intro {
    text-align: center;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.bonus-item {
    padding: 1.5rem;
    background: var(--gray-dark);
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    border-color: var(--accent);
}

.bonus-tag {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.bonus-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.bonus-item p {
    font-size: 0.875rem;
    color: var(--gray-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.bonus-value {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
}

.bonuses-total {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-light);
}

.bonuses-total strong {
    color: var(--accent);
}

/* Guarantee additions */
.guarantee-why {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.05);
}

/* Client Wins Celebration */
.client-wins {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
    text-align: center;
}

.wins-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.wins-ticker {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.win-item {
    font-size: 0.875rem;
    color: var(--gray);
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid #e0e0e0;
}

.win-emoji {
    margin-right: 0.5rem;
}

/* Responsive for new elements */
@media (max-width: 900px) {
    .differentiator-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

@media (max-width: 768px) {
    .leverage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-stack {
        padding: 1.5rem;
    }

    .guarantee-box {
        padding: 2rem 1.5rem;
    }

    .guarantee-title {
        font-size: 1.25rem;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
    }

    .solution-math {
        padding: 1rem;
    }

    .math-line {
        font-size: 0.8125rem;
    }

    .wins-ticker {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tier-badge {
        font-size: 0.625rem;
    }
}
