/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    /* Brand roles: primary anchors, accent converts, secondary explains, tertiary differentiates. */
    --primary-color: #111C25;
    --primary-rgb: 17 28 37;
    --primary-outline: color-mix(in srgb, var(--primary-color) 78%, white);
    --primary-outline-hover: color-mix(in srgb, var(--primary-color) 64%, white);
    --ink-color: var(--primary-color);
    --ink-rgb: var(--primary-rgb);
    --surface-light: #F6F4F1;
    --surface-light-alt: #E4E5E3;
    --surface-panel: #FFFFFF;
    --bg-color: var(--ink-color);
    --text-color: #F6F7F8;
    --accent-color: #FF4500;
    --accent-rgb: 255 69 0;
    --accent-hover: #E63E00;
    --accent-on-light: #B33100;
    --secondary-color: #4D91B3;
    --secondary-rgb: 77 145 179;
    --secondary-on-light: #24647E;
    --tertiary-color: #C7A55B;
    --tertiary-rgb: 199 165 91;
    --tertiary-on-light: #6B5200;
    --surface-accent-soft: #FFE8DE;
    --accent-secondary: var(--secondary-color);
    --light-muted: #5E6265;
    --light-line: #D9DAD8;
    --logo-filter: none;
    --hero-ui-surface: rgb(255 255 255 / 0.04);
    --hero-ui-line: rgb(255 255 255 / 0.11);
    --hero-ui-text: rgb(255 255 255 / 0.62);
    --hero-ui-connector: rgb(var(--accent-rgb) / 0.24);
    --hero-ui-node: var(--accent-color);
    --hero-ui-card-alpha: 0.52;
    --hero-ui-card-far-alpha: 0.46;
    --hero-ui-card-near-alpha: 0.58;
    --hero-ui-orbit-alpha: 0.68;
    --hero-ui-depth-shadow: rgb(0 0 0 / 0.34);
    --hero-ui-glow: rgb(var(--accent-rgb) / 0.12);
    --gray-dark: #293A47;
    --gray-medium: #485C6B;
    --gray-light: #B2BABE;

    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Antonio', sans-serif;

    --text-caption: 0.875rem;
    --text-body-sm: 0.9375rem;
    --text-body: 1.0625rem;
    --text-body-lg: 1.125rem;
    --text-lead: 1.25rem;
    --leading-body: 1.62;
    --leading-relaxed: 1.7;
    --text-muted-dark: #C7CFD4;
    --button-slant: 0px;
    --button-radius: 6px;
    --card-radius: 18px;

    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}


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

::selection {
    background: var(--accent-color);
    color: var(--bg-color);
}

.keep-together {
    display: inline-block;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

sup {
    color: var(--accent-color);
    font-size: 10px;
    font-weight: 800;
    margin-left: 2px;
}

/* ==========================================================================
   Effects
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.eyebrow,
.kicker-text,
.hero-kicker-pill,
.results-panel-step,
.plan-kicker,
.decision-kicker,
.ppc-kicker {
    display: block;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    position: relative;
    width: 100%;
    padding: 20px 0;
    z-index: 200;
    background: var(--bg-color);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-dark-simple .nav-inner,
.nav-simple-centered .nav-inner {
    justify-content: center;
}

.nav-logo-left .nav-inner {
    justify-content: flex-start;
}

.nav-logo-left .logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

/* TrainingClicks logo lockup (Logo.astro) */
.td-logo {
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
    white-space: nowrap;
}

.td-clickmark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    flex: 0 0 40px;
    color: var(--accent-color);
}

.td-clickmark-icon {
    width: 38px;
    height: 38px;
    color: inherit;
    filter: drop-shadow(0 0 10px rgb(var(--accent-rgb) / 0.18));
}

.td-clickmark-icon path:last-child {
    stroke: #fff;
}

.td-clickmark-icon path {
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes td-click-ray-pop {
    0%, 100% {
        opacity: 1;
        stroke-width: 1.9;
        transform: translate(0, 0);
    }

    42% {
        opacity: 1;
        stroke-width: 2.65;
        transform: translate(var(--ray-x), var(--ray-y));
    }
}

@keyframes td-click-pointer-press {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    38% {
        transform: translate(1.4px, 1.4px) scale(0.91);
    }

    64% {
        transform: translate(-0.3px, -0.3px) scale(1.025);
    }
}

@keyframes td-wordmark-recoil {
    0%, 100% {
        transform: translateX(0) scaleX(1);
    }

    38% {
        transform: translateX(1.8px) scaleX(0.992);
    }

    64% {
        transform: translateX(-0.4px) scaleX(1.004);
    }
}

@keyframes td-clicks-pop {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    42% {
        transform: translateY(-1.5px) scale(1.045);
    }

    68% {
        transform: translateY(0.3px) scale(0.995);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .td-logo:is(:hover, :focus-visible) .td-clickmark-icon path:not(:last-child) {
        animation: td-click-ray-pop 620ms var(--easing) both;
    }

    .td-logo:is(:hover, :focus-visible) .td-clickmark-icon path:nth-child(1) {
        --ray-x: 1px;
        --ray-y: -2px;
    }

    .td-logo:is(:hover, :focus-visible) .td-clickmark-icon path:nth-child(2) {
        --ray-x: -2px;
        --ray-y: -0.7px;
    }

    .td-logo:is(:hover, :focus-visible) .td-clickmark-icon path:nth-child(3) {
        --ray-x: -1.5px;
        --ray-y: 1.6px;
    }

    .td-logo:is(:hover, :focus-visible) .td-clickmark-icon path:nth-child(4) {
        --ray-x: -0.7px;
        --ray-y: -2px;
    }

    .td-logo:is(:hover, :focus-visible) .td-clickmark-icon path:last-child {
        animation: td-click-pointer-press 620ms var(--easing) both;
    }

    .td-logo:is(:hover, :focus-visible) .td-logo-word {
        animation: td-wordmark-recoil 620ms var(--easing) both;
    }

    .td-logo:is(:hover, :focus-visible) .td-logo-accent {
        animation: td-clicks-pop 620ms var(--easing) both;
    }
}

.td-logo-word {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    transform-origin: left center;
}

.td-logo-accent {
    display: inline-flex;
    align-items: baseline;
    color: var(--accent-color);
    transform-origin: center bottom;
}

@media (max-width: 480px) {
    .td-logo {
        gap: 3px;
    }

    .td-clickmark {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .td-clickmark-icon {
        width: 32px;
        height: 32px;
    }

    .td-logo-word {
        font-size: 18px;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s var(--easing);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    position: relative;
}

.nav-cta {
    --button-slant: 0px;
    padding: 12px 24px;
    background: var(--accent-color);
    color: #fff;
    clip-path: polygon(var(--button-slant) 0, 100% 0, calc(100% - var(--button-slant)) 100%, 0 100%);
    -webkit-clip-path: polygon(var(--button-slant) 0, 100% 0, calc(100% - var(--button-slant)) 100%, 0 100%);
}

.nav-cta .arrow {
    color: #fff;
}

.arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--easing);
    color: var(--accent-color);
    flex-shrink: 0;
}

.btn-text:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {

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

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

/* Hamburger Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
    position: relative;
    gap: 6px;
}

.menu-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.4s var(--easing);
    transform-origin: center;
}

/* Hamburger to X animation */
.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu.active {
    pointer-events: all;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.6s var(--easing);
}

.mobile-menu.active .mobile-menu-bg {
    transform: translateY(0);
}

/* Content container */
.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 60px;
}

/* Navigation links */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--gray-medium);
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.5s ease, transform 0.5s var(--easing), border-color 0.3s ease;
}

.mobile-menu.active .mobile-menu-link {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delays */
.mobile-menu.active .mobile-menu-link:nth-child(1) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-link:nth-child(2) {
    transition-delay: 0.28s;
}

.mobile-menu.active .mobile-menu-link:nth-child(3) {
    transition-delay: 0.36s;
}

.mobile-menu.active .mobile-menu-link:nth-child(4) {
    transition-delay: 0.44s;
}

.mobile-menu-link-text {
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
    transition: color 0.3s ease, transform 0.3s var(--easing);
}

.mobile-menu-link-num {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

/* Link hover effects */
.mobile-menu-link:hover {
    border-color: var(--accent-color);
}

.mobile-menu-link:hover .mobile-menu-link-text {
    color: var(--accent-color);
    transform: translateX(12px);
}

.mobile-menu-link:hover .mobile-menu-link-num {
    color: var(--accent-color);
}

/* Footer area */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease, transform 0.2s var(--easing);
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.5s, transform 0.5s var(--easing) 0.5s;
}

/* CTA Button */
.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 42px;
    background: var(--accent-color);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s var(--easing);
}

.mobile-menu-cta-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    min-height: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: visible;
    padding: 88px 0 148px;
}

.hero::before {
    content: none;
}


.hero-inner {
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(46px, 5vw, 78px);
    line-height: 0.95;
    margin-bottom: 32px;
    letter-spacing: 0;
    font-weight: 700;
    max-width: 880px;
    text-transform: uppercase;
}

.hero-title>span {
    display: block;
}

.hero-kicker-pill {
    margin-bottom: 24px;
    padding: 0;
    border: 0;
    background: transparent;
}

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

.underline-accent {
    position: relative;
    display: inline-block;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    width: 100%;
    height: 0.08em;
    background: var(--accent-color);
}

/* Motion system */
.reveal-text,
.motion-reveal {
    will-change: transform, opacity;
}

html.motion-ready:not(.motion-reduced) .home-page .nav,
html.motion-ready:not(.motion-reduced) .home-page .hero-kicker-pill,
html.motion-ready:not(.motion-reduced) .home-page .hero-title .reveal-text,
html.motion-ready:not(.motion-reduced) .home-page .hero-desc,
html.motion-ready:not(.motion-reduced) .home-page .hero-cta {
    opacity: 0;
    transform: translateY(14px);
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .nav,
html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-kicker-pill,
html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-title .reveal-text,
html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-desc,
html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-cta {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.42s var(--easing),
        transform 0.52s var(--easing);
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .nav {
    transition-delay: 0ms;
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-kicker-pill {
    transition-delay: 90ms;
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-title .reveal-text {
    transition-delay: 160ms;
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-desc {
    transition-delay: 230ms;
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-cta {
    transition-delay: 310ms;
}

.motion-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.5s var(--easing),
        transform 0.62s var(--easing);
    transition-delay: calc(var(--motion-index, 0) * 56ms);
}

.motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-desc {
    font-size: var(--text-lead);
    max-width: 620px;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: var(--leading-body);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--accent-color);
    padding: 20px 42px;
    border-radius: 0;
    transition: all 0.3s var(--easing);
}

.hero-cta-label {
    display: inline-block;
    line-height: 1.2;
}

.hero-cta-main,
.hero-cta-sub {
    display: inline;
}

.hero-cta-sub::before {
    content: ' — ';
}

.cta-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--easing);
    flex-shrink: 0;
}

.hero-cta,
.mobile-menu-cta,
.decision-cta-button,
.ppc-primary-cta {
    --button-slant: 0px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    clip-path: polygon(var(--button-slant) 0, 100% 0, calc(100% - var(--button-slant)) 100%, 0 100%);
    -webkit-clip-path: polygon(var(--button-slant) 0, 100% 0, calc(100% - var(--button-slant)) 100%, 0 100%);
}

/* Hero Background Graph */
.hero-bg-graph {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    overflow: hidden;
}

.hero-bg-graph::after {
    content: none;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
}

/* Hero Chart Card */
.hero-chart-card {
    width: 100%;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s var(--easing);
}

.hero-chart-card:hover {
    transform: translateY(-4px);
}

.hcc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hcc-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hcc-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4CAF50;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.8);
    animation: hccLive 2s ease-in-out infinite;
}

@keyframes hccLive {
    0%, 100% { box-shadow: 0 0 5px rgba(76, 175, 80, 0.7); }
    50% { box-shadow: 0 0 14px rgba(76, 175, 80, 1); }
}

.hcc-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

.hcc-client {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.3px;
}

.hcc-chart-wrap {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.hcc-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
    flex-shrink: 0;
}

.hcc-y-axis span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.22);
    text-align: right;
    line-height: 1;
}

.hcc-chart-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hcc-svg {
    width: 100%;
    height: auto;
    display: block;
}

.hcc-x-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 6px;
}

.hcc-x-labels span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.22);
}

.hcc-stats {
    display: flex;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hcc-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hcc-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.hcc-stat-val {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hcc-stat-val.coral {
    color: var(--accent-color);
}

.hcc-stat-val.yellow {
    color: var(--accent-secondary);
}

.hcc-stat-key {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.32);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
}

.line {
    width: 1px;
    height: 50px;
    background: var(--gray-medium);
    position: relative;
    overflow: hidden;
}

.line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateY(-100%);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ==========================================================================
   Statement (Partner)
   ========================================================================== */
.statement {
    padding: 112px 0;
}

.statement-grid {
    display: grid;
    grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
    gap: clamp(64px, 7vw, 104px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.statement-image {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0;
    isolation: isolate;
    will-change: transform, opacity;
}

.statement-image::before {
    content: '';
    position: absolute;
    inset: -12% -14% 8%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle at 58% 54%, rgba(234, 157, 0, 0.16), rgba(234, 157, 0, 0) 68%);
    filter: blur(18px);
    pointer-events: none;
}

.statement-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 10 / 11;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 34px;
    background: #e8e1d7;
    box-shadow: 0 30px 72px rgba(24, 20, 15, 0.15);
    isolation: isolate;
}

.statement-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(17, 17, 17, 0.08));
    pointer-events: none;
}

.statement-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.94) contrast(1.01);
}

.statement-identity {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 19px 4px 0;
}

.statement-person,
.statement-experience {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.statement-experience {
    align-items: flex-end;
    text-align: right;
}

.statement-person-name {
    color: var(--home-row-ink, #111111);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
}

.statement-person-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-row-muted, #57514a);
    font-family: var(--font-primary);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.statement-person-role::before {
    content: '';
    width: 18px;
    height: 1px;
    flex: 0 0 auto;
    background: var(--accent-color);
}

.statement-experience-value {
    color: var(--home-row-ink, #111111);
    font-family: var(--font-primary);
    font-size: 25px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.85;
}

.statement-experience-label {
    max-width: 18ch;
    color: var(--home-row-muted, #57514a);
    font-family: var(--font-primary);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.25;
    text-transform: uppercase;
}

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

.statement-content .section-header {
    padding-bottom: 24px;
}

.statement-text {
    font-size: 28px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 32px;
    will-change: transform, opacity;
}

.statement-sub {
    font-size: 18px;
    color: var(--gray-light);
    border-left: 2px solid var(--accent-color);
    padding-left: 24px;
}

@media (max-width: 900px) {
    .statement-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .statement-image {
        max-width: 460px;
    }

    .statement-content {
        text-align: left;
    }

    .statement-sub {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--accent-color);
        padding-top: 24px;
    }
}

/* ==========================================================================
   Expertise (How I Help)
   ========================================================================== */
.expertise {
    position: relative;
    overflow: visible;
    padding: 100px 0;
}


.expertise>.container {
    position: relative;
    z-index: 2;
}

.expertise-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
}

.expertise-heading {
    position: static;
    padding-bottom: 0;
}

.expertise-heading .section-title {
    max-width: 8ch;
}

.expertise-subtitle {
    max-width: 340px;
    margin-top: 18px;
    font-size: var(--text-body-lg);
    line-height: var(--leading-body);
    color: var(--text-muted-dark);
    font-weight: 400;
}

.pricing-menu .expertise-subtitle {
    max-width: 520px;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
}

.section-num {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 700;
}

.section-title {
    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 0.98;
    text-transform: uppercase;
    letter-spacing: 0;
}

.section-subtitle {
    max-width: 720px;
    font-size: var(--text-lead);
    line-height: var(--leading-body);
    color: var(--text-muted-dark);
    font-weight: 400;
}

.expertise-list {
    display: flex;
    flex-direction: column;
}

.expertise-item {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    padding: 40px 0;
    border-top: 0;
}

.expertise-item:first-child {
    padding-top: 0;
}

.expertise-item:last-child {
    border-bottom: 0;
}

.exp-header {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 18px;
    margin-bottom: 0;
}

.exp-num {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
}

.exp-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 2.8vw, 40px);
    color: #fff;
    font-weight: 500;
    flex: 1;
    line-height: 1;
}

