/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --bg-color: #050505;
    --text-color: #E0E0E0;
    --accent-color: #E85A4F;
    /* Brand Coral */
    --accent-secondary: #F9DC5C;
    /* Brand Yellow */
    --gray-dark: #1A1A1A;
    --gray-medium: #333333;
    --gray-light: #888888;

    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Futura LT Condensed', 'Futura Condensed', 'Futura', 'Arial Narrow', 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: #AFAFAF;
    --brush-divider-height: clamp(3.5rem, 6vw, 5rem);
    --brush-divider-bleed: 12px;
    --brush-divider-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0 -100v147.6l5-2c1 0 11 3 12 0 2 3 6-3 6 0 0-4 12 3 12 0 0 3 15-1 17 0 2-2 5-1 6 0 0-2 6 2 6 0s2 4 4 0c5 2 12-3 16 0 2-2 4-3 4 0 0 2 6-1 6 0 1 4 15-2 17 0h7c0 1 3-3 6 0h17c2 2 3 1 6 0h6c1-2 21-1 24 0 2 1 4 2 6 0 0-1 22 4 24 0 0 0 5-3 5 0 2-2 10 2 12 0 2 2 6 1 6 0 2 3 4-2 6 0 1 0 25-2 25 1l10-1c3 1 6 6 7 0 1 5 4-2 6 0 2-2 4 3 5 0h12c6 1 36 2 36 0 0 2 3 0 6 0h6c5-2 7 4 11 0 2 0 15 2 17 0h13c3-4 5 1 7 0h29c0-3 6 0 6 0h5c0 2 16-1 18 0 1 4 9-1 12 0s6-2 6 0c8-2 3 4 13 0h10c3 4 19 1 19 0 2 0 21 1 23-1 1 4 3-1 6 1 1 2 11-1 12-1 3 3 9 0 12 1 3-4 6 1 6 0h6c0-3 5 1 6-1 0 3 2 1 4 1 3 4 10-1 13 0 3-2 6-1 6 0 2 2 2 0 6 0 1-2 6 2 6 0 2 0 4 5 6 0h18c2 3 4 1 6 0l6-1c3 2 12 3 17 1 14 3 18 1 24 0 2-1 3 3 5 0 6 2 10-1 16 0 1 3 6 0 9 0 0-2 3 2 5 0 6-6 8 7 13 0 0-2 5 2 5 0 3 3 10 0 10 0 1 2 5-2 8 0 3-1 8 3 12 0h6c2 1 10 4 12 0h6c1-1 5 2 6 0 1 2 4-1 6 0 0-2 5 3 6-1 2 1 6 5 5 1 1 1 3-2 6 0 2-1 5 3 6 0 0 1 6 2 6 0 2 3 4-4 6 0 0-2 3 2 6 0 3 0 6 3 6 0 5 3 8-1 13 0 3-4 6 1 6 0h5c0-1 9 2 12 0 1-1 9 3 11 0h6c2 2 4 4 7 0 3 2 5-4 5-1 10 4 15-2 18 2 0-1 6 2 6-2 0 0 6-2 6 1 1 6 12 2 12 0 1 3 4-3 7 2 2-2 5 2 5 0 1 5 4-5 6 0 2-1 4 2 6 0 1 3 1 0 5 0V-100H0Z' fill='%23000'/%3E%3C/svg%3E");
    --button-slant: 18px;

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

.brush-divider {
    --divider-height: var(--brush-divider-height);
    --divider-bleed: var(--brush-divider-bleed);
    --divider-fill: var(--bg-color);
    position: relative;
    z-index: 3;
    height: calc(var(--divider-height) + var(--divider-bleed));
    margin: calc(-1 * var(--divider-bleed)) 0 calc(-1 * var(--divider-height));
    pointer-events: none;
    background: var(--divider-fill);
    -webkit-mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
    mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
}

.brush-divider--to-next {
    margin-top: calc(-1 * var(--divider-height));
    margin-bottom: 0;
    transform: scaleY(-1);
    transform-origin: center;
}

