/* ============================================
   SPARKLEAD - Main Stylesheet
   Light Premium Theme with Deep Navy Accent
   Inspired by: Workflows.io, GrowthDNA, Cold IQ
   ============================================ */

/* CSS Variables - Light Premium Theme */
:root {
    /* Navy accent palette */
    --navy: #1E2A4A;
    --navy-light: #2d3f66;
    --navy-dark: #152038;
    --navy-muted: rgba(30, 42, 74, 0.7);

    /* Functional colors */
    --green: #22c55e;
    --red: #ef4444;
    --blue: #3b82f6;
    --gold: #d4a853;

    /* Background aliases */
    --bg-light: #f5f4f1;

    /* Backgrounds */
    --bg-body: #faf9f7;
    --bg-section: #faf9f7;
    --bg-section-alt: #f5f4f1;
    --bg-elevated: #ffffff;
    --bg-elevated-hover: #f5f4f1;
    --bg-deep: #0f1629;

    /* Text */
    --text-primary: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-dim: #cbd5e1;
    --text-white: #ffffff;

    /* Borders */
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);
    --border-navy: rgba(30, 42, 74, 0.15);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.05);

    /* Layout */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --container: 1200px;
    --container-narrow: 800px;
    --container-blog: 720px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes testimonial-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@property --pill-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes pill-border-rotate {
    to { --pill-angle: 360deg; }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.4, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}

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

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }
.animate-on-scroll.delay-7 { transition-delay: 0.7s; }
.animate-on-scroll.delay-8 { transition-delay: 0.8s; }
.animate-on-scroll.delay-9 { transition-delay: 0.9s; }
.animate-on-scroll.delay-10 { transition-delay: 1.0s; }
.animate-on-scroll.delay-11 { transition-delay: 1.1s; }
.animate-on-scroll.delay-12 { transition-delay: 1.2s; }

/* Selection + Scrollbar */
::selection {
    background: rgba(30, 42, 74, 0.12);
    color: var(--text-primary);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.12); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.2); }

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background-color: var(--bg-body);
    line-height: 1.7;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover { color: var(--navy-light); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 64px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

.h2--large {
    font-size: 42px;
    letter-spacing: -0.02em;
}

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* Utility text classes */
.text--lg {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-body);
}

.text--emphasis {
    font-weight: 600;
    color: var(--navy);
}

.section__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--navy);
    margin-bottom: 16px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(30, 42, 74, 0.06);
    border: 1px solid rgba(30, 42, 74, 0.12);
    border-radius: var(--radius-full);
}

.hero .section__eyebrow {
    font-size: 14px;
    padding: 6px 16px;
}

/* Section CTA blocks */
.section-cta { text-align: center; margin-top: 48px; }
.section-cta--flex { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Eyebrow variant */
.section__eyebrow--normal { text-transform: none; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow { max-width: var(--container-narrow); }
.container--blog { max-width: var(--container-blog); }

.section {
    padding: 80px 0;
    position: relative;
}

.section--spacious {
    padding: 100px 0;
}

.section--flush {
    padding: 40px 0;
}

/* Default section */
.section:not(.section--light):not(.section--alt):not(.section--dark):not(.section--stats):not(.hero):not(.cta-section):not(.blog-article) {
    background: var(--bg-section);
}

/* Alternate section bg */
.section--light,
.section--alt {
    background: var(--bg-section-alt);
    position: relative;
}

/* Alt sections - clean, no patterns */

/* 3D beam background (reusable on any section) */
.section--beams {
    background: #dfe2e8;
    position: relative;
    overflow: hidden;
}

.section--beams::before {
    content: '';
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(-30deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.5) 2%, rgba(255,255,255,0.85) 5%, rgba(255,255,255,0.5) 8%,
            rgba(255,255,255,0) 9%, rgba(255,255,255,0) 14%,
            rgba(255,255,255,0.35) 15%, rgba(255,255,255,0.65) 19%, rgba(255,255,255,0.35) 23%,
            rgba(255,255,255,0) 24%, rgba(255,255,255,0) 30%,
            rgba(255,255,255,0.45) 31%, rgba(255,255,255,0.8) 38%, rgba(255,255,255,0.45) 45%,
            rgba(255,255,255,0) 46%, rgba(255,255,255,0) 52%,
            rgba(255,255,255,0.4) 53%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.4) 67%,
            rgba(255,255,255,0) 68%, rgba(255,255,255,0) 75%,
            rgba(255,255,255,0.5) 76%, rgba(255,255,255,0.88) 83%, rgba(255,255,255,0.5) 90%,
            rgba(255,255,255,0) 91%
        );
    pointer-events: none;
    z-index: 0;
    animation: hero-beams 35s ease-in-out infinite;
}

.section--beams::after {
    content: '';
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(-30deg,
            transparent 0%, transparent 8.5%,
            rgba(0,0,0,0.07) 8.5%, rgba(0,0,0,0.07) 9.2%,
            transparent 9.2%, transparent 23.5%,
            rgba(0,0,0,0.05) 23.5%, rgba(0,0,0,0.05) 24.2%,
            transparent 24.2%, transparent 45.5%,
            rgba(0,0,0,0.07) 45.5%, rgba(0,0,0,0.07) 46.2%,
            transparent 46.2%, transparent 67.5%,
            rgba(0,0,0,0.05) 67.5%, rgba(0,0,0,0.05) 68.2%,
            transparent 68.2%, transparent 90.5%,
            rgba(0,0,0,0.07) 90.5%, rgba(0,0,0,0.07) 91.2%,
            transparent 91.2%
        );
    pointer-events: none;
    z-index: 0;
    animation: hero-beams 35s ease-in-out infinite;
}

.section--beams > .container {
    position: relative;
    z-index: 10;
}

/* Override dot grid when beams are used */
.section--alt.section--beams::before,
.section--light.section--beams::before {
    background-image:
        linear-gradient(-30deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.5) 2%, rgba(255,255,255,0.85) 5%, rgba(255,255,255,0.5) 8%,
            rgba(255,255,255,0) 9%, rgba(255,255,255,0) 14%,
            rgba(255,255,255,0.35) 15%, rgba(255,255,255,0.65) 19%, rgba(255,255,255,0.35) 23%,
            rgba(255,255,255,0) 24%, rgba(255,255,255,0) 30%,
            rgba(255,255,255,0.45) 31%, rgba(255,255,255,0.8) 38%, rgba(255,255,255,0.45) 45%,
            rgba(255,255,255,0) 46%, rgba(255,255,255,0) 52%,
            rgba(255,255,255,0.4) 53%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.4) 67%,
            rgba(255,255,255,0) 68%, rgba(255,255,255,0) 75%,
            rgba(255,255,255,0.5) 76%, rgba(255,255,255,0.88) 83%, rgba(255,255,255,0.5) 90%,
            rgba(255,255,255,0) 91%
        );
    background-size: auto;
    inset: -20%;
    animation: hero-beams 35s ease-in-out infinite;
}