.exp-content {
    max-width: 680px;
    font-size: var(--text-body-lg);
    color: var(--text-muted-dark);
    line-height: var(--leading-body);
    font-weight: 400;
}

/* ==========================================================================
   Journey
   ========================================================================== */
.journey {
    padding: 160px 0;
    background: var(--gray-dark);
}

.journey .section-title {
    max-width: 800px;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.journey-col {
    will-change: transform, opacity;
}

.journey-col p {
    margin-bottom: 24px;
}

.signature {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sig-name {
    display: inline-block;
    font-family: 'Reenie Beanie', 'Bradley Hand', 'Segoe Print', cursive;
    font-size: 54px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 8px;
    transform: rotate(-2deg) skewX(-4deg);
    text-shadow: 0.5px 0.5px 0 rgba(255, 255, 255, 0.16);
}

.sig-title {
    font-size: 14px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signature p {
    margin: 0
}

/* ==========================================================================
   Results Section - Diagnostic Proof
   ========================================================================== */
.results-section {
    padding: 140px 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 28%),
        var(--bg-color);
    border-top: 0;
    border-bottom: 0;
}

.results-header {
    max-width: 1040px;
    margin-bottom: 56px;
}

.results-header .kicker-text {
    margin-bottom: 18px;
}

.results-tagline {
    max-width: 980px;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 700;
    color: #fff;
    line-height: 0.95;
    text-transform: uppercase;
    text-wrap: balance;
}

.results-tagline span {
    color: var(--accent-color);
}

.results-intro-text {
    max-width: 760px;
    font-size: 1.1875rem;
    color: var(--text-color);
    line-height: var(--leading-relaxed);
    margin-top: 26px;
}

.results-diagnostic-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.results-diagnostic-grid.results-panels-ready .results-panel {
    opacity: 0;
    transform: translateX(-64px);
}

.results-diagnostic-grid.results-panels-ready.results-panels-in .results-panel {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.34s var(--easing),
        transform 0.46s var(--easing);
    transition-delay: calc(var(--results-panel-index, 0) * 140ms);
}

.results-panel {
    --results-panel-index: 0;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    padding: 38px;
    background: #0b0b0b;
}

.results-panel-before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
        #0b0b0b;
}

.results-panel-built {
    --results-panel-index: 1;
    background:
        linear-gradient(180deg, rgba(234, 157, 0, 0.08), transparent 48%),
        #101010;
}

.results-panel-better {
    --results-panel-index: 2;
    background: #15100f;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        transition-delay: 0ms !important;
    }

    html.motion-ready .home-page .nav,
    html.motion-ready .home-page .hero-kicker-pill,
    html.motion-ready .home-page .hero-title .reveal-text,
    html.motion-ready .home-page .hero-desc,
    html.motion-ready .home-page .hero-cta,
    html.motion-ready .home-page .hero-bg-graph,
    .motion-reveal {
        opacity: 1;
        transform: none;
    }

    .results-diagnostic-grid.results-panels-ready .results-panel {
        opacity: 1;
        transform: none;
    }

    .results-diagnostic-grid.results-panels-ready.results-panels-in .results-panel {
        transition: none;
    }

    .testimonials-quote::after {
        content: none;
    }
}

.results-panel-step {
    margin-bottom: 28px;
}

.results-panel h3 {
    max-width: 420px;
    margin-bottom: 28px;
    font-size: clamp(28px, 2.35vw, 38px);
    line-height: 1;
    text-transform: uppercase;
    text-wrap: balance;
}

.results-panel-list {
    display: grid;
    gap: 18px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.results-panel-list li {
    position: relative;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--text-body);
    line-height: var(--leading-body);
    font-weight: 400;
}

.results-metric-stack {
    display: grid;
    gap: 22px;
    margin-top: auto;
}