.brush-divider--white {
    --divider-fill: var(--home-row-white, #ffffff);
}

.brush-divider--light {
    --divider-fill: var(--home-row-light, #ffffff);
}

.brush-divider--dark {
    --divider-fill: var(--bg-color);
}

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

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

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
   ========================================================================== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
}

.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;
    text-transform: uppercase;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    position: relative;
    width: 100%;
    padding: 20px 0;
    z-index: 200;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

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

.nav-links {
    display: flex;
    gap: 60px;
}

.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: 12px;
    padding: 12px 22px 12px 28px;
    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;
}

/* Animated background panels */
.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);
}

/* Decorative gradient orb */
.mobile-menu-bg::before {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 90, 79, 0.15) 0%, transparent 70%);
    top: -20vw;
    right: -20vw;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s ease 0.3s, transform 0.8s var(--easing) 0.3s;
}

.mobile-menu.active .mobile-menu-bg::before {
    opacity: 1;
    transform: scale(1);
}

/* Decorative accent line */
.mobile-menu-bg::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 100px;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), transparent);
    transition: height 0.6s var(--easing) 0.4s;
}

.mobile-menu.active .mobile-menu-bg::after {
    height: calc(100% - 200px);
}

/* 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;
    gap: 12px;
    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;
}

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

/* Bottom decoration */
.mobile-menu-decoration {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.mobile-menu-line {
    width: 40px;
    height: 1px;
    background: var(--gray-medium);
}

.mobile-menu-tagline {
    font-size: 12px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.hero::before {
    content: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: calc(-1 * var(--hero-divider-bleed));
    width: 100%;
    height: calc(var(--hero-divider-height) + var(--hero-divider-bleed));
    z-index: 1;
    pointer-events: none;
    background: var(--home-row-light, #ffffff);
    -webkit-mask: var(--hero-divider-mask) center / 100% 100% no-repeat;
    mask: var(--hero-divider-mask) center / 100% 100% no-repeat;
    transform: scaleY(-1);
}

.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:not(.motion-reduced) .home-page .hero-bg-graph {
    opacity: 0;
}

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 .hero-bg-graph {
    opacity: 1;
    transition: opacity 0.58s ease;
}

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-bg-graph {
    transition-delay: 40ms;
}

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: 18px;
    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: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.76) 44%, rgba(5, 5, 5, 0.24) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.62) 100%);
}