/* Dark accent section (CTAs, Calendly) */
.section--dark {
    background: linear-gradient(135deg, var(--bg-deep) 0%, #131b33 40%, #171f38 70%, var(--bg-deep) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

/* Dark sections - clean, no grid patterns */

.section--dark > .container {
    position: relative;
    z-index: 1;
}

/* Stats banner section */
.section--stats {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

/* Stats section - clean, no grid patterns */

.section--stats > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

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

.section-header p {
    color: var(--text-body);
    font-size: 18px;
    line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    box-shadow: none;
    transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    top: 12px;
    width: calc(100% - 48px);
    max-width: 740px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border-bottom-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.nav.scrolled .nav__inner {
    height: 52px;
    padding: 0 6px 0 16px;
    max-width: none;
}

/* Hide company name in scrolled nav, show only icon */
.nav__logo-text {
    display: inline-block;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
}

.nav.scrolled .nav__logo-text {
    opacity: 0;
    max-width: 0;
}

.nav.scrolled .nav__logo {
    color: var(--text-primary);
    gap: 0;
}

.nav.scrolled .nav__logo svg {
    color: var(--navy);
}

.nav.scrolled .nav__links > li > a {
    color: var(--text-body);
    font-size: 14px;
    padding: 6px 10px;
}

.nav.scrolled .nav__links > li > a:hover {
    color: var(--text-primary);
}

.nav.scrolled .nav__cta {
    background: var(--navy);
    color: var(--text-white) !important;
    border-color: var(--navy);
    padding: 8px 20px;
    font-size: 13px;
    margin: 8px 0;
}

.nav.scrolled .nav__cta:hover {
    background: var(--navy-light);
    color: var(--text-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 42, 74, 0.25);
}

.nav.scrolled .nav__toggle span {
    background: var(--text-primary);
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    transition: gap 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav__links > li {
    position: relative;
}

.nav__links > li > a {
    color: var(--text-body);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease,
                font-size 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav__links > li > a:hover {
    color: var(--text-primary);
}

/* Dropdown arrow */
.nav__links > li > a .nav__arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.2s ease;
    margin-top: 1px;
}

.nav__links > li:hover > a .nav__arrow {
    transform: rotate(180deg);
}

/* Dropdown menu */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}

.nav__links > li:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.nav__dropdown-inner {
    background: #ffffff;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
}

.nav__dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 400;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
}

.nav__dropdown a + a {
    border-top: 1px solid var(--border);
}

.nav__dropdown a:hover {
    color: var(--text-primary);
    background: var(--bg-section-alt);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 26px;
    background: var(--navy);
    color: var(--text-white) !important;
    border: 1.5px solid var(--navy);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: padding 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                font-size 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.2s ease,
                border-color 0.2s ease,
                transform 0.2s ease,
                box-shadow 0.2s ease;
    white-space: nowrap;
}

.nav__cta:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--text-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 42, 74, 0.25);
}

/* Mobile menu toggle */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 1px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 80px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #dfe2e8;
}

/* 3D diagonal beam ribbons */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: 5%;
    background-image:
        linear-gradient(-30deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.5) 2%, rgba(255,255,255,0.85) 5%, rgba(255,255,255,0.5) 8%,
            rgba(255,255,255,0) 9%, rgba(255,255,255,0) 14%,
            rgba(255,255,255,0.35) 15%, rgba(255,255,255,0.65) 19%, rgba(255,255,255,0.35) 23%,
            rgba(255,255,255,0) 24%, rgba(255,255,255,0) 30%,
            rgba(255,255,255,0.45) 31%, rgba(255,255,255,0.8) 38%, rgba(255,255,255,0.45) 45%,
            rgba(255,255,255,0) 46%, rgba(255,255,255,0) 52%,
            rgba(255,255,255,0.4) 53%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.4) 67%,
            rgba(255,255,255,0) 68%, rgba(255,255,255,0) 75%,
            rgba(255,255,255,0.5) 76%, rgba(255,255,255,0.88) 83%, rgba(255,255,255,0.5) 90%,
            rgba(255,255,255,0) 91%
        );
    pointer-events: none;
    z-index: 0;
    animation: hero-beams 35s ease-in-out infinite;
    translate: var(--beam-x, 0px) var(--beam-y, 0px);
    transition: translate 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

/* Thin shadow lines between beams for depth */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: 5%;
    background-image:
        linear-gradient(-30deg,
            transparent 0%, transparent 8.5%,
            rgba(0,0,0,0.07) 8.5%, rgba(0,0,0,0.07) 9.2%,
            transparent 9.2%, transparent 23.5%,
            rgba(0,0,0,0.05) 23.5%, rgba(0,0,0,0.05) 24.2%,
            transparent 24.2%, transparent 45.5%,
            rgba(0,0,0,0.07) 45.5%, rgba(0,0,0,0.07) 46.2%,
            transparent 46.2%, transparent 67.5%,
            rgba(0,0,0,0.05) 67.5%, rgba(0,0,0,0.05) 68.2%,
            transparent 68.2%, transparent 90.5%,
            rgba(0,0,0,0.07) 90.5%, rgba(0,0,0,0.07) 91.2%,
            transparent 91.2%
        );
    pointer-events: none;
    z-index: 0;
    animation: hero-beams 35s ease-in-out infinite;
    translate: var(--beam-x, 0px) var(--beam-y, 0px);
    transition: translate 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

@keyframes hero-beams {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-15px) translateY(8px); }
}

.hero > .container {
    position: relative;
    z-index: 10;
}

/* Qualifier pill */
.hero__pill {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 36px;
    background: var(--navy);
    position: relative;
}

/* Animated border light traveling around pill perimeter */
.hero__pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    padding: 1.5px;
    background: conic-gradient(from var(--pill-angle, 0deg), transparent 0%, transparent 40%, rgba(160, 210, 255, 0.3) 50%, rgba(160, 210, 255, 0.5) 60%, rgba(255, 255, 255, 0.6) 70%, rgba(160, 210, 255, 0.5) 80%, rgba(160, 210, 255, 0.3) 90%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: pill-border-rotate 6s linear infinite;
    pointer-events: none;
}

.hero h1 {
    font-size: 60px;
    max-width: 860px;
    margin: 0 auto 36px;
    color: var(--text-muted);
    letter-spacing: -0.015em;
    line-height: 1.35;
    font-weight: 500;
    text-align: center;
}

/* Accent line in hero - the key message */
.hero__accent {
    color: var(--text-primary);
    font-weight: 700;
}

.hero__sub {
    font-size: 19px;
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.005em;
}

/* Hero CTA group */
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
}

/* Ghost button (text-only CTA) */
.btn--ghost {
    background: none;
    border: none;
    color: var(--text-body);
    font-weight: 600;
    padding: 14px 8px;
    transition: color 0.2s;
}

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

/* Ghost button hover improvement */
.btn--ghost:hover {
    color: var(--navy);
    transform: translateX(4px);
}

/* Hero content entrance animations */
.hero > .container > * {
    animation: hero-fade-up 0.8s cubic-bezier(0.25, 0.4, 0.25, 1) backwards;
}

.hero > .container > *:nth-child(1) { animation-delay: 0.15s; }
.hero > .container > *:nth-child(2) { animation-delay: 0.3s; }
.hero > .container > *:nth-child(3) { animation-delay: 0.45s; }
.hero > .container > *:nth-child(4) { animation-delay: 0.6s; }
.hero > .container > *:nth-child(5) { animation-delay: 0.75s; }
/* Metrics strip between hero and content */
.metrics-strip {
    padding: 48px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.metrics-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 20% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.metrics-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    position: relative;
}

.metrics-strip__item {
    padding: 0 24px;
    position: relative;
}