.results-metric-primary {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.results-big-num {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: clamp(82px, 8vw, 132px);
    font-weight: 700;
    line-height: 0.84;
}

.results-hero-label {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.results-metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.results-stat {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    background: rgba(0, 0, 0, 0.25);
}

.results-stat-value {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 0.9;
}

.results-stat-label {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.results-window {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: var(--text-caption);
}

.results-takeaway {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    padding: 34px 0 0;
}

.results-takeaway p {
    max-width: 860px;
    color: #fff;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.16;
}

@media (max-width: 1100px) {
    .results-diagnostic-grid {
        grid-template-columns: 1fr;
    }

    .results-panel {
        min-height: auto;
    }

    .results-panel-list {
        margin-top: 24px;
    }

    .results-takeaway {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

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

    .results-header {
        margin-bottom: 36px;
    }

    .results-tagline {
        font-size: 36px;
    }

    .results-intro-text {
        font-size: 16px;
    }

    .results-panel {
        padding: 28px;
    }

    .results-panel h3 {
        font-size: 32px;
    }

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

    .results-takeaway .decision-cta-button {
        width: 100%;
        min-width: 0;
    }
}

/* Case study split layout (homepage): story left, report card right */
.results-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
    grid-template-areas: "story report";
    column-gap: 88px;
    row-gap: 40px;
    align-items: center;
}

.results-layout .results-header {
    grid-area: story;
    max-width: none;
    margin-bottom: 0;
}

.results-layout .results-tagline {
    font-size: clamp(36px, 3.4vw, 54px);
}

.results-layout .results-intro-text {
    margin-top: 22px;
}

.results-layout + .results-takeaway {
    margin-top: 64px;
    border-top: 1px solid var(--home-row-line, #d8d8d8);
}

/* Case study result card (homepage) */
.results-report {
    --report-surface: #0b0b0b;
    --report-line: rgba(255, 255, 255, 0.1);
    --report-muted: rgba(255, 255, 255, 0.56);
    grid-area: report;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 13%, rgba(234, 157, 0, 0.13), transparent 35%),
        var(--report-surface);
    box-shadow: 0 30px 80px rgba(17, 17, 17, 0.18);
}

.results-report-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 28px 34px 0;
}

.results-report-client {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.results-report-meta {
    color: var(--report-muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.results-report-metric {
    padding: 46px 34px 38px;
    text-align: center;
}

.results-report .results-big-num {
    color: #fff;
    font-family: var(--font-primary);
    font-size: clamp(82px, 7vw, 108px);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.065em;
    line-height: 0.82;
}

.results-report-metric-label {
    display: block;
    margin-top: 18px;
    color: var(--report-muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
}

.results-report-outcome {
    padding: 0 34px;
}

.results-chart-caption {
    display: block;
    margin-bottom: 24px;
    color: var(--report-muted);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
    text-align: center;
}

.results-chart {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.results-chart-row {
    display: grid;
    grid-template-rows: 132px auto auto;
    justify-items: center;
    gap: 8px;
}

.results-chart-month {
    color: var(--report-muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.results-chart-value {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 27px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
    line-height: 1;
}

.results-chart-track {
    position: relative;
    display: block;
    width: min(100%, 44px);
    height: 132px;
    align-self: end;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.results-chart-bar {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(var(--bar-value) * 2%);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-color));
    box-shadow: 0 0 24px rgba(234, 157, 0, 0.22);
}

.results-report.motion-reveal .results-chart-bar {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.8s var(--easing);
    transition-delay: calc(var(--bar-i) * 110ms);
}

.results-report.motion-reveal.is-visible .results-chart-bar {
    transform: scaleY(1);
}

.results-report-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    border-top: 1px solid var(--report-line);
}

.results-report-stat {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    padding: 26px 24px 30px;
    text-align: center;
}

.results-report-stat + .results-report-stat {
    border-left: 1px solid var(--report-line);
}

.results-report .results-stat-value {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
    line-height: 1;
}

.results-report-stat-label {
    display: block;
    margin-top: 9px;
    color: var(--report-muted);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
}

@media (max-width: 1100px) {
    .results-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "story"
            "report";
        row-gap: 40px;
    }

    .results-report {
        max-width: 680px;
    }

    .results-layout + .results-takeaway {
        margin-top: 48px;
    }
}

@media (max-width: 768px) {
    .results-report-head {
        padding: 24px 24px 0;
    }

    .results-report-metric {
        padding: 42px 24px 34px;
    }

    .results-report-outcome {
        padding: 0 24px;
    }

    .results-chart {
        gap: 18px;
    }

    .results-chart-row {
        grid-template-rows: 116px auto auto;
    }

    .results-chart-track {
        width: min(100%, 38px);
        height: 116px;
    }

    .results-report-stat {
        padding: 24px 16px 26px;
    }

    .results-report .results-stat-value {
        font-size: 30px;
    }
}

@media (max-width: 400px) {
    .results-report-head {
        flex-wrap: wrap;
    }

    .results-report {
        border-radius: 24px;
    }
}

/* ==========================================================================
   Testimonials (Typewriter Quote)
   ========================================================================== */
.testimonials-typewriter {
    position: relative;
    overflow: visible;
    padding: 88px 0;
    background: var(--bg-color);
}


.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-typewriter .section-header {
    margin-bottom: 80px;
}

.testimonials-typewriter .section-title {
    color: var(--accent-color);
}

.testimonials-quote-wrapper {
    margin-bottom: 34px;
    min-height: 0;
    position: relative;
}

.testimonials-quote {
    font-size: clamp(28px, 3.1vw, 40px);
    font-weight: 300;
    color: #fff;
    line-height: 1.32;
    position: relative;
    max-width: 1120px;
}

.testimonials-quote.is-typewriting {
    min-height: calc(2lh + 4px);
}

.testimonials-quote::after {
    content: '|';
    color: var(--accent-color);
    animation: testimonials-blink 1s infinite;
    margin-left: 4px;
}

@keyframes testimonials-blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.testimonials-highlight {
    color: var(--accent-color);
    font-weight: 500;
}

.testimonials-client-section {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 26px;
    border-top: 1px solid var(--gray-medium);
}

.testimonials-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.testimonials-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.testimonials-client-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.testimonials-client-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
}

.testimonials-client-company {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.3;
}

.testimonials-nav {
    display: flex;
    gap: 8px;
}

.testimonials-nav[hidden] {
    display: none;
}

.testimonials-nav-btn {
    width: 48px;
    height: 48px;
    background: var(--gray-medium);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-nav-btn i {
    width: 20px;
    height: 20px;
}

.testimonials-nav-btn:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .testimonials-typewriter .section-header {
        margin-bottom: 24px;
    }

    .testimonials-quote {
        font-size: 24px;
    }

    .testimonials-quote-wrapper {
        min-height: auto;
        margin-bottom: 28px;
    }

    .testimonials-client-section {
        flex-wrap: wrap;
    }

    .testimonials-client-info {
        flex: 1 1 calc(100% - 96px);
    }

    .testimonials-nav {
        width: 100%;
        justify-content: center;
        margin-top: 24px;
    }
}

/* ==========================================================================
   Investment (Pricing)
   ========================================================================== */
.investment {
    position: relative;
    overflow: visible;
    padding: 142px 0 100px;
}


.investment>.container {
    position: relative;
    z-index: 2;
}

.investment .section-header,
.investment .section-title {
    max-width: 800px;
}

.pricing-commitment-note {
    max-width: 860px;
    margin: 10px 0 54px;
}

.pricing-commitment-note p {
    max-width: 780px;
    margin: 0;
    font-size: var(--text-body-lg);
    line-height: var(--leading-body);
    color: var(--text-muted-dark);
    font-weight: 400;
}

.investment-table {
    width: 100%;
}

.inv-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-medium);
    transition: background 0.3s ease;
}

.header-row {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
    padding-bottom: 20px;
}

.header-row .col-plan,
.header-row .col-focus {
    font-size: 12px;
    font-weight: 600;
}

.inv-row:not(.header-row):hover {
    background: rgba(255, 255, 255, 0.03);
}

.col-plan h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
}

.plan-desc {
    font-size: var(--text-body);
    color: var(--text-muted-dark);
    line-height: var(--leading-body);
    margin: 0;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--text-body);
    color: var(--text-color);
    font-weight: 400;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: var(--leading-body);
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.tag {
    font-size: 12px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.col-focus {
    font-size: var(--text-body);
    color: var(--text-muted-dark);
    padding-right: 20px;
}

.col-price {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.period {
    font-size: 14px;
    color: var(--gray-light);
    font-weight: 400;
}

.pricing-menu .section-header {
    margin-bottom: 56px;
}

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

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 36px 44px;
    background: #0b0b0b;
    border: 1px solid var(--gray-medium);
    border-radius: 0;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

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

.pricing-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin-bottom: 26px;
    color: var(--accent-color);
    background: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    border-radius: 50%;
}

.pricing-card-icon svg {
    width: 34px;
    height: 34px;
}

.pricing-card-title {
    font-size: 28px;
    color: #fff;
    margin: 0 0 16px;
}

.pricing-card-desc {
    margin: 0 0 28px;
    color: var(--gray-light);
    line-height: 1.6;
    max-width: 300px;
    min-height: 6.4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-card-from {
    display: block;
    min-height: 1.1em;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
}

.pricing-card-price {
    font-size: clamp(44px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-card-per {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-light);
    margin-left: 4px;
}

.pricing-card-note {
    margin: 14px 0 0;
    font-size: 14px;
    color: var(--gray-light);
    min-height: 2.8em;
    display: flex;
    align-items: center;
}

.pricing-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 26px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
}

/* Stretch the card's link over the whole card so anywhere is clickable */
.pricing-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
}

.pricing-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.pricing-card:hover .pricing-card-link svg {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

.price-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(234, 157, 0, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.price-link:hover {
    border-color: var(--accent-color);
}

.exp-link {
    margin-top: 12px;
}

.exp-link a {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(234, 157, 0, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.exp-link a:hover {
    border-color: var(--accent-color);
}

.btn-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

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

.pricing-footnotes {
    margin-top: 40px;
    font-size: 12px;
    color: #fff;
}

.decision-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    margin-top: 48px;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-cta {
    margin-top: 64px;
}

.pricing-cta-section {
    position: relative;
    overflow: visible;
    padding: 42px 0 100px;
    background: linear-gradient(
        180deg,
        var(--bg-color) 0%,
        var(--bg-color) 50%,
        var(--home-row-light, var(--bg-color)) 50%,
        var(--home-row-light, var(--bg-color)) 100%
    );
}


.pricing-cta-section>.container {
    position: relative;
    z-index: 2;
}

.pricing-cta-section .pricing-cta {
    margin-top: 0;
    padding: 46px 48px;
    border: 1px solid rgba(234, 157, 0, 0.55);
    border-radius: 8px;
    background: var(--accent-color);
    box-shadow: 0 26px 80px rgba(234, 157, 0, 0.24);
}

.pricing-cta-section .pricing-cta .decision-kicker,
.pricing-cta-section .pricing-cta h3,
.pricing-cta-section .pricing-cta p {
    color: #fff;
}

.pricing-cta-section .pricing-cta p {
    max-width: 700px;
}

.pricing-cta-section .pricing-cta .decision-cta-button {
    --button-bg: var(--bg-color);
    --button-hover-bg: var(--gray-dark);
    --button-hover-shadow: 0 10px 28px rgba(17, 17, 17, 0.14);
    background: var(--button-bg);
    color: #fff;
    box-shadow: none;
}

.faq-cta-section {
    position: relative;
    overflow: visible;
    padding: 118px 0 72px;
    background: var(--bg-color);
}


.faq-cta-section>.container {
    position: relative;
    z-index: 2;
}

.faq-cta-section .faq-cta {
    margin-top: 0;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
}

.decision-kicker {
    margin-bottom: 16px;
}

.decision-cta h3 {
    max-width: 680px;
    margin-bottom: 12px;
    font-size: 38px;
    letter-spacing: 0;
}

.decision-cta p {
    max-width: 620px;
    color: var(--text-muted-dark);
    font-size: var(--text-body-lg);
    line-height: var(--leading-body);
    font-weight: 400;
}

.decision-cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.decision-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 280px;
    padding: 18px 36px;
    border-radius: 0;
    background: var(--accent-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s var(--easing), background 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

.decision-cta-button i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s var(--easing);
}

.decision-cta-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 320px;
}

.decision-cta-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 9px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 160px 0 40px;
}

.footer-accent-cta {
    padding: 0 0 40px;
    background: var(--accent-color);
    color: #fff;
}

.footer-dark-simple {
    position: relative;
    overflow: visible;
    padding: 36px 0 40px;
    background: var(--bg-color);
}


.footer-dark-simple > .container {
    position: relative;
    z-index: 2;
}

.footer-accent-cta .footer-cta-section {
    background: var(--accent-color);
    color: #fff;
}

.footer-accent-cta .decision-kicker,
.footer-accent-cta .decision-cta h3,
.footer-accent-cta .decision-cta p,
.footer-accent-cta .footer-bottom,
.footer-accent-cta a {
    color: #fff;
}

.footer-accent-cta .footer-nav {
    border-top-color: rgba(255, 255, 255, 0.42);
}

.footer-accent-cta .footer-nav-label {
    color: rgba(255, 255, 255, 0.88);
}

.footer-accent-cta .footer-nav-link {
    color: #fff;
}

.footer-accent-cta .footer-nav-link:hover,
.footer-accent-cta .socials a:hover {
    color: rgba(11, 11, 11, 0.82);
}

.footer-accent-cta .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.36);
}

.footer-accent-cta .decision-cta-button {
    --button-bg: var(--bg-color);
    --button-hover-bg: var(--gray-dark);
    --button-hover-shadow: 0 10px 28px rgba(17, 17, 17, 0.14);
    background: var(--button-bg);
    color: #fff;
    box-shadow: none;
}

.footer.footer-dark-cta {
    padding: 0 0 40px;
    background: var(--bg-color);
    color: #fff;
}

.footer-dark-cta .footer-cta-section {
    padding: 40px 0 64px;
    background: var(--bg-color);
    color: #fff;
}

.footer-dark-cta .faq-cta {
    margin-top: 0;
    padding: 48px 0 0;
    border-top: 0;
    border-bottom: 0;
}

.footer-dark-cta .decision-kicker {
    color: var(--accent-color);
}

.footer-dark-cta .decision-cta h3 {
    max-width: 700px;
    color: #fff;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.06;
    text-wrap: balance;
}

.footer-dark-cta .decision-cta p {
    color: rgba(255, 255, 255, 0.62);
}

.footer-dark-cta .decision-cta-button {
    --button-bg: var(--accent-color);
    --button-hover-bg: #f2ac1c;
    --button-hover-shadow: 0 10px 28px rgba(234, 157, 0, 0.22);
    background: var(--button-bg);
    color: #111;
}

.footer-dark-cta .footer-nav {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.footer-dark-cta .footer-bottom,
.footer-dark-cta .footer-nav-link,
.footer-dark-cta .socials a {
    color: rgba(255, 255, 255, 0.62);
}

.footer-dark-cta .footer-nav-link:hover,
.footer-dark-cta .socials a:hover {
    color: var(--accent-color);
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 120px;
}

.footer-cta {
    font-size: 6vw;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-cta span {
    color: var(--accent-color);
}

.footer-sub {
    font-size: 20px;
    color: var(--gray-light);
    max-width: 500px;
    margin-bottom: 60px;
}

.btn-circle {
    width: 160px;
    height: 160px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
    align-self: flex-end;
    margin-top: -100px;
}

.btn-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: scale(0);
    transition: transform 0.4s var(--easing);
    z-index: -1;
    border-radius: 50%;
}

.btn-circle:hover {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.btn-circle:hover::before {
    transform: scale(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.socials {
    display: flex;
    gap: 40px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-inner {
        text-align: center;
    }

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

    .expertise-heading {
        position: static;
    }

    .expertise-heading .section-title {
        max-width: none;
    }

    .hero-kicker-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .decision-cta {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .decision-cta-action {
        align-items: flex-start;
    }

    .decision-cta-proof {
        justify-content: flex-start;
    }

    .hero-visual {
        align-items: center;
    }

    .visual-glow {
        width: 300px;
        height: 300px;
    }

    .scroll-indicator {
        display: none;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-grid {
        display: flex;
        flex-direction: column;
    }

    .work-card {
        width: 100%;
    }

    .offset-card {
        margin-top: 0;
    }

    .inv-row {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }

    .header-row {
        display: none;
    }

    .col-action {
        margin-top: 16px;
    }

    .footer-main {
        align-items: center;
        text-align: center;
    }

    .btn-circle {
        align-self: center;
        margin-top: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-chart-card {
        padding: 18px;
    }

    .hcc-stat-val {
        font-size: 18px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        gap: 12px;
        padding: 20px 56px;
    }

    .hero-cta-label {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.35;
    }

    .hero-cta-sub {
        font-size: 11px;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0.5px;
        opacity: 0.9;
    }

    .hero-cta-sub::before {
        content: '';
    }

    .cta-arrow {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-cta {
        position: relative;
    }
}

/* ==========================================================================
   Fit Section (Who This Is For)
   ========================================================================== */
.fit-section {
    padding: 0 0 100px;
    background: var(--gray-dark);
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.fit-col {
    padding: 40px;
    border-radius: 8px;
}

.fit-yes {
    background: rgba(234, 157, 0, 0.08);
}

.fit-no {
    background: rgba(255, 255, 255, 0.02);
}

.fit-yes,
.fit-no {
    border: 0;
}

.fit-col h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
}

.fit-yes h3 {
    color: var(--accent-color);
}

.fit-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-col li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: var(--text-body);
    color: var(--text-color);
    line-height: var(--leading-body);
    font-weight: 400;
}

.fit-col li:last-child {
    margin-bottom: 0;
}

.fit-yes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.fit-no li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-color: var(--gray-light);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

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

    .fit-col {
        padding: 32px;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    position: relative;
    overflow: visible;
    padding: 142px 0 100px;
}


.faq-section>.container {
    position: relative;
    z-index: 2;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--gray-medium);
    padding: 32px 0;
    transition: background 0.3s ease;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--gray-medium);
}

.faq-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 24px;
}

.faq-question {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    color: var(--gray-light);
    transition: transform 0.3s var(--easing), color 0.3s ease;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-content {
    max-width: 700px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--easing), margin-top 0.4s var(--easing);
    margin-top: 0;
}

.faq-content p {
    font-size: var(--text-body);
    line-height: var(--leading-relaxed);
    color: var(--text-color);
    font-weight: 400;
}

.faq-item.active .faq-content {
    max-height: 300px;
    margin-top: 16px;
}


/* ==========================================================================
   Mobile Optimization Overrides (Consolidated)
   ========================================================================== */
@media (max-width: 768px) {

    /* Global Section Padding Adjustments */
    .hero,
    .statement,
    .expertise,
    .results-section,
    .testimonials-typewriter,
    .journey,
    .investment,
    .fit-section,
    .faq-section,
    .footer {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero {
        padding-top: 64px;
        padding-bottom: 84px;
    }

    .hero-bg-grid {
        background-size: 48px 48px, 48px 48px;
        mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
    }

    .hero-bg-glow {
        right: -34%;
        top: 10%;
        width: 82%;
        height: 58%;
        opacity: 0.48;
    }

    .hero-bg-chart-shell {
        right: -46%;
        top: 0;
        bottom: 0;
        width: 106%;
        height: auto;
        padding: 74px 18px 56px;
        opacity: 0.36;
        transform: rotate(-3deg);
    }

    .hero-bg-chart-shell::before {
        display: none;
    }

    .expertise {
    }

    .testimonials-typewriter {
    }

    .investment {
    }

    .investment .plan-kicker {
        color: #fff;
    }

    .faq-section {
    }

    .hero::after {
        bottom: -1px;
    }

    /* Typography Adjustments */
    .hero-title {
        font-size: clamp(34px, 9vw, 42px);
        margin-bottom: 24px;
    }

    .section-title {
        font-size: clamp(30px, 8vw, 38px);
    }

    .statement-text {
        font-size: 20px;
    }

    .statement-grid {
        gap: 38px;
    }

    .statement-image {
        width: 100%;
        max-width: 360px;
        margin: 0;
    }

    .statement-image::before {
        inset: -10% -12% 10%;
    }

    .statement-photo {
        border-radius: 28px;
    }

    .statement-identity {
        gap: 16px;
        padding-top: 16px;
    }

    .statement-person-name {
        font-size: 17px;
    }

    .statement-person-role {
        font-size: 9px;
    }

    .statement-experience-value {
        font-size: 23px;
    }

    .statement-experience-label {
        font-size: 8px;
    }

    /* Hero Specifics */
    .hero-inner {
        gap: 40px;
    }

    .hero-desc {
        font-size: var(--text-body);
        margin-bottom: 32px;
    }

    .hero-eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    /* Expertise Section */
    .expertise-list {
        gap: 0;
        /* Reset gap as items have padding */
    }

    .expertise-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 30px 0;
    }

    .exp-header {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 0;
    }

    .exp-num {
        line-height: 1;
    }

    .exp-title {
        font-size: 24px;
    }

    /* Results Section */
    .results-intro {
        margin-bottom: 40px;
    }

    .results-tagline {
        font-size: 28px;
    }

    /* Testimonials */
    .testimonials-quote {
        font-size: 22px;
        line-height: 1.5;
        position: relative;
        /* Override absolute positioning for natural flow */
    }

    .testimonials-quote-wrapper {
        min-height: auto;
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    /* Journey */
    .journey-grid {
        gap: 24px;
    }

    .journey-col {
        display: grid;
        gap: 24px;
    }

    .journey-col p {
        margin-bottom: 0;
    }

    .journey .signature {
        margin-top: 4px;
        padding-top: 0;
    }

    /* Investment / Pricing */
    .investment-table {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .inv-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .inv-row.header-row {
        display: none;
    }

    .col-plan,
    .col-focus,
    .col-price,
    .col-action {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .col-plan h3 {
        font-size: 22px;
        color: var(--accent-color);
    }

    .col-price {
        font-size: 28px;
        margin: 10px 0;
    }

    .decision-cta {
        margin-top: 32px;
        padding: 28px 0;
    }

    .faq-cta {
        margin-top: 48px;
    }

    .pricing-cta-section {
        padding: 32px 0 60px;
    }

    .pricing-cta-section .pricing-cta {
        margin-top: 0;
        padding: 32px 24px;
    }

    .faq-cta-section {
        padding: 86px 0 56px;
    }

    .faq-cta-section .faq-cta {
        margin-top: 0;
    }

    .decision-cta h3 {
        font-size: 28px;
    }

    .decision-cta p {
        font-size: var(--text-body);
    }

    .decision-cta-button {
        width: 100%;
        min-width: 0;
        padding: 18px 34px;
        text-align: center;
    }

    .btn-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 4px;
        text-align: center;
        width: 100%;
        color: #fff;
        text-decoration: none;
    }

    .btn-link:hover {
        background: var(--accent-color);
        color: #fff;
    }

    /* Footer */
    .footer {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .footer-cta {
        font-size: 48px;
    }

    .btn-circle {
        width: 120px;
        height: 120px;
        margin-top: 0;
        align-self: center;
    }
}

/* ==========================================================================
   ROI Calculator
   ========================================================================== */
.roi-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(234, 157, 0, 0.03) 50%, var(--bg-color) 100%);
}

.roi-calculator {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 157, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Inputs Column */
.roi-inputs-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.roi-input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roi-label-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.roi-input-group label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-light);
}

.roi-value-display {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

/* Custom Slider Styling */
.roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--gray-medium);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border: 4px solid var(--bg-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(234, 157, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(234, 157, 0, 0.6);
}

.roi-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border: 4px solid var(--bg-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(234, 157, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.roi-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(234, 157, 0, 0.6);
}

.roi-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 500;
}

/* Results Column */
.roi-results-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roi-result-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.roi-result-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.roi-result-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.roi-result-icon i {
    width: 28px;
    height: 28px;
}

.roi-result-content {
    display: flex;
    flex-direction: column;
}

.roi-result-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.roi-result-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.roi-result-total {
    background: rgba(234, 157, 0, 0.1);
    border-color: rgba(234, 157, 0, 0.2);
}

.roi-result-total .roi-result-icon {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(234, 157, 0, 0.3);
}

.roi-result-total .roi-result-value {
    color: var(--accent-color);
    font-size: 36px;
}

.roi-multiplier-box {
    margin-top: 24px;
    padding: 24px;
    background: rgba(234, 157, 0, 0.1);
    border: 1px solid rgba(234, 157, 0, 0.3);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roi-multiplier-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(234, 157, 0, 0.2);
}

.roi-multiplier-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.roi-multiplier-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.roi-multiplier-text {
    font-size: 14px;
    color: var(--gray-light);
}

.roi-multiplier-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.2;
}

.roi-result-period {
    display: block;
    font-size: 12px;
    color: var(--gray-light);
    opacity: 0.6;
    margin-top: 4px;
}

.roi-result-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.roi-result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.roi-result-total:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(234, 157, 0, 0.2);
}

.roi-fee-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(234, 157, 0, 0.05);
    border: 1px dashed rgba(234, 157, 0, 0.2);
    border-radius: 12px;
    color: var(--gray-light);
    font-size: 14px;
}

.roi-fee-indicator i {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
}

.roi-loss .roi-result-value {
    color: #ff4b4b !important;
}

.roi-loss {
    border-color: rgba(255, 75, 75, 0.3) !important;
    background: rgba(255, 75, 75, 0.05) !important;
}

.roi-disclaimer {
    margin-top: 32px;
    text-align: center;
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 300;
}

/* ROI Calculator Responsive */
@media (max-width: 992px) {
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .roi-calculator {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .roi-calculator {
        padding: 32px 20px;
    }

    .roi-value-display {
        font-size: 24px;
    }

    .roi-result-card {
        padding: 20px;
        gap: 16px;
    }

    .roi-result-icon {
        width: 48px;
        height: 48px;
    }

    .roi-result-value {
        font-size: 24px;
    }

    .roi-result-total .roi-result-value {
        font-size: 28px;
    }
}

/* ==========================================================================
   PPC Management Landing Page
   ========================================================================== */
.ppc-page {
    background:
        radial-gradient(circle at 78% 8%, rgba(234, 157, 0, 0.16), transparent 34%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #050505 100%);
}

.ppc-page .nav-links {
    gap: 48px;
}

.ppc-page .logo-img {
    height: 34px;
}

.ppc-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 156px 0 96px;
}

.ppc-graph-bg {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    pointer-events: none;
}

.ppc-graph-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 180px 180px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%);
}

.ppc-graph-line {
    position: absolute;
    right: -8%;
    left: 34%;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.ppc-graph-line-1 {
    top: 30%;
}

.ppc-graph-line-2 {
    top: 52%;
}

.ppc-graph-line-3 {
    top: 74%;
}

.ppc-graph-curve {
    position: absolute;
    right: -6%;
    bottom: 14%;
    width: 72%;
    height: 42%;
    border-top: 5px solid rgba(234, 157, 0, 0.9);
    border-radius: 64% 36% 0 0;
    transform: rotate(-12deg);
    box-shadow: 0 -24px 80px rgba(234, 157, 0, 0.22);
}

.ppc-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 80px;
    align-items: center;
}

.ppc-hero-copy {
    max-width: 820px;
}

.ppc-kicker {
    margin-bottom: 18px;
}

.ppc-hero h1 {
    max-width: 840px;
    margin-bottom: 30px;
    font-size: clamp(52px, 7.5vw, 108px);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.ppc-hero-lede {
    max-width: 670px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
    line-height: 1.65;
}

.ppc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.ppc-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 18px 36px;
    border-radius: 0;
    background: var(--accent-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: transform 0.3s var(--easing), background 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

.ppc-primary-cta i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s var(--easing);
}

.ppc-primary-cta:hover {
    background: #CE8A00;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(234, 157, 0, 0.28);
}

.ppc-primary-cta:hover i {
    transform: translateX(4px);
}

.ppc-cta-note {
    max-width: 240px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.5;
}

.ppc-diagnostic-panel {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(13, 13, 13, 0.76);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 28px;
}

.ppc-diagnostic-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 3px solid var(--accent-color);
    border-radius: 8px;
    pointer-events: none;
}

.ppc-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.ppc-panel-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ppc-panel-top h2 {
    font-size: 28px;
    letter-spacing: 0;
}

.ppc-live-dot {
    width: 10px;
    height: 10px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--accent-secondary);
    box-shadow: 0 0 24px rgba(249, 220, 92, 0.82);
    flex-shrink: 0;
}

.ppc-diagnostic-list {
    display: grid;
    gap: 16px;
}

.ppc-diagnostic-row {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ppc-diagnostic-row i {
    width: 22px;
    height: 22px;
    color: var(--accent-color);
}

.ppc-diagnostic-row strong,
.ppc-diagnostic-row span {
    display: block;
}

.ppc-diagnostic-row strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 15px;
}

.ppc-diagnostic-row span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.5;
}

.ppc-section {
    padding: 116px 0;
}

.ppc-split,
.ppc-proof-inner,
.ppc-audit-grid,
.ppc-founder-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 80px;
    align-items: start;
}

.ppc-section-heading h2,
.ppc-proof-inner h2,
.ppc-audit-copy h2,
.ppc-founder-inner h2,
.ppc-final-inner h2 {
    margin-bottom: 24px;
    font-size: clamp(34px, 4.2vw, 64px);
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

.ppc-section-heading-wide {
    max-width: 840px;
    margin-bottom: 52px;
}

.ppc-copy-stack {
    display: grid;
    gap: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.75;
}

.ppc-leaks {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ppc-leak-grid,
.ppc-system-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ppc-leak-item,
.ppc-system-step {
    min-height: 290px;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ppc-leak-item span {
    display: block;
    margin-bottom: 52px;
    color: rgba(234, 157, 0, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ppc-leak-item h3,
.ppc-system-step h3,
.ppc-audit-list h3 {
    margin-bottom: 14px;
    font-size: 22px;
    letter-spacing: 0;
}

.ppc-leak-item p,
.ppc-system-step p,
.ppc-proof-inner p,
.ppc-audit-copy p,
.ppc-founder-inner p,
.ppc-faq details p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.7;
}

.ppc-system-step i {
    width: 28px;
    height: 28px;
    margin-bottom: 46px;
    color: var(--accent-secondary);
}

.ppc-proof-band {
    padding: 86px 0;
    background: var(--accent-color);
}

.ppc-proof-band .ppc-kicker,
.ppc-proof-band h2,
.ppc-proof-band p {
    color: #fff;
}

.ppc-proof-band .ppc-kicker {
    opacity: 0.8;
}

.ppc-proof-inner {
    align-items: center;
}

.ppc-proof-inner h2 {
    margin-bottom: 0;
}

.ppc-proof-inner p {
    max-width: 560px;
    font-size: 18px;
}

.ppc-testimonial-strip {
    padding: 42px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.ppc-testimonial-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 980px;
}

.ppc-testimonial-inner img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ppc-testimonial-inner blockquote {
    margin: 0;
}

.ppc-testimonial-inner p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.55;
}

.ppc-testimonial-inner cite {
    color: var(--gray-light);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}

.ppc-audit {
    background:
        linear-gradient(90deg, rgba(249, 220, 92, 0.08), transparent 42%),
        rgba(255, 255, 255, 0.025);
}

.ppc-audit-copy p {
    max-width: 620px;
    margin-bottom: 32px;
    font-size: 18px;
}

.ppc-audit-list {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.ppc-audit-list ul {
    display: grid;
    gap: 18px;
    list-style: none;
}

.ppc-audit-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.55;
}

.ppc-audit-list i {
    width: 18px;
    height: 18px;
    color: var(--accent-secondary);
}

.ppc-founder-note {
    padding-top: 96px;
}

.ppc-founder-inner {
    align-items: center;
}

.ppc-founder-inner img {
    width: min(100%, 440px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(0.12);
}

.ppc-faq {
    padding-top: 80px;
}

.ppc-faq-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ppc-faq details {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ppc-faq summary {
    cursor: pointer;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    list-style: none;
}

.ppc-faq summary::-webkit-details-marker {
    display: none;
}

.ppc-faq summary::after {
    content: '+';
    float: right;
    color: var(--accent-color);
    font-weight: 400;
}

.ppc-faq details[open] summary::after {
    content: '-';
}

.ppc-faq details p {
    max-width: 760px;
    margin-top: 16px;
}

.ppc-final-cta {
    padding: 120px 0;
    text-align: center;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ppc-final-inner {
    max-width: 820px;
    margin: 0 auto;
}

.ppc-final-inner h2 {
    margin-bottom: 34px;
}

.ppc-footer {
    padding-top: 0;
}

.ppc-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   SEO Services Page
   ========================================================================== */
.seo-services-page .hero-bg-chart-shell::before {
    content: 'organic visibility';
}

.seo-services-page .statement-text {
    max-width: 860px;
}

.seo-services-page .seo-results-grid {
    margin-top: 12px;
}

.seo-services-page .seo-local-proof {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(28px, 4vw, 56px);
}

.seo-services-page .seo-investment {
    padding-top: 142px;
}

.seo-services-page .investment-table .col-plan {
    padding-right: clamp(28px, 4vw, 72px);
}

.seo-services-page .col-plan h3 {
    text-wrap: balance;
}

.seo-services-page .feature-list li span {
    min-width: 0;
}

.seo-services-page .pricing-cta-section .pricing-cta {
    box-shadow: 0 26px 80px rgba(234, 157, 0, 0.2);
}

.seo-services-page .seo-fit-section {
    padding-top: 120px;
}

.seo-services-page .seo-faq-section {
    padding-bottom: 120px;
}

@media (max-width: 1100px) {
    .seo-services-page .seo-local-proof {
        grid-template-columns: 1fr;
    }

    .seo-services-page .investment-table .col-plan {
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .seo-services-page .investment-table .col-plan {
        padding-right: 0;
    }
}

@media (max-width: 1100px) {
    .ppc-hero-inner,
    .ppc-split,
    .ppc-proof-inner,
    .ppc-audit-grid,
    .ppc-founder-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ppc-diagnostic-panel {
        max-width: 640px;
    }

    .ppc-leak-grid,
    .ppc-system-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ppc-graph-curve {
        width: 90%;
        left: 34%;
        right: auto;
    }
}

@media (max-width: 768px) {
    .ppc-page .nav-links,
    .ppc-page .nav-cta {
        display: none;
    }

    .ppc-hero {
        min-height: auto;
        padding: 132px 0 72px;
    }

    .ppc-hero h1 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .ppc-hero-lede,
    .ppc-copy-stack,
    .ppc-proof-inner p,
    .ppc-audit-copy p {
        font-size: 16px;
    }

    .ppc-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ppc-primary-cta {
        width: 100%;
        min-height: 56px;
        padding: 17px 34px;
        text-align: center;
    }

    .ppc-cta-note {
        max-width: none;
    }

    .ppc-diagnostic-panel,
    .ppc-audit-list {
        padding: 24px;
    }

    .ppc-testimonial-inner {
        align-items: flex-start;
    }

    .ppc-testimonial-inner p {
        font-size: 16px;
    }

    .ppc-section {
        padding: 78px 0;
    }

    .ppc-section-heading-wide {
        margin-bottom: 36px;
    }

    .ppc-leak-grid,
    .ppc-system-grid {
        grid-template-columns: 1fr;
    }

    .ppc-leak-item,
    .ppc-system-step {
        min-height: auto;
        padding: 26px;
    }

    .ppc-leak-item span,
    .ppc-system-step i {
        margin-bottom: 28px;
    }

    .ppc-proof-band {
        padding: 72px 0;
    }

    .ppc-founder-note {
        padding-top: 72px;
    }

    .ppc-final-cta {
        padding: 84px 0;
    }
}


/* Astro conversion overrides */

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.044) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}

.hero-bg-glow {
  display: none;
}

.hero-bg-chart-shell {
  position: absolute;
  left: clamp(740px, 58vw, 900px);
  right: -1px;
  top: 0;
  bottom: 0;
  width: auto;
  height: auto;
  padding: 74px 0 56px 28px;
  z-index: 1;
  background: rgba(5, 5, 5, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 0;
  opacity: 0.94;
  transform: rotate(-2deg);
  transform-origin: right center;
  mix-blend-mode: screen;
  box-shadow: none;
}

.hero-bg-chart-shell::before {
  content: 'qualified leads';
  position: absolute;
  left: 30px;
  top: 18px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-bg-chart {
  position: relative;
  z-index: 1;
  width: calc(100% + 96px) !important;
  height: 100% !important;
  margin-right: -96px;
}

@media (max-width: 768px) {
  .hero-bg-chart-shell {
    left: auto;
    right: -46%;
    top: 0;
    bottom: 0;
    width: 106%;
    height: auto;
    padding: 74px 18px 56px;
    opacity: 0.36;
    transform: rotate(-3deg);
    box-shadow: none;
  }
}

.feature-list li,
.fit-col li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  padding-left: 0;
}

.feature-list li::before,
.fit-yes li::before,
.fit-no li::before {
  content: none;
}

.feature-list li > svg,
.fit-col li > svg {
  width: 16px;
  height: 16px;
  margin-top: 0.28em;
  stroke-width: 2.5;
  flex: 0 0 auto;
}

.feature-list li > svg,
.fit-yes li > svg {
  color: var(--accent-color);
}

.fit-no li > svg {
  color: var(--gray-light);
}

/* Homepage row alternation */
.home-page {
  --home-row-white: var(--surface-panel);
  --home-row-light: var(--surface-light);
  --home-row-light-2: var(--surface-light-alt);
  --home-row-ink: var(--ink-color);
  --home-row-muted: var(--light-muted);
  --home-row-line: var(--light-line);
  --home-row-panel: var(--surface-panel);
}

.home-page .hero,
.home-page .expertise,
.home-page .testimonials-typewriter,
.home-page .investment {
  background: var(--bg-color);
  color: var(--text-color);
}

.home-page .statement,
.home-page .results-section,
.home-page .journey,
.home-page .fit-section {
  background: var(--home-row-light);
  color: var(--home-row-ink);
}

.home-page .statement,
.home-page .results-section,
.home-page .journey,
.home-page .fit-section,
.home-page .investment,
.home-page .faq-section {
  border-top: 0;
}

.home-page .statement .section-title,
.home-page .statement-text,
.home-page .results-header .results-tagline,
.home-page .journey .section-title,
.home-page .fit-section .section-title,
.home-page .fit-col h3 {
  color: var(--home-row-ink);
}

.home-page .statement-sub,
.home-page .results-intro-text,
.home-page .journey-grid,
.home-page .journey-col p,
.home-page .sig-title,
.home-page .fit-col li {
  color: var(--home-row-muted);
  font-weight: 400;
}

.home-page .statement-photo img {
  filter: saturate(0.94) contrast(1.01);
}

.home-page .results-section {
  border-top-color: transparent;
}

.home-page .results-takeaway p {
  color: var(--home-row-ink);
}

.home-page .journey {
  background: var(--home-row-white);
  border-top-color: transparent;
  border-bottom: 0;
}

.home-page .journey .signature {
  border-top: 0;
}

.home-page .signature {
  border-top-color: var(--home-row-line);
}

.home-page .sig-name {
  color: var(--home-row-ink);
  text-shadow: none;
}

.home-page .fit-section {
  background: var(--home-row-light);
  border-bottom: 0;
}

.home-page .fit-col {
  background: var(--home-row-panel);
  border: 0;
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.08);
}

.home-page .fit-no li > svg {
  color: var(--home-row-muted);
}

.home-page .investment {
  border-top-color: transparent;
}

.home-page .faq-section {
  background: var(--home-row-white);
  color: var(--home-row-ink);
  border-top-color: transparent;
}

.home-page .faq-section .section-title,
.home-page .faq-section .faq-question {
  color: var(--home-row-ink);
}

.home-page .faq-section .faq-content p,
.home-page .faq-section .faq-icon {
  color: var(--home-row-muted);
}

.home-page .faq-section .faq-item {
  border-color: var(--home-row-line);
}

.home-page .faq-section .faq-item:last-child {
  border-bottom: 0;
}

/* AI Workflow Blueprint page */
.ai-workflow-page .nav-link {
  color: rgba(255, 255, 255, 0.76);
}

.ai-hero {
  padding-bottom: 156px;
}

.ai-workflow-page .hero-inner {
  display: block;
}

.ai-hero .hero-bg-grid {
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.ai-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 44%, rgba(5, 5, 5, 0.28) 64%, transparent 86%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0) 46%, rgba(5, 5, 5, 0.66) 100%);
}

.ai-workflow-page .hero-content {
  max-width: 52%;
}

.ai-hero-title {
  max-width: 100%;
}

.ai-hero-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.ai-hero-note {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-body-sm);
  line-height: 1.45;
  font-weight: 400;
}

.ai-hero-diagram {
  --ai-diagram-scale: 0.96;
  --ai-diagram-x-offset: 240px;
  position: absolute;
  z-index: 2;
  top: 48px;
  left: calc(50% + var(--ai-diagram-x-offset));
  width: calc(920px * var(--ai-diagram-scale));
  height: calc(520px * var(--ai-diagram-scale));
  opacity: 0.78;
  pointer-events: none;
  overflow: visible;
  transform: translateX(-50%);
}

.ai-diagram-stage {
  position: absolute;
  top: 50%;
  left: 0;
  width: 920px;
  height: 520px;
  transform: translateY(-50%) scale(var(--ai-diagram-scale));
  transform-origin: left center;
}

.ai-diagram-lines,
.ai-diagram-inputs,
.ai-diagram-outputs {
  position: absolute;
  inset: 0;
}

.ai-diagram-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(8, 8, 8, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.ai-diagram-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 920px;
  height: 520px;
}

.ai-diagram-square {
  left: 64px;
  width: 80px;
  height: 80px;
}

.ai-diagram-square:nth-child(1) {
  top: 40px;
}

.ai-diagram-square:nth-child(2) {
  top: 159px;
}

.ai-diagram-square:nth-child(3) {
  top: 278px;
}

.ai-diagram-square:nth-child(4) {
  top: 397px;
}

.ai-diagram-card i {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.62);
  stroke-width: 1.45;
}

.ai-diagram-hub {
  position: absolute;
  left: 420px;
  top: 222px;
  width: 86px;
  height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--accent-color);
  background: rgba(12, 12, 12, 0.8);
  box-shadow: 0 0 42px rgba(234, 157, 0, 0.1);
}

.ai-diagram-hub span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

.ai-diagram-wide {
  left: 680px;
  width: 220px;
  height: 76px;
  overflow: hidden;
}

.ai-diagram-wide > :not(.ai-card-outline) {
  position: relative;
  z-index: 3;
}

.ai-card-outline {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ai-card-outline span {
  position: absolute;
  display: block;
  background: var(--accent-color);
  opacity: 0;
}

.ai-card-outline-left-top {
  left: 0;
  top: 0;
  width: 2px;
  height: 50%;
  transform: scaleY(0);
  transform-origin: bottom center;
}

.ai-card-outline-top {
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
}

.ai-card-outline-right-top {
  right: 0;
  top: 0;
  width: 2px;
  height: 50%;
  transform: scaleY(0);
  transform-origin: top center;
}

.ai-card-outline-bottom {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
}

.ai-card-outline-left-bottom {
  left: 0;
  bottom: 0;
  width: 2px;
  height: 50%;
  transform: scaleY(0);
  transform-origin: top center;
}

.ai-card-outline-right-bottom {
  right: 0;
  bottom: 0;
  width: 2px;
  height: 50%;
  transform: scaleY(0);
  transform-origin: bottom center;
}

.ai-diagram-wide.is-receiving .ai-card-outline span {
  opacity: 0.9;
}

.ai-diagram-wide.is-receiving .ai-card-outline-left-top {
  animation: aiOutlineLeftTop 620ms linear forwards;
}

.ai-diagram-wide.is-receiving .ai-card-outline-top {
  animation: aiOutlineTop 620ms linear forwards;
}

.ai-diagram-wide.is-receiving .ai-card-outline-right-top {
  animation: aiOutlineRightTop 620ms linear forwards;
}

.ai-diagram-wide.is-receiving .ai-card-outline-bottom {
  animation: aiOutlineBottom 620ms linear forwards;
}

.ai-diagram-wide.is-receiving .ai-card-outline-left-bottom {
  animation: aiOutlineLeftBottom 620ms linear forwards;
}

.ai-diagram-wide.is-receiving .ai-card-outline-right-bottom {
  animation: aiOutlineRightBottom 620ms linear forwards;
}

@keyframes aiOutlineLeftTop {
  0%, 4% { transform: scaleY(0); }
  22%, 100% { transform: scaleY(1); }
}

@keyframes aiOutlineTop {
  0%, 20% { transform: scaleX(0); }
  66%, 100% { transform: scaleX(1); }
}

@keyframes aiOutlineRightTop {
  0%, 64% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

@keyframes aiOutlineBottom {
  0%, 20% { transform: scaleX(0); }
  66%, 100% { transform: scaleX(1); }
}

@keyframes aiOutlineLeftBottom {
  0%, 4% { transform: scaleY(0); }
  22%, 100% { transform: scaleY(1); }
}

@keyframes aiOutlineRightBottom {
  0%, 64% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

.ai-diagram-wide:nth-child(1) {
  top: 42px;
}

.ai-diagram-wide:nth-child(2) {
  top: 157px;
}

.ai-diagram-wide:nth-child(3) {
  top: 272px;
}

.ai-diagram-wide:nth-child(4) {
  top: 387px;
}

.ai-output-check {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
}

.ai-output-check i {
  width: 24px;
  height: 24px;
  color: var(--accent-color);
}

.ai-output-list {
  display: grid;
  gap: 10px;
}

.ai-output-list span {
  position: relative;
  display: block;
  width: 74px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.ai-output-list span::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
}

.ai-output-list span:nth-child(2) {
  width: 54px;
}

.ai-output-list span:nth-child(3) {
  width: 88px;
}

.ai-output-trend,
.ai-output-bars {
  color: var(--accent-color) !important;
  stroke-width: 1.7 !important;
}

.ai-output-trend {
  width: 96px !important;
  height: 56px !important;
}

.ai-output-bars {
  width: 60px !important;
  height: 50px !important;
}

.ai-statement-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.ai-statement-number {
  position: sticky;
  top: 112px;
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: clamp(86px, 13vw, 180px);
  font-weight: 700;
  line-height: 0.78;
  text-transform: uppercase;
}

.ai-statement-number span {
  display: block;
  transform: skewX(-7deg);
}

.ai-method .expertise-heading .section-title {
  max-width: 9ch;
}

.ai-value-section .results-big-num {
  color: var(--accent-secondary);
}

.ai-static-stat-value {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.9;
}

.ai-offers .section-header {
  max-width: 960px;
}

.ai-offers .section-title {
  max-width: 960px;
}

.ai-training-section .pricing-cta {
  background: var(--accent-color);
}

.ai-training-section .pricing-cta .decision-cta-button {
  --button-bg: #050505;
  --button-hover-bg: #171717;
}

.ai-workflow-page .footer-accent-cta,
.ai-workflow-page .footer-accent-cta .footer-cta-section {
  background: var(--accent-color);
}

.ai-workflow-page .footer-accent-cta .footer-cta-section::before {
  content: none;
}

.ai-fit-section {
  padding-top: 120px;
}

.ai-faq-section {
  padding-bottom: 120px;
}

@media (max-width: 1280px) {
  .ai-hero-diagram {
    --ai-diagram-scale: 0.86;
    --ai-diagram-x-offset: 220px;
    top: 75px;
  }
}

@media (max-width: 1120px) {
  .ai-hero-diagram {
    --ai-diagram-scale: 0.78;
    --ai-diagram-x-offset: 170px;
    top: 96px;
    opacity: 0.52;
  }
}

@media (min-width: 1670px) {
  .ai-hero-diagram {
    --ai-diagram-scale: 1.04;
    top: 27px;
  }
}

@media (min-width: 1720px) {
  .ai-hero-diagram {
    --ai-diagram-scale: 1.1;
    top: 11px;
  }
}

@media (max-width: 900px) {
  .ai-hero-diagram {
    display: none;
  }

  .ai-workflow-page .hero-content {
    max-width: none;
  }

  .ai-statement-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ai-statement-number {
    position: static;
    font-size: clamp(72px, 22vw, 120px);
  }
}

@media (max-width: 768px) {
  .ai-hero {
    padding-bottom: 84px;
  }

  .ai-hero-actions {
    display: grid;
    gap: 16px;
  }

  .ai-hero-note {
    max-width: none;
    text-align: left;
  }

  .ai-workflow-page .hero-inner {
    text-align: left;
  }

  .ai-fit-section {
    padding-top: 60px;
  }
}

.contact-page {
  padding: 88px 0 90px;
  background: var(--bg-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 112px;
  align-self: start;
  max-height: calc(100vh - 144px);
  overflow-y: auto;
  padding-right: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(238, 83, 75, 0.78) rgba(255, 255, 255, 0.08);
}

.contact-intro::-webkit-scrollbar {
  width: 6px;
}

.contact-intro::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.contact-intro::-webkit-scrollbar-thumb {
  background: rgba(238, 83, 75, 0.78);
}

.contact-intro .hero-title {
  max-width: 640px;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 0.98;
  margin-bottom: 28px;
}

.contact-intro .hero-title > .accent-period {
  display: inline;
}

.contact-intro .hero-desc {
  max-width: 680px;
}

.audit-value {
  margin-top: 38px;
}

.audit-value-label {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.audit-value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  max-width: 560px;
}

.audit-value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.audit-value-list i,
.audit-value-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--accent-color);
  stroke-width: 2.6;
}

.contact-card {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 120px;
  padding: 56px 34px 52px;
  border: 0;
  background: transparent;
  color: var(--gray-dark);
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.contact-card::before {
  z-index: -2;
  background: var(--accent-color);
  transform: translate(14px, 14px);
}

.contact-card::after {
  z-index: -1;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.22);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card-header {
  margin-bottom: 22px;
}

.contact-card-header .kicker-text {
  margin-bottom: 10px;
}

.contact-card-header h2 {
  margin-bottom: 0;
  color: var(--gray-dark);
  font-size: 30px;
  letter-spacing: 0;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form .field {
  display: grid;
  gap: 8px;
}

.lead-form .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

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

.lead-form [hidden] {
  display: none !important;
}

.lead-form label {
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 0;
  background: #fff;
  color: var(--gray-dark);
  padding: 14px 16px;
}

.lead-form select {
  min-height: 51px;
  appearance: none;
  padding-right: 44px;
  background: #f8f6f2;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lead-form select:hover {
  border-color: rgba(17, 17, 17, 0.32);
  background: #fff;
}

.select-control {
  position: relative;
}

.select-control::after {
  display: none;
}

.select-control i,
.select-control svg {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: rgba(17, 17, 17, 0.46);
  pointer-events: none;
  transform: translateY(-50%);
  stroke-width: 2.5;
}

.select-control:focus-within i,
.select-control:focus-within svg {
  color: var(--gray-dark);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(234, 157, 0, 0.22);
}

.lead-form select:invalid {
  color: rgba(17, 17, 17, 0.42);
}

.lead-form select option {
  color: var(--gray-dark);
  background: #fff;
}

.lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-note {
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
}

.lead-form .field-note {
  margin-top: -2px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  line-height: 1.4;
}

.thank-you-page {
  background: #fff;
}

.thank-you-hero {
  position: relative;
  overflow: visible;
  padding: 68px 0 34px;
  background: var(--bg-color);
}


.thank-you-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
}

.thank-you-hero .hero-title {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-family: var(--font-primary);
  font-size: clamp(34px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.04;
  text-transform: none;
}

.thank-you-hero .hero-desc {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  font-size: 17px;
  line-height: 1.55;
}

.audit-prep,
.audit-timeline-section,
.audit-reference {
  background: #fff;
  color: #111;
}

.audit-prep {
  padding: 70px 0 88px;
}

.audit-prep-inner {
  display: block;
  max-width: 880px;
}

.audit-prep-copy {
  position: static;
  max-width: 760px;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.audit-prep-copy h2 {
  max-width: 760px;
  margin: 10px 0 12px;
  color: #111;
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.audit-prep-copy p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 16px;
  line-height: 1.65;
}

.audit-prep .kicker-text,
.audit-timeline-section .kicker-text,
.audit-reference .kicker-text {
  color: var(--accent-color);
}

.audit-access-email {
  display: inline-grid;
  gap: 5px;
  min-width: min(100%, 360px);
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.audit-access-email span {
  color: rgba(17, 17, 17, 0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.audit-access-email strong {
  color: #111;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}

.audit-checklist {
  display: grid;
  gap: 0;
  list-style: none;
  max-width: 780px;
}

.audit-check-item {
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: transparent;
  position: relative;
}

.audit-check-item::before {
  display: none;
}

.audit-check-item:last-child::before {
  display: none;
}

.audit-safety-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-top: 4px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
}

.audit-safety-icon i {
  width: 14px;
  height: 14px;
  stroke-width: 2.8;
}

.audit-step-label {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-color);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.audit-check-item h3,
.audit-timeline-item h3,
.audit-safety-note h3,
.audit-reference-card h3 {
  margin-bottom: 5px;
  color: #111;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.audit-check-item p,
.audit-timeline-item p,
.audit-safety-note p,
.audit-reference-card p {
  color: rgba(17, 17, 17, 0.66);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 300;
}

.audit-step-image {
  max-width: 560px;
  margin-top: 16px;
}

.audit-step-image-frame {
  position: relative;
  overflow: hidden;
}

.audit-step-image img {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #f5f5f5;
}

.audit-step-image-highlight {
  position: absolute;
  left: 60.7%;
  top: 4.9%;
  width: 32.4%;
  height: 10.5%;
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.audit-step-image figcaption {
  margin-top: 7px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 12px;
  line-height: 1.45;
}

.audit-step-conclusion {
  max-width: 780px;
  margin-top: 22px;
  padding: 18px 0 0;
}

.audit-step-conclusion h3 {
  margin-bottom: 5px;
  color: #111;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.audit-step-conclusion p {
  color: rgba(17, 17, 17, 0.66);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 300;
}

.audit-timeline-section {
  padding: 28px 0 22px;
}

.audit-timeline-inner {
  display: grid;
  gap: 20px;
  max-width: 880px;
}

.audit-timeline-heading {
  display: block;
  max-width: 760px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.audit-timeline-heading h2,
.audit-reference-inner h2 {
  max-width: 680px;
  margin-top: 8px;
  color: #111;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.audit-timeline {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  border: 0;
  background: transparent;
}

.audit-timeline-item {
  min-height: 0;
  padding: 14px 0 16px 26px;
  border-left: 2px solid rgba(17, 17, 17, 0.12);
  position: relative;
}

.audit-timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 21px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent-color);
  background: #fff;
}

.audit-timeline-item + .audit-timeline-item {
  border-top: 0;
}

.audit-timeline-label,
.audit-reference-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-color);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.audit-safety-note {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  max-width: 780px;
  padding: 18px 20px;
  border: 1px solid rgba(249, 220, 92, 0.72);
  background: rgba(249, 220, 92, 0.16);
}

.audit-safety-icon {
  border-color: rgba(249, 220, 92, 0.95);
  background: rgba(249, 220, 92, 0.22);
  color: #111;
}

.audit-reference {
  padding: 24px 0 88px;
}

.audit-reference-inner {
  display: grid;
  gap: 20px;
  max-width: 880px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.audit-reference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 780px;
}

.audit-reference-card {
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: transparent;
}

.audit-reference-card span {
  margin-bottom: 5px;
}

.terms-page {
  min-height: 100vh;
  padding: 60px 20px 100px;
}

.terms-body *,
.terms-body *::before,
.terms-body *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.terms-logo {
  text-align: center;
  margin-bottom: 60px;
}

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

.terms-container {
  max-width: 720px;
  margin: 0 auto;
}

.terms-header {
  margin-bottom: 60px;
}

.terms-title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.terms-updated {
  font-size: 14px;
  color: var(--gray-light);
}

.terms-content {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

.terms-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-content h3:first-child {
  margin-top: 0;
}

.terms-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 28px;
  margin-bottom: 10px;
}

.terms-content p {
  margin-bottom: 16px;
}

.terms-content strong {
  color: #fff;
  font-weight: 500;
}

/* Shared button component */
.cp-button {
  --button-bg: var(--accent-color);
  --button-hover-bg: #CE8A00;
  --button-shadow: none;
  --button-hover-shadow: 0 12px 30px rgba(234, 157, 0, 0.28);
  --button-active-shadow: 0 7px 18px rgba(234, 157, 0, 0.2);
  --button-slant: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 0;
  background: var(--button-bg);
  box-shadow: var(--button-shadow);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  clip-path: polygon(var(--button-slant) 0, 100% 0, calc(100% - var(--button-slant)) 100%, 0 100%);
  -webkit-clip-path: polygon(var(--button-slant) 0, 100% 0, calc(100% - var(--button-slant)) 100%, 0 100%);
  transition:
    background 0.3s var(--easing),
    box-shadow 0.3s var(--easing),
    color 0.3s var(--easing),
    transform 0.3s var(--easing);
}

.cp-button:hover,
.cp-button:focus-visible {
  background: var(--button-hover-bg);
  box-shadow: var(--button-hover-shadow);
  color: #fff;
  transform: translateY(-2px);
}

.cp-button:active {
  box-shadow: var(--button-active-shadow);
  transform: translateY(0);
}

.cp-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.cp-button-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  flex-shrink: 0;
  stroke-width: 2.4;
  transition: transform 0.3s var(--easing);
}

.cp-button:hover .cp-button-icon,
.cp-button:focus-visible .cp-button-icon {
  transform: translateX(4px);
}

.cp-button--nav {
  --button-slant: 0px;
  min-height: 48px;
  padding: 12px 24px;
}

.cp-button--default {
  min-width: 280px;
  padding: 18px 36px;
}

.cp-button--large {
  padding: 20px 42px;
}

.hero-cta.cp-button {
  min-width: 0;
  padding: 20px 42px;
}

.mobile-menu-cta.cp-button {
  min-width: 0;
}

.decision-cta-button.cp-button {
  min-width: 280px;
}

/* Sharp-edged buttons and cards */
.cp-button,
.hero-cta,
.mobile-menu-cta,
.decision-cta-button,
.footer-cta,
.testimonials-nav-btn,
.hero-chart-card,
.results-diagnostic-grid,
.results-panel,
.results-metric-row,
.results-stat,
.pricing-cta-section .pricing-cta,
.fit-col,
.roi-calculator,
.roi-result-card,
.roi-result-icon,
.ppc-audit-list,
.ppc-diagnostic-panel,
.ppc-diagnostic-panel::before,
.contact-card,
.audit-value-list li,
.audit-check-item,
.audit-timeline,
.audit-timeline-item,
.audit-safety-note,
.audit-safety-icon,
.audit-reference-card {
  border-radius: 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-intro {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .audit-prep-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .audit-prep-copy {
    position: static;
  }

  .audit-timeline-heading,
  .audit-timeline,
  .audit-reference-grid {
    grid-template-columns: 1fr;
  }

  .audit-timeline-item + .audit-timeline-item {
    border-top: 0;
  }
}

@media (max-width: 1100px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 54px 0 64px;
  }

  .contact-page .container {
    padding-inline: 20px;
  }

  .contact-grid {
    gap: 30px;
  }

  .contact-intro .hero-title {
    max-width: 100%;
    font-size: clamp(34px, 12vw, 46px);
    margin-bottom: 22px;
  }

  .contact-intro .hero-desc {
    font-size: 16px;
    line-height: 1.58;
  }

  .audit-value {
    margin-top: 28px;
  }

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

  .audit-value-list {
    grid-template-columns: 1fr;
  }

  .contact-card {
    margin-right: 8px;
    padding: 34px 20px 32px;
  }

  .contact-card::before {
    transform: translate(8px, 8px);
  }

  .contact-card-header {
    margin-bottom: 18px;
  }

  .contact-card-header h2 {
    font-size: 26px;
  }

  .lead-form {
    gap: 16px;
  }

  .lead-form label {
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.9px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 13px 14px;
  }

  .decision-cta-button.cp-button {
    width: 100%;
    min-width: 0;
    padding: 17px 22px;
  }

  .audit-prep {
    padding: 54px 0 68px;
  }

  .thank-you-hero {
    padding: 52px 0 32px;
  }

  .thank-you-hero .hero-title {
    font-size: clamp(30px, 9vw, 38px);
    margin-bottom: 0;
  }

  .thank-you-hero .hero-desc {
    font-size: 16px;
  }

  .footer-dark-simple {
    padding: 28px 0 32px;
  }

  .audit-prep-copy h2,
  .audit-timeline-heading h2,
  .audit-reference-inner h2 {
    font-size: 28px;
    line-height: 1.22;
  }

  .audit-check-item {
    padding: 15px 0 17px;
  }

  .audit-check-item::before {
    display: none;
  }

  .audit-timeline-section {
    padding: 22px 0 18px;
  }

  .audit-timeline-item {
    min-height: 0;
    padding: 13px 0 15px 22px;
  }

  .audit-timeline-label,
  .audit-reference-card span {
    margin-bottom: 18px;
  }

  .audit-safety-note {
    grid-template-columns: 22px minmax(0, 1fr);
    padding: 16px;
  }

  .audit-reference {
    padding: 22px 0 70px;
  }

  .audit-reference-card {
    padding: 15px 0;
  }

  .terms-page {
    padding: 40px 20px 80px;
  }

  .terms-logo {
    margin-bottom: 40px;
  }

  .terms-header {
    margin-bottom: 40px;
  }

  .terms-title {
    font-size: 24px;
  }

  .terms-content {
    font-size: 15px;
  }

  .terms-content h3 {
    margin-top: 36px;
  }
}

/* ==========================================================================
   Services Dropdown (desktop nav) + Footer service links
   ========================================================================== */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--easing);
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown:focus-within .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: #0b0b0b;
    border: 1px solid var(--gray-medium);
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--easing), transform 0.25s var(--easing), visibility 0.25s;
    z-index: 250;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 11px 14px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.72);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-link:hover {
    background: rgba(234, 157, 0, 0.14);
    color: #fff;
}

/* Footer service links */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 28px;
    padding: 28px 0;
    border-top: 1px solid var(--gray-medium);
}

.footer-nav-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
}

.footer-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-nav {
        gap: 12px 22px;
    }
}

/* ==========================================================================
   PPC Umbrella: channel cards
   ========================================================================== */
.ppc-umbrella-page .testimonials-typewriter::after {
    display: none;
}

.ppc-umbrella-page .pricing-cta-section {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--bg-color);
}

.ppc-umbrella-page .pricing-cta-section::before {
    display: none;
}

.ppc-umbrella-page .faq-section {
    padding-top: clamp(56px, 7vw, 88px);
}

.ppc-umbrella-page .faq-section::before {
    display: none;
}

.channel-section {
    padding: 120px 0;
    background: #ffffff;
    color: #0b0b0b;
    border-top: 1px solid rgba(11, 11, 11, 0.08);
    border-bottom: 1px solid rgba(11, 11, 11, 0.08);
}

.channel-section .section-title {
    color: #0b0b0b;
}

.channel-section .expertise-subtitle {
    color: rgba(11, 11, 11, 0.62);
}

.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
}