/* 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: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.statement-image {
    position: relative;
    aspect-ratio: 4 / 5;
    will-change: transform, opacity;
}

.statement-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--accent-color);
    clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
    transform: translate(14px, 14px);
}

.statement-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
    filter: grayscale(100%);
    transition: filter 0.6s var(--easing);
}

.statement-image:hover img {
    filter: grayscale(0%);
}

.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: 1024px) {
    .statement-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .statement-image {
        max-width: none;
        margin: 0 -40px;
        width: calc(100% + 80px);
        aspect-ratio: 16 / 10;
    }

    .statement-image img {
        border-radius: 0;
    }

    .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 {
    --expertise-divider-height: var(--brush-divider-height);
    --expertise-divider-bleed: var(--brush-divider-bleed);
    position: relative;
    overflow: visible;
    padding: 100px 0;
}

.expertise::before,
.expertise::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(var(--expertise-divider-height) + var(--expertise-divider-bleed));
    z-index: 1;
    pointer-events: none;
    background: var(--home-row-light, #ffffff);
    -webkit-mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
    mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
}

.expertise::before {
    top: calc(-1 * var(--expertise-divider-bleed));
}

.expertise::after {
    bottom: calc(-1 * var(--expertise-divider-bleed));
    transform: scaleY(-1);
}

.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;
}

.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(48px, 6vw, 88px);
    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(232, 90, 79, 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: 42px;
    }

    .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;
    }
}

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

.testimonials-typewriter::before,
.testimonials-typewriter::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(var(--testimonials-divider-height) + var(--testimonials-divider-bleed));
    z-index: 1;
    pointer-events: none;
    background: var(--home-row-light, #ffffff);
    -webkit-mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
    mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
}

.testimonials-typewriter::before {
    top: calc(-1 * var(--testimonials-divider-bleed));
}

.testimonials-typewriter::after {
    bottom: calc(-1 * var(--testimonials-divider-bleed));
    background: var(--home-row-white, #ffffff);
    transform: scaleY(-1);
}

.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 {
    flex: 1;
}

.testimonials-client-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

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

.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 {
    --investment-divider-height: var(--brush-divider-height);
    --investment-divider-bleed: var(--brush-divider-bleed);
    position: relative;
    overflow: visible;
    padding: 142px 0 100px;
}

.investment::before {
    content: '';
    position: absolute;
    top: calc(-1 * var(--investment-divider-bleed));
    left: 0;
    width: 100%;
    height: calc(var(--investment-divider-height) + var(--investment-divider-bleed));
    z-index: 1;
    pointer-events: none;
    background: var(--home-row-white, #ffffff);
    -webkit-mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
    mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
}

.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);
}

.plan-kicker {
    margin-bottom: 6px;
}

.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;
}

.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 {
    --pricing-cta-divider-height: var(--brush-divider-height);
    --pricing-cta-divider-bleed: var(--brush-divider-bleed);
    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::before {
    content: '';
    position: absolute;
    top: calc(50% - var(--pricing-cta-divider-bleed));
    left: 0;
    width: 100%;
    height: calc(var(--pricing-cta-divider-height) + var(--pricing-cta-divider-bleed));
    z-index: 1;
    pointer-events: none;
    background: var(--bg-color);
    -webkit-mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
    mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
}

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

.pricing-cta-section .pricing-cta {
    margin-top: 0;
    padding: 46px 48px;
    border: 1px solid rgba(232, 90, 79, 0.55);
    border-radius: 8px;
    background: var(--accent-color);
    box-shadow: 0 26px 80px rgba(232, 90, 79, 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 .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 {
    --faq-cta-divider-height: var(--brush-divider-height);
    --faq-cta-divider-bleed: var(--brush-divider-bleed);
    position: relative;
    overflow: visible;
    padding: 118px 0 72px;
    background: var(--bg-color);
}

.faq-cta-section::before {
    content: '';
    position: absolute;
    top: calc(-1 * var(--faq-cta-divider-bleed));
    left: 0;
    width: 100%;
    height: calc(var(--faq-cta-divider-height) + var(--faq-cta-divider-bleed));
    z-index: 1;
    pointer-events: none;
    background: var(--bg-color);
    -webkit-mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
    mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
}

.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: 10px;
}

.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-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(232, 90, 79, 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 {
    --faq-divider-height: var(--brush-divider-height);
    --faq-divider-bleed: var(--brush-divider-bleed);
    position: relative;
    overflow: visible;
    padding: 142px 0 100px;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: calc(-1 * var(--faq-divider-bleed));
    left: 0;
    width: 100%;
    height: calc(var(--faq-divider-height) + var(--faq-divider-bleed));
    z-index: 1;
    pointer-events: none;
    background: var(--home-row-light, #ffffff);
    -webkit-mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
    mask: var(--brush-divider-mask) center / 100% 100% no-repeat;
}

.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 {
        --hero-divider-height: 3rem;
        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 {
        --expertise-divider-height: 3rem;
    }

    .testimonials-typewriter {
        --testimonials-divider-height: 3rem;
    }

    .investment {
        --investment-divider-height: 3rem;
    }

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

    .faq-section {
        --faq-divider-height: 3rem;
    }

    .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: 32px;
    }

    .statement-image {
        width: min(72vw, 280px);
        max-width: 280px;
        margin: 0 0 4px;
        aspect-ratio: 4 / 5;
    }

    .statement-image::before {
        transform: translate(10px, 10px);
    }

    /* 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: 32px;
    }

    /* 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 {
        --pricing-cta-divider-height: 3rem;
        padding: 32px 0 60px;
    }

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

    .faq-cta-section {
        --faq-cta-divider-height: 3rem;
        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(232, 90, 79, 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(232, 90, 79, 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(232, 90, 79, 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(232, 90, 79, 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(232, 90, 79, 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(232, 90, 79, 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(232, 90, 79, 0.1);
    border-color: rgba(232, 90, 79, 0.2);
}

.roi-result-total .roi-result-icon {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(232, 90, 79, 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(232, 90, 79, 0.1);
    border: 1px solid rgba(232, 90, 79, 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(232, 90, 79, 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(232, 90, 79, 0.2);
}

.roi-fee-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(232, 90, 79, 0.05);
    border: 1px dashed rgba(232, 90, 79, 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(232, 90, 79, 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(232, 90, 79, 0.9);
    border-radius: 64% 36% 0 0;
    transform: rotate(-12deg);
    box-shadow: 0 -24px 80px rgba(232, 90, 79, 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: #d14a3f;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(232, 90, 79, 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(232, 90, 79, 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);
}

@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 */
.noise-overlay {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 40%);
  background-size: 10px 10px, 100% 100%;
}

