/* ============================================================
   Afiled Traffic Solutions - style.css
   Color palette extracted from brand banner:
   Blues #3B5AE0 · Teal #2EBF91 · Lavender #C5B4D9 · Cyan #7DD4E8
   ============================================================ */

/* Reset italic + color accents on all headings (global guard) */
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
    font-style: normal !important;
    font-weight: inherit !important;
    color: inherit !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

h1 em::after, h2 em::after, h3 em::after,
h4 em::after, h5 em::after, h6 em::after {
    display: none !important;
}

/* ---------- Design tokens ---------- */
:root {
    /* Core palette */
    --blue: #3B5AE0;
    --blue-dark: #2A44B8;
    --blue-glow: rgba(59, 90, 224, .35);
    --teal: #2EBF91;
    --teal-dark: #24A07A;
    --teal-glow: rgba(46, 191, 145, .3);
    --lavender: #C5B4D9;
    --cyan: #7DD4E8;
    --purple: #9B72CF;
    --purple-glow: rgba(155, 114, 207, .3);
    --amber: #F6C768;
    --coral: #FF8A65;

    /* Background layers */
    --bg-body: #07090F;
    --bg-surface: #0E1420;
    --bg-card: rgba(14, 20, 32, .72);
    --bg-glass: rgba(14, 20, 32, .5);
    --bg-elevated: rgba(255, 255, 255, .035);
    --border: rgba(255, 255, 255, .07);
    --border-highlight: rgba(255, 255, 255, .14);
    --border-strong: rgba(255, 255, 255, .22);

    /* Text */
    --text: #F4F6FB;
    --text-muted: #9AA4B8;
    --text-dim: #5C667A;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--blue), var(--cyan));
    --grad-alt: linear-gradient(135deg, var(--teal), var(--cyan));
    --grad-purple: linear-gradient(135deg, var(--lavender), var(--purple));
    --grad-warm: linear-gradient(135deg, var(--amber), var(--coral));
    --grad-hero: radial-gradient(120% 70% at 15% 0%, rgba(59, 90, 224, .2) 0%, transparent 55%),
        radial-gradient(80% 50% at 85% 30%, rgba(46, 191, 145, .14) 0%, transparent 60%),
        radial-gradient(60% 40% at 50% 100%, rgba(125, 212, 232, .08) 0%, transparent 70%);

    /* Layout */
    --container: 1240px;
    --container-wide: 1400px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Typography */
    --font-display: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans-display: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Roboto Mono', 'SF Mono', 'JetBrains Mono', monospace;
    --font: var(--font-body);

    /* Animation */
    --ease: cubic-bezier(.16, 1, .3, 1);
    --ease-swift: cubic-bezier(.34, 1.56, .64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .25);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, .35);
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, .5);
    --shadow-glow-blue: 0 0 60px -10px var(--blue-glow);
    --shadow-glow-teal: 0 0 60px -10px var(--teal-glow);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    font-feature-settings: "ss01", "ss02", "cv11";
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: screen;
    opacity: .55;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* ---------- Utility ---------- */
.container {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: var(--grad-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-bottom: 18px;
    font-feature-settings: "ss01", "ss02";
}

.section__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
}

.section__subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Eyebrow helper: small mono label */
.eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ---------- Reveal animations (scroll) ---------- */
:root {
    --reveal-distance: 32px;
    --reveal-duration: .68s;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0);
    transition:
        opacity var(--reveal-duration) var(--ease),
        transform var(--reveal-duration) var(--ease);
}

/* Hero: keep original distance, duration, and delays (do not change hero motion) */
.hero .reveal {
    --reveal-distance: 36px;
    --reveal-duration: .7s;
}

.reveal--delay-1 {
    transition-delay: .15s;
}

.reveal--delay-2 {
    transition-delay: .3s;
}

.reveal--delay-3 {
    transition-delay: .45s;
}

.reveal--delay-4 {
    transition-delay: .6s;
}

.reveal.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.revealed {
        opacity: 1;
        transform: none;
        transition: none;
        transition-delay: 0s !important;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 600;
    font-size: .95rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .3s var(--ease);
    white-space: nowrap;
}

.btn--sm {
    padding: 8px 20px;
    font-size: .85rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.btn--primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 24px var(--blue-glow);
}

.btn--primary:hover {
    box-shadow: 0 6px 32px var(--blue-glow);
    transform: translateY(-2px);
}

@keyframes btnSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: btnSpin .65s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .btn--loading::after { animation: none; opacity: .6; }
}

.btn--teal {
    background: var(--grad-alt);
    color: #fff;
    box-shadow: 0 4px 24px var(--teal-glow);
}

.btn--teal:hover {
    box-shadow: 0 6px 32px var(--teal-glow);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-highlight);
}

.btn--outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn--telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    color: #fff;
    box-shadow: 0 4px 24px rgba(42, 171, 238, .35);
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn--telegram:hover {
    box-shadow: 0 8px 40px rgba(42, 171, 238, .45);
    transform: translateY(-2px);
}

.btn__icon {
    width: 22px;
    height: 22px;
}

/* Compact nav CTA - dark-glass pill with live dot */
.btn--cta-glow {
    position: relative;
    padding: 9px 18px 9px 14px;
    gap: 8px;
    background: linear-gradient(135deg, rgba(125, 212, 232, .1), rgba(59, 90, 224, .1));
    color: var(--text);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .005em;
    border: 1px solid rgba(125, 212, 232, .32);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .06);
    transition: background .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease), box-shadow .3s var(--ease);
}

.btn--cta-glow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan), 0 0 14px rgba(125, 212, 232, .45);
    animation: ctaPulseDot 1.8s ease-in-out infinite;
    flex: none;
}

.btn--cta-glow:hover {
    background: linear-gradient(135deg, rgba(125, 212, 232, .18), rgba(59, 90, 224, .18));
    border-color: rgba(125, 212, 232, .7);
    color: var(--text);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(125, 212, 232, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
}

@keyframes ctaPulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.45);
        opacity: .55;
    }
}

/* Inline teal link */
.link--teal {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}

.link--teal:hover {
    color: var(--cyan);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: background .35s, box-shadow .35s;
}

.navbar--scrolled {
    background: rgba(11, 15, 26, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--border);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__logo-icon {
    height: 64px;
    width: 64px;
    object-fit: contain;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .25s;
}

.navbar__links a:hover,
.navbar__links a.active,
.navbar__links a.is-active,
.navbar__submenu a.is-active {
    color: var(--text);
}

.navbar__submenu a.is-active {
    background: rgba(125, 212, 232, .08);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    transition: background .25s var(--ease), border-color .25s var(--ease);
}

.navbar__toggle:hover,
.navbar__toggle:focus-visible {
    background: rgba(125, 212, 232, .08);
    border-color: rgba(125, 212, 232, .22);
    outline: none;
}

.navbar__toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease), background-color .25s var(--ease);
    transform-origin: center;
}

.navbar__toggle.active {
    background: rgba(125, 212, 232, .14);
    border-color: rgba(125, 212, 232, .38);
}

.navbar__toggle.active span {
    background: var(--cyan);
}

.navbar__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

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

.hero__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    animation: float 8s ease-in-out infinite alternate;
}

.hero__bg-glow--1 {
    width: 500px;
    height: 500px;
    background: var(--blue-glow);
    top: -100px;
    left: -120px;
}

.hero__bg-glow--2 {
    width: 400px;
    height: 400px;
    background: var(--teal-glow);
    bottom: -60px;
    right: -80px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 20px) scale(1.08);
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(125, 212, 232, .07);
    border: 1px solid rgba(125, 212, 232, .22);
    padding: 8px 18px 8px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    animation: dotPulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.8vw, 4.6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.035em;
    margin-bottom: 28px;
    font-feature-settings: "ss01", "ss02";
}

.hero__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero__title em::after {
    display: none;
}

.hero__desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.72;
}

.hero__desc strong {
    color: var(--text);
    font-weight: 600;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero__assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .04em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero__assurances li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__assurance-tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(125, 212, 232, .12);
    border: 1px solid rgba(125, 212, 232, .35);
    color: var(--cyan);
    font-size: .68rem;
    font-weight: 700;
    font-family: var(--font-body);
}

/* Hero trust micro-bar */
.hero__trust {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--text-muted);
}

.hero__trust-avatars {
    display: flex;
}

.hero__trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-body);
    margin-left: -10px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: grid;
    place-items: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .72rem;
    color: #fff;
}

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

.hero__trust-avatar:nth-child(2) {
    background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.hero__trust-avatar:nth-child(3) {
    background: linear-gradient(135deg, var(--purple), var(--lavender));
}

.hero__trust-avatar:nth-child(4) {
    background: linear-gradient(135deg, var(--amber), var(--coral));
}

.hero__trust-stars {
    color: var(--amber);
    letter-spacing: 2px;
    font-family: var(--font-body);
}

.hero__visual {
    justify-self: end;
    width: 100%;
    min-width: 0;
    background: none;
}

/* Hero dashboard visual */
.hero__dashboard {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45), 0 0 0 1px var(--border);
}

/* Hero PNG: foreground only; no fill behind <img> */
.hero__dashboard--3d {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.hero__dashboard--3d .hero__illustration {
    padding: 0;
    background: none;
}

.hero__illustration {
    padding: clamp(12px, 2.5vw, 28px);
    line-height: 0;
}

.hero__mission-svg {
    width: 100%;
    height: auto;
    display: block;
    max-height: min(520px, 62vh);
    object-fit: contain;
    object-position: right center;
}

.dash__header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .025);
}

.dash__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash__dot--red {
    background: #FF5F57;
}

.dash__dot--yellow {
    background: #FFBD2E;
}

.dash__dot--green {
    background: #28CA42;
}

.dash__title {
    margin-left: 8px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.dash__body {
    padding: 20px 18px;
}

/* Metrics row */
.dash__metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.dash__metric {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 12px;
    text-align: center;
}

.dash__metric-label {
    display: block;
    font-size: .65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.dash__metric-value {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.01em;
}

.dash__metric-value--blue {
    color: var(--blue);
}

.dash__metric-value--teal {
    color: var(--teal);
}

.dash__metric-value--purple {
    color: var(--lavender);
}

/* Chart */
.dash__chart {
    margin-bottom: 18px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 12px 10px;
}

.dash__chart-svg {
    width: 100%;
    height: 80px;
}

.dash__chart-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLine 2s var(--ease) forwards;
    animation-delay: .6s;
}

.dash__chart-area {
    opacity: 0;
    animation: fadeIn .8s ease forwards;
    animation-delay: 1.4s;
}

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

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

.dash__chart-label {
    font-size: .65rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 8px;
}

/* Geo bars */
.dash__geo-row {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.dash__geo-item {
    display: grid;
    grid-template-columns: 24px 1fr 100px 36px;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--text-muted);
}

.dash__geo-flag {
    font-size: 1rem;
}

.dash__geo-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden;
}

.dash__geo-fill {
    height: 100%;
    border-radius: 3px;
    animation: growBar 1.2s var(--ease) forwards;
    animation-delay: 1s;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes growBar {
    to {
        transform: scaleX(1);
    }
}

.dash__geo-fill--1 {
    width: 85%;
    background: var(--blue);
}

.dash__geo-fill--2 {
    width: 55%;
    background: var(--teal);
    animation-delay: 1.15s;
}

.dash__geo-fill--3 {
    width: 38%;
    background: var(--lavender);
    animation-delay: 1.3s;
}

.dash__geo-pct {
    font-weight: 600;
    font-size: .75rem;
    color: var(--text-muted);
    text-align: right;
}

/* Source rings */
.dash__sources-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dash__source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: var(--text-muted);
}

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

.dash__source-ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash__source-ring--organic {
    background: var(--blue);
}

.dash__source-ring--referral {
    background: var(--teal);
}

.dash__source-ring--social {
    background: var(--lavender);
}

.dash__source-ring--direct {
    background: var(--cyan);
}

/* Floating badges */
.dash__float {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: .78rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
    animation: floatBadge 4s ease-in-out infinite alternate;
    white-space: nowrap;
}

.dash__float--1 {
    top: -18px;
    right: -24px;
    color: var(--teal);
}

.dash__float--2 {
    bottom: 60px;
    left: -30px;
    color: var(--cyan);
    animation-delay: 1.3s;
}

.dash__float--3 {
    bottom: -14px;
    right: 20px;
    color: var(--blue);
    animation-delay: 2.6s;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    color: var(--text-dim);
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: pulse 2.5s ease-in-out infinite;
}

.hero__scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-dim);
    border-bottom: 2px solid var(--text-dim);
    transform: rotate(45deg);
}

@keyframes pulse {

    0%,
    100% {
        opacity: .4;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: .9;
        transform: translateX(-50%) translateY(6px);
    }
}

/* ========== SERVICES OVERVIEW ========== */
.services-overview {
    background: var(--grad-hero);
}

.services-overview__grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
}

/* Staggered “chess” layout: 4 equal tiles on row 1, 3 on row 2 centered in the gaps above */
.services-overview__grid>.services-tile:nth-child(-n+4) {
    grid-column: span 2;
}

.services-overview__grid>.services-tile:nth-child(5) {
    grid-column: 2 / span 2;
}

.services-overview__grid>.services-tile:nth-child(6) {
    grid-column: 4 / span 2;
}

.services-overview__grid>.services-tile:nth-child(7) {
    grid-column: 6 / span 2;
}

/* Staggered overview: equal row heights + full cell width; compact min-height so tiles are not overstretched */
@media (min-width: 1025px) {
    .services-overview__grid {
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: clamp(14px, 1.75vw, 20px);
        min-height: clamp(18.5rem, min(30vw, 42vh), 25.5rem);
    }

    .services-overview__grid>.services-tile {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        align-self: stretch;
        height: 100%;
        min-height: 0;
        box-sizing: border-box;
        justify-content: center;
        padding: 20px 16px;
        gap: 12px;
    }

    .services-overview__grid>.services-tile .product-card__icon {
        flex-shrink: 0;
    }
}

.services-tile {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}

.services-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .28);
    border-color: var(--border-highlight);
}

.services-tile .product-card__icon {
    margin-bottom: 0;
}

.services-tile__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: var(--text);
}

/* ========== SERVICES DETAIL ========== */
.services-detail {
    background: var(--bg-body);
}

.services-detail__list {
    display: grid;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color .35s;
    scroll-margin-top: 100px;
}

.service-block:hover {
    border-color: var(--border-highlight);
}

/* Preserve scroll reveal (opacity/transform) alongside hover border transition */
.service-block.reveal {
    transition:
        opacity var(--reveal-duration) var(--ease),
        transform var(--reveal-duration) var(--ease),
        border-color .35s var(--ease);
}

.service-block__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    grid-template-areas: "content art";
}

.service-block__row--reverse {
    grid-template-areas: "art content";
}

.service-block__content {
    grid-area: content;
    min-width: 0;
}

.service-block__footer {
    margin-top: clamp(20px, 3vw, 28px);
    text-align: left;
}

.service-block__row--reverse .service-block__footer {
    text-align: right;
}

.btn--discover-more {
    padding: 12px 28px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border-highlight);
    text-decoration: none;
    transition:
        color .35s var(--ease),
        background .35s var(--ease),
        border-color .35s var(--ease),
        box-shadow .35s var(--ease),
        transform .35s var(--ease);
}

.btn--discover-more:hover {
    color: #0B0F1A;
    background: var(--cyan);
    border-color: rgba(125, 212, 232, .95);
    box-shadow: 0 6px 28px rgba(125, 212, 232, .28);
    transform: translateY(-2px);
}

.btn--discover-more:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.service-block__figure {
    grid-area: art;
    margin: 0;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(59, 90, 224, .06), rgba(46, 191, 145, .04));
    border: 1px solid var(--border);
    padding: clamp(20px, 3vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-block__figure svg,
.service-block__figure img {
    width: 100%;
    height: auto;
    max-height: 280px;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

/* GA traffic: transparent PNG only - no extra figure chrome; align with reference */
#svc-traffic .service-block__figure {
    background: none;
    border: none;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
    min-height: 0;
}

#svc-traffic .service-block__figure img {
    max-height: min(440px, 72vh);
    border-radius: 0;
    object-position: right center;
}

/* Social media (reverse row: art left, text right) - transparent PNG, no figure chrome */
#svc-social .service-block__figure {
    background: none;
    border: none;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    min-height: 0;
}

#svc-social .service-block__figure img {
    max-height: min(440px, 72vh);
    border-radius: 0;
    object-position: left center;
}

/* LinkedIn expansion - transparent PNG only; right column, aligned like GA block */
#svc-linkedin .service-block__figure {
    background: none;
    border: none;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
    min-height: 0;
}