.channel-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(11, 11, 11, 0.12);
    border-radius: 8px;
    transition: border-color 0.3s var(--easing), transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

.channel-card:hover {
    border-color: rgba(234, 157, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(11, 11, 11, 0.1);
}

.channel-card-kicker {
    margin-bottom: 18px;
}

.channel-card-title {
    font-size: 30px;
    font-weight: 600;
    color: #0b0b0b;
    margin-bottom: 16px;
}

.channel-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(11, 11, 11, 0.66);
    margin-bottom: 28px;
    flex-grow: 1;
}

.channel-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.channel-card-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--easing);
}

.channel-card-link:hover i {
    transform: translateX(5px);
}

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

    .channel-grid {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .channel-card {
        padding: 32px;
    }
}

/* ==========================================================================
   Interior pages (service briefs)
   ========================================================================== */
.interior-page {
    background: #fff;
}

.interior-hero {
    position: relative;
    overflow: visible;
    padding: 112px 0 120px;
    background: var(--bg-color);
    color: var(--text-color);
}


.interior-title {
    max-width: 880px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.8vw, 56px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
    text-wrap: balance;
}

.interior-lead {
    max-width: 640px;
    margin-top: 20px;
    font-size: var(--text-lead);
    line-height: var(--leading-relaxed);
    color: var(--text-color);
}