.metrics-strip__item + .metrics-strip__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.metrics-strip__value {
    display: block;
    font-size: 44px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.metrics-strip__label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Legacy hero classes (for subpages) */
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 6px 6px 16px; border-radius: 9999px; background: var(--bg-section-alt); border: 1px solid var(--border-hover); margin-bottom: 32px; font-size: 14px; color: var(--text-body); letter-spacing: 0.02em; text-decoration: none; transition: background 0.3s ease; box-shadow: var(--shadow-sm); }
.hero__badge:hover { background: #ffffff; border-color: rgba(0, 0, 0, 0.15); }
.hero__qualifier { font-size: 14px !important; color: var(--text-muted) !important; margin-top: 12px; }
.hero--left { text-align: left; }
.hero--left h1, .hero--left p { margin-left: 0; margin-right: 0; }
.hero .case-study__tag, .hero .blog-card__tag { background: rgba(30, 42, 74, 0.06); border: 1px solid rgba(30, 42, 74, 0.12); color: var(--navy); }

/* ============================================
   TRUSTED BY MARQUEE (separate section, used on subpages)
   ============================================ */

.trusted-section {
    padding: 40px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Trusted bridge (homepage - gradient transition from hero to content) */
.trusted-bridge {
    padding: 40px 0;
    background: linear-gradient(to bottom, #dfe2e8 0%, var(--bg-body) 100%);
}

.trusted-bridge .marquee {
    max-width: 66%;
    margin: 0 auto;
}

.trusted-bridge .marquee__track {
    gap: 56px;
    animation: marquee-scroll 40s linear infinite;
}

.trusted-bridge .marquee__logo {
    height: 40px;
    width: auto;
    min-width: 80px;
    opacity: 1;
}

.trusted-bridge .marquee__logo[src$=".jpeg"],
.trusted-bridge .marquee__logo[src$=".jpg"] {
    border-radius: 6px;
    padding: 4px 8px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Dual-row logo marquee animation */
.logo-marquee {
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow: hidden;
    padding: 8px 0;
    max-width: calc(100% - 380px);
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.logo-marquee__row {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.logo-marquee__track {
    display: flex;
    align-items: center;
    gap: 76px;
    flex-shrink: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.logo-marquee__track--left {
    animation: marquee-left 45s linear infinite;
}

.logo-marquee__track--right {
    animation: marquee-right 50s linear infinite;
}

@keyframes marquee-left {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.333%, 0, 0); }
}

@keyframes marquee-right {
    0% { transform: translate3d(-33.333%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.logo-marquee__track .marquee__logo {
    height: var(--marquee-h, 38px);
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-marquee__track .logo-combo {
    flex-shrink: 0;
}

/* Per-logo visual sizing (scale factor relative to --marquee-h base)
   Calibrated visually to account for whitespace, aspect ratio, and density */
.logo-marquee__track .marquee__logo[alt="Alta CFO"] { height: calc(var(--marquee-h, 38px) * 1.32); }
.logo-marquee__track .marquee__logo[alt="True Frontier"] { height: calc(var(--marquee-h, 38px) * 0.5); }
.logo-marquee__track .marquee__logo[alt="Inviktus Media"] { height: calc(var(--marquee-h, 38px) * 1.55); }
.logo-marquee__track .marquee__logo[alt="City Business Centre"] { height: calc(var(--marquee-h, 38px) * 1.21); }
.logo-marquee__track .marquee__logo[alt="Smairt AI"] { height: calc(var(--marquee-h, 38px) * 0.9); }
.logo-marquee__track .marquee__logo[alt="System4"] { height: calc(var(--marquee-h, 38px) * 0.9); }
.logo-marquee__track .marquee__logo[alt="EduNetwork Partners"] { height: calc(var(--marquee-h, 38px) * 0.9); }
.logo-marquee__track .marquee__logo[alt="CreateTOTALLY"] { height: calc(var(--marquee-h, 38px) * 0.79); }
.logo-marquee__track .marquee__logo[alt="Zing"] { height: calc(var(--marquee-h, 38px) * 1.16); }



/* Icon + text combo logos (e.g. Carbon Box Media) */
.logo-combo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-combo__icon {
    height: 36px;
    width: auto;
}

.logo-combo__text {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
}

/* ToraTech brand style: bold uppercase, blue gradient */
.logo-combo__text--toratech {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #2563eb 0%, #60b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Growth Hutch brand style: serif, two lines, teal accent */
.logo-combo__text--growth-hutch {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 400;
    color: #1a5c5a;
    line-height: 1.1;
    white-space: pre-line;
    letter-spacing: -0.02em;
}

/* Logo-specific color overrides (all contexts) */
.marquee__logo[alt="Baton"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(30%) saturate(1800%) hue-rotate(195deg) brightness(95%);
}
.marquee__logo[alt="Alta CFO"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(30%) saturate(1800%) hue-rotate(195deg) brightness(95%);
}
.marquee__logo[alt="EduNetwork Partners"] {
    filter: brightness(0.3) saturate(120%);
}
.marquee__logo[alt="Inviktus Media"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(30%) saturate(1800%) hue-rotate(195deg) brightness(95%);
}

.trusted-section__label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    margin-bottom: 0;
}

/* Proof bar (avatars + stars) in bridge section */
.trusted-bridge__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.trusted-bridge__avatars {
    display: flex;
}

.trusted-bridge__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    margin-left: -8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trusted-bridge__avatar:first-child {
    margin-left: 0;
}

.trusted-bridge__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.trusted-bridge__stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
}

.trusted-bridge__text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 25%, black 75%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 25%, black 75%, transparent);
}

.marquee__track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

.marquee__logo {
    flex-shrink: 0;
    height: 28px;
    width: auto;
    opacity: 1;
    transition: all 0.3s ease;
    object-fit: contain;
}

.marquee__item {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee__item:hover {
    color: rgba(0, 0, 0, 0.3);
}

.trusted-bridge .marquee__item {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    opacity: 1;
    letter-spacing: -0.01em;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    font-family: var(--font);
    text-decoration: none;
    position: relative;
}

.btn--primary {
    background: var(--navy);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(30, 42, 74, 0.2);
    font-weight: 700;
}

.btn--primary:hover {
    background: var(--navy-light);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 42, 74, 0.25);
}


.btn--outline {
    background: transparent;
    border: 1.5px solid var(--border-hover);
    color: var(--text-body);
    border-radius: var(--radius-full);
}

.btn--outline:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: rgba(30, 42, 74, 0.03);
}

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

.btn--white:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--text-white);
}

.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 16px 36px; font-size: 16px; }

/* ============================================
   HOVER BUTTON PARTICLE TRAIL
   ============================================ */

.hover-btn { overflow: hidden; isolation: isolate; }

.hover-btn__circle {
    position: absolute;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ============================================
   MOUSE-TRACKING GLOW EFFECT
   ============================================ */

.glow-card { --glow-x: 50%; --glow-y: 50%; }

.glow-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: conic-gradient(
        from 215deg at var(--glow-x) var(--glow-y),
        transparent 0deg,
        rgba(30, 42, 74, 0.06) 90deg,
        rgba(0, 0, 0, 0.02) 180deg,
        rgba(30, 42, 74, 0.04) 270deg,
        transparent 360deg
    );
    pointer-events: none;
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

.glow-card:hover::after { opacity: 1; }

/* ============================================
   CARDS
   ============================================ */

.card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.card--elevated {
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.card--elevated:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card--featured {
    border-color: var(--border-navy);
    box-shadow: var(--shadow-md);
}

.card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--navy);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Deliverable grid (3 glass columns, vertical numbering) */
.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.deliverable-col {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 42, 74, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.deliverable {
    padding: 14px 0;
    border-bottom: 1px solid rgba(30, 42, 74, 0.06);
}

.deliverable:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.deliverable:first-child {
    padding-top: 0;
}

.deliverable__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.deliverable__desc {
    font-size: 15px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}

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

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

.card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(30, 42, 74, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.card:hover .card__icon { background: rgba(30, 42, 74, 0.1); }

.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-body); font-size: 15px; line-height: 1.7; }

.card__name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

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

.card--video {
    text-align: center;
}

/* ============================================
   FEATURE CARDS (hover accent bar + gradient reveal)
   ============================================ */

.card--feature {
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--border);
    background: transparent;
    box-shadow: none;
    padding: 40px;
    overflow: hidden;
}

.card--feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 42, 74, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.card--feature:hover::before { opacity: 1; }
.card--feature:hover { transform: none; box-shadow: none; border-color: var(--border); }

.card--feature .card__accent {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    border-radius: 0 4px 4px 0;
    background: var(--border);
    transition: all 0.2s ease;
}

.card--feature:hover .card__accent { height: 32px; background: var(--navy); }
.card--feature h3 { transition: transform 0.2s ease; }
.card--feature:hover h3 { transform: translateX(8px); }

.grid--4 .card--feature:nth-child(4n+1) { border-left: 1px solid var(--border); }
.grid--4 .card--feature:nth-child(-n+4) { border-bottom: 1px solid var(--border); }

/* ============================================
   GRIDS
   ============================================ */

.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: 3px solid var(--navy);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial__quote {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__quote::before {
    content: '\201C';
    font-size: 48px;
    line-height: 0;
    vertical-align: -16px;
    color: var(--navy);
    margin-right: 4px;
    opacity: 0.4;
}

.testimonial__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial__role {
    font-size: 13px;
    color: var(--text-muted);
}

/* Scrolling testimonial columns */
.testimonials-scroll {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-height: 740px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonials-scroll__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    animation: testimonial-scroll var(--scroll-duration, 15s) linear infinite;
}

.testimonials-scroll__col:nth-child(2) { --scroll-duration: 19s; }
.testimonials-scroll__col:nth-child(3) { --scroll-duration: 17s; }

.testimonials-scroll .testimonial { max-width: 320px; width: 100%; border-radius: 24px; }

/* ============================================
   CAROUSEL / GALLERY
   ============================================ */

.carousel { position: relative; overflow: hidden; }

.carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.4, 0.25, 1);
    cursor: grab;
}

.carousel__track:active { cursor: grabbing; }
.carousel__slide { min-width: 320px; max-width: 360px; flex-shrink: 0; }
.carousel__slide a { display: block; border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; }
.carousel__slide-img { position: relative; min-height: 400px; overflow: hidden; border-radius: var(--radius-lg); }
.carousel__slide-img img { position: absolute; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.carousel__slide a:hover img { transform: scale(1.05); }
.carousel__slide-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, rgba(15, 22, 41, 0.4) 50%, rgba(15, 22, 41, 0.85) 100%); }
.carousel__slide-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: var(--text-white); }
.carousel__slide-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.carousel__slide-desc { font-size: 14px; opacity: 0.85; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 24px; }
.carousel__slide-link { font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.carousel__slide-link svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.carousel__slide a:hover .carousel__slide-link svg { transform: translateX(4px); }
.carousel__nav { display: flex; gap: 8px; }
.carousel__btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text-body); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.carousel__btn:hover:not(:disabled) { background: var(--bg-section-alt); border-color: var(--border-hover); }
.carousel__btn:disabled { opacity: 0.3; cursor: default; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0, 0, 0, 0.1); border: none; cursor: pointer; padding: 0; transition: background 0.3s ease; }
.carousel__dot--active { background: var(--navy); }