#svc-linkedin .service-block__figure img {
    max-height: min(440px, 72vh);
    border-radius: 0;
    object-position: right center;
}

/* Trustpilot (reverse row: art left) - transparent PNG, no figure chrome */
#svc-trustpilot .service-block__figure {
    background: none;
    border: none;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    min-height: 0;
}

#svc-trustpilot .service-block__figure img {
    max-height: min(440px, 72vh);
    border-radius: 0;
    object-position: left center;
}

/* Brand identity - transparent PNG; text left, art right (same as GA / LinkedIn) */
#svc-brand .service-block__figure {
    background: none;
    border: none;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
    min-height: 0;
}

#svc-brand .service-block__figure img {
    max-height: min(440px, 72vh);
    border-radius: 0;
    object-position: right center;
}

/* Authority domains (reverse row: art left) - transparent PNG, no figure chrome */
#svc-domains .service-block__figure {
    background: none;
    border: none;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    min-height: 0;
}

#svc-domains .service-block__figure img {
    max-height: min(440px, 72vh);
    border-radius: 0;
    object-position: left center;
}

/* Blog content - transparent PNG; text left, art right */
#svc-content .service-block__figure {
    background: none;
    border: none;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
    min-height: 0;
}

#svc-content .service-block__figure img {
    max-height: min(440px, 72vh);
    border-radius: 0;
    object-position: right center;
}

.service-block__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.02em;
    color: var(--text);
}

.service-block__lead {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.service-block__lead--tight {
    margin-top: 8px;
    margin-bottom: 0;
}

.service-block__label {
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--cyan);
    margin-bottom: 10px;
    margin-top: 8px;
}

.service-block__list {
    list-style: disc;
    padding-left: 1.35rem;
    margin-bottom: 12px;
}

.service-block__list li {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 6px;
}

.service-block__list li::marker {
    color: var(--teal);
}

.service-block__note {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-top: 8px;
}

.service-block__note strong {
    color: var(--text);
}

@media (max-width: 900px) {

    .service-block__row,
    .service-block__row--reverse {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "art";
    }

    .service-block__figure {
        min-height: 180px;
    }

    #svc-traffic .service-block__figure {
        justify-content: center;
        min-height: 0;
    }

    #svc-traffic .service-block__figure img {
        object-position: center center;
        max-height: min(340px, 58vh);
    }

    #svc-social .service-block__figure {
        justify-content: center;
        min-height: 0;
    }

    #svc-social .service-block__figure img {
        object-position: center center;
        max-height: min(340px, 58vh);
    }

    #svc-linkedin .service-block__figure {
        justify-content: center;
        min-height: 0;
    }

    #svc-linkedin .service-block__figure img {
        object-position: center center;
        max-height: min(340px, 58vh);
    }

    #svc-trustpilot .service-block__figure {
        justify-content: center;
        min-height: 0;
    }

    #svc-trustpilot .service-block__figure img {
        object-position: center center;
        max-height: min(340px, 58vh);
    }

    #svc-brand .service-block__figure {
        justify-content: center;
        min-height: 0;
    }

    #svc-brand .service-block__figure img {
        object-position: center center;
        max-height: min(340px, 58vh);
    }

    #svc-domains .service-block__figure {
        justify-content: center;
        min-height: 0;
    }

    #svc-domains .service-block__figure img {
        object-position: center center;
        max-height: min(340px, 58vh);
    }

    #svc-content .service-block__figure {
        justify-content: center;
        min-height: 0;
    }

    #svc-content .service-block__figure img {
        object-position: center center;
        max-height: min(340px, 58vh);
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    border-color: var(--border-highlight);
}

.product-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
}

.product-card__icon svg {
    width: 28px;
    height: 28px;
}

.product-card__icon--blue {
    background: rgba(59, 90, 224, .12);
    color: var(--blue);
}

.product-card__icon--teal {
    background: rgba(46, 191, 145, .12);
    color: var(--teal);
}

.product-card__icon--purple {
    background: rgba(155, 114, 207, .12);
    color: var(--purple);
}

.product-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}

.product-card__desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-card__features {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.product-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    color: var(--text-muted);
}

.product-card__features .check {
    width: 18px;
    min-width: 18px;
    height: 18px;
    color: var(--teal);
    margin-top: 3px;
}

/* ========== CTA BAND ========== */
.cta-band {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-band__inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(56px, 7vw, 96px) clamp(32px, 6vw, 72px);
    text-align: center;
    background:
        radial-gradient(80% 120% at 0% 0%, rgba(59, 90, 224, .22) 0%, transparent 55%),
        radial-gradient(80% 120% at 100% 100%, rgba(46, 191, 145, .2) 0%, transparent 55%),
        linear-gradient(180deg, rgba(17, 24, 39, .85), rgba(11, 15, 26, .85));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-band__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}

.cta-band__content {
    position: relative;
    z-index: 1;
}

.cta-band__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-bottom: 20px;
    font-feature-settings: "ss01";
}

.cta-band__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
}

.cta-band__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-band__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-band__meta {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--text-muted);
}

.cta-band__meta span::before {
    content: "✓";
    color: var(--teal);
    margin-right: 6px;
    font-weight: 700;
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    border-top: 1px solid var(--border);
    padding: 80px 0 36px;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, .4));
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: clamp(32px, 5vw, 72px);
    margin-bottom: 56px;
}

.footer__about {
    max-width: 340px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer__logo img {
    height: 64px;
    width: auto;
}

.footer__about-text {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__social {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border-highlight);
    color: var(--text-muted);
    background: var(--bg-elevated);
    transition: all .3s var(--ease);
}

.footer__social:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(125, 212, 232, .25);
}

.footer__social svg {
    width: 16px;
    height: 16px;
}

.footer__col-title {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 22px;
}

.footer__col ul {
    display: grid;
    gap: 12px;
}

.footer__col a {
    color: var(--text-muted);
    font-size: .92rem;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__col a:hover {
    color: var(--cyan);
}

.footer__col a[data-arrow]::after {
    content: "→";
    opacity: 0;
    transform: translateX(-4px);
    transition: all .25s var(--ease);
    font-family: var(--font-mono);
}

.footer__col a:hover[data-arrow]::after {
    opacity: 1;
    transform: translateX(0);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer__copy {
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .05em;
    color: var(--text-dim);
}

.footer__legal {
    display: flex;
    gap: 24px;
    font-size: .82rem;
    flex-wrap: wrap;
}

.footer__legal a {
    color: var(--text-dim);
    transition: color .2s;
}

.footer__legal a:hover {
    color: var(--text-muted);
}

.footer__disclaimer {
    margin-top: 18px;
    font-size: .72rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 820px;
    font-family: var(--font-mono);
}

/* ==================================================================
   NEW MARKETING COMPONENTS
   ================================================================== */

/* ---------- Marquee / Trust strip ---------- */
.trust-strip {
    position: relative;
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, .4), transparent);
    overflow: hidden;
}

.trust-strip__label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.marquee {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
    display: flex;
    gap: 72px;
    flex-shrink: 0;
    padding-right: 72px;
    animation: marquee 36s linear infinite;
    align-items: center;
}

.marquee__item {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: -.02em;
    white-space: nowrap;
    font-feature-settings: "ss01";
    opacity: .65;
    transition: opacity .3s;
}

.marquee__item:hover {
    opacity: 1;
    color: var(--text);
}

.marquee__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dim);
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
    }
}

/* ---------- Big Numbers / Stats ---------- */
.stats {
    padding: 100px 0;
    background: var(--bg-body);
    position: relative;
}

.stats__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-card {
    background: var(--bg-surface);
    padding: 44px 32px;
    position: relative;
    transition: background .35s;
}

.stat-card:hover {
    background: var(--bg-elevated);
}

.stat-card::before {
    content: attr(data-index);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--text-dim);
    letter-spacing: .12em;
}

.stat-card__value {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 12px;
    font-feature-settings: "ss01";
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:nth-child(2) .stat-card__value {
    background: var(--grad-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:nth-child(3) .stat-card__value {
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:nth-child(4) .stat-card__value {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card__suffix {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
}

.stat-card__label {
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.stat-card__note {
    color: var(--text-dim);
    font-size: .86rem;
    line-height: 1.55;
}

/* ---------- Problem / Solution split ---------- */
.split {
    padding: 100px 0;
}

.split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto repeat(9, auto);
    column-gap: clamp(24px, 3vw, 36px);
    row-gap: 16px;
    align-items: start;
}

.split__col {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
    align-content: start;
    padding: clamp(32px, 4vw, 48px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.split__col--problem {
    background: linear-gradient(180deg, rgba(255, 138, 101, .04), transparent);
    border-color: rgba(255, 138, 101, .18);
}

.split__col--solution {
    background: linear-gradient(180deg, rgba(46, 191, 145, .05), rgba(59, 90, 224, .05));
    border-color: rgba(46, 191, 145, .22);
}

.split__col-head {
    padding-bottom: 8px;
}

.split__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid currentColor;
}

.split__col--problem .split__tag {
    color: var(--coral);
}

.split__col--solution .split__tag {
    color: var(--teal);
}

.split__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0;
    color: var(--text);
    font-feature-settings: "ss01";
}

.split__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
}

.split__list {
    display: contents;
}

.split__list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: flex-start;
    font-size: .98rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.split__list li::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-top: 3px;
    display: block;
}

.split__col--problem .split__list li::before {
    background: rgba(255, 138, 101, .15);
    box-shadow: inset 0 0 0 1px var(--coral);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23FF8A65' stroke-width='2'><path d='M3 3l6 6M9 3l-6 6'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.split__col--solution .split__list li::before {
    background: rgba(46, 191, 145, .15);
    box-shadow: inset 0 0 0 1px var(--teal);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%232EBF91' stroke-width='2.2' stroke-linecap='round'><path d='M3 6.5l2.2 2.2L9 4.5'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* ---------- How it works / Steps ---------- */
.steps {
    padding: 100px 0;
    background:
        radial-gradient(80% 60% at 50% 0%, rgba(59, 90, 224, .08), transparent 70%),
        var(--bg-body);
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    counter-reset: step;
}

.step-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    counter-increment: step;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-md);
}

.step-card__num {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.step-card__num::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.03em;
}

.step-card:nth-child(2) .step-card__num::before {
    background: var(--grad-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card:nth-child(3) .step-card__num::before {
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    line-height: 1.2;
    font-feature-settings: "ss01";
}

.step-card__desc {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.65;
}

/* ---------- Bento E-E-A-T ---------- */
.eeat {
    padding: 100px 0;
    background: var(--bg-body);
}

.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    grid-auto-flow: row dense;
    gap: 20px;
}

.bento__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color .35s, transform .35s;
}

.bento__card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-3px);
}

.bento__card--lg {
    grid-column: span 3;
    grid-row: span 2;
    padding: 40px;
}

.bento__card--md {
    grid-column: span 3;
}

.bento__card--sm {
    grid-column: span 2;
}

.bento__tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}

.bento__title {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 14px;
    font-feature-settings: "ss01";
    color: var(--text);
}

.bento__card--lg .bento__title {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.bento__card--md .bento__title {
    font-size: 1.3rem;
}

.bento__card--sm .bento__title {
    font-size: 1.15rem;
}

.bento__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
}

.bento__desc {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.65;
}

.bento__card--sm .bento__desc {
    font-size: .88rem;
}

.bento__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.bento__metric-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text);
    letter-spacing: -.02em;
    margin-bottom: 6px;
}

.bento__metric-label {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.bento__credentials {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.bento__credentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-muted);
}

.bento__credentials li::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(46, 191, 145, .15);
    box-shadow: inset 0 0 0 1px var(--teal);
    flex-shrink: 0;
}

.bento__decor {
    position: absolute;
    inset: auto -30px -30px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .45;
    pointer-events: none;
}

.bento__card:nth-child(1) .bento__decor {
    background: var(--blue);
}

.bento__card:nth-child(2) .bento__decor {
    background: var(--teal);
}

.bento__card:nth-child(3) .bento__decor {
    background: var(--purple);
}

.bento__card:nth-child(4) .bento__decor {
    background: var(--amber);
}

.bento__card:nth-child(5) .bento__decor {
    background: var(--cyan);
}

.bento__card:nth-child(6) .bento__decor {
    background: var(--lavender);
}

.bento__card:nth-child(7) .bento__decor {
    background: var(--teal);
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 100px 0;
    background:
        radial-gradient(80% 60% at 100% 50%, rgba(46, 191, 145, .06), transparent 70%),
        var(--bg-body);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonials__wrap {
    margin-top: 48px;
    position: relative;
}

.testimonials__slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: hidden;
    position: relative;
}

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

.testimonials__slider--3col {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial--slider {
    transform: translateX(0);
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial--slider.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.testimonials__btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.testimonials__btn:hover {
    border-color: var(--border-highlight);
    color: var(--text);
    transform: translateY(-2px);
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.testimonials__dot.active {
    background: var(--text);
    width: 24px;
    border-radius: 4px;
}

.testimonials__dot:hover {
    background: var(--text-muted);
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color .35s, transform .35s;
}

.testimonial:hover {
    border-color: var(--border-highlight);
    transform: translateY(-4px);
}

.testimonial::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 28px;
    width: 48px;
    height: 48px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none'><text x='0' y='50' font-family='Georgia,serif' font-size='70' font-style='italic' fill='%237DD4E8'>“</text></svg>") no-repeat center / contain;
}

.testimonial__stars {
    color: var(--amber);
    font-size: .9rem;
    letter-spacing: 3px;
}

.testimonial__quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text);
    font-weight: 400;
    letter-spacing: -.01em;
    font-feature-settings: "ss01";
}

.testimonial__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: grid;
    place-items: center;
    font-weight: 600;
    color: #fff;
    font-size: .95rem;
    flex-shrink: 0;
}

.testimonial:nth-child(2) .testimonial__avatar {
    background: var(--grad-alt);
}

.testimonial:nth-child(3) .testimonial__avatar {
    background: var(--grad-purple);
}

.testimonial__author {
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.testimonial__role {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-dim);
    letter-spacing: .06em;
}

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 0;
}

.faq__wrap {
    max-width: 840px;
    margin: 0 auto;
}

.faq__list {
    display: grid;
    gap: 12px;
    margin-top: 56px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s, background .3s;
}

.faq__item[open],
.faq__item:hover {
    border-color: var(--border-highlight);
}

.faq__item[open] {
    background: var(--bg-elevated);
}

.faq__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -.01em;
    color: var(--text);
    font-feature-settings: "ss01";
}

.faq__trigger::-webkit-details-marker {
    display: none;
}

.faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-highlight);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform .35s var(--ease), border-color .3s, background .3s;
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    background: var(--text);
    border-radius: 2px;
}

.faq__icon::before {
    width: 12px;
    height: 1.5px;
}

.faq__icon::after {
    width: 1.5px;
    height: 12px;
    transition: transform .35s var(--ease);
}

.faq__item[open] .faq__icon {
    background: var(--cyan);
    border-color: var(--cyan);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
    background: var(--bg-body);
}

.faq__item[open] .faq__icon::after {
    transform: rotate(90deg);
}

.faq__content {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: .98rem;
    line-height: 1.7;
}

.faq__content p+p {
    margin-top: 12px;
}

.faq__content a {
    color: var(--cyan);
    text-decoration: none;
}

.faq__content a:hover {
    text-decoration: underline;
}

.faq__more-link {
    color: var(--cyan);
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
}

.faq__more-link:hover {
    text-decoration: underline;
}

/* ---------- Services grid v2 (card with icon + desc + arrow) ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    overflow: hidden;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    display: flex;
    flex-direction: column;
    gap: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .12;
    transition: opacity .4s, transform .4s;
    pointer-events: none;
    background: var(--blue);
}

.service-card:nth-child(2)::before {
    background: var(--teal);
}

.service-card:nth-child(3)::before {
    background: var(--purple);
}

.service-card:nth-child(4)::before {
    background: var(--amber);
}

.service-card:nth-child(5)::before {
    background: var(--cyan);
}

.service-card:nth-child(6)::before {
    background: var(--coral);
}

.service-card:nth-child(7)::before {
    background: var(--blue);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: .3;
}

.service-card__num {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(251, 146, 94, .12);
    border: 1px solid rgba(251, 146, 94, .35);
    color: var(--coral);
    font-size: .58rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
}

.service-card__desc strong {
    color: var(--text);
    font-weight: 600;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-highlight);
    color: var(--cyan);
}

.service-card__icon svg {
    width: 22px;
    height: 22px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--text);
    font-feature-settings: "ss01";
}

.service-card__desc {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: 6px;
}

.service-card__link::after {
    content: "→";
    transition: transform .3s var(--ease);
}

.service-card:hover .service-card__link::after {
    transform: translateX(5px);
}

/* ---------- Services grid · hover lava-lamp glow ---------- */
.service-card {
    --glow-1: var(--blue);
    --glow-2: var(--cyan);
}