.interior-hero .interior-hero-cta {
    margin-top: 30px;
}

.interior-section {
    padding: 84px 0;
    background: #fff;
    color: #111;
}

.interior-section-alt {
    background: #f6f4f1;
}

/* Dark interior section (pricing) */
.interior-section-dark {
    position: relative;
    overflow: visible;
    padding: 136px 0 120px;
    background: var(--bg-color);
    color: var(--text-color);
}

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


.interior-section-dark .interior-section-head h2 {
    color: #fff;
}

.interior-section-dark .interior-section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.interior-section-dark .ipr-head h3 {
    color: #fff;
}

.interior-section-dark .ipr-head p {
    color: rgba(255, 255, 255, 0.6);
}

.interior-section-dark .ipr-list li {
    color: rgba(255, 255, 255, 0.8);
}

.interior-section-dark .ipr-price {
    color: #fff;
}

.interior-section-dark .ipr-price .period {
    color: var(--accent-color);
}

.interior-section-dark .ipr-price-free {
    color: var(--accent-color);
}

.interior-section-dark .interior-footnote {
    color: rgba(255, 255, 255, 0.5);
}

.interior-section-head {
    margin-bottom: 44px;
}

.interior-section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #111;
    text-wrap: balance;
}

.interior-section-head p {
    max-width: 660px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.65;
    color: #57514a;
}