/* ============================================
   SPARKLE PARTICLES (canvas overlay)
   ============================================ */

.sparkle-wrap { position: relative; overflow: hidden; }
.sparkle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; -webkit-mask-image: radial-gradient(50% 50%, white, transparent 85%); mask-image: radial-gradient(50% 50%, white, transparent 85%); }

/* ============================================
   QUALIFICATION (Is This For You)
   ============================================ */

.qualify-col {
    padding: 36px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.qualify-col:hover { transform: translateY(-2px); }

.qualify-col--yes {
    background: rgba(34, 197, 94, 0.08);
    border: 2px solid rgba(34, 197, 94, 0.25);
}

.qualify-col--yes:hover { box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1); }

.qualify-col--no {
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.25);
}

.qualify-col--no:hover { box-shadow: 0 8px 24px rgba(239, 68, 68, 0.1); }

.qualify-col h3 { margin-bottom: 20px; font-size: 18px; }
.qualify-col--yes h3 { color: var(--green); }
.qualify-col--no h3 { color: var(--red); }
.qualify-col ul { list-style: none; }
.qualify-col li { padding: 8px 0; padding-left: 28px; position: relative; font-size: 15px; color: var(--text-body); line-height: 1.6; }
.qualify-col--yes li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.qualify-col--no li::before { content: '\2717'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ============================================
   RESULTS TABLE
   ============================================ */

.results-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.results-table th, .results-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.results-table tr { transition: background 0.2s ease; }
.results-table tbody tr:hover { background: var(--bg-section-alt); }
.results-table tbody tr:last-child td { border-bottom: none; }
.results-table th { font-size: 13px; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.05em; background: var(--bg-section-alt); }
.results-table td { font-size: 15px; }
.results-table td:first-child { font-weight: 500; color: var(--text-primary); }

/* Comparison table (workflows.io style) */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; }
.compare-table th,
.compare-table td { padding: 18px 24px; text-align: center; border-bottom: 1px solid var(--border); font-size: 15px; }
.compare-table th { font-size: 14px; font-weight: 700; color: var(--text-primary); padding: 20px 24px; background: var(--bg-section-alt); }
.compare-table td:first-child,
.compare-table th:first-child { text-align: left; font-weight: 500; color: var(--text-primary); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr { transition: background 0.2s ease; }
.compare-table tbody tr:hover { background: rgba(0, 0, 0, 0.015); }

/* Highlighted Sparklead column */
.compare-table__highlight { background: rgba(34, 197, 94, 0.05); }
.compare-table th.compare-table__highlight { background: rgba(34, 197, 94, 0.1); color: var(--green); font-weight: 700; }
.compare-table td.compare-table__highlight { font-weight: 600; }

/* Check and cross icons */
.compare-check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; font-size: 12px; font-weight: 700; vertical-align: middle; margin-right: 6px; }
.compare-cross { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: #ef4444; color: #fff; font-size: 12px; font-weight: 700; vertical-align: middle; margin-right: 6px; }

/* ============================================
   STATS
   ============================================ */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

/* Inline stats (horizontal row with dividers) */
.stats--inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat--inline {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 48px;
    text-align: center;
}

.stat--inline:hover {
    transform: none;
    box-shadow: none;
}

.stat__divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.stat__value {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stat--inline .stat__value {
    color: var(--text-white);
    font-size: 44px;
}

.stat__label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat--inline .stat__label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-top: 8px;
}

/* ============================================
   VIDEO EMBED
   ============================================ */

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #f3f4f6;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.video-wrap--hero {
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   CASE STUDY CARDS
   ============================================ */

.case-study {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-md);
}