.service-card:nth-child(2) {
    --glow-1: var(--teal);
    --glow-2: var(--blue);
}

.service-card:nth-child(3) {
    --glow-1: var(--purple);
    --glow-2: var(--coral);
}

.service-card:nth-child(4) {
    --glow-1: var(--amber);
    --glow-2: var(--coral);
}

.service-card:nth-child(5) {
    --glow-1: var(--cyan);
    --glow-2: var(--teal);
}

.service-card:nth-child(6) {
    --glow-1: var(--coral);
    --glow-2: var(--amber);
}

.service-card:nth-child(7) {
    --glow-1: var(--purple);
    --glow-2: var(--blue);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: -25%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 25% 25%, var(--glow-1), transparent 45%),
        radial-gradient(circle at 75% 70%, var(--glow-2), transparent 45%),
        radial-gradient(circle at 55% 50%, var(--glow-1), transparent 55%);
    background-size: 180% 180%, 180% 180%, 160% 160%;
    background-position: 0% 0%, 100% 100%, 50% 50%;
    filter: blur(32px) saturate(180%) brightness(1.1);
    transition: opacity .55s ease;
    animation: serviceLavaLamp 9s ease-in-out infinite;
    animation-play-state: paused;
    will-change: background-position, transform;
}

.service-card:hover::after {
    opacity: .55;
    animation-play-state: running;
}

.service-card--soon::after {
    display: none;
}

@keyframes serviceLavaLamp {
    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
        transform: scale(1);
    }

    25% {
        background-position: 65% 20%, 30% 80%, 70% 40%;
        transform: scale(1.04);
    }

    50% {
        background-position: 80% 60%, 10% 40%, 30% 70%;
        transform: scale(0.98);
    }

    75% {
        background-position: 30% 75%, 70% 30%, 60% 20%;
        transform: scale(1.03);
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card::after {
        animation: none;
        transition: none;
    }
}

/* ---------- Lead Form - form-focused layout ---------- */
.lead {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.lead::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90vw);
    height: 520px;
    background: radial-gradient(ellipse at center, rgba(125, 212, 232, .14), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

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

.lead__head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.lead__crumbs {
    justify-content: center;
    margin-bottom: 20px;
}

.lead__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.lead__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.6vw, 3.2rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
    margin-bottom: 20px;
    font-feature-settings: "ss01";
}

.lead__headline em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
}

.lead__intro {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

.lead__meta {
    display: grid;
    gap: 18px;
    margin-top: 40px;
    padding: 28px;
    border: 1px dashed var(--border-highlight);
    border-radius: var(--radius);
    background: var(--bg-elevated);
}

.lead__meta--strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 48px auto 0;
    padding: 22px 24px;
    background: rgba(125, 212, 232, .02);
}

.lead__meta-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.lead__meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    display: grid;
    place-items: center;
    color: var(--cyan);
    border: 1px solid var(--border-highlight);
    flex-shrink: 0;
}

.lead__meta-icon svg {
    width: 18px;
    height: 18px;
}

.lead__meta-label {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 3px;
}

.lead__meta-value {
    color: var(--text);
    font-size: .85rem;
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.lead__meta-value a {
    color: var(--text);
    border-bottom: 1px solid var(--border-highlight);
    transition: color .2s, border-color .2s;
}

.lead__meta-value a:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

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

@media (max-width: 520px) {
    .lead__meta--strip {
        grid-template-columns: 1fr;
    }
}

.form {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 44px);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
}

.form--focus {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.form--focus::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    padding: 1px;
    background: linear-gradient(140deg, rgba(125, 212, 232, .32), transparent 45%, transparent 60%, rgba(163, 155, 255, .22));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form__header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.form__title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: -.02em;
    margin-bottom: 6px;
    font-feature-settings: "ss01";
}

.form__subtitle {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form__hint {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.form__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(46, 191, 145, .3);
    background: rgba(46, 191, 145, .08);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6fe0b8;
    white-space: nowrap;
}

.form__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6fe0b8;
    box-shadow: 0 0 10px #6fe0b8;
    animation: dotPulse 2s ease-in-out infinite;
}

.form__footnote {
    margin-top: 14px;
    text-align: center;
    font-size: .78rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
    letter-spacing: .04em;
}

.form__error--global,
.calc__lead-error--global {
    margin-top: 10px;
    text-align: center;
    color: var(--coral);
    background: rgba(232, 90, 90, .08);
    border: 1px solid rgba(232, 90, 90, .28);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: .78rem;
    line-height: 1.45;
    letter-spacing: .02em;
}

.form__error--global:empty,
.calc__lead-error--global:empty {
    display: none;
}

.form__recaptcha-note,
.calc__recaptcha-note {
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--text-dim);
    line-height: 1.55;
    text-align: center;
    letter-spacing: .02em;
}

.calc__recaptcha-note {
    margin-top: 10px;
    text-align: left;
}

.form__recaptcha-note a,
.calc__recaptcha-note a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form__recaptcha-note a:hover,
.calc__recaptcha-note a:hover {
    color: var(--text);
}

.form__consents {
    margin: 8px 0 22px;
    padding: 18px 18px 4px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form__group {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__label {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    gap: 6px;
}

.form__label[data-required]::after {
    content: "*";
    color: var(--coral);
}

.form__label--legend {
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.form__label-hint {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 400;
    margin-left: auto;
}

/* Multi-select chips */
.form__chips {
    border: 0;
    padding: 0;
    margin: 0 0 20px;
}

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

/* Stretch to full width when fewer than 3 chips are present */
.form__chips-grid:has(> .form__chip:nth-last-child(2):first-child) {
    grid-template-columns: repeat(2, 1fr);
}

.form__chips-grid:has(> .form__chip:only-child) {
    grid-template-columns: 1fr;
}

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

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

.form__chip {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
}

.form__chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.form__chip span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    min-height: 46px;
    text-align: center;
    border: 1px solid var(--border-highlight);
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s, border-color .2s, background .2s, transform .2s;
    position: relative;
}

.form__chip span::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--border-highlight);
    border-radius: 4px;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}

.form__chip:hover span {
    color: var(--text);
    border-color: rgba(125, 212, 232, .4);
    transform: translateY(-1px);
}

.form__chip input:checked ~ span {
    color: var(--text);
    border-color: var(--cyan);
    background: rgba(125, 212, 232, .1);
    box-shadow: 0 0 0 1px var(--cyan) inset;
}

.form__chip input:checked ~ span::before {
    background: var(--cyan);
    border-color: var(--cyan);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%230B0D10' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M2.5 6.2L5 8.7l4.5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.form__chip input:focus-visible ~ span {
    box-shadow: 0 0 0 3px rgba(125, 212, 232, .3);
}

.form__chips-grid > .form__chip--ghost {
    grid-column: 1 / -1;
}

.form__chip--ghost span {
    border-style: dashed;
    font-style: italic;
    color: var(--text-dim);
}

.form__chip-tag {
    font-style: normal;
    padding: 2px 6px;
    background: rgba(251, 146, 94, .12);
    border: 1px solid rgba(251, 146, 94, .35);
    color: var(--coral);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .55rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 4px;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: .98rem;
    color: var(--text);
    background: var(--bg-elevated);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: border-color .25s, background .25s, box-shadow .25s;
    outline: none;
}

.form__textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.55;
}

.form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%239AA4B8' stroke-width='1.6'><path d='M3 5l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--cyan);
    background: rgba(125, 212, 232, .04);
    box-shadow: 0 0 0 4px rgba(125, 212, 232, .12);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-dim);
}

.form__checkbox {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: flex-start;
    font-size: .84rem;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: 20px;
    line-height: 1.55;
}

.form__checkbox input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-highlight);
    border-radius: 4px;
    background: var(--bg-elevated);
    cursor: pointer;
    position: relative;
    margin-top: 2px;
}

.form__checkbox input:checked {
    background: var(--cyan);
    border-color: var(--cyan);
}

.form__checkbox input:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-body);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form__checkbox a {
    color: var(--cyan);
    border-bottom: 1px solid currentColor;
}

.form__error {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--coral);
    min-height: 14px;
    letter-spacing: .02em;
}

.form__submit {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 1rem;
}

.form__success {
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(46, 191, 145, .3);
    background: rgba(46, 191, 145, .06);
    border-radius: var(--radius);
    color: var(--text);
    display: none;
}

.form__success.is-visible {
    display: block;
}

.form.is-submitted .form__fields {
    display: none;
}

/* ---------- Service hero (subpages) ---------- */
.service-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.service-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 60% at 10% 30%, rgba(59, 90, 224, .18), transparent 65%),
        radial-gradient(40% 50% at 90% 70%, rgba(46, 191, 145, .14), transparent 65%);
    z-index: -1;
}

.service-hero__crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.service-hero__crumbs a {
    color: var(--text-muted);
    transition: color .2s;
}

.service-hero__crumbs a:hover {
    color: var(--cyan);
}

.service-hero__crumbs-sep {
    opacity: .4;
}

.service-hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(125, 212, 232, .07);
    border: 1px solid rgba(125, 212, 232, .22);
    padding: 8px 16px 8px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.service-hero__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.service-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.03em;
    margin-bottom: 22px;
    font-feature-settings: "ss01";
}

.service-hero__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
}

.service-hero__desc {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.service-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.service-hero__desc strong {
    color: var(--text);
    font-weight: 600;
}

.service-hero__note {
    display: inline-block;
    padding: 10px 16px;
    margin-bottom: 24px;
    border: 1px dashed rgba(251, 146, 94, .4);
    background: rgba(251, 146, 94, .06);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.5;
}

.service-hero__note strong {
    color: var(--coral);
    font-weight: 600;
}

.service-hero__badge--beta {
    background: rgba(251, 146, 94, .08);
    border-color: rgba(251, 146, 94, .3);
    color: var(--coral);
    gap: 12px;
}

.service-hero__badge--beta::before {
    background: var(--coral);
    box-shadow: 0 0 10px var(--coral);
}

.service-hero__badge-tag {
    padding: 2px 8px;
    background: var(--coral);
    color: var(--bg-body);
    border-radius: 999px;
    font-size: .58rem;
    letter-spacing: .16em;
    font-weight: 700;
}

.service-hero__stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed var(--border);
    align-items: center;
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .06em;
}

.service-hero__stack-label {
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .66rem;
    margin-right: 4px;
}

.service-hero__stack span:not(.service-hero__stack-label) {
    padding: 6px 11px;
    border: 1px solid var(--border-highlight);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-muted);
    transition: color .2s, border-color .2s;
}

.service-hero__stack span:not(.service-hero__stack-label):hover {
    color: var(--text);
    border-color: rgba(125, 212, 232, .4);
}

.service-hero__figure {
    display: grid;
    place-items: center;
}

.service-hero__figure img {
    width: 100%;
    max-width: 520px;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 32px 60px rgba(0, 0, 0, .5));
}

/* ---------- Feature rows (service subpages) ---------- */
.feature-strip {
    padding: 80px 0;
}

.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-strip__grid--wide {
    grid-template-columns: repeat(3, 1fr);
}

.feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color .3s, transform .3s;
}

.feature:hover {
    border-color: var(--border-highlight);
    transform: translateY(-3px);
}

.feature__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(125, 212, 232, .1);
    color: var(--cyan);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.feature__icon svg {
    width: 20px;
    height: 20px;
}

.feature__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -.01em;
    margin-bottom: 8px;
    font-feature-settings: "ss01";
}

.feature__desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Process list (service subpages) ---------- */
.process {
    padding: 80px 0;
}

.process__list {
    display: grid;
    gap: 0;
    max-width: 920px;
    margin: 48px auto 0;
    border-top: 1px solid var(--border);
}

.process__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 36px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.process__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    font-style: italic;
    color: var(--cyan);
    letter-spacing: -.02em;
    font-feature-settings: "ss01";
}

.process__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -.015em;
    margin-bottom: 6px;
    font-feature-settings: "ss01";
}

.process__desc {
    color: var(--text-muted);
    font-size: .98rem;
    line-height: 1.65;
}

.process__guarantee {
    margin-top: 48px;
    padding: 18px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: .92rem;
    font-weight: 500;
    text-align: center;
}

/* ---------- Navbar v2 (links overrides, dropdown-ready) ---------- */
.navbar__links li.has-sub {
    position: relative;
}

.navbar__submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: rgba(14, 20, 32, .96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    padding: 14px;
    display: grid;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s var(--ease), transform .22s var(--ease);
    transition-delay: .12s;
    box-shadow: var(--shadow-lg);
    z-index: 50;
}

/* Invisible hover-bridge - closes the dead zone between trigger and submenu */
.navbar__submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
    background: transparent;
}

.navbar__links li.has-sub:hover .navbar__submenu,
.navbar__links li.has-sub:focus-within .navbar__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

/* Also extend the clickable hit area below the trigger anchor so the first 14px of gap stays "hovered" */
.navbar__links li.has-sub > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
    background: transparent;
}

.navbar__links li.has-sub > a {
    position: relative;
}

.navbar__submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    font-size: .86rem;
    color: var(--text-muted);
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.navbar__submenu a:hover {
    background: var(--bg-elevated);
    color: var(--text);
}

.navbar__submenu-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--cyan);
    opacity: .6;
}

.navbar__submenu-tag {
    margin-left: auto;
    padding: 2px 7px;
    background: rgba(251, 146, 94, .12);
    border: 1px solid rgba(251, 146, 94, .35);
    color: var(--coral);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .55rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: none;
}

/* Tighten navbar logo */
.navbar__logo-icon {
    height: 64px;
    width: 64px;
}

/* ==================================================================
   END NEW COMPONENTS
   ================================================================== */

/* ==================================================================
   NAVBAR MEGA-MENU & RESOURCES DROPDOWN
   ================================================================== */

.navbar__caret {
    display: inline-block;
    margin-left: 4px;
    font-size: .7em;
    opacity: .7;
    transition: transform .25s var(--ease);
}

.navbar__links li.has-sub:hover > a .navbar__caret {
    transform: rotate(180deg);
    opacity: 1;
}

/* MEGA-MENU (Services) */
.navbar__mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(880px, 92vw);
    background: rgba(12, 16, 26, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    padding: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .26s var(--ease);
    transition-delay: .12s;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(125, 212, 232, .06) inset;
    z-index: 50;
}

/* Invisible hover-bridge - closes the dead zone between trigger and mega-menu */
.navbar__mega::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
    background: transparent;
}

.navbar__links li.has-mega:hover .navbar__mega,
.navbar__links li.has-mega:focus-within .navbar__mega {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

/* Extend trigger hit-area into the gap so hover is not lost mid-move */
.navbar__links li.has-mega > a {
    position: relative;
}

.navbar__links li.has-mega > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
    background: transparent;
}

.navbar__mega-header {
    padding: 0 6px 14px;
    border-bottom: 1px solid var(--border-highlight);
    margin-bottom: 14px;
}

.navbar__mega-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 4px;
}

.navbar__mega-tag {
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0;
}

.navbar__mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.navbar__mega-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 10px;
    transition: background .22s var(--ease), transform .22s var(--ease);
    color: var(--text-muted);
    text-decoration: none;
}

.navbar__mega-item:hover {
    background: rgba(125, 212, 232, .06);
    color: var(--text);
    transform: translateY(-1px);
}

.navbar__mega-item h5 {
    margin: 0 0 4px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -.005em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar__mega-item p {
    margin: 0;
    font-size: .78rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.navbar__mega-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(125, 212, 232, .14), rgba(59, 90, 224, .1));
    border: 1px solid rgba(125, 212, 232, .25);
    color: var(--cyan);
    flex: none;
}

.navbar__mega-ico svg {
    width: 20px;
    height: 20px;
}

.navbar__mega-tag-beta {
    display: inline-block;
    padding: 1px 7px;
    background: rgba(251, 146, 94, .12);
    border: 1px solid rgba(251, 146, 94, .35);
    color: var(--coral);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .52rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar__mega-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid var(--border-highlight);
}

.navbar__mega-footer-link {
    font-size: .84rem;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
}

.navbar__mega-footer-cta {
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(125, 212, 232, .2), rgba(59, 90, 224, .22));
    border: 1px solid rgba(125, 212, 232, .5);
    color: var(--text);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s var(--ease), transform .2s var(--ease);
}

.navbar__mega-footer-cta:hover {
    background: linear-gradient(135deg, rgba(125, 212, 232, .3), rgba(59, 90, 224, .3));
    transform: translateY(-1px);
}