.interior-section-head .eyebrow {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.1;
    color: var(--accent-color);
}

/* Numbered process columns */
.interior-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.interior-step-num {
    display: block;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.interior-step h3 {
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 600;
    color: #111;
}

.interior-step p {
    font-size: 16px;
    line-height: 1.65;
    color: #57514a;
}

/* Pricing rows */
.interior-price-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr) 150px;
    gap: 32px;
    padding: 34px 0;
}

.ipr-head h3 {
    margin: 8px 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.ipr-head p {
    font-size: 15px;
    line-height: 1.6;
    color: #57514a;
}

.ipr-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ipr-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
}

.ipr-list li svg,
.ipr-list li i {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin-top: 4px;
    color: var(--accent-color);
}

.ipr-marker {
    margin-left: 2px;
    color: var(--accent-color);
    font-size: 0.72em;
    font-weight: 700;
    line-height: 0;
    vertical-align: super;
}

.ipr-price-marker {
    position: relative;
    top: -0.75em;
    margin-left: 3px;
    color: var(--accent-color);
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    line-height: 0;
}

.ipr-price {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    color: #111;
    text-align: right;
}

.ipr-price .period {
    display: block;
    margin-top: 5px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.ipr-price-free {
    color: var(--accent-color);
}

.ipr-price-request {
    font-size: 19px;
    line-height: 1.3;
}

.interior-section .channel-grid {
    margin-top: 0;
}

.interior-footnote {
    margin: 0;
    font-size: 13px;
    color: #8a857e;
}

.interior-footnotes {
    display: grid;
    gap: 7px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ipr-footnote-number {
    margin-right: 7px;
    margin-left: 0;
    color: var(--accent-color);
    font-size: 10px;
    font-weight: 700;
    line-height: 0;
}

/* Proof strip */
.interior-proof-strip-section {
    padding: 56px 0;
}

.ips-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 72px;
    margin-top: 22px;
}

.ips-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #57514a;
}

.ips-stat strong {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #111;
}

/* FAQ on light interior pages */
.interior-page .faq-section {
    padding: 84px 0;
}

.interior-page .faq-section::before {
    display: none;
}

.interior-page .faq-section .section-title {
    font-size: clamp(30px, 3vw, 44px);
    color: #111;
}

.interior-page .faq-item {
    border-top: 0;
    background: #f6f4f1;
    padding: 26px 30px;
}

.interior-page .faq-item + .faq-item {
    margin-top: 10px;
}

.interior-page .faq-item:last-child {
    border-bottom: 0;
}

.interior-page .faq-question {
    color: #111;
}

.interior-page .faq-content p {
    color: #57514a;
}

.interior-page .footer-dark-simple {
    padding-top: 88px;
}

.interior-page .footer-dark-simple::before {
    background: #fff;
}

.interior-page .footer-dark-simple .footer-nav {
    border-top: 0;
}

/* Black footer on interior pages: CTA band and footer go dark, button flips to accent */
.interior-page .footer-accent-cta {
    background: var(--bg-color);
}

.interior-page .footer-accent-cta .footer-cta-section {
    background: var(--bg-color);
}

.interior-page .faq-cta-section::before {
    background: #fff;
}

.interior-page .footer-accent-cta .decision-kicker {
    color: var(--accent-color);
}

.interior-page .footer-accent-cta .decision-cta p {
    color: rgba(255, 255, 255, 0.72);
}

.interior-page .footer-accent-cta .decision-cta-button {
    --button-bg: var(--accent-color);
    --button-hover-bg: #d14b41;
    --button-hover-shadow: 0 10px 28px rgba(234, 157, 0, 0.28);
    background: var(--button-bg);
}

.interior-page .footer-accent-cta .footer-nav {
    border-top-color: var(--gray-medium);
}

.interior-page .footer-accent-cta .footer-nav-link:hover,
.interior-page .footer-accent-cta .socials a:hover {
    color: var(--accent-color);
}

.interior-page .footer-accent-cta .footer-bottom {
    border-top-color: var(--gray-medium);
}

@media (max-width: 768px) {
    .interior-section,
    .interior-page .faq-section {
        padding: 60px 0;
    }

    .interior-hero {
        padding: 92px 0 84px;
    }

    .interior-section-dark {
        padding: 104px 0 92px;
    }

    .interior-section-head {
        margin-bottom: 32px;
    }

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

    .interior-price-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 26px 24px;
    }

    .interior-price-row + .interior-price-row {
        margin-top: 20px;
        padding-top: 38px;
        border-top: 1px solid rgb(255 255 255 / 0.14);
    }

    .ipr-price {
        text-align: left;
    }

    .ips-stats {
        gap: 18px 40px;
    }

    .ips-stat strong {
        font-size: 34px;
    }

    .interior-page .faq-item {
        padding: 20px 22px;
    }
}

/* Thank-you page booking embed */
.thank-you-booking {
    padding-bottom: 16px;
}

.thank-you-booking .tidycal-embed {
    margin-top: 12px;
    min-height: 480px;
}