.case-study--featured {
    border-color: var(--border-navy);
    box-shadow: var(--shadow-lg);
    padding: 8px;
}

.case-study--featured .split {
    gap: 40px;
    padding: 24px;
}

.case-study:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.case-study__content { padding: 32px; }

.case-study__tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(30, 42, 74, 0.06);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.case-study__client {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.case-study h3 { margin-bottom: 16px; font-size: 22px; }

.case-study__quote {
    font-style: italic;
    color: var(--text-body);
    border-left: 3px solid var(--navy);
    padding-left: 16px;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.7;
}

.case-study__quote cite {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

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

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

.faq-item.open {
    background: var(--bg-section-alt);
    margin: 0 -16px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    border-bottom-color: transparent;
}

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

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    gap: 16px;
    line-height: 1.4;
}

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

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--text-muted);
    display: inline-block;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
    color: var(--navy);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer__inner {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
}

/* ============================================
   TIMELINE (old - kept for subpages)
   ============================================ */

.timeline { position: relative; padding-left: 32px; }

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--navy), rgba(30, 42, 74, 0.3), rgba(30, 42, 74, 0.05));
}

.timeline__item { position: relative; padding-bottom: 72px; }
.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--bg-section);
    box-shadow: 0 0 0 2px var(--navy);
}

.timeline__label { font-size: 14px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.timeline__title { font-size: 22px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.timeline__desc { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

/* ============================================
   PROCESS TIMELINE (left rail + right content)
   ============================================ */

.process-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 80px;
}

/* Connecting line between circles - drawn from each step */
.process-timeline::before {
    display: none;
}

.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 72px;
}

/* Vertical line from below the marker to bottom of step */
.process-step::before {
    content: '';
    position: absolute;
    left: -57px;
    top: 56px;
    bottom: 0;
    width: 3px;
    background: var(--navy);
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step:last-child::before {
    display: none;
}

/* Numbered circle on the left rail */
.process-step__marker {
    position: absolute;
    left: -80px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--bg-body), 0 0 0 8px var(--navy);
}

.process-step__number {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 800;
}

/* Result marker */
.process-step__marker--result {
    background: var(--gold);
    box-shadow: 0 0 0 6px var(--bg-body), 0 0 0 8px var(--gold);
}

.process-step__marker--result .process-step__number {
    color: var(--navy);
    font-size: 20px;
}

/* Content area */
.process-step__content {
    flex: 1;
    padding: 4px 0;
}

/* Labels, titles, descriptions */
.process-step__label {
    font-size: 14px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.process-step__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.process-step__desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.65;
}

/* Result step - same layout, gold accent */
.process-step--result .process-step__title {
    color: var(--navy);
}

/* ============================================
   INCLUDED LIST
   ============================================ */

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

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.included-item:hover { background: var(--bg-section-alt); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.included-item__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.included-item__text { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.included-item__desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section { text-align: center; padding: 80px 0; position: relative; overflow: hidden; }
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: var(--text-muted); max-width: 540px; margin: 0 auto 32px; }
.cta-section .btn { margin-bottom: 12px; }
.cta-section__note { font-size: 14px !important; color: var(--text-dim) !important; }

/* ============================================
   BLOG
   ============================================ */

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.blog-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.35s ease;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); color: inherit; }