/* RESOURCES submenu (variant) */
.navbar__submenu--resources {
    width: 360px;
    padding: 12px;
    display: block;
}

.navbar__submenu--resources a {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 10px;
}

.navbar__submenu--resources a + a {
    margin-top: 2px;
}

.navbar__submenu--resources h5 {
    margin: 0 0 3px;
    font-size: .88rem;
    color: var(--text);
    font-weight: 600;
    letter-spacing: -.005em;
}

.navbar__submenu--resources p {
    margin: 0;
    font-size: .74rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.navbar__submenu-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(125, 212, 232, .14), rgba(59, 90, 224, .1));
    border: 1px solid rgba(125, 212, 232, .25);
    color: var(--cyan);
    flex: none;
}

.navbar__submenu-ico svg {
    width: 18px;
    height: 18px;
}

/* ==================================================================
   HOMEPAGE: COVERAGE SECTION
   ================================================================== */

.coverage {
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(59, 90, 224, 0.08), transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(125, 212, 232, 0.05), transparent 70%);
}

.coverage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 212, 232, .3), transparent);
}

.coverage__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(125, 212, 232, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(125, 212, 232, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 90%);
    opacity: .4;
}

.coverage__header {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.coverage__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px;
    padding: 6px 14px;
    background: rgba(125, 212, 232, .06);
    border: 1px solid rgba(125, 212, 232, .2);
    border-radius: 999px;
}

.coverage__title {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    letter-spacing: -.02em;
    line-height: 1.08;
    margin: 0 0 22px;
}

.coverage__desc {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- WORLD MAP ---------- */
/* ---------- STATS + REGION CHIPS ---------- */
.coverage__data {
    max-width: 1140px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.coverage__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 28px;
    background: linear-gradient(145deg, rgba(125, 212, 232, .04), rgba(59, 90, 224, .03));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    overflow: hidden;
}

.coverage__stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 26px 24px;
    position: relative;
}

.coverage__stat+.coverage__stat {
    border-left: 1px solid var(--border-highlight);
}

.coverage__num-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.coverage__num {
    font-family: var(--font-body);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text);
    line-height: 1;
    background: linear-gradient(135deg, var(--text) 30%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.coverage__num--text {
    letter-spacing: -.01em;
    font-size: 2.3rem;
}

.coverage__plus {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cyan);
    margin-left: 2px;
    -webkit-text-fill-color: var(--cyan);
}

.coverage__stat-label {
    font-size: .82rem;
    color: var(--text);
    font-weight: 600;
    margin-top: 4px;
}

.coverage__note {
    font-size: .72rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.coverage__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}

.coverage__chips li {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--border-highlight);
    border-radius: 999px;
    color: var(--text-muted);
    transition: border-color .25s, color .25s, background .25s;
}

.coverage__chips li:hover {
    border-color: rgba(125, 212, 232, .45);
    color: var(--cyan);
    background: rgba(125, 212, 232, .06);
}

/* ---------- LANGUAGES MARQUEE ---------- */
.coverage__langs-wrap {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    background: rgba(12, 16, 26, .85);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.coverage__langs-label {
    padding: 10px 20px;
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    border-bottom: 1px solid var(--border-highlight);
    background: rgba(125, 212, 232, .04);
}

.coverage__marquee {
    display: flex;
    padding: 18px 0;
    overflow: hidden;
    gap: 0;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.coverage__marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    padding-right: 18px;
    animation: coverageMarquee 45s linear infinite;
    white-space: nowrap;
}

.coverage__marquee-track span {
    font-size: 1.05rem;
    color: var(--text);
    font-family: var(--font-body);
    letter-spacing: .005em;
    font-weight: 500;
}

.coverage__lang-dot {
    width: 4px !important;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: .5;
}

@keyframes coverageMarquee {
    to {
        transform: translateX(-100%);
    }
}

/* ==================================================================
   FOOTER: PAYMENTS STRIP
   ================================================================== */

.footer__payments {
    margin: 28px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 14px;
    font-size: .76rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.footer__payments-label {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.footer__payments-items {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 10px;
}

.footer__payment {
    color: var(--text-muted);
    letter-spacing: .01em;
}

.footer__payment em {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    color: var(--text-dim);
    margin-left: 4px;
}

.footer__payment-sep {
    color: var(--border-highlight);
    user-select: none;
}

/* ==================================================================
   CONTACT: LANGUAGES STRIP
   ================================================================== */

.lead__langs-line {
    margin: 22px auto 0;
    padding: 0;
    max-width: 640px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 6px 12px;
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.lead__langs-label {
    font-family: var(--font-mono);
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.lead__langs-items {
    color: var(--text);
    font-weight: 500;
    letter-spacing: .01em;
}

.lead__langs-more {
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: .72rem;
}

/* ==================================================================
   LEGAL / NDA PAGE
   ================================================================== */

.legal-hero {
    padding: 140px 0 80px;
    position: relative;
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(125, 212, 232, .12), transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(59, 90, 224, .1), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.breadcrumb {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color .25s;
}

.breadcrumb a:hover,
.breadcrumb a[aria-current="page"] {
    color: var(--cyan);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--text-muted);
    opacity: .4;
}

.legal-hero__inner {
    max-width: 880px;
}

.legal-hero__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 6px 14px;
    background: rgba(125, 212, 232, .08);
    border: 1px solid rgba(125, 212, 232, .3);
    border-radius: 999px;
    margin-bottom: 28px;
}

.legal-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 26px;
    color: var(--text);
}

.legal-hero__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.legal-hero__desc {
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 0 34px;
}

.legal-hero__assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    padding: 0;
    margin: 0 0 32px;
    list-style: none;
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .04em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.legal-hero__assurances li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-hero__tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(125, 212, 232, .14);
    border: 1px solid rgba(125, 212, 232, .4);
    color: var(--cyan);
    font-size: .72rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.legal-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Section header shared */
.section__header {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.section__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}

/* NDA PILLARS */
.nda-pillars {
    padding: 80px 0;
}

.nda-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nda-pillar {
    position: relative;
    padding: 28px 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .03), rgba(125, 212, 232, .02));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    transition: border-color .3s, transform .3s;
}

.nda-pillar:hover {
    border-color: rgba(125, 212, 232, .35);
    transform: translateY(-2px);
}

.nda-pillar__num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .8rem;
    color: var(--cyan);
    letter-spacing: .12em;
    margin-bottom: 16px;
}

.nda-pillar__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: -.01em;
}

.nda-pillar__desc {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0;
}

/* ANON BAND */
.anon-band {
    padding: 80px 0;
}

.anon-band__inner {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 60px 54px;
    background: linear-gradient(145deg, rgba(11, 15, 26, .9), rgba(20, 30, 50, .8));
    border: 1px solid rgba(125, 212, 232, .25);
    border-radius: var(--radius-lg, 24px);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.anon-band__art {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 280px;
    margin: 0 auto;
}

.anon-band__ring,
.anon-band__ring--1,
.anon-band__ring--2,
.anon-band__ring--3 {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(125, 212, 232, .18);
    border-radius: 50%;
    animation: anonPulse 4s ease-in-out infinite;
}

.anon-band__ring--1 {
    inset: 0;
}

.anon-band__ring--2 {
    inset: 14%;
    animation-delay: .8s;
    border-color: rgba(125, 212, 232, .25);
}

.anon-band__ring--3 {
    inset: 28%;
    animation-delay: 1.6s;
    border-color: rgba(125, 212, 232, .35);
}

@keyframes anonPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.anon-band__seal {
    position: absolute;
    inset: 38%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    background: radial-gradient(circle, rgba(125, 212, 232, .15), rgba(125, 212, 232, 0) 70%);
    border-radius: 50%;
}

.anon-band__seal svg {
    width: 60%;
    height: 60%;
    filter: drop-shadow(0 0 12px var(--cyan));
}

.anon-band__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}

.anon-band__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    letter-spacing: -.015em;
    line-height: 1.15;
    margin: 0 0 16px;
}

.anon-band__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 28px;
}

.anon-band__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.anon-band__stat {
    padding: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border-highlight);
    border-radius: 12px;
    text-align: center;
}

.anon-band__num {
    display: block;
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 6px;
}

.anon-band__label {
    display: block;
    font-size: .72rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* NDA FLOW */
.nda-flow {
    padding: 80px 0;
}

.nda-flow__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: nda-step;
}

.nda-flow__step {
    position: relative;
    padding: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .03), rgba(125, 212, 232, .02));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
}

.nda-flow__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 212, 232, .18), rgba(59, 90, 224, .18));
    border: 1px solid rgba(125, 212, 232, .5);
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.nda-flow__title {
    font-size: 1.02rem;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: -.005em;
}

.nda-flow__desc {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}

/* NDA SPECS */
.nda-specs {
    padding: 80px 0;
}

.nda-specs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nda-spec {
    padding: 22px 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .03), rgba(125, 212, 232, .02));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
}

.nda-spec__term {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin: 0 0 12px;
    padding: 4px 10px;
    background: rgba(125, 212, 232, .08);
    border: 1px solid rgba(125, 212, 232, .28);
    border-radius: 999px;
    font-weight: 600;
}

.nda-spec__def {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0;
}

/* NDA FAQ */
.nda-faq {
    padding: 80px 0 60px;
}

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

.faq-hero {
    padding: 140px 0 40px;
    position: relative;
}

.faq-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(125, 212, 232, .1), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 90, 224, .08), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.faq-hero__inner {
    max-width: 880px;
}

.faq-hero__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 6px 14px;
    background: rgba(125, 212, 232, .08);
    border: 1px solid rgba(125, 212, 232, .3);
    border-radius: 999px;
    margin-bottom: 28px;
}

.faq-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.06;
    letter-spacing: -.02em;
    margin: 0 0 22px;
}

.faq-hero__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.faq-hero__desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 0 32px;
}

.faq-hero__search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(12, 16, 26, .6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-highlight);
    border-radius: 999px;
    max-width: 560px;
    transition: border-color .25s;
}

.faq-hero__search:focus-within {
    border-color: rgba(125, 212, 232, .6);
    box-shadow: 0 0 0 3px rgba(125, 212, 232, .12);
}

.faq-hero__search svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex: none;
}

.faq-hero__search input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: .95rem;
    font-family: var(--font-body);
    outline: none;
}

.faq-hero__search input::placeholder {
    color: var(--text-muted);
}

.faq-hero__search-hint {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 4px 10px;
    background: rgba(125, 212, 232, .08);
    border: 1px solid rgba(125, 212, 232, .28);
    border-radius: 999px;
}

/* FAQ TABS */
.faq-page {
    padding: 40px 0 80px;
}

/* Two-column layout: sticky category sidebar + scrolling content */
.faq-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 48px;
    align-items: flex-start;
}

.faq-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(125, 212, 232, .25) transparent;
}

.faq-sidebar::-webkit-scrollbar {
    width: 6px;
}

.faq-sidebar::-webkit-scrollbar-thumb {
    background: rgba(125, 212, 232, .2);
    border-radius: 999px;
}

.faq-sidebar__inner {
    background: rgba(12, 16, 26, .55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    padding: 18px 14px;
}

.faq-sidebar__eyebrow {
    display: block;
    margin: 0 8px 10px;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.faq-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}

.faq-tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .04);
}

.faq-tab.is-active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(125, 212, 232, .18), rgba(59, 90, 224, .15));
    border-color: rgba(125, 212, 232, .35);
    box-shadow: 0 4px 18px rgba(125, 212, 232, .12);
}

.faq-tab__num {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--cyan);
    letter-spacing: .1em;
    flex-shrink: 0;
}

.faq-tab.is-active .faq-tab__num {
    color: var(--text);
}

.faq-tab__label {
    flex: 1 1 auto;
    text-align: left;
}

.faq-tab__count {
    font-family: var(--font-mono);
    font-size: .68rem;
    padding: 2px 7px;
    background: rgba(255, 255, 255, .06);
    border-radius: 999px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-tab.is-active .faq-tab__count {
    background: rgba(125, 212, 232, .2);
    color: var(--text);
}

/* FAQ content column: all panels are always visible */
.faq-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.faq-panel {
    display: block;
    scroll-margin-top: 100px;
}

/* When a search is active, sections with no matches collapse out */
body.faq-searching .faq-panel.faq-panel--no-matches {
    display: none;
}

.faq-panel__header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-highlight);
}

.faq-panel__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -.015em;
    margin: 0 0 8px;
}

.faq-panel__subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ still */
.faq-still {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(125, 212, 232, .06), rgba(59, 90, 224, .05));
    border: 1px solid rgba(125, 212, 232, .3);
    border-radius: var(--radius);
    text-align: center;
}

.faq-still__inner {
    max-width: 640px;
    margin: 0 auto;
}

.faq-still__title {
    font-size: 1.6rem;
    letter-spacing: -.01em;
    margin: 0 0 12px;
}

.faq-still__desc {
    color: var(--text-muted);
    font-size: .98rem;
    line-height: 1.65;
    margin: 0 0 26px;
}

.faq-still__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==================================================================
   RESPONSIVE: new components
   ================================================================== */

@media (max-width: 960px) {
    /* FAQ: stack sidebar above the content */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-sidebar {
        position: sticky;
        top: 80px;
        z-index: 20;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .faq-sidebar__inner {
        padding: 12px;
    }

    .faq-sidebar__eyebrow {
        margin-bottom: 8px;
    }

    .faq-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(125, 212, 232, .3) transparent;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .faq-nav::-webkit-scrollbar {
        height: 4px;
    }

    .faq-nav::-webkit-scrollbar-thumb {
        background: rgba(125, 212, 232, .25);
        border-radius: 999px;
    }

    .faq-nav .faq-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .faq-content {
        gap: 40px;
    }

    .coverage {
        padding: 80px 0 100px;
    }

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

    .coverage__stat+.coverage__stat {
        border-left: none;
    }

    .coverage__stat:nth-child(n+3) {
        border-top: 1px solid var(--border-highlight);
    }

    .coverage__stat:nth-child(2n) {
        border-left: 1px solid var(--border-highlight);
    }

    .coverage__marquee-track span {
        font-size: .9rem;
    }

    .nda-pillars__grid,
    .nda-specs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nda-flow__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .anon-band__inner {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

}

@media (max-width: 680px) {
    .navbar__mega {
        width: calc(100vw - 24px);
    }

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

    .navbar__mega-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .nda-pillars__grid,
    .nda-specs__grid,
    .nda-flow__steps {
        grid-template-columns: 1fr;
    }

    .anon-band__stats {
        grid-template-columns: 1fr;
    }

    .faq-tab {
        padding: 8px 12px;
        font-size: .78rem;
    }

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

    .coverage__stat:nth-child(n+2) {
        border-left: none;
        border-top: 1px solid var(--border-highlight);
    }

    .coverage__header {
        margin-bottom: 40px;
    }

    .coverage__title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__desc {
        margin: 0 auto 36px;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__visual {
        justify-self: center;
        max-width: 560px;
        margin: 0 auto;
    }

    .services-overview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        min-height: 0;
    }

    .services-overview__grid>.services-tile {
        grid-column: auto;
        height: auto;
        min-height: 0;
    }
}

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

    .navbar__links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(340px, 88vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(11, 15, 26, .96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 88px 28px 32px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        border-left: 1px solid var(--border);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar__links.open {
        transform: translateX(0);
    }

    .navbar__toggle {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    /* Hide desktop dropdowns/mega inside mobile drawer */
    .navbar__links li.has-sub > a::after,
    .navbar__submenu::before,
    .navbar__mega::before {
        display: none;
    }

    .navbar__mega,
    .navbar__submenu {
        display: none !important;
    }

    .navbar__caret {
        display: none;
    }

    .navbar__links > li {
        width: 100%;
    }

    .navbar__links > li > a {
        display: block;
        font-size: 1rem;
        padding: 10px 0;
        color: var(--text);
    }

    .navbar__links > li > a.btn {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        padding: 14px 18px;
        font-size: .92rem;
        margin-top: 8px;
    }

    /* ---------- HERO - tablet/mobile tune ---------- */
    .hero {
        padding: 96px 0 56px;
    }

    .hero__inner {
        gap: 36px;
    }

    .hero__title {
        font-size: clamp(2rem, 8.8vw, 2.9rem);
        margin-bottom: 20px;
        letter-spacing: -.025em;
    }

    .hero__desc {
        font-size: 1.02rem;
        line-height: 1.6;
        margin-bottom: 26px;
        max-width: 600px;
    }

    .hero__cta {
        gap: 12px;
        margin-bottom: 22px;
    }

    .hero__assurances {
        justify-content: center;
        gap: 8px 16px;
        font-size: .68rem;
        margin-bottom: 22px;
    }

    .hero__trust {
        justify-content: center;
        gap: 14px;
        font-size: .74rem;
    }

    .hero__visual {
        max-width: 460px;
    }

    .hero__mission-svg {
        max-height: min(460px, 48vh);
    }

    .hero__bg-glow--1 {
        width: 340px;
        height: 340px;
        top: -60px;
        left: -100px;
        filter: blur(90px);
    }

    .hero__bg-glow--2 {
        width: 280px;
        height: 280px;
        filter: blur(90px);
    }

    .footer__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Navbar logo smaller on mobile so toggle has room */
    .navbar__logo-icon {
        height: 70px;
        width: 70px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 84px 0 44px;
    }

    .hero__inner {
        gap: 28px;
    }

    .hero__title {
        font-size: clamp(1.9rem, 9.4vw, 2.25rem);
        margin-bottom: 16px;
        letter-spacing: -.02em;
    }

    .hero__desc {
        font-size: .98rem;
        line-height: 1.58;
        margin-bottom: 22px;
    }

    .hero__cta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 22px;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__assurances {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: .66rem;
        margin-bottom: 20px;
    }

    .hero__assurances li {
        line-height: 1.35;
        text-align: center;
    }

    .hero__trust {
        gap: 12px;
        font-size: .72rem;
    }

    .hero__trust-avatar {
        width: 28px;
        height: 28px;
        font-size: .66rem;
        margin-left: -8px;
    }

    .hero__visual {
        max-width: 320px;
    }

    .hero__mission-svg {
        max-height: 38vh;
    }

    .hero__bg-glow--1 {
        width: 240px;
        height: 240px;
        top: -40px;
        left: -80px;
    }

    .hero__bg-glow--2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -50px;
    }

    .services-overview__grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: none;
        min-height: 0;
    }

    .service-block {
        padding: 28px 22px;
    }
}

/* ========== RESPONSIVE - new components ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento {
        grid-template-columns: repeat(4, 1fr);
    }

    .bento__card--lg {
        grid-column: span 4;
        grid-row: span 1;
    }

    .bento__card--md {
        grid-column: span 2;
    }

    .bento__card--sm {
        grid-column: span 2;
    }

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

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

    .split__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        row-gap: clamp(24px, 3vw, 36px);
    }

    .split__col {
        display: block;
        grid-template-rows: none;
        grid-row: auto;
    }

    .split__col-head {
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .split__list {
        display: grid;
        gap: 16px;
        margin-top: 0;
    }

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

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

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

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

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

    .footer__about {
        grid-column: 1 / -1;
    }
}

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

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

    .bento__card,
    .bento__card--lg,
    .bento__card--md,
    .bento__card--sm {
        grid-column: 1 / -1;
    }

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

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

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

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .process__item {
        grid-template-columns: 64px 1fr;
        gap: 20px;
    }

    .process__num {
        font-size: 2rem;
    }

    .cta-band__inner {
        padding: 48px 28px;
    }
}

@media (max-width: 520px) {
    .feature-strip__grid {
        grid-template-columns: 1fr;
    }

    .marquee__item {
        font-size: 1.2rem;
    }

    .marquee__track {
        gap: 48px;
        padding-right: 48px;
    }

    .stat-card {
        padding: 32px 22px;
    }
}

/* ==================================================================
   CONTACT PAGE · WHY AFILED BLOCK
   ================================================================== */

.why-afiled {
    position: relative;
    padding: 88px 0 24px;
}

.why-afiled::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(125, 212, 232, .06), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(251, 146, 94, .05), transparent 50%);
    z-index: 0;
}