.thank-you-booking + .audit-prep {
    padding-top: 48px;
}

/* ==========================================================================
   Hero Redesign: Owned-Search Panel
   ========================================================================== */
.hero {
    padding: 88px 0 120px;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 72px;
    align-items: center;
}

.hero-title {
    font-size: clamp(40px, 4.4vw, 66px);
}

.hero-serp {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 520px;
    justify-self: end;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
}

.hero-serp-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 15px;
    color: #fff;
}

.hero-serp-icon {
    width: 16px;
    height: 16px;
    color: var(--gray-light);
    flex-shrink: 0;
}

.hero-serp-query {
    white-space: nowrap;
    overflow: hidden;
}

.hero-serp-caret {
    width: 2px;
    height: 18px;
    background: var(--accent-color);
    flex-shrink: 0;
    animation: serp-caret-blink 1.1s steps(1) infinite;
}

@keyframes serp-caret-blink {
    0%, 55% { opacity: 1; }
    56%, 100% { opacity: 0; }
}

html.motion-reduced .hero-serp-caret {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-serp-caret {
        animation: none;
    }
}

.hero-serp-result {
    padding: 16px 18px;
}

.hero-serp-result-you {
    border-left: 3px solid var(--accent-color);
    background: rgba(234, 157, 0, 0.08);
}

.hero-serp-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.hero-serp-sponsored {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.hero-serp-domain {
    font-size: 12px;
    color: var(--gray-light);
}

.hero-serp-headline {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 6px;
}

.hero-serp-snippet {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted-dark);
    margin: 0;
}

.hero-serp-result-ghost {
    display: flex;
    flex-direction: column;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-serp-ghost-line {
    display: block;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-serp-ghost-short {
    width: 38%;
}

.hero-serp-ghost-long {
    width: 86%;
}

.hero-serp-ghost-mid {
    width: 62%;
}

.hero-serp-caption {
    margin: 6px 2px 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-light);
}

html.motion-ready:not(.motion-reduced) .home-page .hero-serp {
    opacity: 0;
    transform: translateY(14px);
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-serp {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.42s var(--easing),
        transform 0.52s var(--easing);
    transition-delay: 400ms;
}

@media (max-width: 1023px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero-serp {
        justify-self: start;
        max-width: 540px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 64px;
        padding-bottom: 84px;
    }

    .hero-title {
        font-size: clamp(34px, 9vw, 42px);
    }

    .hero-serp {
        padding: 16px;
        gap: 10px;
    }

    .hero-serp-bar {
        min-height: 46px;
        font-size: 14px;
    }

    .hero-serp-result {
        padding: 14px 15px;
    }
}

/* ==========================================================================
   Homepage Hero: Editorial Scale + Collapsing Navigation
   ========================================================================== */
.home-page .nav {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    background: transparent;
    transform: translateX(-50%);
    transition:
        top 0.48s var(--easing),
        width 0.48s var(--easing),
        padding 0.48s var(--easing),
        background-color 0.35s ease,
        border-radius 0.48s var(--easing),
        box-shadow 0.35s ease,
        opacity 0.35s ease,
        transform 0.48s var(--easing);
}

.home-page .nav .nav-inner {
    width: 100%;
    max-width: 1480px;
    padding: 0 48px;
    transition: padding 0.48s var(--easing);
}

.home-page .nav .td-logo,
.home-page .nav .td-clickmark,
.home-page .nav .td-logo-word,
.home-page .nav .nav-links {
    transition:
        gap 0.4s var(--easing),
        color 0.3s ease,
        opacity 0.32s ease,
        transform 0.4s var(--easing),
        max-width 0.4s var(--easing),
        width 0.4s var(--easing),
        height 0.4s var(--easing),
        padding 0.4s var(--easing),
        background-color 0.3s ease,
        border-radius 0.4s var(--easing);
}

.home-page .nav .td-logo-word {
    max-width: 240px;
    overflow: hidden;
}

.home-page .nav.is-scrolled {
    top: 18px;
    width: min(960px, calc(100% - 32px));
    padding: 8px 0;
    border-radius: var(--button-radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-page .nav.is-scrolled .nav-inner {
    padding: 0 12px;
}

.home-page .nav.is-scrolled .td-logo {
    gap: 4px;
    padding: 0 10px 0 6px;
}

.home-page .nav.is-scrolled .td-clickmark {
    color: var(--accent-color);
    transform: scale(0.92);
    transform-origin: center;
}

.home-page .nav.is-scrolled .td-clickmark-icon {
    filter: none;
}

.home-page .nav.is-scrolled .td-clickmark-icon path:not(:last-child) {
    stroke: var(--accent-color);
}

.home-page .nav.is-scrolled .td-clickmark-icon path:last-child {
    stroke: #111;
}

.home-page .nav.is-scrolled .td-logo-word {
    color: #111;
    font-size: 18px;
}

.home-page .nav.is-scrolled .td-logo-accent {
    color: var(--accent-color);
}

.home-page .nav.is-scrolled .nav-links {
    gap: 28px;
    margin-right: 22px;
}

.home-page .nav.is-scrolled .nav-link {
    color: rgba(17, 17, 17, 0.72);
}

.home-page .nav.is-scrolled .nav-link:hover {
    color: #111;
}

.home-page .nav.is-scrolled .nav-cta {
    background: #111;
    color: #fff;
}

.home-page .nav.is-scrolled .cp-button-icon {
    color: #fff;
}

html.motion-ready:not(.motion-reduced) .home-page .nav {
    transform: translate(-50%, 14px);
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .nav {
    transform: translate(-50%, 0);
}

.home-page .hero {
    min-height: 100svh;
    padding: 176px 0 72px;
    align-items: stretch;
    overflow: hidden;
}

.home-page .hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.home-page .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.home-page .hero-kicker-pill {
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: 1.8px;
}

.home-page .hero-title {
    max-width: 1380px;
    margin: 0 auto 36px;
    font-family: var(--font-heading);
    font-size: clamp(104px, 12vw, 178px);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.025em;
    text-transform: none;
    text-wrap: balance;
}

.hero-found-word {
    position: relative;
    z-index: 0;
    display: inline-block;
    color: var(--accent-color);
    text-shadow: 0 0 42px rgb(var(--accent-rgb) / 0.12);
}

.hero-found-word::before {
    position: absolute;
    z-index: -1;
    inset: -0.28em -0.22em;
    background: radial-gradient(ellipse at center, rgb(var(--accent-rgb) / 0.12), transparent 67%);
    content: "";
    pointer-events: none;
}

.hero-found-reticle {
    position: absolute;
    inset: -0.06em -0.045em -0.16em;
    pointer-events: none;
}

.hero-found-reticle i {
    position: absolute;
    width: clamp(11px, 0.21em, 32px);
    height: clamp(11px, 0.18em, 28px);
    border-color: rgb(var(--accent-rgb) / 0.76);
    opacity: 0.9;
}

.hero-found-reticle i:nth-child(1) {
    top: 0;
    left: 0;
    border-top: 1px solid;
    border-left: 1px solid;
}

.hero-found-reticle i:nth-child(2) {
    top: 0;
    right: 0;
    border-top: 1px solid;
    border-right: 1px solid;
}

.hero-found-reticle i:nth-child(3) {
    right: 0;
    bottom: 0;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.hero-found-reticle i:nth-child(4) {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.home-page .hero-desc {
    max-width: 840px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.45;
    text-wrap: balance;
}

.home-page .hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.home-page .hero-actions .hero-cta {
    min-width: 220px;
    min-height: 58px;
    padding: 16px 28px;
}

.home-page .hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 11px;
    margin: 20px auto 0;
    color: color-mix(in srgb, var(--text-color) 64%, transparent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.4;
}

.home-page .hero-trust-separator {
    color: var(--accent-color);
    font-weight: 800;
}

.home-page .hero-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #fff;
}

.home-page .hero-cta-secondary:hover,
.home-page .hero-cta-secondary:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #111;
}

.home-page .hero-cta-secondary:hover .cp-button-icon,
.home-page .hero-cta-secondary:focus-visible .cp-button-icon {
    color: #111;
}

.home-page .hero-cta-primary {
    background: var(--accent-color);
    color: #111;
}

.home-page .hero-cta-primary .cp-button-icon {
    color: #111;
}

html.motion-ready:not(.motion-reduced) .home-page .hero-actions {
    opacity: 0;
    transform: translateY(14px);
}

html.motion-ready:not(.motion-reduced) .home-page .hero-trust-line {
    opacity: 0;
    transform: translateY(10px);
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.42s var(--easing),
        transform 0.52s var(--easing);
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-trust-line {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.42s var(--easing) 390ms,
        transform 0.52s var(--easing) 390ms;
}

html.motion-ready.motion-entered:not(.motion-reduced) .home-page .hero-actions {
    transition-delay: 310ms;
}

@media (max-width: 1023px) {
    .home-page .nav .nav-inner {
        padding: 0 28px;
    }

    .home-page .nav-links {
        gap: 24px;
        margin-right: 24px;
    }

    .home-page .hero {
        padding-top: 160px;
    }

    .home-page .hero-title {
        font-size: clamp(80px, 14vw, 132px);
    }
}

@media (max-width: 768px) {
    .home-page .nav {
        padding: 18px 0;
    }

    .home-page .nav .nav-inner {
        padding: 0 20px;
    }

    .home-page .nav.is-scrolled {
        top: 10px;
        width: calc(100% - 20px);
        padding: 6px 0;
        border-radius: var(--button-radius);
    }

    .home-page .nav.is-scrolled .nav-inner {
        padding: 0 8px 0 10px;
    }

    .home-page .nav.is-scrolled .menu-toggle-line {
        background: #111;
    }

    .home-page .hero {
        min-height: auto;
        padding: 138px 0 64px;
    }

    .home-page .hero-inner {
        gap: 64px;
    }

    .home-page .hero-kicker-pill {
        max-width: 300px;
        margin-bottom: 24px;
        font-size: 11px;
        line-height: 1.35;
    }

    .home-page .hero-title {
        margin-bottom: 28px;
        font-size: clamp(64px, 20vw, 88px);
        line-height: 0.9;
        letter-spacing: -0.035em;
    }

    .home-page .hero-desc {
        margin-bottom: 30px;
        font-size: 17px;
        line-height: 1.5;
    }

    .home-page .hero-actions {
        flex-direction: column;
        width: min(100%, 320px);
    }

    .home-page .hero-actions .hero-cta {
        width: 100%;
        min-width: 0;
    }

    .home-page .hero-trust-line {
        max-width: 310px;
        margin-top: 18px;
        font-size: 12px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .home-page .nav,
    .home-page .nav *,
    .home-page .hero-actions {
        transition-duration: 0.01ms !important;
    }
}

/* Site-wide softly rounded action language */
.cp-button,
.hero-cta,
.mobile-menu-cta,
.decision-cta-button,
.footer-cta,
.ppc-primary-cta {
    border-radius: var(--button-radius);
    clip-path: none;
    -webkit-clip-path: none;
}

/* Deep teal + chartreuse palette */
.cp-button {
    --button-hover-bg: var(--accent-hover);
    --button-hover-shadow: 0 12px 30px rgb(var(--accent-rgb) / 0.22);
    --button-active-shadow: 0 7px 18px rgb(var(--accent-rgb) / 0.16);
    color: var(--bg-color);
}

.home-page .hero-cta-primary,
.home-page .hero-cta-primary .cp-button-icon,
.pricing-cta-section .pricing-cta .decision-kicker,
.pricing-cta-section .pricing-cta h3,
.pricing-cta-section .pricing-cta p {
    color: var(--bg-color);
}

.home-page .nav.is-scrolled .nav-cta,
.pricing-cta-section .pricing-cta .decision-cta-button {
    background: var(--bg-color);
    color: #fff;
}

.home-page .nav.is-scrolled .nav-cta {
    --button-hover-bg: var(--bg-color);
    --button-hover-shadow: none;
    --button-active-shadow: none;
    border: 1px solid transparent;
}

.home-page .nav.is-scrolled .nav-cta:hover,
.home-page .nav.is-scrolled .nav-cta:focus-visible {
    border-color: var(--accent-color);
    box-shadow: none;
    transform: none;
}

.pricing-cta-section .pricing-cta {
    border-color: rgb(var(--accent-rgb) / 0.7);
    box-shadow: 0 26px 80px rgb(var(--ink-rgb) / 0.2);
}

.footer-dark-cta .decision-cta-button {
    --button-hover-bg: var(--accent-hover);
    --button-hover-shadow: 0 10px 28px rgb(var(--accent-rgb) / 0.22);
    color: var(--bg-color);
}

.interior-page,
.interior-section,
.channel-section {
    background: var(--surface-light);
    color: var(--ink-color);
}

.interior-section-alt {
    background: var(--surface-light-alt);
}

.channel-card {
    background: var(--surface-panel);
    border-color: rgb(var(--ink-rgb) / 0.12);
}

.channel-section .section-title,
.channel-card-title,
.interior-section-head h2 {
    color: var(--ink-color);
}

.home-page .statement .highlight,
.home-page .statement .accent-period,
.home-page .results-section .kicker-text,
.home-page .results-section .results-tagline span,
.home-page .results-section .accent-period,
.home-page .journey .highlight,
.home-page .journey .accent-period,
.home-page .fit-section .fit-yes h3,
.home-page .fit-section .fit-yes li > svg,
.home-page .fit-section .accent-period,
.home-page .faq-section .accent-period,
.home-page .faq-section .faq-icon,
.home-page .faq-section .faq-item:hover .faq-icon,
.home-page .faq-section .faq-item.active .faq-icon {
    color: var(--accent-on-light);
}

.home-page .statement .statement-person-role::before,
.home-page .fit-section .fit-yes li::before {
    background-color: var(--accent-on-light);
}

/* Paid-search interface atmosphere */
.hero-ppc-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    perspective: 1200px;
    perspective-origin: 50% 46%;
    transform-style: preserve-3d;
}

.hero-ppc-card {
    --card-depth: 0px;
    --card-tilt-x: 0deg;
    --card-tilt-y: 0deg;
    --card-tilt-z: 0deg;
    position: absolute;
    width: 250px;
    padding: 18px;
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: var(--card-radius);
    background:
        linear-gradient(145deg, rgb(255 255 255 / 0.1), transparent 46%),
        rgb(var(--ink-rgb) / 0.9);
    box-shadow:
        0 28px 65px var(--hero-ui-depth-shadow),
        0 0 44px var(--hero-ui-glow),
        inset 0 1px 0 rgb(255 255 255 / 0.1);
    color: var(--hero-ui-text);
    opacity: var(--hero-ui-card-alpha);
    isolation: isolate;
    transform:
        perspective(1100px)
        translateZ(var(--card-depth))
        rotateX(calc(var(--card-tilt-x) + var(--parallax-tilt-x, 0deg)))
        rotateY(calc(var(--card-tilt-y) + var(--parallax-tilt-y, 0deg)))
        rotateZ(var(--card-tilt-z));
    transform-style: preserve-3d;
    transform-origin: 50% 58%;
    translate: var(--parallax-x, 0) var(--parallax-y, 0);
    will-change: translate, transform;
}

.hero-ppc-card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, rgb(var(--accent-rgb) / 0.08), transparent 38% 68%, rgb(255 255 255 / 0.05));
    content: "";
}

.hero-ppc-card::after {
    position: absolute;
    z-index: 0;
    right: 9%;
    bottom: -22px;
    left: 9%;
    height: 30px;
    border: 1px solid rgb(var(--accent-rgb) / 0.25);
    border-radius: 50%;
    box-shadow: 0 0 24px rgb(var(--accent-rgb) / 0.13);
    content: "";
    opacity: 0.72;
    transform: rotateX(68deg);
}

.hero-ppc-card > * {
    position: relative;
    z-index: 1;
}

.hero-ppc-orbit-layer {
    position: absolute;
    z-index: 1;
    inset: 0;
    translate: var(--parallax-x, 0) var(--parallax-y, 0);
    transform-style: preserve-3d;
    will-change: translate, transform;
}

.hero-ppc-orbit-layer::before,
.hero-ppc-orbit-layer::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(980px, 72vw);
    height: min(610px, 68vh);
    border: 1px solid rgb(var(--accent-rgb) / 0.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.hero-ppc-orbit-layer::before {
    opacity: 0.7;
    transform: translate(-50%, -44%) scale(0.91) rotate(-4deg);
}

.hero-ppc-orbit-layer::after {
    border-color: rgb(var(--accent-rgb) / 0.08);
    box-shadow: 0 38px 80px rgb(0 0 0 / 0.28);
    opacity: 0.55;
    transform: translate(-50%, -44%) scale(1.08) rotate(3deg);
}

@media (prefers-reduced-motion: reduce) {
    .hero-ppc-card,
    .hero-ppc-orbit-layer {
        translate: none;
        will-change: auto;
    }

    .hero-ppc-card {
        --parallax-tilt-x: 0deg;
        --parallax-tilt-y: 0deg;
    }
}

.hero-ppc-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: min(980px, 72vw);
    height: min(610px, 68vh);
    border: 1px solid var(--hero-ui-connector);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, transparent 62%, rgb(var(--accent-rgb) / 0.025) 73%, transparent 75%);
    box-shadow:
        0 0 36px rgb(var(--accent-rgb) / 0.07),
        inset 0 0 34px rgb(var(--accent-rgb) / 0.035);
    opacity: var(--hero-ui-orbit-alpha);
    transform: perspective(900px) translate(-50%, -44%) rotateX(7deg) rotateZ(-1.5deg);
    transform-style: preserve-3d;
}

.hero-ppc-orbit i {
    position: absolute;
    display: block;
    width: 7px;
    height: 7px;
    border: 1px solid var(--hero-ui-node);
    border-radius: 50%;
    background: var(--bg-color);
    box-shadow:
        0 0 0 3px rgb(var(--accent-rgb) / 0.06),
        0 0 14px rgb(var(--accent-rgb) / 0.22);
}

.hero-ppc-orbit i:nth-child(1) { top: -4px; left: calc(50% - 4px); }
.hero-ppc-orbit i:nth-child(2) { top: 17%; right: 8%; }
.hero-ppc-orbit i:nth-child(3) { top: calc(50% - 4px); right: -4px; }
.hero-ppc-orbit i:nth-child(4) { right: 8%; bottom: 17%; }
.hero-ppc-orbit i:nth-child(5) { bottom: -4px; left: calc(50% - 4px); }
.hero-ppc-orbit i:nth-child(6) { bottom: 17%; left: 8%; }
.hero-ppc-orbit i:nth-child(7) { top: calc(50% - 4px); left: -4px; }
.hero-ppc-orbit i:nth-child(8) { top: 17%; left: 8%; }

.hero-ppc-card--campaign {
    --card-depth: -45px;
    --card-tilt-x: 4deg;
    --card-tilt-y: 11deg;
    --card-tilt-z: -1.8deg;
    top: 148px;
    left: max(72px, calc(50% - 640px));
    z-index: 2;
    width: 270px;
    opacity: var(--hero-ui-card-far-alpha);
}

.hero-ppc-card--keyword {
    --card-depth: -30px;
    --card-tilt-x: 3deg;
    --card-tilt-y: -12deg;
    --card-tilt-z: 1.6deg;
    top: 176px;
    right: max(72px, calc(50% - 640px));
    z-index: 2;
    opacity: var(--hero-ui-card-far-alpha);
}

.hero-ppc-card--conversion {
    --card-depth: 55px;
    --card-tilt-x: -4deg;
    --card-tilt-y: -10deg;
    --card-tilt-z: -1.2deg;
    right: max(82px, calc(50% - 620px));
    bottom: 92px;
    z-index: 3;
    width: 230px;
    opacity: var(--hero-ui-card-near-alpha);
}

.hero-ppc-card--landing {
    --card-depth: 38px;
    --card-tilt-x: -3deg;
    --card-tilt-y: 10deg;
    --card-tilt-z: 1.2deg;
    bottom: 92px;
    left: max(82px, calc(50% - 620px));
    z-index: 3;
    width: 230px;
    opacity: var(--hero-ui-card-near-alpha);
}

.hero-ppc-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: rgb(255 255 255 / 0.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-ppc-card-head > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-ppc-card-head svg {
    width: 13px;
    height: 13px;
}

.hero-ppc-card > strong {
    display: block;
    color: rgb(255 255 255 / 0.76);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.hero-ppc-status {
    color: var(--accent-color);
}

.hero-ppc-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.hero-ppc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.hero-ppc-metrics div {
    min-width: 0;
}

.hero-ppc-metrics dt,
.hero-ppc-conversion-meta {
    color: rgb(255 255 255 / 0.4);
    font-size: 9px;
    letter-spacing: 0.04em;
}

.hero-ppc-metrics dd {
    margin: 3px 0 0;
    color: rgb(255 255 255 / 0.72);
    font-size: 14px;
    font-weight: 600;
}

.hero-ppc-tags {
    display: flex;
    gap: 7px;
    margin-top: 16px;
}

.hero-ppc-tags span {
    padding: 5px 7px;
    border: 1px solid var(--hero-ui-line);
    border-radius: var(--button-radius);
    color: rgb(255 255 255 / 0.5);
    font-size: 9px;
    font-weight: 600;
}

.hero-ppc-conversion-meta {
    display: block;
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .hero-ppc-background {
        display: none;
    }
}

/* Flat case-study color treatment */
.home-page .results-section {
    background: var(--surface-light);
}

.home-page .results-report {
    --report-surface: var(--ink-color);
    background: var(--report-surface);
}

.home-page .results-chart-bar {
    background: var(--accent-secondary);
    box-shadow: none;
}

/* Shared channel-card shape */
.home-page .pricing-card {
    border-radius: var(--card-radius);
}

/* Pricing plan remains a dark visual anchor */
.home-page #pricing.interior-section-dark {
    background: var(--bg-color);
    color: var(--text-color);
}

.home-page #pricing.interior-section-dark .interior-section-head h2,
.home-page #pricing.interior-section-dark .ipr-head h3,
.home-page #pricing.interior-section-dark .ipr-price {
    color: #fff;
}

/* Role-based color composition */
.home-page .hero {
    --hero-primary-color: var(--primary-color);
    --hero-primary-rgb: var(--primary-rgb);
    --hero-accent-color: var(--accent-color);
    --hero-accent-rgb: var(--accent-rgb);
    background: var(--hero-primary-color);
}

.home-page .nav:not(.is-scrolled) {
    background: var(--primary-color);
}

.home-page .hero-found-word,
.home-page .hero .accent-period {
    color: var(--hero-accent-color);
}

.home-page .hero-title {
    color: var(--text-color);
}

.home-page .hero-desc {
    color: color-mix(in srgb, var(--text-color) 74%, transparent);
}

.home-page .hero-found-word {
    text-shadow: 0 0 42px rgb(var(--hero-accent-rgb) / 0.12);
}

.home-page .hero-found-word::before {
    background: radial-gradient(ellipse at center, rgb(var(--hero-accent-rgb) / 0.12), transparent 67%);
}

.home-page .hero-found-reticle i {
    border-color: rgb(255 255 255 / 0.86);
}

.home-page .hero-cta-primary,
.home-page .nav:not(.is-scrolled) .nav-cta {
    background: var(--hero-accent-color);
    color: var(--hero-primary-color);
}

.home-page .hero-cta-primary .cp-button-icon,
.home-page .nav:not(.is-scrolled) .nav-cta .cp-button-icon {
    color: var(--hero-primary-color);
}

.home-page {
    --home-row-light-2: var(--surface-accent-soft);
}

.home-page .results-section {
    background: var(--surface-accent-soft);
}

.home-page .statement .highlight,
.home-page .results-section .kicker-text,
.home-page .fit-section .fit-yes h3,
.home-page .fit-section .fit-yes li > svg {
    color: var(--secondary-on-light);
}

.home-page .statement .statement-person-role::before,
.home-page .fit-section .fit-yes li::before {
    background-color: var(--secondary-on-light);
}

.home-page .statement .accent-period,
.home-page .journey .highlight,
.home-page .faq-section .faq-icon,
.home-page .faq-section .faq-item:hover .faq-icon,
.home-page .faq-section .faq-item.active .faq-icon {
    color: var(--tertiary-on-light);
}

.home-page .statement-image::before {
    background: radial-gradient(circle at 58% 54%, rgb(var(--secondary-rgb) / 0.18), rgb(var(--secondary-rgb) / 0) 68%);
}

.home-page .statement-sub {
    border-color: var(--secondary-color);
}

.home-page .results-section .results-tagline span,
.home-page .results-section .accent-period,
.home-page .journey .accent-period,
.home-page .fit-section .accent-period,
.home-page .faq-section .accent-period {
    color: var(--accent-on-light);
}

.home-page .sig-name {
    color: var(--tertiary-on-light);
}

.home-page .results-chart-row:nth-child(1) .results-chart-bar {
    background: var(--secondary-color);
}

.home-page .results-chart-row:nth-child(2) .results-chart-bar {
    background: var(--tertiary-color);
}

.home-page .results-chart-row:nth-child(3) .results-chart-bar {
    background: var(--accent-color);
}

.home-page .results-report-stat:nth-child(1) .results-stat-value {
    color: var(--secondary-color);
}

.home-page .results-report-stat:nth-child(2) .results-stat-value {
    color: var(--tertiary-color);
}

.home-page .pricing-card {
    --card-accent: var(--accent-color);
    --card-accent-rgb: var(--accent-rgb);
    border-color: var(--primary-outline);
    background: color-mix(in srgb, var(--primary-color) 84%, #000);
}

.home-page .pricing-card:hover {
    border-color: var(--primary-outline-hover);
    box-shadow: 0 18px 44px rgb(var(--primary-rgb) / 0.28);
}

.home-page .pricing-card-icon {
    border-color: rgb(var(--card-accent-rgb) / 0.42);
    background: rgb(var(--card-accent-rgb) / 0.1);
    color: var(--card-accent);
}

.home-page .pricing-card-link {
    color: var(--card-accent);
}

/* Header CTAs stay restrained; shared action effects are intentionally disabled here. */
.nav .nav-cta,
.nav .nav-cta:hover,
.nav .nav-cta:focus-visible,
.nav .nav-cta:active {
    --button-hover-shadow: none;
    --button-active-shadow: none;
    box-shadow: none !important;
    filter: none !important;
    transform: none;
}

/* Mobile menu: compact B2B utility panel */
.menu-toggle {
    width: 46px;
    height: 46px;
    gap: 5px;
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: var(--button-radius);
}

.menu-toggle-line {
    width: 20px;
    transition: opacity 0.22s ease, transform 0.32s var(--easing), background 0.2s ease;
}

.menu-toggle.active {
    border-color: rgb(255 255 255 / 0.22);
    background: rgb(255 255 255 / 0.06);
}

.menu-toggle.active .menu-toggle-line {
    background: #fff !important;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    visibility: hidden;
    transition: visibility 0s linear 0.36s;
}

.mobile-menu.active {
    visibility: visible;
    transition-delay: 0s;
}

.mobile-menu-bg {
    background: var(--bg-color);
    opacity: 0;
    transform: translateY(-18px);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: opacity 0.28s ease, transform 0.36s var(--easing);
}

.mobile-menu-bg::after {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--accent-color);
    content: "";
}

.mobile-menu.active .mobile-menu-bg {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    justify-content: flex-start;
    width: 100%;
    padding: 112px 22px max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.32s var(--easing);
}

.mobile-menu.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
}

.mobile-menu-intro {
    max-width: 320px;
    margin-bottom: 24px;
}

.mobile-menu-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mobile-menu-intro p {
    color: rgb(255 255 255 / 0.58);
    font-size: 14px;
    line-height: 1.5;
}

.mobile-menu-links {
    display: grid;
    gap: 0;
    border-top: 1px solid rgb(255 255 255 / 0.12);
}

.mobile-menu-link {
    min-height: 62px;
    padding: 12px 2px;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.24s ease, transform 0.3s var(--easing), color 0.2s ease;
}

.mobile-menu.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.22s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 0.26s; }

.mobile-menu-link-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(23px, 6.8vw, 29px);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
    transform: none;
}