.blog-card__tag { display: inline-block; padding: 3px 10px; background: rgba(30, 42, 74, 0.06); border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.blog-card__meta { display: flex; gap: 16px; margin-top: 16px; font-size: 13px; color: var(--text-dim); }

/* Blog article */
.blog-article { padding: 140px 0 80px; background: var(--bg-section); }
.blog-article__meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 14px; color: var(--text-muted); }
.blog-article h1 { font-size: 40px; margin-bottom: 20px; line-height: 1.2; }
.blog-article__intro { font-size: 19px; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.blog-article h2 { font-size: 28px; margin-top: 48px; margin-bottom: 16px; }
.blog-article h3 { font-size: 21px; margin-top: 32px; margin-bottom: 12px; }
.blog-article p { margin-bottom: 16px; line-height: 1.8; }
.blog-article ul, .blog-article ol { margin-bottom: 16px; padding-left: 24px; }
.blog-article li { margin-bottom: 8px; line-height: 1.7; }
.blog-article strong { color: var(--text-primary); }
.blog-article blockquote { border-left: 3px solid var(--navy); padding: 16px 0 16px 24px; margin: 24px 0; font-style: italic; color: var(--text-body); font-size: 17px; line-height: 1.7; }
.blog-article__cta { margin-top: 48px; padding: 32px; background: var(--bg-section-alt); border: 1px solid var(--border-navy); border-radius: var(--radius-lg); text-align: center; }
.blog-article__cta h3 { margin-top: 0; margin-bottom: 12px; }
.blog-article__cta p { color: var(--text-muted); margin-bottom: 20px; }

/* Related articles */
.blog-related { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.blog-related__title { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; }
.blog-related__list { list-style: none; padding-left: 0 !important; margin: 0 !important; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.blog-related__list li { margin-bottom: 0 !important; max-width: 100%; }
.blog-related__link { display: inline-flex; align-items: center; padding: 16px 20px; background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-primary); text-decoration: none; font-weight: 500; font-size: 15px; transition: all 0.2s ease; box-shadow: var(--shadow-sm); }
.blog-related__link:hover { border-color: var(--border-navy); box-shadow: var(--shadow-md); }
.blog-related__time { font-size: 13px; font-weight: 400; color: var(--text-muted); white-space: nowrap; margin-left: 16px; }

/* Blog tables */
.blog-article table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin: 24px 0 32px; }
.blog-article th, .blog-article td { padding: 14px 24px; text-align: left; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.blog-article th:last-child, .blog-article td:last-child { border-right: none; }
.blog-article tbody tr:last-child td { border-bottom: none; }
.blog-article th { font-size: 13px; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.05em; background: var(--bg-section-alt); }
.blog-article td { font-size: 15px; color: var(--text-body); }
.blog-article td:first-child { font-weight: 500; color: var(--text-primary); }
.blog-article td:not(:first-child) { text-align: center; }
.blog-article th:not(:first-child) { text-align: center; }
.blog-article tbody tr { transition: background 0.2s ease; }
.blog-article tbody tr:hover { background: var(--bg-section-alt); }

/* ============================================
   CALL CONFIRMED PAGE
   ============================================ */

.hero--confirmed { min-height: auto; padding: 180px 0 80px; }
.hero--confirmed h1 { color: var(--text-primary); }
.hero--confirmed .hero__sub { font-size: 22px; font-weight: 600; color: var(--text-primary); }

.scroll-arrow { margin-top: 40px; }
.scroll-arrow span { display: inline-block; font-size: 44px; color: var(--text-primary); font-weight: 700; animation: bounce-arrow 2s ease-in-out infinite; }
@keyframes bounce-arrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

.hero-fade { height: 40px; background: linear-gradient(to bottom, #dfe2e8, var(--bg-body)); }
.hero-fade + .section.section--spacious { padding-top: 0; }

.confirmed-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.confirm-steps { display: flex; flex-direction: column; gap: 24px; }

.confirm-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.confirm-step__number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-step__content h3 { margin: 0 0 8px; font-size: 18px; }
.confirm-step__content p { margin: 0; color: var(--text-body); font-size: 15px; line-height: 1.7; }

/* Social link cards */
.social-links-grid { display: flex; flex-direction: column; gap: 16px; }

.social-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.social-link-card:hover {
    border-color: var(--border-navy);
    box-shadow: var(--shadow-md);
}

.social-link-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: rgba(30, 42, 74, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.social-link-card__content { flex: 1; }
.social-link-card__content h3 { margin: 0 0 4px; font-size: 17px; }
.social-link-card__content p { margin: 0; font-size: 14px; color: var(--text-body); line-height: 1.5; }

.social-link-card__arrow {
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.social-link-card:hover .social-link-card__arrow {
    transform: translateX(4px);
    color: var(--navy);
}

/* ============================================
   TOOL EMBED + CALENDLY
   ============================================ */

.tool-embed { margin: 48px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.tool-embed iframe { width: 100%; border: 0; display: block; }
.tool-embed--roi iframe { height: 1200px; }
.tool-embed--checklist iframe { height: 1400px; }
.tool-embed--assessment iframe { height: 900px; }

/* Calendly section — plain background continuing from FAQs */
.calendly-section {
    border-top: none;
    padding-top: 48px;
}
.calendly-section .section-header { margin-bottom: 40px; }
.calendly-section .section-header h2 { color: var(--text-primary); }
.calendly-section .section-header p { color: var(--text-body); max-width: 560px; margin: 12px auto 0; }
.calendly-embed { max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-elevated); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.calendly-embed .calendly-inline-widget { border-radius: var(--radius-lg); }

/* ============================================
   FOUNDER CARD (legacy - used on about page)
   ============================================ */

.founder-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 16px;
}

.founder-card__img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-section-alt);
    box-shadow: var(--shadow-md);
}

.founder-card__name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.founder-card__role {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Standalone founder photo (rectangular, homepage + about) */
.split--founder {
    gap: 32px;
    grid-template-columns: auto 1fr;
}

.founder-photo {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: 55% top;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.founder-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
    max-width: 320px;
}

.founder-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    transition: all 0.2s;
}

.founder-social a:hover {
    background: #2a3d6b;
    transform: translateY(-2px);
}

.founder-social svg {
    width: 18px;
    height: 18px;
}

.founder-name { margin-bottom: 4px; }
.founder-role { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }
.founder-cta { margin-top: 24px; }

/* ============================================
   SOLUTION COLUMNS (card-like containers with distinct headers)
   ============================================ */

.solution-col {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.solution-col__header {
    padding: 24px 28px;
    background: var(--navy);
    color: var(--text-white);
}

.solution-col__header h3 {
    color: var(--text-white);
    margin-bottom: 4px;
    font-size: 20px;
}

.solution-col__header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.solution-col .solution-list {
    padding: 8px 28px 16px;
}

/* ============================================
   SOLUTION LIST (clean list items)
   ============================================ */

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

.solution-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.65;
}

.solution-list li:last-child { border-bottom: none; padding-bottom: 0; }

.solution-list li strong {
    color: var(--text-primary);
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}

/* ============================================
   SOLUTION REDESIGN (features grid + impact panel)
   ============================================ */

/* Solution split panel (deliverables left, outcomes right) */
.solution-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.solution-panel__side {
    padding: 36px 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.solution-panel__side:first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    border-right: none;
}

.solution-panel__side--dark {
    background: var(--navy);
    border-color: var(--navy);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.solution-panel__label {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
}

.solution-panel__side--dark .solution-panel__label {
    color: var(--text-white);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.solution-panel__item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.solution-panel__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.solution-panel__item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.solution-panel__item p {
    font-size: 15px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.55;
}

.solution-panel__side--dark .solution-panel__item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.solution-panel__side--dark .solution-panel__item strong {
    color: var(--text-white);
}

.solution-panel__side--dark .solution-panel__item p {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA block */
.solution-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   GLASS CARDS (semi-transparent on dark bg)
   ============================================ */

.card--glass {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card--glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card--glass h3 { color: var(--text-white); }
.card--glass p { color: rgba(255, 255, 255, 0.7); }

.card--glass .card__number {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
}

/* ============================================
   FEATURE LIST (vertical checklist layout)
   ============================================ */

.feature-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.feature-list__item {
    display: flex;
    gap: 20px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
    align-items: flex-start;
}

.feature-list__item:last-child { border-bottom: none; }

.feature-list__item:hover { background: var(--bg-section-alt); }

.feature-list__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    margin-top: 2px;
}

.feature-list__content h3 { margin-bottom: 8px; font-size: 18px; }
.feature-list__content p { color: var(--text-body); font-size: 15px; line-height: 1.7; }

/* ============================================
   DARK SECTION TEXT OVERRIDES
   ============================================ */

.section--dark .section-header h2 { color: var(--text-white); }
.section--dark .section-header p { color: rgba(255, 255, 255, 0.7); }
.section--dark .section__eyebrow,
.section--dark .section-header .section__eyebrow {
    background: #ffffff;
    color: #1E2A4A;
}

/* White buttons on dark backgrounds */
.section--dark .btn--primary {
    background: var(--text-white);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

.section--dark .btn--primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}


.section--dark .btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.section--dark .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
}

/* White cards in dark sections */
.section--dark .card:not(.card--glass) {
    background: var(--bg-elevated);
    border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .card:not(.card--glass) h3 { color: var(--text-primary); }
.section--dark .card:not(.card--glass) p { color: var(--text-body); }

/* Case study elements in dark sections */
.section--dark .case-study h3 { color: var(--text-white); }
.section--dark .case-study p { color: rgba(255, 255, 255, 0.8); }
.section--dark .case-study li { color: rgba(255, 255, 255, 0.8); }
.section--dark .case-study__client { color: var(--text-white); }
.section--dark .case-study__tag { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: var(--text-white); }
.section--dark .case-study__quote { color: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.2); }
.section--dark .case-study__quote cite { color: rgba(255, 255, 255, 0.5); }

/* ============================================
   TABLE WRAP (white container for tables in dark sections)
   ============================================ */

.table-wrap {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: var(--text-body);
}

.table-wrap .results-table {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.swipe-hint {
    display: none;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    padding: 12px 0 4px;
    margin: 0;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.table-scroll table { margin: 0; border: none; box-shadow: none; border-radius: 0; }

/* ============================================
   TIMELINE RESULT STEP (green accent)
   ============================================ */

.timeline__item--result::before {
    background: var(--green);
    box-shadow: 0 0 0 2px var(--green);
}

.timeline__item--result .timeline__label {
    color: var(--green);
}

.timeline__item--result .timeline__title {
    color: var(--green);
    font-size: 18px;
}

/* ============================================
   PHASE CARDS (sequential process steps)
   ============================================ */

.phase-cards {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.phase-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.phase-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.phase-card__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-card__number--green {
    background: var(--green);
    font-size: 22px;
}

.phase-card__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.phase-card__label--green {
    color: var(--green);
}

.phase-card h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.phase-card p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.75;
}

.phase-card--result {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.03);
}

.phase-card--result:hover {
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.08);
}

/* ============================================
   GLASS FRAME (Centered content with subtle border)
   ============================================ */

.glass-frame {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 48px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.glass-frame .text--lg {
    text-align: left;
}

/* ============================================
   BELIEFS (Color-accented cards, light bg)
   ============================================ */

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.belief {
    grid-column: span 2;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--navy);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.belief:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* 3 on top, 2 centered on bottom */
.belief:nth-child(4) { grid-column: 2 / span 2; }
.belief:nth-child(5) { grid-column: 4 / span 2; }

.belief__num {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.belief h4 {
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.belief p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============================================
   CLIENT AVATARS
   ============================================ */

.card__client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-section-alt);
}

.testimonial__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-section-alt);
    flex-shrink: 0;
}

/* ============================================
   CTA PROOF (avatars left, stars+text right)
   ============================================ */

.cta-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.cta-proof__avatars {
    display: flex;
}

.cta-proof__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-body);
    margin-left: -8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-proof__avatar:first-child {
    margin-left: 0;
}

.cta-proof__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cta-proof__stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
}

.cta-proof__text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   HERO TRUSTED BY - Avatars left, Stars+Text right
   ============================================ */

.hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.hero__proof-avatars {
    display: flex;
}

.hero__proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-body);
    margin-left: -10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero__proof-avatar:first-child {
    margin-left: 0;
}

.hero__proof-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.hero__proof-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 1px;
}

.hero__proof-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
}