.why-afiled > .container {
    position: relative;
    z-index: 1;
}

.why-afiled__head {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.why-afiled__eyebrow {
    margin-bottom: 16px;
}

.why-afiled__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.why-afiled__lede {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

.why-afiled__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1040px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    padding: 28px 28px 24px;
    background:
        linear-gradient(180deg, rgba(125, 212, 232, .025), rgba(125, 212, 232, .005) 40%, transparent),
        var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 212, 232, .35), transparent);
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.why-card:hover {
    border-color: rgba(125, 212, 232, .35);
    transform: translateY(-3px);
    background:
        linear-gradient(180deg, rgba(125, 212, 232, .05), rgba(125, 212, 232, .01) 40%, transparent),
        var(--bg-card);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(125, 212, 232, .08);
    border: 1px solid rgba(125, 212, 232, .18);
    color: var(--cyan);
    margin-bottom: 18px;
}

.why-card__icon svg {
    width: 22px;
    height: 22px;
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -.01em;
    color: var(--text);
    margin: 0 0 10px;
}

.why-card__desc {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0 0 18px;
}

.why-card__meta {
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
    border-top: 1px dashed var(--border-highlight);
    display: grid;
    gap: 6px;
}

.why-card__meta li {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .02em;
    color: var(--text-dim);
    padding-left: 14px;
    position: relative;
}

.why-card__meta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    opacity: .45;
    box-shadow: 0 0 6px rgba(125, 212, 232, .5);
}

.why-afiled__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1040px;
    margin: 28px auto 0;
    padding: 22px 24px;
    background: rgba(125, 212, 232, .03);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    text-align: center;
}

.why-afiled__strip-item {
    padding: 6px 12px;
    border-left: 1px solid var(--border-highlight);
}

.why-afiled__strip-item:first-child {
    border-left: none;
}

.why-afiled__stat {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    color: var(--text);
    letter-spacing: -.02em;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--text) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-afiled__stat-label {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .why-afiled {
        padding: 64px 0 16px;
    }

    .why-afiled__grid {
        grid-template-columns: 1fr;
    }

    .why-afiled__strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .why-afiled__strip-item:nth-child(3) {
        border-left: none;
    }
}

@media (max-width: 520px) {
    .why-afiled__strip {
        grid-template-columns: 1fr;
        padding: 20px 18px;
    }

    .why-afiled__strip-item {
        border-left: none;
        border-top: 1px solid var(--border-highlight);
        padding: 16px 0;
    }

    .why-afiled__strip-item:first-child {
        border-top: none;
        padding-top: 0;
    }

    .why-card {
        padding: 24px 22px 20px;
    }

    .why-card__title {
        font-size: 1.25rem;
    }
}

/* =================================================================
 * PRICING PAGE + INTERACTIVE CALCULATOR
 * ================================================================= */

.pricing-hero {
    padding: clamp(90px, 12vw, 150px) 0 clamp(40px, 6vw, 70px);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(90% 60% at 15% 0%, rgba(59, 90, 224, .14) 0%, transparent 60%),
        radial-gradient(70% 45% at 90% 10%, rgba(46, 191, 145, .08) 0%, transparent 65%),
        var(--bg-body);
}

.pricing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 80%);
    pointer-events: none;
}

.pricing-hero .container {
    position: relative;
    z-index: 1;
}

.pricing-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.pricing-hero__title {
    font-family: var(--font-sans-display);
    font-size: clamp(2.6rem, 6.2vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    font-weight: 600;
    color: var(--text);
    max-width: 880px;
}

.pricing-hero__title em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    color: var(--cyan);
    letter-spacing: -.02em;
}

.pricing-hero__lede {
    margin-top: 22px;
    max-width: 720px;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.65;
}

.pricing-hero__chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.pricing-hero__chips li {
    padding: 8px 14px;
    border: 1px solid var(--border-highlight);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--text-muted);
    background: var(--bg-elevated);
    letter-spacing: .02em;
}

/* ------ Calculator wrap ------ */
.calc {
    padding: clamp(40px, 6vw, 70px) 0 clamp(70px, 10vw, 120px);
    background: var(--bg-body);
    position: relative;
}

.calc__term {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.calc__term-label {
    font-family: var(--font-mono);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}

.calc__term-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    flex: 1;
    max-width: 720px;
}

.calc__term-opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc__term-opt-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid var(--border-highlight);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
    background: transparent;
}

.calc__term-opt:hover .calc__term-opt-inner {
    border-color: var(--border-strong);
    background: var(--bg-elevated);
}

.calc__term-opt input:checked+.calc__term-opt-inner {
    border-color: rgba(125, 212, 232, .55);
    background: rgba(125, 212, 232, .08);
    box-shadow: 0 0 0 1px rgba(125, 212, 232, .3) inset;
}

.calc__term-months {
    font-weight: 600;
    color: var(--text);
    font-size: .95rem;
    letter-spacing: -.01em;
}

.calc__term-badge {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .05em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.calc__term-opt input:checked+.calc__term-opt-inner .calc__term-badge {
    color: var(--cyan);
}

.calc__term-badge--accent {
    color: var(--teal) !important;
}

/* ------ Grid layout ------ */
.calc__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: flex-start;
}

.calc__services {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

/* ------ Service card ------ */
.calc__service {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.calc__service.is-active {
    border-color: rgba(125, 212, 232, .4);
    box-shadow:
        0 0 0 1px rgba(125, 212, 232, .15) inset,
        0 12px 40px rgba(0, 0, 0, .25);
}

.calc__service-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.calc__service-head:hover {
    background: rgba(255, 255, 255, .02);
}

.calc__service-toggle {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1.5px solid var(--border-strong);
    background: var(--bg-body);
    cursor: pointer;
    position: relative;
    transition: background .2s var(--ease), border-color .2s var(--ease);
    flex-shrink: 0;
    margin: 0;
}

.calc__service-toggle:checked {
    background: var(--cyan);
    border-color: var(--cyan);
}

.calc__service-toggle:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--bg-body);
    clip-path: polygon(15% 50%, 42% 78%, 90% 20%, 82% 14%, 42% 64%, 22% 42%);
}

.calc__service-head-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.calc__service-num {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .15em;
    color: var(--text-dim);
}

.calc__service-title {
    font-family: var(--font-sans-display);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -.015em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.calc__beta {
    font-family: var(--font-mono);
    font-style: normal;
    font-size: .62rem;
    letter-spacing: .12em;
    color: var(--amber);
    background: rgba(246, 199, 104, .1);
    border: 1px solid rgba(246, 199, 104, .3);
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.calc__service-sub {
    font-family: var(--font-mono);
    font-size: .82rem;
    color: var(--text-muted);
    letter-spacing: .01em;
}

.calc__service-price {
    font-family: var(--font-mono);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dim);
    padding: 8px 14px;
    border: 1px solid var(--border-highlight);
    border-radius: 999px;
    white-space: nowrap;
    background: var(--bg-elevated);
    transition: all .2s var(--ease);
}

.calc__service.is-active .calc__service-price {
    color: var(--text);
    border-color: rgba(125, 212, 232, .4);
    background: rgba(125, 212, 232, .08);
}

.calc__service-price--invalid {
    color: var(--coral) !important;
    border-color: rgba(255, 138, 101, .35) !important;
    background: rgba(255, 138, 101, .08) !important;
}

.calc__service-body {
    display: none;
    padding: 8px 26px 26px;
    border-top: 1px solid var(--border);
    animation: calcBodyIn .3s var(--ease);
}

.calc__service.is-active .calc__service-body {
    display: block;
}

@keyframes calcBodyIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

/* ------ Params ------ */
.calc__param+.calc__param {
    margin-top: 22px;
}

.calc__param {
    margin-top: 18px;
}

.calc__param-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.calc__param-hint {
    font-size: .72rem;
    color: var(--text-dim);
    text-transform: none;
    letter-spacing: .02em;
    font-style: italic;
}

.calc__param-value {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--cyan);
}

/* Radio pills */
.calc__radios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.calc__radio {
    position: relative;
    cursor: pointer;
}

.calc__radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc__radio span {
    display: inline-flex;
    padding: 9px 16px;
    border: 1px solid var(--border-highlight);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .82rem;
    color: var(--text-muted);
    background: var(--bg-elevated);
    transition: all .18s var(--ease);
    white-space: nowrap;
}

.calc__radio:hover span {
    color: var(--text);
    border-color: var(--border-strong);
}

.calc__radio input:checked+span {
    color: var(--bg-body);
    background: var(--cyan);
    border-color: var(--cyan);
    font-weight: 600;
}

/* Check cards */
.calc__checks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.calc__check {
    position: relative;
    cursor: pointer;
}

.calc__check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc__check-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border: 1px solid var(--border-highlight);
    border-radius: 12px;
    background: var(--bg-elevated);
    transition: all .2s var(--ease);
    position: relative;
}

.calc__check-body::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid var(--border-strong);
    background: transparent;
    transition: all .2s var(--ease);
}

.calc__check:hover .calc__check-body {
    border-color: var(--border-strong);
}

.calc__check input:checked+.calc__check-body {
    border-color: rgba(125, 212, 232, .5);
    background: rgba(125, 212, 232, .06);
}

.calc__check input:checked+.calc__check-body::before {
    background: var(--cyan);
    border-color: var(--cyan);
}

.calc__check input:checked+.calc__check-body::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 17px;
    width: 10px;
    height: 10px;
    background: var(--bg-body);
    clip-path: polygon(15% 50%, 42% 78%, 90% 20%, 82% 14%, 42% 64%, 22% 42%);
}

.calc__check-body strong {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .92rem;
    color: var(--text);
    padding-right: 28px;
    letter-spacing: -.005em;
}

.calc__check-body em {
    font-family: var(--font-mono);
    font-style: normal;
    font-size: .72rem;
    color: var(--text-muted);
    letter-spacing: .03em;
}

/* Range slider */
.calc__range {
    --range-pct: 25%;
    position: relative;
}

.calc__range input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background:
        linear-gradient(to right,
            var(--cyan) 0%,
            var(--cyan) var(--range-pct),
            rgba(255, 255, 255, .12) var(--range-pct),
            rgba(255, 255, 255, .12) 100%);
    outline: none;
    cursor: pointer;
    margin: 8px 0 6px;
    transition: background .15s linear;
}

.calc__range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--text);
    border: 3px solid var(--cyan);
    cursor: grab;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
    transition: transform .15s var(--ease);
}

.calc__range input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
}

.calc__range input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--text);
    border: 3px solid var(--cyan);
    cursor: grab;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.calc__range-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--text-dim);
    letter-spacing: .05em;
}

/* ------ Summary sidebar ------ */
.calc__sidebar {
    position: sticky;
    top: 96px;
}

.calc__summary {
    background: linear-gradient(180deg, rgba(14, 20, 32, .92) 0%, rgba(7, 9, 15, .92) 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 26px 26px 22px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
}

.calc__summary-head {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}

.calc__summary-eyebrow {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.calc__summary-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 10px var(--teal-glow);
    animation: calcPulse 2s ease-in-out infinite;
}

@keyframes calcPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

.calc__summary-title {
    font-family: var(--font-sans-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -.015em;
    color: var(--text);
    margin-top: 8px;
}

.calc__summary-empty {
    color: var(--text-dim);
    font-size: .88rem;
    padding: 22px 0;
    text-align: center;
    line-height: 1.55;
}

.calc__summary-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc__summary-item {
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
}

.calc__summary-item:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.calc__summary-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.calc__summary-item-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .92rem;
    color: var(--text);
}

.calc__summary-item-price {
    font-family: var(--font-mono);
    font-size: .88rem;
    font-weight: 600;
    color: var(--cyan);
    text-align: right;
    white-space: nowrap;
}

.calc__summary-item-price em {
    font-style: normal;
    font-size: .72rem;
    color: var(--text-muted);
    font-weight: 400;
}

.calc__summary-item-price small {
    display: block;
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--text-dim);
    font-weight: 400;
    margin-top: 2px;
}

.calc__summary-item-parts {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.calc__summary-item-parts li {
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--text-muted);
    padding: 3px 8px;
    background: var(--bg-elevated);
    border-radius: 6px;
    letter-spacing: .02em;
}

.calc__summary-meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc__summary-meta[hidden],
.calc__summary-total[hidden],
.calc__summary-row[hidden],
.calc__mobile-bar[hidden] {
    display: none !important;
}

.calc__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .82rem;
    color: var(--text-muted);
}

.calc__summary-row--discount {
    color: var(--teal);
}

.calc__summary-row em {
    font-style: normal;
    font-size: .7rem;
    color: var(--text-dim);
    margin-left: 6px;
}

.calc__summary-row--discount em {
    color: var(--teal);
    opacity: .7;
}