.mobile-menu-link-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: var(--button-radius);
    color: var(--accent-color);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.25s var(--easing);
}

.mobile-menu-link-icon svg {
    width: 16px;
    height: 16px;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
    border-color: rgb(255 255 255 / 0.12);
    outline: none;
}

.mobile-menu-link:hover .mobile-menu-link-text,
.mobile-menu-link:focus-visible .mobile-menu-link-text {
    color: var(--accent-color);
    transform: none;
}

.mobile-menu-link:hover .mobile-menu-link-icon,
.mobile-menu-link:focus-visible .mobile-menu-link-icon {
    border-color: var(--accent-color);
    background: rgb(var(--accent-rgb) / 0.1);
    transform: translate(2px, -2px);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 28px;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.3s var(--easing);
}

.mobile-menu.active .mobile-menu-footer {
    transition: opacity 0.22s ease 0.28s, transform 0.3s var(--easing) 0.28s;
}

.mobile-menu-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;
    margin-bottom: 14px;
    color: rgb(255 255 255 / 0.52);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-menu-proof span + span::before {
    margin-right: 16px;
    color: var(--accent-color);
    content: "·";
}

.mobile-menu-cta.cp-button {
    width: 100%;
    min-width: 0;
    padding: 18px 22px;
    border-radius: var(--button-radius);
    background: var(--accent-color);
    box-shadow: none;
    color: var(--bg-color);
    transform: none;
}

.mobile-menu-cta.cp-button:hover,
.mobile-menu-cta.cp-button:focus-visible {
    background: var(--accent-hover);
    box-shadow: none;
    color: var(--bg-color);
    transform: none;
}

.mobile-menu-cta-text {
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

body.menu-open .home-page .nav.is-scrolled {
    top: 0;
    width: 100%;
    padding: 18px 0;
    border-radius: 0;
    background: var(--bg-color);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.menu-open .home-page .nav.is-scrolled .nav-inner {
    padding: 0 20px;
}

body.menu-open .home-page .nav.is-scrolled .td-logo-word {
    color: #fff;
}

body.menu-open .home-page .nav.is-scrolled .menu-toggle-line {
    background: #fff;
}

body.menu-open .home-page .nav.is-scrolled .td-clickmark-icon path:last-child {
    stroke: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu,
    .mobile-menu *,
    .menu-toggle-line {
        transition-duration: 0.01ms !important;
    }
}