/* ============================================
   FOOTER (Navy theme)
   ============================================ */

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0 32px;
    position: relative;
    border-top: none;
}

.footer__main {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand { flex: 1; min-width: 200px; }

.footer__logo { display: flex; align-items: center; gap: 12px; color: #ffffff; font-weight: 700; font-size: 24px; margin-bottom: 24px; text-decoration: none; }
.footer__logo svg { width: 36px; height: 36px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7); transition: all 0.2s; }
.footer__social a:hover { background: rgba(255, 255, 255, 0.2); color: #ffffff; }
.footer__social svg { width: 18px; height: 18px; }

.footer__col h4 { color: #ffffff; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: rgba(255, 255, 255, 0.6); font-size: 14px; transition: color 0.2s; }
.footer__col a:hover { color: #ffffff; }

.footer__cta { flex-shrink: 0; padding-top: 4px; }

.footer__bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255, 255, 255, 0.4); }
.footer__bottom a { color: rgba(255, 255, 255, 0.4); }
.footer__bottom a:hover { color: #ffffff; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .footer__main { flex-wrap: wrap; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .beliefs-grid { grid-template-columns: 1fr; }
    .belief { grid-column: span 1; }
    .stats:not(.stats--inline) { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stats--inline { flex-wrap: wrap; gap: 24px; }
    .stat--inline { padding: 16px 32px; }
    .stat__divider { display: none; }
    .testimonials-scroll__col:nth-child(3) { display: none; }
}

@media (max-width: 768px) {
    h1 { font-size: 40px; }
    .hero h1 { font-size: 42px; }
    .hero--confirmed { padding: 100px 0 40px; min-height: auto; }
    .hero--confirmed h1 { font-size: 48px; }
    .hero-fade { height: 16px; }
    h2, .h2--large { font-size: 30px; }
    h3 { font-size: 20px; }

    .section { padding: 60px 0; }
    .section--spacious { padding: 72px 0; }

    .hero { padding: 80px 0 48px; min-height: 100vh; }
    .hero__sub { font-size: 17px; }
    .hero__actions { flex-direction: column; gap: 12px; }
    .metrics-strip { padding: 36px 0; }
    .metrics-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
    .metrics-strip__value { font-size: 32px; }
    .metrics-strip__item:nth-child(odd)::before { display: none; }
    .trusted-bridge { padding: 32px 0; }
    .trusted-bridge .marquee { max-width: 80%; }
    .trusted-bridge .marquee__logo { height: 32px; min-width: 70px; }
    .trusted-bridge .marquee__track { gap: 40px; }
    .trusted-bridge__avatar { width: 30px; height: 30px; }
    .trusted-bridge__stars { font-size: 14px; }
    .trusted-bridge__text { font-size: 12px; }
    .logo-marquee { gap: 20px; max-width: calc(100% - 48px); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }
    .logo-marquee__track { gap: 40px; }
    .logo-marquee__track { --marquee-h: 32px; }
    .logo-combo__icon { height: 28px; }
    .logo-combo__text { font-size: 14px; }

    .feature-list__item { padding: 20px 24px; gap: 16px; }
    .feature-list__content h3 { font-size: 16px; }

    .split--founder { grid-template-columns: 1fr; text-align: center; }
    .founder-photo { max-width: 300px; margin: 0 auto; }
    .split--founder .founder-social { justify-content: center; margin-top: 16px; max-width: none; width: 100%; }
    .split--founder > div:last-child { text-align: center; }
    .split--founder > div:last-child .text--lg { text-align: left; }
    .founder-name { text-align: center; font-size: 26px; }
    .founder-role { text-align: center; font-size: 17px; }
    .founder-cta { text-align: center; }

    .phase-card { padding: 24px; }
    .phase-card__number { width: 40px; height: 40px; font-size: 18px; }
    .phase-card h3 { font-size: 18px; }

    /* Process timeline - compact for mobile */
    .process-timeline {
        padding-left: 56px;
    }
    .process-step::before {
        left: -39px;
        top: 44px;
    }
    .process-step__marker {
        left: -56px;
        width: 36px;
        height: 36px;
        box-shadow: 0 0 0 4px var(--bg-body), 0 0 0 6px var(--navy);
    }
    .process-step__marker--result {
        box-shadow: 0 0 0 4px var(--bg-body), 0 0 0 6px var(--gold);
    }
    .process-step__number { font-size: 15px; }
    .process-step__title { font-size: 20px; }
    .process-step--result .process-step__content {
        padding: 20px 24px;
    }

    .solution-col .solution-list { padding: 8px 20px 16px; }
    .solution-col__header { padding: 20px; }

    .solution-panel {
        grid-template-columns: 1fr;
    }
    .solution-panel__side:first-child {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-right: 1px solid var(--border);
        border-bottom: none;
    }
    .solution-panel__side--dark {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .beliefs-grid { grid-template-columns: 1fr; }
    .belief:nth-child(4),
    .belief:nth-child(5) { grid-column: span 1; }
    .belief__num { font-size: 12px; }

    .founder-card__img { width: 100px; height: 100px; }

    .split { grid-template-columns: 1fr; gap: 32px; }
    .split--reverse { direction: ltr; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .grid--industries { grid-template-columns: 1fr 1fr; gap: 12px; }
    .grid--industries .card { padding: 16px; }
    .grid--industries .card h4 { font-size: 14px; margin: 0; }
    .blog-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
    .footer__main { flex-wrap: wrap; gap: 32px; }
    .footer__brand { flex-basis: 100%; }
    .footer__cta { flex-basis: 100%; }
    .footer__col { flex: 1; min-width: 120px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Disable nav collapse on mobile - keep full size */
    .nav {
        left: 0;
        transform: none;
    }
    .nav.scrolled {
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: none;
    }
    .nav.scrolled .nav__inner {
        height: 80px;
        padding: 0 24px;
    }
    .nav.scrolled .nav__logo-text {
        opacity: 1;
        max-width: 200px;
    }
    .nav.scrolled .nav__logo {
        gap: 10px;
    }

    .nav { overflow: visible; }
    .nav__inner { position: relative; }
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav__links.open { display: flex; }
    .nav__links > li { width: 100%; }
    .nav__links > li > a { display: flex; align-items: center; gap: 6px; padding: 14px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
    .nav__links > li:last-child > a { border-bottom: none; }

    /* Dropdown: collapsed by default on mobile, toggle with arrow */
    .nav__dropdown { position: static; transform: none; padding-top: 0; opacity: 1; visibility: visible; display: none; }
    .nav__dropdown.mobile-open { display: block; }
    .nav__dropdown-inner { background: transparent; border: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 0 0 0 16px; min-width: auto; }
    .nav__dropdown a { padding: 10px 0; border-radius: 0; border-bottom: 1px solid var(--border); }

    /* Arrow rotates when open */
    .nav__links > li > a .nav__arrow { transition: transform 0.2s ease; }
    .nav__links > li > a.dropdown-open .nav__arrow { transform: rotate(180deg); }

    .nav__inner > .nav__cta { padding: 8px 18px; font-size: 13px; }
    .nav__toggle { display: block; }

    .blog-article h1 { font-size: 32px; }
    .testimonials-scroll__col:nth-child(2) { display: none; }
    .testimonials-scroll { max-height: 500px; }

    .case-study--featured .split { padding: 16px; }

    /* Comparison table: fit on mobile without scrolling */
    .table-wrap { overflow-x: visible; }
    .compare-table th, .compare-table td { padding: 10px 8px; font-size: 12px; white-space: normal; }
    .compare-table th:first-child, .compare-table td:first-child { min-width: 80px; }
    .swipe-hint { display: none; }

    /* Blog tables */
    .blog-article th, .blog-article td { padding: 10px 14px; font-size: 13px; }

    /* Blog mobile typography */
    .blog-article__meta { gap: 8px; font-size: 13px; flex-wrap: wrap; }
    .blog-article ul, .blog-article ol { padding-left: 20px; }

    /* Tool embeds */
    .tool-embed--roi iframe { height: 1000px; }
    .tool-embed--checklist iframe { height: 1200px; }
    .tool-embed--assessment iframe { height: 800px; }

    /* Section CTA spacing */
    .section-cta { margin-top: 32px; }
}

@media (max-width: 480px) {
    h1 { font-size: 32px; }
    .hero h1 { font-size: 34px; }
    .hero--confirmed h1 { font-size: 40px; }
    h2, .h2--large { font-size: 26px; }

    .container { padding: 0 16px; }
    .hero { padding: 70px 0 40px; min-height: 100vh; }
    .hero__pill { font-size: 12px; padding: 8px 16px; }
    .metrics-strip { padding: 24px 0; }
    .metrics-strip__grid { gap: 20px 0; }
    .metrics-strip__value { font-size: 26px; }
    .metrics-strip__label { font-size: 10px; }
    .metrics-strip__item + .metrics-strip__item::before { display: none; }
    .trusted-bridge { padding: 24px 0; }
    .trusted-bridge .marquee { max-width: 90%; }
    .trusted-bridge .marquee__logo { height: 24px; min-width: 50px; }
    .trusted-bridge .marquee__track { gap: 24px; }
    .trusted-bridge__proof { gap: 10px; margin-bottom: 16px; }
    .trusted-bridge__avatar { width: 26px; height: 26px; margin-left: -6px; }
    .trusted-bridge__stars { font-size: 12px; }
    .trusted-bridge__text { font-size: 11px; }
    .logo-marquee { gap: 16px; max-width: 100%; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
    .logo-marquee__track { gap: 24px; }
    .logo-marquee__track { --marquee-h: 22px; }
    .logo-combo__icon { height: 18px; }
    .logo-combo__text { font-size: 12px; }
    .card { padding: 24px; }
    .stats:not(.stats--inline) { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat__value { font-size: 32px; }
    .stat--inline .stat__value { font-size: 28px; }
    .feature-list__item { padding: 16px; gap: 12px; flex-direction: column; }
    .feature-list__icon { width: 32px; height: 32px; font-size: 14px; }
    .split--founder { gap: 16px; }
    .founder-photo { max-width: 240px; }
    .founder-name { text-align: center; font-size: 24px; }
    .founder-role { text-align: center; font-size: 16px; margin-bottom: 16px; }
    .footer__main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
        text-align: left;
    }
    .footer__brand {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer__logo { font-size: 18px; margin-bottom: 0; }
    .footer__social { gap: 8px; }
    .footer__social a { width: 32px; height: 32px; }
    .footer__col { min-width: 0; }
    .footer__col h4 { font-size: 12px; margin-bottom: 10px; }
    .footer__col a { font-size: 13px; }
    .footer__col li { margin-bottom: 8px; }
    .footer__col--tools {
        grid-column: 1 / -1;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer__col--tools ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .footer__col--tools li { margin-bottom: 0; }
    .footer__cta {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Comparison table */
    .compare-table th, .compare-table td { padding: 8px 6px; font-size: 11px; }
    .compare-table th:first-child, .compare-table td:first-child { min-width: 70px; }

    /* Blog tables */
    .blog-article th, .blog-article td { padding: 8px 10px; font-size: 12px; }

    /* Tool embeds */
    .tool-embed--roi iframe { height: 900px; }
    .tool-embed--checklist iframe { height: 1100px; }
    .tool-embed--assessment iframe { height: 700px; }

    /* Section CTA spacing */
    .section-cta { margin-top: 24px; }
    .section-cta--flex { flex-direction: column; align-items: center; }

    /* Section padding reduction */
    .section { padding: 40px 0; }
    .section--spacious { padding: 48px 0; }

    /* Blog mobile typography */
    .blog-article h1 { font-size: 24px; }
    .blog-article__meta { gap: 4px 8px; font-size: 12px; }
    .blog-article p { word-break: break-word; }
    .blog-article ul, .blog-article ol { padding-left: 16px; }
    .blog-article__cta { padding: 24px 16px; }
    .blog-article__cta h3 { font-size: 18px; }

    /* Split gap */
    .split { gap: 24px; }
}

/* ============================================
   PREMIUM MICRO-DETAILS
   ============================================ */

/* Gradient text on hero accent line */
.hero__accent {
    background: linear-gradient(135deg, var(--navy) 0%, #4a6cf7 50%, var(--navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulsing ring on hero primary CTA */
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(30, 42, 74, 0.2), 0 0 0 0 rgba(30, 42, 74, 0.15); }
    50% { box-shadow: 0 2px 8px rgba(30, 42, 74, 0.2), 0 0 0 8px rgba(30, 42, 74, 0); }
}

.hero .btn--primary {
    animation: cta-pulse 3s ease-in-out infinite;
}

.hero .btn--primary:hover {
    animation: none;
}

/* Inner glass highlight on scrolled nav */
.nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Brand-coloured scrollbar */
::-webkit-scrollbar-thumb { background: rgba(30, 42, 74, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 42, 74, 0.35); }

/* Subtle background noise texture for depth */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Testimonial quote mark glow */
.testimonial__quote::before {
    text-shadow: 0 0 20px rgba(30, 42, 74, 0.15);
}

/* FAQ hover hint */
.faq-item:not(.open):hover {
    background: rgba(30, 42, 74, 0.015);
    margin: 0 -16px;
    padding: 0 16px;
    border-radius: var(--radius-md);
}

.faq-item:not(.open):hover .faq-question {
    padding-left: 8px;
    transition: padding-left 0.2s ease;
}

/* Metrics strip number glow when counting completes */
.metrics-strip__value.counted {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transition: text-shadow 0.5s ease;
}

/* Decorative thin line divider between same-bg sections */
.section--divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 30%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* Active nav state indicator */
.nav__links > li > a.active {
    color: var(--text-primary);
}

.nav__links > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav__links > li > a.active::after { left: 0; transform: none; }
}

.nav__links > li > a {
    position: relative;
}

/* Video embed hover scale */
.video-wrap {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrap:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
}