.calc__summary-total {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-highlight);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc__summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.calc__summary-total-label {
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.calc__summary-total-value {
    font-family: var(--font-sans-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -.01em;
}

.calc__summary-total-value em {
    font-style: normal;
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 400;
}

.calc__summary-total-row--primary .calc__summary-total-label {
    color: var(--text);
}

.calc__summary-total-row--primary .calc__summary-total-value {
    font-size: 1.35rem;
    color: var(--cyan);
}

.calc__summary-total-value--accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.35rem !important;
}

.calc__summary-cta {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 1rem;
    letter-spacing: .01em;
}

.calc__summary-cta.is-disabled,
.calc__summary-cta:disabled {
    opacity: .4;
    pointer-events: none;
}

/* ------ Lead form (inside calc sidebar) ------ */
.calc__lead {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
}

.calc__lead.is-submitted .calc__lead-fields,
.calc__lead.is-submitted .calc__summary-cta {
    display: none;
}

.calc__lead-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc__lead-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calc__lead-label {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.calc__lead-hint {
    font-family: var(--font-mono);
    font-size: .6rem;
    letter-spacing: .04em;
    text-transform: none;
    color: var(--text-dim);
    font-weight: 400;
}

.calc__lead-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    color: var(--text-default);
    font-family: var(--font-mono);
    font-size: .82rem;
    letter-spacing: .01em;
    transition: border-color .15s ease, background .15s ease;
}

.calc__lead-input::placeholder {
    color: var(--text-dim);
    opacity: .7;
}

.calc__lead-input:focus {
    outline: none;
    border-color: rgba(125, 212, 232, .55);
    background: rgba(125, 212, 232, .06);
}

.calc__lead-error {
    min-height: 0;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--coral);
    letter-spacing: .02em;
}

.calc__lead-error:empty {
    display: none;
}

.calc__lead-error--global {
    margin-top: 10px;
    text-align: center;
}

.calc__lead-success {
    margin-top: 8px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(46, 191, 145, .15), rgba(125, 212, 232, .08));
    border: 1px solid rgba(46, 191, 145, .4);
    border-radius: var(--radius-sm);
    color: var(--text-default);
    font-size: .82rem;
    line-height: 1.55;
}

.calc__lead-success strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
    color: rgba(125, 212, 232, .95);
}

.calc__summary-note {
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-dim);
    line-height: 1.55;
    letter-spacing: .01em;
}

.calc__summary-reset {
    margin-top: 10px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .05em;
    cursor: pointer;
    padding: 8px 0;
    transition: color .15s ease;
    width: 100%;
    text-align: center;
}

.calc__summary-reset:hover {
    color: var(--coral);
}

/* ------ Mobile sticky bar ------ */
.calc__mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 9, 15, .95);
    border-top: 1px solid var(--border-highlight);
    padding: 14px 20px;
    z-index: 40;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, .4);
}

.calc__mobile-label {
    display: block;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.calc__mobile-label em {
    font-style: normal;
    color: var(--cyan);
}

.calc__mobile-value {
    display: block;
    font-family: var(--font-sans-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.01em;
}

/* ------ Responsive ------ */
@media (max-width: 1100px) {
    .calc__grid {
        grid-template-columns: 1fr;
    }

    .calc__sidebar {
        position: static;
        order: -1;
    }

    .calc__summary {
        padding: 22px;
    }

    .calc__term-options {
        max-width: none;
    }
}

@media (max-width: 780px) {
    .calc__term {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 18px;
    }

    .calc__term-options {
        width: 100%;
    }

    .calc__term-opt-inner {
        padding: 10px 8px;
    }

    .calc__term-months {
        font-size: .82rem;
    }

    .calc__service-head {
        grid-template-columns: auto 1fr;
        padding: 18px 20px;
        gap: 14px;
    }

    .calc__service-price {
        grid-column: 1 / -1;
        justify-self: stretch;
        text-align: center;
        margin-top: 4px;
    }

    .calc__service-body {
        padding: 6px 20px 22px;
    }

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

    .calc__mobile-bar {
        display: flex;
    }

    .calc {
        padding-bottom: 120px;
    }
}

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

    .calc__summary {
        border-radius: var(--radius);
    }

    .calc__radio span {
        padding: 8px 12px;
        font-size: .76rem;
    }
}

/* ----- Calculator intro strip (per-service-term mode) ----- */
.calc__intro {
    background: linear-gradient(135deg,
            rgba(125, 212, 232, .06),
            rgba(155, 114, 207, .04));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.calc__intro-label {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    flex: none;
    padding: 4px 10px;
    border: 1px solid rgba(125, 212, 232, .35);
    border-radius: 999px;
    background: rgba(125, 212, 232, .08);
}

.calc__intro-text {
    font-size: .92rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
    min-width: 240px;
}

.calc__intro-text strong {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 540px) {
    .calc__intro {
        padding: 16px 18px;
    }
    .calc__intro-text {
        font-size: .86rem;
    }
}

/* ----- Per-service term radios (compact pill with badge) ----- */
.calc__radios--term {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.calc__radio--term span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 9px 8px;
    border-radius: 12px;
    line-height: 1.1;
    width: 100%;
}

.calc__radio--term span em {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: .64rem;
    letter-spacing: .06em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.calc__radio--term input:checked+span em {
    color: rgba(10, 13, 18, .7);
}

@media (max-width: 540px) {
    .calc__radios--term {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .calc__radio--term span {
        padding: 8px 4px;
        font-size: .74rem !important;
    }
    .calc__radio--term span em {
        font-size: .58rem;
    }
}

/* ----- Nested social sub-params ----- */
.calc__param--nested {
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px dashed var(--border-highlight);
}

.calc__param--nested[hidden] {
    display: none !important;
}

@media (max-width: 540px) {
    .calc__param--nested {
        margin-left: 0;
        padding-left: 12px;
    }
}

/* ----- Param hint (multi-line variation) ----- */
.calc__param-label .calc__param-hint {
    flex: 1;
    text-align: left;
}

/* ----- One-time pill in service title ----- */
.calc__oneoff-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: rgba(125, 212, 232, .12);
    border: 1px solid rgba(125, 212, 232, .35);
    color: var(--cyan);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    vertical-align: middle;
}

/* ----- Whitelist service variant ----- */
.calc__service--whitelist {
    background: linear-gradient(180deg, rgba(246, 199, 104, .04), rgba(246, 199, 104, .015));
    border-color: rgba(246, 199, 104, .25);
}

.calc__service--whitelist.is-active {
    border-color: rgba(246, 199, 104, .5);
    box-shadow:
        0 0 0 1px rgba(246, 199, 104, .18) inset,
        0 12px 40px rgba(0, 0, 0, .25);
}

.calc__service--whitelist.is-active .calc__service-price {
    color: var(--amber);
    border-color: rgba(246, 199, 104, .45);
    background: rgba(246, 199, 104, .12);
}

.calc__service--whitelist .calc__service-num {
    color: var(--amber);
    opacity: .8;
}

.calc__whitelist-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(246, 199, 104, .14);
    border: 1px solid rgba(246, 199, 104, .4);
    color: var(--amber);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    vertical-align: middle;
}

.calc__whitelist-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 8px rgba(246, 199, 104, .85);
    flex: none;
}

.calc__service-price--whitelist {
    background: rgba(246, 199, 104, .08) !important;
    border: 1px solid rgba(246, 199, 104, .3) !important;
    color: var(--amber) !important;
    font-family: var(--font-mono) !important;
    font-size: .74rem !important;
    letter-spacing: .14em !important;
    text-transform: uppercase;
}

.calc__whitelist-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(246, 199, 104, .08), rgba(125, 212, 232, .03));
    border: 1px dashed rgba(246, 199, 104, .35);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.calc__whitelist-note strong {
    color: var(--amber);
    font-weight: 600;
}

.calc__whitelist-link {
    margin-left: auto;
    color: var(--cyan);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
}

.calc__whitelist-link:hover {
    color: var(--text);
}

@media (max-width: 540px) {
    .calc__whitelist-note {
        flex-direction: column;
        align-items: flex-start;
    }
    .calc__whitelist-link {
        margin-left: 0;
    }
}

/* ----- Summary item term tag ----- */
.calc__summary-item-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.calc__summary-item-tag {
    font-family: var(--font-mono);
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(125, 212, 232, .1);
    border: 1px solid rgba(125, 212, 232, .3);
    border-radius: 999px;
    padding: 2px 8px;
    font-weight: 600;
    white-space: nowrap;
}

.calc__summary-item-tag--whitelist {
    color: var(--amber);
    background: rgba(246, 199, 104, .12);
    border-color: rgba(246, 199, 104, .35);
}

.calc__summary-item-price small {
    display: block;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--text-dim);
    letter-spacing: .04em;
    margin-top: 2px;
    font-weight: 400;
}

/* =============================================================
   Receipt-style sidebar (itemised ballpark)
   ============================================================= */

.calc__receipt {
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.calc__receipt-head {
    padding-bottom: 16px;
    margin-bottom: 14px;
    border-bottom: 1px dashed var(--border-highlight);
}

.calc__receipt-title {
    font-family: var(--font-sans-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--text);
    margin: 6px 0 6px;
}

.calc__receipt-sub {
    font-size: .82rem;
    line-height: 1.55;
    color: var(--text-dim);
    margin: 0;
}

.calc__receipt-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc__receipt-body .calc__summary-empty {
    margin: 0;
}

/* ----- per-service block ----- */
.calc__receipt-block {
    padding: 14px 0 12px;
    border-bottom: 1px dashed var(--border);
}

.calc__receipt-block:first-child {
    padding-top: 4px;
}

.calc__receipt-block:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.calc__receipt-block-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.calc__receipt-num {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2px 7px;
    font-weight: 600;
    flex: none;
}

.calc__receipt-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .94rem;
    color: var(--text);
    flex: 1;
    min-width: 0;
}

.calc__receipt-tag {
    font-family: var(--font-mono);
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(125, 212, 232, .1);
    border: 1px solid rgba(125, 212, 232, .3);
    border-radius: 999px;
    padding: 2px 8px;
    font-weight: 600;
    white-space: nowrap;
    flex: none;
}

.calc__receipt-tag--whitelist {
    color: var(--amber);
    background: rgba(246, 199, 104, .12);
    border-color: rgba(246, 199, 104, .35);
}

.calc__receipt-tag--oneoff,
.calc__receipt-tag--flex {
    color: var(--text-muted);
    background: rgba(255, 255, 255, .04);
    border-color: var(--border);
}

.calc__receipt-tag--term {
    color: var(--teal);
    background: rgba(46, 191, 145, .1);
    border-color: rgba(46, 191, 145, .35);
}

/* ----- line items ----- */
.calc__receipt-lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc__receipt-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 0;
    position: relative;
}

.calc__receipt-line-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.calc__receipt-line-label {
    font-size: .82rem;
    color: var(--text);
    line-height: 1.45;
    font-weight: 500;
}

.calc__receipt-line-sub {
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--text-dim);
    letter-spacing: .02em;
    line-height: 1.4;
    word-break: break-word;
}

.calc__receipt-line-amount {
    font-family: var(--font-mono);
    font-size: .86rem;
    font-weight: 600;
    color: var(--cyan);
    text-align: right;
    white-space: nowrap;
    flex: none;
    line-height: 1.3;
}

.calc__receipt-line-amount em {
    font-style: normal;
    font-size: .68rem;
    color: var(--text-muted);
    margin-left: 2px;
    font-weight: 400;
}

.calc__receipt-line-amount--whitelist {
    color: var(--amber);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.calc__receipt-line-amount--muted {
    color: var(--text-muted);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.calc__receipt-line--discount {
    color: var(--teal);
    border-top: 1px dotted rgba(46, 191, 145, .25);
    padding-top: 8px;
    margin-top: 4px;
}

.calc__receipt-line--discount .calc__receipt-line-label {
    color: var(--teal);
    font-weight: 600;
}

.calc__receipt-line--discount .calc__receipt-line-sub {
    color: rgba(46, 191, 145, .6);
}

.calc__receipt-line--discount .calc__receipt-line-amount {
    color: var(--teal);
}

.calc__receipt-line--note .calc__receipt-line-label {
    color: var(--text-muted);
    font-weight: 500;
}

.calc__receipt-line--invalid .calc__receipt-line-label {
    color: var(--coral);
    font-weight: 600;
}

.calc__receipt-line--invalid .calc__receipt-line-sub {
    color: rgba(255, 138, 101, .65);
}

.calc__receipt-line--invalid .calc__receipt-line-amount {
    color: var(--coral);
}

/* ----- per-service subtotal ----- */
.calc__receipt-block-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.calc__receipt-block-foot-amount {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    justify-content: flex-end;
    font-family: var(--font-mono);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
}

.calc__receipt-block-foot-amount em {
    font-style: normal;
    font-size: .68rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: .05em;
}

/* ----- totals receipt-foot ----- */
.calc__receipt-foot {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 2px solid var(--border-highlight);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc__receipt-foot[hidden] {
    display: none !important;
}

.calc__receipt-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc__receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: .82rem;
    color: var(--text-muted);
}

.calc__receipt-row span:last-child {
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.calc__receipt-row em {
    font-style: normal;
    font-size: .68rem;
    color: var(--text-muted);
    margin-left: 2px;
    font-weight: 400;
}

.calc__receipt-row--discount {
    color: var(--teal);
}

.calc__receipt-row--discount span:last-child {
    color: var(--teal);
}

.calc__receipt-row--total {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    font-size: .9rem;
}

.calc__receipt-row--total span:first-child {
    color: var(--text);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .76rem;
}

.calc__receipt-row--total span:last-child {
    font-family: var(--font-sans-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: -.01em;
}

.calc__receipt-divider {
    height: 0;
    border-top: 1px dashed var(--border);
    margin: 4px 0;
}

.calc__receipt-divider--dashed {
    border-top-style: dashed;
    border-top-color: var(--border-highlight);
}

.calc__receipt-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(125, 212, 232, .12), rgba(46, 191, 145, .08));
    border: 1px solid rgba(125, 212, 232, .35);
    border-radius: var(--radius-sm);
    margin-top: 4px;
}

.calc__receipt-final--secondary {
    background: rgba(255, 255, 255, .02);
    border: 1px dashed var(--border-default);
    margin-top: 8px;
    padding: 12px 16px;
}

.calc__receipt-final--secondary .calc__receipt-final-value {
    background: none;
    -webkit-text-fill-color: var(--text-default);
    color: var(--text-default);
    font-size: 1.2rem;
    font-weight: 700;
}

.calc__receipt-final--secondary .calc__receipt-final-value em {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-dim);
    margin-left: 2px;
}

.calc__receipt-final-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.calc__receipt-final-label > span {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.calc__receipt-final-label em {
    font-style: normal;
    font-family: var(--font-mono);
    font-size: .66rem;
    color: var(--text-dim);
    letter-spacing: .04em;
}

.calc__receipt-final-value {
    font-family: var(--font-sans-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.02em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

@media (max-width: 540px) {
    .calc__receipt-final {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .calc__receipt-final-value {
        font-size: 1.4rem;
    }

    .calc__receipt-line-amount {
        font-size: .8rem;
    }

    .calc__receipt-line-label {
        font-size: .8rem;
    }
}

/* =============================================================
   COMING SOON - services shared state
   (service cards · header mega-menu · footer · service hero)
   ============================================================= */

@keyframes soonPulse {
    0%, 100% { transform: scale(1); opacity: .9; }
    50% { transform: scale(1.35); opacity: .35; }
}

/* --- service card (home grid) --- */
.service-card--soon {
    position: relative;
    overflow: hidden;
}

.service-card--soon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155, 114, 207, .05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.service-card--soon > * {
    position: relative;
    z-index: 1;
}

.service-card--soon .service-card__icon {
    background: linear-gradient(135deg, rgba(155, 114, 207, .12), rgba(125, 212, 232, .08));
    border-color: rgba(155, 114, 207, .3);
    color: var(--lavender);
}

.service-card--soon .service-card__title {
    color: color-mix(in srgb, var(--text) 88%, transparent);
}

.service-card--soon .service-card__desc {
    color: color-mix(in srgb, var(--text-muted) 92%, transparent);
}

.service-card--soon .service-card__link {
    color: var(--lavender);
}

.service-card__tag--soon {
    background: rgba(155, 114, 207, .14);
    border-color: rgba(155, 114, 207, .4);
    color: var(--lavender);
    font-size: .56rem;
    letter-spacing: .18em;
    padding: 3px 9px;
    position: relative;
    padding-left: 18px;
}

.service-card__tag--soon::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lavender);
    box-shadow: 0 0 8px rgba(197, 180, 217, .8);
    animation: soonPulse 2.2s ease-in-out infinite;
}

/* --- header mega-menu --- */
.navbar__mega-item--soon h5 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.navbar__mega-tag-soon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 1px 7px 1px 16px;
    background: rgba(155, 114, 207, .12);
    border: 1px solid rgba(155, 114, 207, .4);
    color: var(--lavender);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .5rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.navbar__mega-tag-soon::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lavender);
    box-shadow: 0 0 6px rgba(197, 180, 217, .9);
    animation: soonPulse 2.2s ease-in-out infinite;
}

.navbar__mega-item--soon .navbar__mega-ico {
    background: linear-gradient(135deg, rgba(155, 114, 207, .14), rgba(125, 212, 232, .06));
    border-color: rgba(155, 114, 207, .3);
    color: var(--lavender);
}

.navbar__mega-item--soon p {
    opacity: .85;
}

/* --- footer --- */
.footer__link--soon {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer__soon-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 1px 7px 1px 14px;
    background: rgba(155, 114, 207, .1);
    border: 1px solid rgba(155, 114, 207, .3);
    color: var(--lavender);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .5rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
    line-height: 1.4;
}

.footer__soon-tag::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lavender);
    box-shadow: 0 0 6px rgba(197, 180, 217, .9);
    animation: soonPulse 2.2s ease-in-out infinite;
}