.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;
  right: -18%;
  top: 0;
  bottom: 0;
  width: min(56vw, 720px);
  height: auto;
  padding: 74px 28px 56px;
  z-index: 1;
  background: rgba(5, 5, 5, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.94;
  transform: rotate(-2deg);
  transform-origin: center;
  mix-blend-mode: screen;
  box-shadow:
    0 0 60px rgba(232, 90, 79, 0.16),
    0 24px 110px rgba(232, 90, 79, 0.1);
}

.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: 100% !important;
  height: 100% !important;
}

.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: #ffffff;
  --home-row-light: #ffffff;
  --home-row-light-2: #ffffff;
  --home-row-ink: #111111;
  --home-row-muted: #57514a;
  --home-row-line: #d8d8d8;
  --home-row-panel: #ffffff;
}

.home-page .hero,
.home-page .expertise,
.home-page .testimonials-typewriter,
.home-page .investment,
.home-page .faq-section {
  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-image img {
  filter: grayscale(100%) contrast(1.02);
}

.home-page .statement-image:hover img {
  filter: grayscale(0%) contrast(1);
}

.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 .faq-cta-section,
.home-page .footer {
  background: var(--accent-color);
  color: #fff;
}

.home-page .footer {
  padding-top: 0;
}

.home-page .faq-cta-section .decision-kicker,
.home-page .faq-cta-section .decision-cta h3,
.home-page .faq-cta-section .decision-cta p,
.home-page .footer-bottom,
.home-page .footer a {
  color: #fff;
}

.home-page .faq-cta-section .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;
}

.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 {
  border-top-color: transparent;
}

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

.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 {
  --contact-card-angle: clamp(14px, 1.6vw, 24px);
  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;
  clip-path: polygon(
    0 var(--contact-card-angle),
    100% 0,
    100% calc(100% - var(--contact-card-angle)),
    0 100%
  );
}

.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(232, 90, 79, 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;
}

.thank-you-page {
  background: var(--bg-color);
}

.thank-you-hero {
  padding: 88px 0 70px;
}

.thank-you-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: end;
}

.thank-you-confirmation {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.thank-you-confirmation i {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 999px;
  background: rgba(232, 90, 79, 0.14);
  color: var(--accent-color);
}

.thank-you-confirmation span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.audit-prep {
  padding: 90px 0 10px;
}

.audit-prep-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: start;
}

.audit-prep-copy h2 {
  max-width: 520px;
  margin: 14px 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: 0;
}

.audit-prep-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--gray-light);
  font-size: 17px;
  line-height: 1.7;
}

.audit-steps {
  display: grid;
  gap: 16px;
}

.audit-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.audit-step-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: rgba(232, 90, 79, 0.12);
  color: var(--accent-color);
}

.audit-step-icon i {
  width: 22px;
  height: 22px;
}

.audit-step-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.audit-step h3 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: 0;
}

.audit-step p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

.terms-page {
  min-height: 100vh;
  padding: 60px 20px 100px;
}

.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: #d14a3f;
  --button-shadow: none;
  --button-hover-shadow: 0 12px 30px rgba(232, 90, 79, 0.28);
  --button-active-shadow: 0 7px 18px rgba(232, 90, 79, 0.2);
  --button-slant: 18px;
  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: 12px;
  min-height: 48px;
  padding: 12px 22px 12px 28px;
}

.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,
.thank-you-confirmation,
.audit-step,
.audit-step-icon {
  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;
  }

  .thank-you-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@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 {
    --contact-card-angle: 10px;
    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-top: 70px;
  }

  .thank-you-hero {
    padding: 70px 0 50px;
  }

  .audit-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .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;
  }
}