/* --- Whitelist tags (amber) for custom-scope services across the site --- */
.service-card__tag--whitelist {
    background: rgba(246, 199, 104, .14);
    border-color: rgba(246, 199, 104, .4);
    color: var(--amber);
    font-size: .56rem;
    letter-spacing: .18em;
    padding: 3px 9px 3px 18px;
    position: relative;
}

.service-card__tag--whitelist::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 8px rgba(246, 199, 104, .85);
    animation: soonPulse 2.6s ease-in-out infinite;
}

.navbar__mega-item--whitelist h5 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.navbar__mega-tag-whitelist {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 1px 7px 1px 16px;
    background: rgba(246, 199, 104, .12);
    border: 1px solid rgba(246, 199, 104, .4);
    color: var(--amber);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .5rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.navbar__mega-tag-whitelist::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 6px rgba(246, 199, 104, .9);
    animation: soonPulse 2.6s ease-in-out infinite;
}

.footer__link--whitelist {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer__whitelist-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 1px 7px 1px 14px;
    background: rgba(246, 199, 104, .1);
    border: 1px solid rgba(246, 199, 104, .3);
    color: var(--amber);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .5rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
    line-height: 1.4;
}

.footer__whitelist-tag::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 6px rgba(246, 199, 104, .9);
    animation: soonPulse 2.6s ease-in-out infinite;
}

.terms-sla__tag--whitelist {
    background: rgba(246, 199, 104, .12);
    border-color: rgba(246, 199, 104, .4);
    color: var(--amber);
}

.service-hero__whitelist {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px 16px 8px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(246, 199, 104, .14), rgba(125, 212, 232, .04));
    border: 1px solid rgba(246, 199, 104, .35);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .03em;
    margin-bottom: 18px;
    max-width: 100%;
}

.service-hero__whitelist strong {
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .66rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-hero__whitelist strong::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 8px rgba(246, 199, 104, .85);
    animation: soonPulse 2.6s ease-in-out infinite;
}

.service-hero__whitelist-sep {
    color: var(--text-dim);
    opacity: .6;
}

/* --- service hero page --- */
.service-hero__soon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 18px 10px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(155, 114, 207, .14), rgba(125, 212, 232, .06));
    border: 1px solid rgba(155, 114, 207, .35);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .03em;
    margin-bottom: 18px;
    max-width: 100%;
}

.service-hero__soon strong {
    color: var(--lavender);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .7rem;
    font-weight: 700;
}

.service-hero__soon-sep {
    color: var(--text-dim);
    opacity: .6;
}

.service-hero__soon-pulse {
    position: relative;
    width: 10px;
    height: 10px;
    display: inline-block;
    flex: none;
}

.service-hero__soon-pulse::before,
.service-hero__soon-pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--lavender);
}

.service-hero__soon-pulse::after {
    animation: soonPulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(197, 180, 217, .9);
}

.service-hero__soon-pulse::before {
    transform: scale(.55);
}

.service-hero__badge--soon {
    background: rgba(155, 114, 207, .08);
    border-color: rgba(155, 114, 207, .3);
    color: var(--lavender);
    gap: 12px;
}

.service-hero__badge--soon::before {
    background: var(--lavender);
    box-shadow: 0 0 10px rgba(197, 180, 217, .8);
}

.service-hero__badge--soon .service-hero__badge-tag {
    background: var(--lavender);
    color: var(--bg-body);
    letter-spacing: .14em;
    padding: 3px 9px;
}

.service-hero__badge--whitelist {
    background: rgba(246, 199, 104, .08);
    border-color: rgba(246, 199, 104, .35);
    color: var(--amber);
    gap: 12px;
}

.service-hero__badge--whitelist::before {
    background: var(--amber);
    box-shadow: 0 0 10px rgba(246, 199, 104, .8);
}

.service-hero__badge--whitelist .service-hero__badge-tag {
    background: var(--amber);
    color: var(--bg-body);
    letter-spacing: .14em;
    padding: 3px 9px;
}

@media (max-width: 540px) {
    .service-hero__soon {
        font-size: .66rem;
        padding: 8px 14px 8px 12px;
        gap: 8px;
    }
    .service-hero__soon strong {
        font-size: .64rem;
    }
}

/* --- pricing calculator --- */
.calc__service--soon {
    position: relative;
    background: linear-gradient(180deg, rgba(155, 114, 207, .06), rgba(155, 114, 207, .02));
    border-color: rgba(155, 114, 207, .25);
}

.calc__service--soon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(135deg,
            rgba(155, 114, 207, .035) 0,
            rgba(155, 114, 207, .035) 2px,
            transparent 2px,
            transparent 10px);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.calc__service--soon > * {
    position: relative;
    z-index: 1;
}

.calc__service--soon .calc__service-toggle {
    cursor: not-allowed;
}

.calc__service--soon .calc__service-head {
    cursor: default;
}

.calc__service--soon .calc__service-num {
    color: var(--lavender);
    opacity: .7;
}

.calc__service--soon .calc__service-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.calc__service--soon .calc__service-sub {
    color: var(--text-dim);
}

.calc__soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px 3px 10px;
    background: rgba(155, 114, 207, .14);
    border: 1px solid rgba(155, 114, 207, .4);
    color: var(--lavender);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    vertical-align: middle;
}

.calc__soon-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lavender);
    box-shadow: 0 0 8px rgba(197, 180, 217, .9);
    animation: soonPulse 2.2s ease-in-out infinite;
    flex: none;
}

.calc__service-price--soon {
    background: rgba(155, 114, 207, .1) !important;
    border: 1px solid rgba(155, 114, 207, .35) !important;
    color: var(--lavender) !important;
    font-family: var(--font-mono) !important;
    font-size: .66rem !important;
    letter-spacing: .2em !important;
    text-transform: uppercase;
    padding: 6px 12px !important;
    border-radius: 999px !important;
}

.calc__service--soon .calc__service-body {
    display: block !important;
    padding: 18px 22px 22px;
    border-top: 1px solid rgba(155, 114, 207, .18);
}

.calc__soon-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(155, 114, 207, .1), rgba(125, 212, 232, .04));
    border: 1px dashed rgba(155, 114, 207, .4);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.calc__soon-note strong {
    color: var(--lavender);
    font-weight: 600;
}

.calc__soon-link {
    margin-left: auto;
    color: var(--cyan);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
}

.calc__soon-link:hover {
    color: var(--text);
}

@media (max-width: 540px) {
    .calc__soon-note {
        flex-direction: column;
        align-items: flex-start;
    }
    .calc__soon-link {
        margin-left: 0;
    }
}

/* ======================================================================
   TERMS PAGE
   ====================================================================== */

/* ----- Quick TOC ----- */
.terms-toc {
    padding: 20px 0 40px;
    position: relative;
    z-index: 2;
}

.terms-toc__inner {
    max-width: 1140px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(125, 212, 232, .04), rgba(59, 90, 224, .03));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    padding: 22px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: center;
}

.terms-toc__label {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    opacity: .85;
    flex: none;
}

.terms-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 4px;
    flex: 1;
    min-width: 0;
}

.terms-toc__list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-highlight);
    color: var(--text-muted);
    font-size: .85rem;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.terms-toc__list a:hover {
    color: var(--text);
    border-color: rgba(125, 212, 232, .35);
    background: rgba(125, 212, 232, .05);
    transform: translateY(-1px);
}

.terms-toc__list a span {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .12em;
    color: var(--cyan);
    opacity: .85;
}

/* ----- SLA TABLE ----- */
.terms-sla {
    padding: 100px 0 120px;
    position: relative;
}

.terms-sla__table {
    max-width: 1140px;
    margin: 40px auto 24px;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 14, 22, .6), rgba(6, 10, 18, .8));
}

.terms-sla__row {
    display: grid;
    grid-template-columns: 1.1fr 2fr 1fr 1.6fr;
    gap: 24px;
    padding: 22px 26px;
    border-top: 1px solid var(--border-highlight);
    align-items: start;
    transition: background .2s ease;
}

.terms-sla__row:first-child {
    border-top: 0;
}

.terms-sla__row:not(.terms-sla__row--head):hover {
    background: rgba(125, 212, 232, .03);
}

.terms-sla__row--head {
    background: linear-gradient(180deg, rgba(125, 212, 232, .07), rgba(125, 212, 232, .02));
    padding-top: 16px;
    padding-bottom: 16px;
}

.terms-sla__row--head span {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    opacity: .9;
}

.terms-sla__row span {
    font-size: .95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.terms-sla__row strong {
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.terms-sla__name {
    color: var(--text) !important;
    font-weight: 600;
    font-size: 1rem !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.terms-sla__row--soon {
    background: linear-gradient(180deg, rgba(197, 180, 217, .04), transparent);
}

.terms-sla__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(197, 180, 217, .1);
    border: 1px solid rgba(197, 180, 217, .3);
    color: var(--lavender);
    font-family: var(--font-mono);
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
}

.terms-sla__footnote {
    max-width: 1140px;
    margin: 0 auto;
    padding: 18px 24px;
    background: rgba(197, 180, 217, .05);
    border-left: 2px solid rgba(197, 180, 217, .45);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
}

.terms-sla__footnote strong {
    color: var(--lavender);
}

/* ----- REFUND GUARANTEES ----- */
.terms-refund-guarantees {
    max-width: 1140px;
    margin: 60px auto 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(125, 212, 232, .04), rgba(59, 90, 224, .03));
}

.terms-refund-guarantee {
    padding: 28px 26px;
    border-right: 1px solid var(--border-highlight);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terms-refund-guarantee:last-child {
    border-right: 0;
}

.terms-refund-guarantee__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.6rem;
    line-height: 1;
    background: var(--grad-alt);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-refund-guarantee__label {
    font-size: .85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.terms-refund-exclusion {
    max-width: 1140px;
    margin: 20px auto 0;
    padding: 22px 26px;
    background: rgba(255, 255, 255, .03);
    border: 1px dashed var(--border-highlight);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.65;
}

.terms-refund-exclusion strong {
    color: var(--text);
}

/* ----- GLOSSARY ----- */
.terms-glossary {
    max-width: 1140px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 14, 22, .6), rgba(6, 10, 18, .8));
}

.terms-glossary__row {
    padding: 24px 26px;
    border-top: 1px solid var(--border-highlight);
    border-right: 1px solid var(--border-highlight);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms-glossary__row:nth-child(-n+2) {
    border-top: 0;
}

.terms-glossary__row:nth-child(2n) {
    border-right: 0;
}

.terms-glossary__row dt {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin: 0;
}

.terms-glossary__row dd {
    margin: 0;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.65;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 960px) {
    .terms-sla__row {
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }

    .terms-sla__row--head {
        display: none;
    }

    .terms-sla__row span::before {
        display: block;
        font-family: var(--font-mono);
        font-size: .6rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--cyan);
        opacity: .7;
        margin-bottom: 4px;
    }

    .terms-sla__row .terms-sla__name::before {
        content: "Service";
    }

    .terms-sla__row span:nth-child(2)::before {
        content: "KPI";
    }

    .terms-sla__row span:nth-child(3)::before {
        content: "SLA";
    }

    .terms-sla__row span:nth-child(4)::before {
        content: "On miss";
    }

    .terms-refund-guarantees {
        grid-template-columns: 1fr 1fr;
    }

    .terms-refund-guarantee {
        border-right: 1px solid var(--border-highlight);
        border-bottom: 1px solid var(--border-highlight);
    }

    .terms-refund-guarantee:nth-child(2n) {
        border-right: 0;
    }

    .terms-refund-guarantee:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .terms-glossary {
        grid-template-columns: 1fr;
    }

    .terms-glossary__row {
        border-right: 0;
    }

    .terms-glossary__row:nth-child(-n+2) {
        border-top: 1px solid var(--border-highlight);
    }

    .terms-glossary__row:first-child {
        border-top: 0;
    }
}

@media (max-width: 640px) {
    .terms-toc__inner {
        padding: 18px 20px;
    }

    .terms-sla__row {
        grid-template-columns: 1fr;
        padding: 18px 20px;
    }

    .terms-refund-guarantees {
        grid-template-columns: 1fr;
    }

    .terms-refund-guarantee {
        border-right: 0;
    }

    .terms-refund-guarantee:nth-child(2n) {
        border-right: 0;
    }

    .terms-refund-guarantee:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border-highlight);
    }

    .terms-refund-guarantee:last-child {
        border-bottom: 0;
    }

    .terms-refund-guarantee__num {
        font-size: 2.1rem;
    }
}

/* =============================================================
   MOBILE SAFETY RULES (final cascade)
   Narrow-screen button wrap, container, legal/service CTAs.
   ============================================================= */
@media (max-width: 480px) {
    .container {
        width: 94%;
    }

    .btn {
        white-space: normal;
        word-break: normal;
        text-align: center;
        line-height: 1.25;
    }

    .legal-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .service-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .service-hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-band__inner .btn,
    .cta-band__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section__eyebrow {
        font-size: .68rem;
    }

    /* Keep interactive elements comfortably tappable */
    .btn,
    .form__chip span,
    .faq-tab,
    .terms-toc__list a {
        min-height: 44px;
    }
}

/* Extra-narrow devices (iPhone SE ~320–375px) */
@media (max-width: 380px) {
    .hero__title {
        font-size: 1.55rem;
    }

    .navbar__logo-icon {
        height: 60px;
        width: 60px;
    }

    .navbar__links {
        width: min(320px, 92vw);
        padding: 80px 22px 28px;
    }
}

/* ============================================================
   SERVICE PAGES v2 - upgraded hero, new product blocks,
   bold animations. Appended, does not override earlier rules.
   ============================================================ */

/* ---------- Hero v2: parallax blobs + animated grid + trust chips ---------- */
.service-hero__bg--v2 {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.service-hero__bg--v2::before,
.service-hero__bg--v2::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(60% 60% at 10% 20%, rgba(59, 90, 224, .22), transparent 65%),
        radial-gradient(55% 55% at 90% 75%, rgba(46, 191, 145, .16), transparent 65%),
        radial-gradient(40% 40% at 60% 10%, rgba(125, 212, 232, .10), transparent 70%);
}

.service-hero__bg--v2::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    opacity: .7;
}

.service-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
    opacity: .7;
    will-change: transform;
    transition: transform .6s var(--ease);
}

.service-hero__blob--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(59, 90, 224, .45), transparent 70%);
    animation: heroBlobFloat1 18s ease-in-out infinite;
}

.service-hero__blob--2 {
    width: 360px;
    height: 360px;
    bottom: -140px;
    right: -60px;
    background: radial-gradient(circle, rgba(46, 191, 145, .35), transparent 70%);
    animation: heroBlobFloat2 22s ease-in-out infinite;
}

.service-hero__blob--3 {
    width: 220px;
    height: 220px;
    top: 30%;
    right: 20%;
    background: radial-gradient(circle, rgba(125, 212, 232, .28), transparent 70%);
    animation: heroBlobFloat3 26s ease-in-out infinite;
}

@keyframes heroBlobFloat1 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(40px, 30px, 0) scale(1.05); }
}

@keyframes heroBlobFloat2 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-50px, -40px, 0) scale(1.08); }
}

@keyframes heroBlobFloat3 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(25px, -35px, 0) scale(.95); }
}

/* Hero image parallax hook */
.service-hero__figure {
    perspective: 1200px;
}

.service-hero__figure img {
    transition: transform .5s var(--ease);
    will-change: transform;
}

/* Hero trust chips row (under stack) */
.service-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 22px;
    font-family: var(--font-mono);
    font-size: .74rem;
    color: var(--text-muted);
    letter-spacing: .04em;
}

.service-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-hero__trust span::before {
    content: "✓";
    color: var(--teal);
    font-weight: 700;
}

.service-hero__desc + .service-hero__desc {
    margin-top: -16px;
}

/* Split-word reveal for hero h1 */
.service-hero__title .svc-word {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity .6s var(--ease),
        transform .6s var(--ease);
}

.service-hero__title .svc-word--space {
    opacity: 1;
    transform: none;
}

.revealed .service-hero__title .svc-word,
.service-hero__title.revealed .svc-word {
    opacity: 1;
    transform: none;
}

/* ---------- Results band ---------- */
.results-band {
    padding: 80px 0 20px;
    position: relative;
}

.results-band__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.results-band__card {
    position: relative;
    padding: 32px 28px 28px;
    background: linear-gradient(160deg, rgba(59, 90, 224, .08), rgba(14, 20, 32, .55));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.results-band__card:hover {
    border-color: rgba(125, 212, 232, .4);
    transform: translateY(-3px);
}

.results-band__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 100% 0%, rgba(125, 212, 232, .12), transparent 60%);
    pointer-events: none;
}

.results-band__label {
    font-family: var(--font-mono);
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.results-band__value {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--text);
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-feature-settings: "ss01", "tnum";
}

.results-band__prefix,
.results-band__suffix {
    font-size: .45em;
    font-weight: 500;
    color: var(--cyan);
    letter-spacing: -.02em;
}

.results-band__caption {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.6;
    margin-top: 14px;
    max-width: 30ch;
}

.results-band__spark {
    position: absolute;
    right: 24px;
    top: 28px;
    width: 96px;
    height: 40px;
    opacity: .85;
}

.results-band__spark path {
    fill: none;
    stroke: url(#sparkGrad);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.6s var(--ease);
}

.revealed .results-band__spark path {
    stroke-dashoffset: 0;
}

.results-band__spark circle {
    fill: var(--cyan);
    opacity: 0;
    transition: opacity .4s var(--ease) 1.2s;
    filter: drop-shadow(0 0 8px rgba(125, 212, 232, .8));
}

.revealed .results-band__spark circle {
    opacity: 1;
}

/* ---------- Deliverables ---------- */
.deliverables {
    padding: 80px 0;
}

.deliverables__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    max-width: 960px;
    margin: 48px auto 0;
}

.deliverable {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    transition: border-color .3s, background .3s, transform .3s;
    align-items: start;
}

.deliverable:hover {
    border-color: rgba(125, 212, 232, .3);
    background: rgba(125, 212, 232, .04);
    transform: translateX(3px);
}

.deliverable__tick {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative;
}

.deliverable__tick::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 12px;
    border-right: 2px solid var(--bg-body);
    border-bottom: 2px solid var(--bg-body);
    transform: rotate(45deg) translate(-1px, -2px);
}

.deliverable__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: -.01em;
    font-feature-settings: "ss01";
}

.deliverable__desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ---------- Comparison table ---------- */
.compare {
    padding: 80px 0;
    position: relative;
}

.compare__table {
    margin: 48px auto 0;
    max-width: 1040px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.compare__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
    align-items: stretch;
}

.compare__row:last-child {
    border-bottom: none;
}

.compare__table--3col .compare__row {
    grid-template-columns: 1.6fr 1fr 1fr;
}

.compare__cell {
    padding: 20px 22px;
    font-size: .94rem;
    color: var(--text-muted);
    line-height: 1.55;
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border);
    min-height: 72px;
}

.compare__cell:first-child {
    border-left: none;
    color: var(--text);
    font-weight: 500;
}

.compare__row--head .compare__cell {
    background: rgba(255, 255, 255, .02);
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 18px 22px;
    min-height: auto;
}

.compare__row--head .compare__cell--us {
    color: var(--cyan);
    background: rgba(125, 212, 232, .05);
    font-weight: 600;
}

.compare__cell--us {
    background: rgba(125, 212, 232, .03);
    border-left: 1px solid rgba(125, 212, 232, .18);
    border-right: 1px solid rgba(125, 212, 232, .18);
    color: var(--text);
    position: relative;
}

.compare__row:not(.compare__row--head) .compare__cell--us::before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(125, 212, 232, .06), transparent);
    pointer-events: none;
}

.compare__row--head .compare__cell--us {
    position: relative;
}

.compare__row--head .compare__cell--us::after {
    content: "Best";
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    background: var(--cyan);
    color: var(--bg-body);
    font-family: var(--font-mono);
    font-size: .55rem;
    letter-spacing: .14em;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .1em;
}

.compare__mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.compare__mark--yes::before {
    content: "✓";
    color: var(--teal);
    font-weight: 700;
    font-size: 1.05rem;
}

.compare__mark--no::before {
    content: "✕";
    color: var(--coral);
    font-weight: 700;
    font-size: 1.05rem;
}

.compare__mark--partial::before {
    content: "~";
    color: var(--amber);
    font-weight: 700;
    font-size: 1.05rem;
}

/* ---------- Process rail animation ---------- */
.process__list {
    position: relative;
}

.process__list::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: var(--border);
    z-index: 0;
}

.process__list::after {
    content: "";
    position: absolute;
    left: 40px;
    top: 30px;
    width: 2px;
    height: var(--rail-progress, 0%);
    background: linear-gradient(180deg, var(--cyan), var(--teal));
    z-index: 1;
    transition: height 1.6s var(--ease);
    box-shadow: 0 0 10px var(--cyan);
}

.process__list.revealed::after {
    height: var(--rail-progress-final, calc(100% - 60px));
}

.process__item {
    position: relative;
    z-index: 2;
}

.process__num {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 80px;
}

.process__num::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%);
    background: var(--bg-body);
    border: 1px solid var(--border-highlight);
    border-radius: 50%;
    z-index: -1;
}

.process__num::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 212, 232, .25), transparent 70%);
    opacity: 0;
    transition: opacity .4s;
    z-index: -2;
}

.process__item:hover .process__num::after {
    opacity: 1;
}

/* ---------- Proof strip (testimonials + logos) ---------- */
.proof-strip {
    padding: 80px 0;
}

.proof-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.proof-strip__card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: border-color .3s, transform .3s;
}

.proof-strip__card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-2px);
}

.proof-strip__card::before {
    content: "\201C";
    position: absolute;
    top: -6px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--cyan);
    opacity: .3;
    line-height: 1;
}

.proof-strip__stars {
    color: var(--amber);
    font-size: 1rem;
    letter-spacing: .2em;
    margin-bottom: 14px;
}

.proof-strip__quote {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 24px;
}

.proof-strip__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.proof-strip__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: .85rem;
    color: var(--bg-body);
    flex-shrink: 0;
    letter-spacing: .02em;
}

.proof-strip__name {
    font-weight: 600;
    color: var(--text);
    font-size: .95rem;
}

.proof-strip__role {
    color: var(--text-dim);
    font-size: .82rem;
    font-family: var(--font-mono);
    letter-spacing: .04em;
}

.proof-strip__marquee {
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.proof-strip__marquee-track {
    display: flex;
    gap: 48px;
    align-items: center;
    width: max-content;
    animation: proofMarquee 32s linear infinite;
}

.proof-strip__marquee-track span {
    font-family: var(--font-mono);
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.proof-strip__marquee-track span::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    opacity: .5;
}

.proof-strip__marquee-track span:last-child::after {
    display: none;
}

@keyframes proofMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Guarantees ---------- */
.guarantees {
    padding: 80px 0;
}

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

.guarantee {
    padding: 32px 28px;
    background: linear-gradient(160deg, rgba(46, 191, 145, .06), rgba(14, 20, 32, .55));
    border: 1px solid rgba(46, 191, 145, .18);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.guarantee:hover {
    border-color: rgba(46, 191, 145, .5);
    transform: translateY(-3px);
}

.guarantee::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(46, 191, 145, .2), transparent 70%);
    pointer-events: none;
}

.guarantee__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(46, 191, 145, .15);
    color: var(--teal);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    position: relative;
}

.guarantee__icon svg {
    width: 22px;
    height: 22px;
}

.guarantee__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -.01em;
    margin-bottom: 10px;
    color: var(--text);
    font-feature-settings: "ss01";
}

.guarantee__desc {
    color: var(--text-muted);
    font-size: .94rem;
    line-height: 1.6;
}

/* ---------- CTA band shimmer ---------- */
.cta-band__inner::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(125, 212, 232, .4) 60deg,
        transparent 120deg,
        transparent 240deg,
        rgba(46, 191, 145, .35) 300deg,
        transparent 360deg
    );
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
    animation: ctaShimmer 12s linear infinite;
}

.cta-band__inner {
    position: relative;
    isolation: isolate;
}

@keyframes ctaShimmer {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---------- Feature card tilt/glow (JS-driven) ---------- */
.feature,
.deliverable,
.guarantee,
.results-band__card,
.proof-strip__card {
    transform-style: preserve-3d;
    will-change: transform;
}

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

.feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        320px circle at var(--tilt-x, 50%) var(--tilt-y, 50%),
        rgba(125, 212, 232, .12),
        transparent 40%
    );
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.feature:hover::after {
    opacity: 1;
}

/* SVG path-draw for feature icons */
.feature__icon svg path,
.feature__icon svg circle,
.feature__icon svg rect,
.feature__icon svg line {
    stroke-dasharray: var(--svc-path-len, 200);
    stroke-dashoffset: var(--svc-path-len, 200);
    transition: stroke-dashoffset 1.2s var(--ease);
}

.feature.revealed .feature__icon svg path,
.feature.revealed .feature__icon svg circle,
.feature.revealed .feature__icon svg rect,
.feature.revealed .feature__icon svg line,
.revealed .feature__icon svg path,
.revealed .feature__icon svg circle,
.revealed .feature__icon svg rect,
.revealed .feature__icon svg line {
    stroke-dashoffset: 0;
}

/* ---------- Stack chips v2 - hover micro-interaction ---------- */
.service-hero__stack span:not(.service-hero__stack-label) {
    position: relative;
    overflow: hidden;
}

.service-hero__stack span:not(.service-hero__stack-label)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(125, 212, 232, .25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .5s var(--ease);
}

.service-hero__stack span:not(.service-hero__stack-label):hover::before {
    transform: translateX(100%);
}

/* ---------- Shared section headings on new blocks ---------- */
.svc-section__head {
    max-width: 720px;
    margin: 0 auto 0;
    text-align: center;
}

.svc-section__head--left {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .results-band__grid {
        grid-template-columns: 1fr 1fr;
    }
    .results-band__grid > *:last-child {
        grid-column: span 2;
    }
    .guarantees__grid {
        grid-template-columns: 1fr;
    }
    .compare__row {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
    .compare__table--3col .compare__row {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .deliverables__grid {
        grid-template-columns: 1fr;
    }
    .proof-strip__grid {
        grid-template-columns: 1fr;
    }
    .results-band__grid {
        grid-template-columns: 1fr;
    }
    .results-band__grid > *:last-child {
        grid-column: auto;
    }
    .service-hero__trust {
        gap: 12px;
        font-size: .7rem;
    }

    /* Comparison becomes vertical stack */
    .compare__table {
        border: none;
        background: transparent;
        backdrop-filter: none;
    }
    .compare__row {
        display: grid;
        grid-template-columns: 1fr;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        margin-bottom: 12px;
        background: var(--bg-card);
        overflow: hidden;
    }
    .compare__row--head {
        display: none;
    }
    .compare__cell {
        padding: 14px 18px;
        border-left: none;
        border-top: 1px solid var(--border);
        min-height: auto;
        justify-content: space-between;
    }
    .compare__cell:first-child {
        background: rgba(255, 255, 255, .03);
        border-top: none;
        font-size: .76rem;
        font-family: var(--font-mono);
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--text-dim);
        font-weight: 600;
    }
    .compare__cell:not(:first-child)::before {
        content: attr(data-col);
        font-family: var(--font-mono);
        font-size: .66rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--text-dim);
        margin-right: auto;
    }
    .compare__cell--us {
        border-left: none;
        border-right: none;
        background: rgba(125, 212, 232, .06);
    }
    .process__list::before,
    .process__list::after {
        left: 26px;
    }
    .process__item {
        grid-template-columns: 64px 1fr;
        gap: 20px;
    }
    .process__num {
        width: 64px;
        font-size: 2rem;
    }
    .process__num::before {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 520px) {
    .results-band__value {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
    }
    .results-band__spark {
        width: 72px;
    }
    .proof-strip__card {
        padding: 24px 22px;
    }
    .guarantee {
        padding: 26px 22px;
    }
    .deliverable {
        padding: 14px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-hero__blob,
    .service-hero__figure img,
    .cta-band__inner::after,
    .proof-strip__marquee-track,
    .results-band__spark path,
    .feature__icon svg path,
    .feature__icon svg circle,
    .feature__icon svg rect,
    .feature__icon svg line {
        animation: none !important;
        transition: none !important;
    }
    .service-hero__title .svc-word {
        opacity: 1;
        transform: none;
    }
    .process__list::after {
        transition: none !important;
    }
    .feature__icon svg path,
    .feature__icon svg circle,
    .feature__icon svg rect,
    .feature__icon svg line {
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }
    .results-band__spark path {
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }
}

/* ============================================================
   404 PAGE - big glyph, gradient sweep, useful nav
   ============================================================ */
.error-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    isolation: isolate;
    min-height: 82vh;
    display: flex;
    align-items: center;
}

.error-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.error-hero__bg::before,
.error-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
}

.error-hero__bg::before {
    background-image:
        radial-gradient(70% 70% at 10% 10%, rgba(59, 90, 224, .28), transparent 60%),
        radial-gradient(60% 60% at 90% 80%, rgba(46, 191, 145, .18), transparent 65%),
        radial-gradient(40% 40% at 50% 100%, rgba(125, 212, 232, .12), transparent 70%);
}

.error-hero__bg::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
    opacity: .7;
}

.error-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    will-change: transform;
}

.error-hero__blob--1 {
    width: 460px;
    height: 460px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(59, 90, 224, .45), transparent 70%);
    animation: heroBlobFloat1 22s ease-in-out infinite;
}

.error-hero__blob--2 {
    width: 380px;
    height: 380px;
    bottom: -120px;
    right: -60px;
    background: radial-gradient(circle, rgba(46, 191, 145, .35), transparent 70%);
    animation: heroBlobFloat2 26s ease-in-out infinite;
}

.error-hero__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.error-hero__glyph {
    position: relative;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(8rem, 24vw, 18rem);
    line-height: .9;
    letter-spacing: -.06em;
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 45%, var(--teal) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: error404Shimmer 7s ease-in-out infinite;
    margin-bottom: 12px;
    display: inline-block;
    font-feature-settings: "tnum", "ss01";
}

.error-hero__glyph::after {
    content: "";
    position: absolute;
    inset: -12% -6% -20% -6%;
    background: radial-gradient(ellipse at center, rgba(125, 212, 232, .25), transparent 65%);
    z-index: -1;
    filter: blur(24px);
    animation: error404Pulse 4s ease-in-out infinite;
}

@keyframes error404Shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes error404Pulse {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.error-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.error-hero__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 12px var(--coral);
    animation: dotPulse 2.2s ease-in-out infinite;
}

.error-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
    margin-bottom: 18px;
    font-feature-settings: "ss01";
}

.error-hero__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--cyan);
}

.error-hero__desc {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 36px;
}

.error-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.error-hero__meta {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: .74rem;
    color: var(--text-dim);
    letter-spacing: .04em;
}

.error-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.error-hero__meta code {
    font-family: var(--font-mono);
    color: var(--cyan);
    font-size: .78rem;
    padding: 2px 8px;
    background: rgba(125, 212, 232, .08);
    border: 1px solid rgba(125, 212, 232, .2);
    border-radius: 6px;
}

/* ---------- Quick links grid ---------- */
.error-links {
    padding: 40px 0 80px;
}

.error-links__head {
    text-align: center;
    margin-bottom: 40px;
}

.error-links__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.error-links__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -.02em;
    font-feature-settings: "ss01";
}

.error-links__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.error-link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    transition:
        border-color .3s,
        transform .3s,
        background .3s;
}

.error-link:hover {
    border-color: var(--border-highlight);
    transform: translateY(-2px);
    background: rgba(125, 212, 232, .04);
}

.error-link__ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(125, 212, 232, .1);
    color: var(--cyan);
    display: grid;
    place-items: center;
}

.error-link__ico svg {
    width: 20px;
    height: 20px;
}

.error-link__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
    font-feature-settings: "ss01";
}

.error-link__desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.error-link__arrow {
    margin-left: auto;
    color: var(--text-dim);
    transition: transform .3s, color .3s;
}

.error-link:hover .error-link__arrow {
    color: var(--cyan);
    transform: translateX(4px);
}

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

@media (max-width: 560px) {
    .error-hero {
        padding: 120px 0 56px;
    }
    .error-links__grid {
        grid-template-columns: 1fr;
    }
    .error-hero__meta {
        gap: 14px;
        font-size: .68rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .error-hero__glyph,
    .error-hero__glyph::after,
    .error-hero__blob {
        animation: none !important;
    }
}
