/* ==========================================================================
   SpotDefence — Databricks-Inspired Design System
   Primary palette mirrors databricks.com exactly.
   ========================================================================== */

/* ----- ROOT VARIABLES ----- */
:root {
    /* Databricks Palette */
    --db-dark: #0B1920;
    /* dark navy - primary dark bg */
    --db-dark-card: #132B37;
    /* card bg on dark sections */
    --db-dark-card2: #162A35;
    /* alternate card bg */
    --db-light-bg: #E8E8E3;
    /* cream/beige light section bg */
    --db-white: #FFFFFF;
    --db-off-white: #F5F5F0;

    --db-lava: #FF3621;
    /* Databricks Lava Red - primary CTA */
    --db-lava-dark: #D92510;
    /* hover state */
    --db-coral: #FF5D47;
    /* eyebrow/kicker tags */

    --db-text-dark: #1B3139;
    /* headings on light bg */
    --db-text-body: #4B6070;
    /* body text on light bg */
    --db-text-muted: #64748B;
    /* muted on light */
    --db-text-white: #FFFFFF;
    --db-text-slate: #94A3B8;
    /* body on dark bg */
    --db-text-light: #CBD5E1;
    /* secondary on dark bg */

    --db-border-dark: rgba(255, 255, 255, 0.1);
    --db-border-light: #E2E8F0;
    --db-border-card: rgba(255, 255, 255, 0.08);

    /* Legacy compat */
    --primary-blue: #052cff;
    --accent-green: #00e676;
    --accent-cyan: #00b4c5;
    --accent-purple: #b855ea;
    --accent-red: #ff3b30;
    --accent-orange: #ff6b35;

    --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'DM Mono', 'Courier New', monospace;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
    /* offset for sticky nav */
}

body {
    font-family: var(--font-body);
    color: var(--db-text-body);
    background-color: var(--db-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 72px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--db-text-dark);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.text-white {
    color: #ffffff !important;
}

.text-blue {
    color: var(--primary-blue) !important;
}

.text-green {
    color: var(--accent-green) !important;
}

.text-purple {
    color: var(--accent-purple) !important;
}

.text-cyan {
    color: var(--accent-cyan) !important;
}

.text-ember {
    color: var(--db-lava) !important;
}

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

/* ----- TOP ANNOUNCEMENT BAR (MOTION MARQUEE) ----- */
.top-bar {
    background: linear-gradient(90deg, #010814 0%, #05152d 30%, #0a2144 50%, #05152d 70%, #010814 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12.5px;
    height: 38px;
    border-bottom: 1px solid rgba(0, 230, 118, 0.22);
    position: relative;
    z-index: 1002;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.top-bar.hidden {
    display: none !important;
}

.top-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Soft gradient fade masks on left and right edges */
    mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 48px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 48px), transparent 100%);
}

.top-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: topBarScroll 36s linear infinite;
    will-change: transform;
}

.top-bar:hover .top-marquee-track {
    animation-play-state: paused;
}

@keyframes topBarScroll {
    0% {
        transform: translateX(0);
    }

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

.top-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.top-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

/* High-tech badges / pills */
.t-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.t-pill-live {
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.45);
    color: #00e676;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.25);
}

.t-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 6px #00e676;
    animation: liveDotPulse 1.6s ease-in-out infinite;
}

@keyframes liveDotPulse {

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

    50% {
        transform: scale(0.65);
        opacity: 0.35;
    }
}

.t-pill-cyan {
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: #38bdf8;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.2);
}

.t-pill-green {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
}

.t-pill-ember {
    background: rgba(255, 69, 58, 0.12);
    border: 1px solid rgba(255, 69, 58, 0.35);
    color: #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 69, 58, 0.2);
}

.t-pill-purple {
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: #c084fc;
}

.t-pill-blue {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #60a5fa;
}

.t-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.t-link {
    color: #00e676;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.18s ease;
}

.t-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.t-sep {
    display: inline-flex;
    align-items: center;
    color: rgba(0, 230, 118, 0.35);
    font-size: 7px;
    margin: 0 24px;
}

/* Pinned dismiss button on far right with frosted background */
.top-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(2, 11, 24, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.top-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* ----- NAVIGATION BAR (DO NOT TOUCH) ----- */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(10, 31, 77, 0.06);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(5, 44, 255, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    /* Full-bleed so the brand stays near the left edge; the larger right value
       pulls the menu and CTA inward, away from the viewport border. */
    max-width: 100%;
    padding: 0 72px 0 32px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 900;
    color: #001233;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary-blue);
}

.logo-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7c88;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-item {
    font-size: 14.5px;
    font-weight: 600;
    color: #2a2e45;
    position: relative;
    padding: 6px 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-blue);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Faint hairline separating the nav links from the CTA.
   Gradient ends so it fades out rather than stopping hard. */
.nav-divider {
    flex-shrink: 0;
    width: 1px;
    height: 24px;
    margin: 0 6px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(42, 46, 69, 0.20) 30%,
            rgba(42, 46, 69, 0.20) 70%,
            transparent 100%);
}

.btn-nav-talk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary-blue);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(5, 44, 255, 0.25);
    transition: var(--transition-fast);
    margin-left: 6px;
}

.btn-nav-talk:hover {
    background: #0022cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(5, 44, 255, 0.35);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ----- HERO / BANNER SECTION ----- */
.home-banner-section {
    background: #000000;
    background-attachment: scroll;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.banner-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.banner-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.banner-overlay-circles {
    display: none;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    /* stretch so the visual card matches the height of the text column */
    align-items: stretch;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-highlight {
    background: linear-gradient(135deg, #ffffff 20%, #93c5fd 60%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subhead {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

/* Hero Buttons */
.banner-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.db-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--db-lava);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--db-lava);
    transition: all 0.2s ease;
    cursor: pointer;
}

.db-btn-primary:hover {
    background: var(--db-lava-dark);
    border-color: var(--db-lava-dark);
    transform: translateY(-1px);
    color: #ffffff;
}

.db-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: transparent;
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.2s ease;
}

.db-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-1px);
}

.banner-btn-group .db-btn-primary,
.banner-btn-group .db-btn-secondary {
    width: auto !important;
}

.hero-cta-caption {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.text-sep {
    opacity: 0.35;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.trust-stat strong {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.trust-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.trust-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
}

/* ----- HERO VIDEO ENCLOSED CARD WITH TRAVELLING PURPLE LIGHT BEAM ----- */
.banner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Ambient purple/blue atmospheric glow behind the card */
.banner-visual::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, rgba(99, 102, 241, 0.12) 40%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

/* 3D stage — establishes the shared vanishing point for card + floating chips.
   --rx / --ry are unitless degrees written by JS on pointer move. */
.hero-visual-stage {
    --rx: 4;
    --ry: -9;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    perspective: 1300px;
    transform-style: preserve-3d;
}

/* Outer Card housing the travelling border beam */
.hero-visual-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    /* Fill the grid row so the card ends level with the text column */
    height: 100%;
    min-height: 380px;
    display: flex;
    border-radius: 20px;
    padding: 2.5px;
    /* Travelling beam border thickness */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    /* Independent `translate` so the idle float never fights the tilt transform */
    animation: heroFloat 7s ease-in-out infinite;
    transform:
        rotateX(calc(var(--rx) * 1deg))
        rotateY(calc(var(--ry) * 1deg));
    box-shadow:
        0 0 35px rgba(168, 85, 247, 0.28),
        calc(var(--ry) * -1.1px) calc(26px + var(--rx) * 1.3px) 58px rgba(0, 0, 0, 0.66);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* While tracking the cursor, JS adds .is-tilting to cut the easing lag */
.hero-visual-stage.is-tilting .hero-visual-card {
    transition: box-shadow 0.2s linear;
}

@keyframes heroFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -12px;
    }
}

/* Constant purplish light beam travelling in a continuous loop */
.hero-visual-beam {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            transparent 80deg,
            rgba(168, 85, 247, 0.25) 110deg,
            #a855f7 135deg,
            #d946ef 150deg,
            #c084fc 162deg,
            #ffffff 170deg,
            #c084fc 176deg,
            #8b5cf6 190deg,
            rgba(139, 92, 246, 0.25) 215deg,
            transparent 245deg,
            transparent 360deg);
    animation: purpleBeamLoop 3.8s linear infinite;
    will-change: transform;
    pointer-events: none;
    z-index: 0;
}

@keyframes purpleBeamLoop {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

    .hero-visual-card,
    .hero-chip {
        animation: none;
    }

    .hero-visual-card,
    .hero-feature-image {
        transition: none;
    }
}

/* Inner surface holding the image */
.hero-visual-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 17.5px;
    background: #030712;
    overflow: hidden;
    display: flex;
}

.hero-visual-inner picture {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Slight overscale so the counter-parallax shift never exposes a bare edge */
.hero-feature-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 17.5px;
    scale: 1.06;
    translate: calc(var(--ry) * 0.45px) calc(var(--rx) * -0.45px);
    transition: translate 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: translate;
}

/* Fixed diagonal glass sheen — reads as a pane of glass over the screenshot */
.hero-visual-sheen {
    position: absolute;
    inset: 0;
    border-radius: 17.5px;
    background: linear-gradient(148deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.04) 26%,
            transparent 46%,
            transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Specular highlight that follows the cursor across the surface */
.hero-visual-glare {
    position: absolute;
    inset: 0;
    border-radius: 17.5px;
    background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 0%),
            rgba(255, 255, 255, 0.26) 0%,
            rgba(192, 132, 252, 0.14) 34%,
            transparent 66%);
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 3;
}

.hero-visual-stage.is-tilting .hero-visual-glare {
    opacity: 1;
}

/* ----- Floating glass chips at varying Z depths ----- */
.hero-chip {
    position: absolute;
    z-index: 4;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 19px;
    color: #e9d5ff;
    background: linear-gradient(150deg, rgba(168, 85, 247, 0.30), rgba(88, 28, 135, 0.22));
    border: 1px solid rgba(216, 180, 254, 0.34);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(168, 85, 247, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    pointer-events: none;
}

@supports not (backdrop-filter: blur(4px)) {
    .hero-chip {
        background: linear-gradient(150deg, rgba(126, 34, 206, 0.82), rgba(67, 20, 105, 0.82));
    }
}

/* Each chip sits at a different Z, so the tilt separates them from the card */
.hero-chip-a {
    top: 8%;
    right: -26px;
    transform: translateZ(78px);
    animation: heroChipFloat 5.5s ease-in-out infinite;
}

.hero-chip-b {
    bottom: 14%;
    left: -22px;
    width: 46px;
    height: 46px;
    font-size: 17px;
    transform: translateZ(52px);
    animation: heroChipFloat 6.8s ease-in-out infinite -2.2s;
}

.hero-chip-c {
    bottom: -20px;
    right: 16%;
    width: 44px;
    height: 44px;
    font-size: 16px;
    transform: translateZ(96px);
    animation: heroChipFloat 6.1s ease-in-out infinite -4s;
}

@keyframes heroChipFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -14px;
    }
}

/* ----- HERO RIGHT CARD (LEGACY) ----- */
.agent-card {
    background: rgba(0, 10, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
}

.agent-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.agent-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: radarPulse 2s infinite;
}

@keyframes radarPulse {

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

    50% {
        transform: scale(1.35);
        opacity: 0.6;
    }
}

.agent-status {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.agent-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 4px;
}

.terminal-body {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 6px;
    padding: 14px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-line {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.75);
}

.terminal-line.highlight-alert {
    background: rgba(255, 59, 48, 0.12);
    padding: 3px 6px;
    border-radius: 3px;
    color: #ff8a80;
    border-left: 2px solid #ff3b30;
}

.cmd-cyan {
    color: #22d3ee;
    font-weight: 600;
}

.cmd-blue {
    color: #93c5fd;
    font-weight: 600;
}

.cmd-orange {
    color: #fbbf24;
    font-weight: 600;
}

.cmd-red {
    color: #f87171;
    font-weight: 600;
}

.cmd-green {
    color: var(--accent-green);
    font-weight: 600;
}

/* Radar Box */
.card-radar-box {
    position: relative;
    height: 170px;
    border-radius: 6px;
    background: radial-gradient(circle, rgba(5, 44, 255, 0.12) 0%, rgba(0, 0, 0, 0.4) 80%);
    border: 1px solid rgba(5, 44, 255, 0.2);
    overflow: hidden;
    margin-bottom: 16px;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(5, 44, 255, 0.28);
}

.rc-1 {
    width: 56px;
    height: 56px;
}

.rc-2 {
    width: 112px;
    height: 112px;
}

.rc-3 {
    width: 164px;
    height: 164px;
}

.radar-scan-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 50%;
    transform-origin: bottom left;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 230, 118, 0.2) 28deg, transparent 56deg);
    animation: scanRotate 3.5s linear infinite;
}

@keyframes scanRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.threat-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 8px #ff3b30;
}

.dot-1 {
    top: 35%;
    left: 65%;
    animation: pulseDot 2.2s infinite;
}

.dot-2 {
    top: 70%;
    left: 28%;
    animation: pulseDot 2.2s infinite 0.5s;
    background: #ff9100;
    box-shadow: 0 0 8px #ff9100;
}

.dot-3 {
    top: 24%;
    left: 24%;
    animation: pulseDot 2.2s infinite 1s;
}

.dot-4 {
    top: 60%;
    left: 74%;
    animation: pulseDot 2.2s infinite 1.5s;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
}

@keyframes pulseDot {

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

    50% {
        transform: scale(1.6);
        opacity: 0.4;
    }
}

.radar-float-card {
    position: absolute;
    padding: 6px 10px;
    background: rgba(8, 18, 40, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    font-size: 10.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.card-alert-1 {
    top: 12px;
    right: 12px;
}

.card-alert-2 {
    bottom: 12px;
    left: 12px;
}

.badge-crit {
    background: #d92228;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 2px;
}

.badge-high {
    background: #ff9100;
    color: #111;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 2px;
}

.agent-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.agent-footer-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===================================================================
   DATABRICKS-STYLE DESIGN SYSTEM — SECTION UTILITIES
   =================================================================== */

/* Section eyebrow / kicker tag */
.db-eyebrow {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--db-coral);
    display: block;
    margin-bottom: 16px;
}

/* Dark section title */
.db-section-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--db-text-dark);
}

.db-section-title.white {
    color: #ffffff;
}

.db-section-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--db-text-body);
    max-width: 680px;
}

.db-section-sub.on-dark {
    color: var(--db-text-slate);
}

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

.db-section-header.text-center .db-section-sub {
    margin: 0 auto;
}

/* Gradient headline text */
.db-gradient-text {
    background: linear-gradient(135deg, var(--db-lava) 0%, #FF8C7A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Arrow link style */
.db-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--db-lava);
    transition: var(--transition-fast);
}

.db-link-arrow:hover {
    gap: 10px;
    color: var(--db-lava-dark);
}

.db-link-arrow.on-dark {
    color: rgba(255, 255, 255, 0.7);
}

.db-link-arrow.on-dark:hover {
    color: #ffffff;
}

/* ===================================================================
   CLIENT LOGOS / TRUSTED BY TICKER
   =================================================================== */

.client-logos-section {
    background: var(--db-dark);
    border-top: 1px solid var(--db-border-dark);
    border-bottom: 1px solid var(--db-border-dark);
    padding: 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    position: relative;
    overflow: hidden;
}

.ticker-label-box {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 5;
    background: var(--db-dark);
}

.ticker-label-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: #a4b9c9;
    letter-spacing: 0.1em;
    line-height: 1.4;
    white-space: nowrap;
    user-select: none;
    text-transform: uppercase;
}

.ticker-divider-line {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 28px 0 24px;
    flex-shrink: 0;
}

.ticker-window {
    position: relative;
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
}

.ticker-edge-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36px;
    z-index: 4;
    pointer-events: none;
}

.ticker-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--db-dark), transparent);
}

.ticker-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--db-dark), transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: tickerMarquee 26s linear infinite;
    will-change: transform;
}

.ticker-track:hover,
.ticker-track.is-paused {
    animation-play-state: paused !important;
}

@keyframes tickerMarquee {
    0% {
        transform: translateX(0);
    }

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

.ticker-group {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
    flex-shrink: 0;
}

.ticker-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    opacity: 0.75;
    transition: all 0.25s ease;
    user-select: none;
}

.ticker-item:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transform: scale(1.04);
}

.logo-cohere-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.cohere-text {
    font-family: var(--font-mono);
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.cohere-pill {
    font-size: 9px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 1px 4px;
    border-radius: 4px;
    color: #ffffff;
}

.logo-burberry {
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
}

.logo-fda {
    height: 22px;
    width: auto;
    display: block;
}

.logo-heineken-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.heineken-star {
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
}

.heineken-text {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.logo-michelin-frame {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    padding: 3px 9px 3px 6px;
    border-radius: 4px;
}

.michelin-brand {
    font-family: 'Arial Black', Impact, sans-serif;
    font-style: italic;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1.05;
}

.logo-mercedes-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mercedes-text {
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.logo-santander-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
}

.santander-text {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.logo-databricks-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.databricks-text {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.logo-siemens {
    font-family: 'Arial Black', sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo-novartis {
    font-family: 'Georgia', serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.ticker-pause-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 18px;
    transition: all 0.2s ease;
    z-index: 5;
}

.ticker-pause-btn:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* ===================================================================
   WHY SPOTDEFENCE — BENEFIT CARDS
   =================================================================== */

.sd-why-section {
    position: relative;
    padding: 96px 0 88px;
    overflow: hidden;
    background-color: #070d16;
    /* purple-bg.png's violet wave, faded to near-black up top so it reads
       as a restrained ribbon along the lower edge rather than a full photo. */
    background-image:
        linear-gradient(180deg, #070d16 0%, #070d16 52%, rgba(7, 13, 22, 0.62) 76%, rgba(7, 13, 22, 0.22) 100%),
        url('assets/backgrounds/purple-bg.png');
    background-position: center center, 60% 72%;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}

.sd-why-intro {
    max-width: 720px;
    margin-bottom: 52px;
}

.sd-why-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.sd-why-title-lead,
.sd-why-title-sub {
    display: block;
}

.sd-why-title-lead {
    color: #f6f7f9;
}

.sd-why-title-sub {
    color: #97a3b4;
}

.sd-why-accent {
    color: var(--db-coral);
}

.sd-why-lede {
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.6;
    color: #9aa6b6;
    max-width: 620px;
}

/* Cards */
.sd-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sd-why-card {
    display: flex;
    flex-direction: column;
    padding: 30px 28px 26px;
    /* Teal light pooling in the top-left corner, as in the reference */
    background:
        radial-gradient(125% 85% at 10% 0%, rgba(58, 120, 145, 0.22) 0%, transparent 58%),
        linear-gradient(165deg, rgba(19, 40, 52, 0.94) 0%, rgba(13, 28, 38, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    /* Lifted off the backdrop, with a lit top edge */
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.46),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition: border-color var(--transition-fast), transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.sd-why-card:hover {
    border-color: rgba(255, 93, 71, 0.34);
    transform: translateY(-2px);
    box-shadow:
        0 28px 58px rgba(0, 0, 0, 0.55),
        0 0 26px rgba(255, 93, 71, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.sd-why-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.sd-why-icon {
    display: block;
    width: 40px;
    height: 40px;
    color: var(--db-coral);
}

.sd-why-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    /* Coral bloom + a grounding shadow, matching the reference icons */
    filter:
        drop-shadow(0 0 10px rgba(255, 93, 71, 0.38))
        drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
}

.sd-why-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    padding-top: 3px;
}

.sd-why-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: #f6f7f9;
    margin-bottom: 12px;
    text-wrap: balance;
}

.sd-why-card-body {
    font-size: 14px;
    line-height: 1.62;
    color: #93a0b0;
    margin-bottom: 28px;
}

.sd-why-card-label {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.42);
}

/* Footer row */
.sd-why-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.sd-why-foot-text {
    font-size: 14.5px;
    color: #93a0b0;
}

.sd-why-cta {
    box-shadow: 0 10px 26px rgba(255, 54, 33, 0.30), 0 2px 6px rgba(0, 0, 0, 0.35);
}

.sd-why-cta:hover {
    box-shadow: 0 14px 34px rgba(255, 54, 33, 0.42), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.sd-why-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .sd-why-card {
        transition: none;
    }

    .sd-why-card:hover {
        transform: none;
    }
}

/* ===================================================================
   SERVICES / PRODUCTS — DARK 4-COLUMN GRID (DATABRICKS EXACT)
   =================================================================== */

.db-products-section {
    background: url('assets/backgrounds/blue-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 96px 0;
    position: relative;
}

.db-products-section .db-section-title {
    color: #ffffff;
}

.db-products-section .db-section-sub {
    color: var(--db-text-slate);
}

/* Filter pills */
.db-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    justify-content: center;
}

.db-pill-btn {
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.db-pill-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.db-pill-btn.active {
    background: #ffffff;
    color: var(--db-text-dark);
    border-color: #ffffff;
    font-weight: 600;
}

.db-pill-btn:focus-visible {
    outline: 2px solid var(--db-lava);
    outline-offset: 3px;
}

/* Filter states */
.db-product-card.is-filtered-out {
    display: none;
}

.db-product-card.is-filtered-in {
    animation: sdCardIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

@media (prefers-reduced-motion: reduce) {
    .db-product-card.is-filtered-in { animation: none; }
}

/* Products grid — 3-column */
.db-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

/* Databricks-exact card: icon top-left, arrow top-right, description below */
.db-product-card {
    background: var(--db-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    cursor: pointer;
}

.db-product-card:hover {
    background: var(--db-dark-card2);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.db-product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.db-prod-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ember-icon {
    background: rgba(255, 54, 33, 0.2);
    color: var(--db-lava);
}

.cyan-icon {
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
}

.blue-icon {
    background: rgba(147, 197, 253, 0.15);
    color: #93c5fd;
}

.purple-icon {
    background: rgba(192, 132, 252, 0.15);
    color: #c084fc;
}

.green-icon {
    background: rgba(134, 239, 172, 0.15);
    color: #86efac;
}

.red-icon {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
}

.db-module-code {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    display: none;
    /* hidden — arrow replaces it */
}

.db-product-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.db-product-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--db-text-slate);
    flex: 1;
    margin-bottom: 20px;
}

.db-product-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.db-product-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.db-product-specs i {
    color: var(--db-lava);
    font-size: 11px;
    flex-shrink: 0;
}

.db-product-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.db-product-footer .db-link-arrow {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
}

.db-product-footer .db-link-arrow:hover {
    color: #ffffff;
}

/* Card header arrow (top-right) */
.db-product-top .db-link-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    margin-top: 4px;
}

/* ===================================================================
   METHODOLOGY — LIGHT CREAM SECTION
   =================================================================== */

.db-pipeline-section {
    background: var(--db-light-bg);
    padding: 96px 0;
}

.db-pipeline-section .db-section-title {
    color: var(--db-text-dark);
}

.sd-ph-timing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--db-text-muted);
}

.sd-ph-timing i {
    font-size: 14px;
    color: var(--db-text-muted);
}

.sd-ph {
    margin-top: 44px;
}

/* ----- Phase selector (desktop) ----- */
.sd-ph-rail {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 34px;
}

.sd-ph-line {
    position: absolute;
    top: var(--rail-y, 21px);
    left: var(--rail-start, 10%);
    width: var(--rail-span, 80%);
    height: 1px;
    background: rgba(27, 49, 57, 0.18);
}

.sd-ph-step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 8px;
    background: none;
    border: 0;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.sd-ph-dot {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--db-light-bg);
    border: 1px solid rgba(27, 49, 57, 0.28);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--db-text-muted);
    transition: background var(--transition-fast), border-color var(--transition-fast),
        color var(--transition-fast), box-shadow var(--transition-fast);
}

.sd-ph-name {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--db-text-body);
    max-width: 15ch;
    transition: color var(--transition-fast);
}

.sd-ph-step:hover .sd-ph-dot {
    border-color: rgba(27, 49, 57, 0.5);
    color: var(--db-text-dark);
}

.sd-ph-step:hover .sd-ph-name {
    color: var(--db-text-dark);
}

.sd-ph-step.is-active .sd-ph-dot {
    background: var(--db-lava);
    border-color: var(--db-lava);
    color: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 54, 33, 0.14);
}

.sd-ph-step.is-active .sd-ph-name {
    color: var(--db-text-dark);
    font-weight: 600;
}

.sd-ph-step:focus {
    outline: none;
}

.sd-ph-step:focus-visible {
    outline: 2px solid var(--db-lava);
    outline-offset: 4px;
    border-radius: var(--radius-md);
}

/* ----- Accordion triggers (mobile only) ----- */
.sd-ph-acc {
    display: none;
}

.sd-ph-acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid rgba(27, 49, 57, 0.12);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--db-text-dark);
    text-align: left;
    cursor: pointer;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.sd-ph-acc-btn:focus-visible {
    outline: 2px solid var(--db-lava);
    outline-offset: 2px;
}

.sd-ph-acc-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--db-text-muted);
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.sd-ph-acc-name {
    flex: 1;
    line-height: 1.35;
}

.sd-ph-acc-btn i {
    font-size: 13px;
    color: var(--db-text-muted);
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sd-ph-acc-btn.is-open {
    border-color: rgba(255, 54, 33, 0.35);
}

.sd-ph-acc-btn.is-open .sd-ph-acc-num {
    color: var(--db-lava);
}

.sd-ph-acc-btn.is-open i {
    transform: rotate(180deg);
    color: var(--db-lava);
}

/* ----- Detail panel ----- */
.sd-ph-stage {
    position: relative;
}

.sd-ph-panel {
    display: grid;
    grid-template-columns: 6fr 4fr;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(27, 49, 57, 0.10), 0 2px 8px rgba(27, 49, 57, 0.05);
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}

.sd-ph-panel.is-active {
    opacity: 1;
}

.sd-ph-main {
    padding: 44px 46px 46px;
}

.sd-ph-tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--db-lava);
    margin-bottom: 18px;
}

.sd-ph-title {
    font-size: clamp(24px, 2.4vw, 31px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--db-text-dark);
    margin-bottom: 18px;
}

.sd-ph-main p {
    font-size: 15px;
    line-height: 1.68;
    color: var(--db-text-body);
    max-width: 54ch;
}

.sd-ph-main p + p {
    margin-top: 15px;
}

/* Dark activities / output column */
.sd-ph-side {
    padding: 44px 40px 46px;
    background: #16283c;
}

.sd-ph-side-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--db-coral);
    margin-bottom: 16px;
}

.sd-ph-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.sd-ph-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
}

.sd-ph-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--db-coral);
}

.sd-ph-divider {
    height: 1px;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    margin: 26px 0 24px;
}

.sd-ph-output {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
}

/* ----- Safeguards ----- */
.sd-ph-safeguard {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 34px;
    padding: 0 4px;
}

.sd-ph-shield {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--db-text-dark);
    opacity: 0.75;
}

.sd-ph-shield svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sd-ph-safeguard-body strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--db-text-dark);
    margin-bottom: 6px;
}

.sd-ph-safeguard-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--db-text-body);
    max-width: 88ch;
}

@media (prefers-reduced-motion: reduce) {
    .sd-ph-panel { transition: none; }
    .sd-ph-acc-btn i { transition: none; }
}

/* ===================================================================
   WHY IT MATTERS — INDUSTRY FACTS (DARK SECTION)
   =================================================================== */

.sd-facts {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #0b0818;
    /* purple-bg.png, dimmed enough to keep the stat text legible over it */
    background-image:
        radial-gradient(90% 55% at 50% -14%, rgba(255, 54, 33, 0.16) 0%, transparent 60%),
        linear-gradient(180deg, rgba(11, 8, 24, 0.90) 0%, rgba(12, 9, 28, 0.80) 45%, rgba(10, 8, 22, 0.92) 100%),
        url('assets/backgrounds/purple-bg.png');
    background-position: center center, center center, center 38%;
    background-size: cover, cover, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

.sd-facts>* {
    position: relative;
    z-index: 1;
}

.sd-facts-head {
    max-width: 760px;
    margin-bottom: 60px;
}

.sd-facts-title {
    font-size: clamp(28px, 3.4vw, 43px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.03em;
    color: #f5f7f9;
    margin-bottom: 20px;
}

.sd-facts-lede {
    font-size: clamp(15px, 1.5vw, 16.5px);
    line-height: 1.66;
    color: #93a1b2;
    max-width: 640px;
}

/* ----- Stat grid ----- */
.sd-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
}

/* Translucent so the violet wave glows through behind the numbers */
.sd-fact {
    display: flex;
    flex-direction: column;
    padding: 36px 30px 32px;
    background: rgba(10, 8, 24, 0.66);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background var(--transition-fast);
}

.sd-fact:hover {
    background: rgba(26, 18, 50, 0.7);
}

.sd-fact-fig {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 18px;
    /* Digits must not reflow while counting up */
    font-variant-numeric: tabular-nums;
}

.sd-fact-num {
    font-size: clamp(38px, 4.2vw, 54px);
}

.sd-fact-unit {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    color: var(--db-coral);
    letter-spacing: -0.02em;
}

.sd-fact-label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #eef1f4;
    margin-bottom: 10px;
}

.sd-fact-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #8d9bad;
    margin-bottom: 22px;
}

.sd-fact-src {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-mono);
    font-size: 10.5px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.38);
}

/* ----- Footer ----- */
.sd-facts-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 44px;
}

.sd-facts-foot-text {
    font-size: 16px;
    line-height: 1.55;
    color: #b6c2d0;
    max-width: 46ch;
}

.sd-facts-cta {
    box-shadow: 0 10px 26px rgba(255, 54, 33, 0.28), 0 2px 6px rgba(0, 0, 0, 0.35);
}

.sd-facts-cta:hover {
    box-shadow: 0 14px 34px rgba(255, 54, 33, 0.4), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.sd-facts-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .sd-fact {
        transition: none;
    }
}

/* ===================================================================
   INDUSTRIES — SECTOR GRID (DARK)
   =================================================================== */

.sd-sectors {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #0a0716;
    /* purple-bg.png, cropped off-centre so it reads differently to .sd-facts */
    background-image:
        radial-gradient(75% 45% at 85% 106%, rgba(255, 54, 33, 0.13) 0%, transparent 62%),
        linear-gradient(180deg, rgba(10, 7, 22, 0.91) 0%, rgba(12, 8, 26, 0.83) 48%, rgba(9, 6, 20, 0.93) 100%),
        url('assets/backgrounds/purple-bg.png');
    background-position: center center, center center, 22% 62%;
    background-size: cover, cover, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

.sd-sectors>* {
    position: relative;
    z-index: 1;
}

.sd-sec-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.sd-sec-title {
    font-size: clamp(28px, 3.4vw, 43px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.03em;
    color: #f5f7f9;
    margin-bottom: 18px;
}

.sd-sec-lede {
    font-size: clamp(15px, 1.5vw, 16.5px);
    line-height: 1.66;
    color: #93a1b2;
}

/* ----- Grid ----- */
.sd-sec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sd-sec-card {
    --acc: 148, 163, 184;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 24px;
    border-radius: 16px;
    /* Translucent enough for the wave to glow through, opaque enough to keep
       the description text readable over it. */
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.012) 100%),
        rgba(11, 8, 24, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.085);
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

/* Cursor-tracking spotlight, tinted with the sector accent */
.sd-sec-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%),
            rgba(var(--acc), 0.20) 0%,
            rgba(var(--acc), 0.07) 38%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.sd-sec-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--acc), 0.42);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.45),
        0 0 32px rgba(var(--acc), 0.14);
}

.sd-sec-card:hover::before {
    opacity: 1;
}

/* Accent rule that grows across the card top on hover */
.sd-sec-rule {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, rgba(var(--acc), 0.95), rgba(var(--acc), 0));
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.sd-sec-card:hover .sd-sec-rule {
    width: 100%;
}

.sd-sec-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 18px;
    color: rgb(var(--acc));
    background: rgba(var(--acc), 0.11);
    border: 1px solid rgba(var(--acc), 0.22);
    transition: transform var(--transition-fast), background var(--transition-fast),
        box-shadow var(--transition-fast);
}

.sd-sec-card:hover .sd-sec-icon {
    transform: translateY(-2px) scale(1.06);
    background: rgba(var(--acc), 0.18);
    box-shadow: 0 8px 22px rgba(var(--acc), 0.28);
}

.sd-sec-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #f2f5f8;
    margin-bottom: 9px;
}

.sd-sec-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #8b99ab;
    margin-bottom: 20px;
}

.sd-sec-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sd-sec-tags span {
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast), border-color var(--transition-fast),
        background var(--transition-fast);
}

.sd-sec-card:hover .sd-sec-tags span {
    background: rgba(var(--acc), 0.10);
    border-color: rgba(var(--acc), 0.28);
    color: rgba(255, 255, 255, 0.82);
}

/* ----- Footnote ----- */
.sd-sec-foot {
    margin-top: 36px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #93a1b2;
}

.sd-sec-foot a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 6px;
    font-weight: 600;
    color: var(--db-coral);
    transition: gap var(--transition-fast);
}

.sd-sec-foot a:hover {
    gap: 11px;
}

.sd-sec-foot a:focus-visible {
    outline: 2px solid var(--db-coral);
    outline-offset: 3px;
    border-radius: 4px;
}

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

    .sd-sec-card,
    .sd-sec-icon,
    .sd-sec-rule,
    .sd-sec-tags span,
    .sd-sec-foot a {
        transition: none;
    }

    .sd-sec-card:hover {
        transform: none;
    }

    .sd-sec-card:hover .sd-sec-icon {
        transform: none;
    }

    .sd-sec-card:hover .sd-sec-rule {
        width: 100%;
    }
}

/* ===================================================================
   PRICING — WHITE SECTION
   =================================================================== */

.db-pricing-section {
    background: #ffffff;
    padding: 96px 0;
}

/* Path to a proposal */
/* Path to a proposal — connected journey (card-less) */
.sd-journey {
    --jgap: 26px;
    --jnode: 60px;
    --jlabel-h: 22px;
    --jlabel-gap: 16px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--jgap);
    margin-bottom: 34px;
}

.sd-jstep {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Connector runs between node edges; percentages resolve against the
   column, so it stays exact at any container width. */
.sd-jstep:not(:last-child)::before,
.sd-jstep:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(var(--jlabel-h) + var(--jlabel-gap) + var(--jnode) / 2);
}

.sd-jstep:not(:last-child)::before {
    left: calc(50% + var(--jnode) / 2 + 10px);
    right: calc(var(--jnode) / 2 + 10px - 50% - var(--jgap));
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(255, 54, 33, 0.5), rgba(255, 54, 33, 0.13));
    transform: translateY(-1px);
}

.sd-jstep:not(:last-child)::after {
    right: calc(var(--jnode) / 2 + 10px - 50% - var(--jgap));
    width: 7px;
    height: 7px;
    border-top: 2px solid rgba(255, 54, 33, 0.3);
    border-right: 2px solid rgba(255, 54, 33, 0.3);
    transform: translate(50%, -50%) rotate(45deg);
}

.sd-jlabel {
    height: var(--jlabel-h);
    margin-bottom: var(--jlabel-gap);
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--db-text-dark);
}

.sd-jnode {
    position: relative;
    z-index: 2;
    width: var(--jnode);
    height: var(--jnode);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff6a55 0%, #ff3621 100%);
    color: #ffffff;
    font-size: 21px;
    box-shadow:
        0 0 0 7px rgba(255, 54, 33, 0.07),
        0 12px 26px rgba(255, 54, 33, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sd-jbody {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sd-jbody p {
    font-size: 14.5px;
    line-height: 1.66;
    color: var(--db-text-body);
    max-width: 33ch;
    margin-bottom: 18px;
}

.sd-jmeta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 9999px;
    background: rgba(255, 54, 33, 0.06);
    border: 1px solid rgba(255, 54, 33, 0.16);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--db-lava);
}

.sd-jmeta i {
    font-size: 11px;
}

.sd-jstep:hover .sd-jnode {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 0 0 9px rgba(255, 54, 33, 0.10),
        0 18px 34px rgba(255, 54, 33, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .sd-jnode {
        transition: none;
    }

    .sd-jstep:hover .sd-jnode {
        transform: none;
    }
}

/* What we map on the call */
.sd-scope-cover {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
    padding: 40px;
    background: var(--db-off-white);
    border: 1px solid var(--db-border-light);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

.sd-cover-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--db-text-dark);
    margin: 8px 0 12px;
}

.sd-cover-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--db-text-body);
}

.sd-cover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
}

.sd-cover-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sd-cover-item i {
    font-size: 14px;
    color: var(--db-lava);
    margin-top: 3px;
    flex-shrink: 0;
}

.sd-cover-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--db-text-dark);
    margin-bottom: 3px;
}

.sd-cover-item span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: var(--db-text-body);
}

/* Callback CTA */
.sd-callback {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    padding: 52px 48px;
    background: var(--db-dark);
    border-radius: var(--radius-lg);
    text-align: center;
}

.sd-callback-glow {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 54, 33, 0.16) 0%, transparent 68%);
    pointer-events: none;
}

.sd-callback-body {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0 auto;
}

.sd-callback-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--db-text-light);
    margin-bottom: 20px;
}

.sd-callback-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.18);
}

.sd-callback-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 14px;
}

.sd-callback-desc {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--db-text-slate);
    margin-bottom: 28px;
}

.sd-callback-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.sd-callback-alt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--db-text-light);
    transition: color var(--transition-fast);
}

.sd-callback-alt:hover {
    color: #ffffff;
}

.sd-callback-alt i {
    font-size: 13px;
    color: var(--db-coral);
}

.sd-callback-notes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 26px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid var(--db-border-dark);
}

.sd-callback-notes span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--db-text-slate);
}

.sd-callback-notes i {
    font-size: 11px;
    color: var(--accent-green);
}

/* Guarantee strip */
.db-guarantee-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--db-off-white);
    border: 1px solid var(--db-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.db-g-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    font-size: 13.5px;
    color: var(--db-text-dark);
    font-weight: 500;
    border-right: 1px solid var(--db-border-light);
}

.db-g-item:last-child {
    border-right: none;
}

.db-g-item i {
    font-size: 15px;
}

/* ===================================================================
   FAQ SECTION — WHITE
   =================================================================== */

/* ===================================================================
   FAQ SECTION — SIDE BY SIDE (DATABRICKS EXACT)
   =================================================================== */

.db-faq-section {
    background: #ffffff;
    padding: 104px 0;
    border-top: 1px solid var(--db-border-light);
}

.db-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 64px;
    align-items: start;
}

/* Left side: FAQ Body & sticky content */
.db-faq-body-col {
    position: relative;
}

.db-faq-sticky-content {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
}

.db-faq-body-col .db-eyebrow {
    margin-bottom: 12px;
}

.db-faq-body-col .db-section-title {
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.18;
    color: var(--db-text-dark);
    margin-bottom: 14px;
    text-align: left;
}

.db-faq-body-col .db-section-sub {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--db-text-body);
    margin-bottom: 24px;
    text-align: left;
}

/* Help card below body */
.db-faq-help-card {
    background: #f8fafc;
    border: 1px solid var(--db-border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.db-faq-help-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 54, 33, 0.1);
    color: var(--db-lava);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.db-faq-help-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--db-text-dark);
    margin-bottom: 6px;
}

.db-faq-help-text p {
    font-size: 13px;
    color: var(--db-text-body);
    line-height: 1.55;
    margin-bottom: 16px;
}

.db-faq-help-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.db-faq-help-actions .db-btn-primary {
    font-size: 12.5px;
    padding: 9px 16px;
}

.db-faq-contact-link {
    font-size: 12.5px;
    color: var(--db-text-slate);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color 0.18s ease;
}

.db-faq-contact-link:hover {
    color: var(--db-lava);
}

/* Right side: Questions Dropdowns */
.db-faq-dropdowns-col {
    width: 100%;
}

.db-faq-list {
    width: 100%;
    margin: 0;
}

.db-faq-item {
    border-bottom: 1px solid var(--db-border-light);
    transition: background-color 0.2s ease;
}

.db-faq-item:first-child {
    border-top: 1px solid var(--db-border-light);
}

.db-faq-item[open] {
    background-color: rgba(248, 250, 252, 0.7);
}

.db-faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 12px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.db-faq-q::-webkit-details-marker {
    display: none;
}

.db-faq-idx {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--db-lava);
    background: rgba(255, 54, 33, 0.08);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-faq-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--db-text-dark);
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.18s ease;
}

.db-faq-item:hover .db-faq-title {
    color: var(--db-lava);
}

.db-faq-arrow {
    color: rgba(27, 49, 57, 0.45);
    font-size: 13px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.db-faq-item[open] .db-faq-arrow {
    transform: rotate(180deg);
    background: var(--db-lava);
    color: #ffffff;
}

.db-faq-a {
    padding: 0 16px 22px 56px;
}

.db-faq-a p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--db-text-body);
}

/* ===================================================================
   CONTACT SECTION — CREAM BACKGROUND
   =================================================================== */

.db-contact-section {
    background: var(--db-light-bg);
    padding: 96px 0;
}

.db-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.db-ct-form-console {
    background: #ffffff;
    border: 1px solid var(--db-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.db-console-top-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: var(--db-text-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.db-console-badge {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.db-console-sec-tag {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 6px;
}

form {
    padding: 28px 28px;
}

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

.db-form-row.full {
    grid-template-columns: 1fr;
}

.db-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.db-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--db-text-dark);
}

.db-form-field .req {
    color: var(--db-lava);
}

.db-form-field input,
.db-form-field select,
.db-form-field textarea {
    padding: 10px 14px;
    border: 1px solid var(--db-border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--db-text-dark);
    background: #ffffff;
    transition: border-color 0.2s ease;
    outline: none;
    width: 100%;
}

.db-form-field input:focus,
.db-form-field select:focus,
.db-form-field textarea:focus {
    border-color: var(--db-text-dark);
}

.db-form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.db-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.db-form-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--db-lava);
}

.db-form-consent label {
    font-size: 13px;
    color: var(--db-text-body);
    line-height: 1.5;
}

.db-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.db-btn-submit-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--db-lava);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--db-lava);
    cursor: pointer;
    transition: all 0.2s ease;
}

.db-btn-submit-main:hover {
    background: var(--db-lava-dark);
    border-color: var(--db-lava-dark);
    transform: translateY(-1px);
}

.db-btn-submit-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25d366;
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #25d366;
    cursor: pointer;
    transition: all 0.2s ease;
}

.db-btn-submit-wa:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.form-status {
    font-size: 13px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}

/* Right info panel */
.db-ct-info-console {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.db-contact-channel-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid var(--db-border-light);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.db-contact-channel-card:hover {
    border-color: rgba(27, 49, 57, 0.25);
    box-shadow: 0 4px 14px rgba(27, 49, 57, 0.07);
}

.ch-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ch-icon.cyan {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

.ch-icon.green {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.ch-icon.coral {
    background: rgba(255, 54, 33, 0.1);
    color: var(--db-lava);
}

/* Phone list */
.ch-tels {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 12px;
}

.ch-tel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    /* Pulled back so the numbers align with the label above them */
    margin: 0 -10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--db-text-dark);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.ch-tel i {
    font-size: 10.5px;
    color: var(--db-text-muted);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast),
        color var(--transition-fast);
}

.ch-tel:hover {
    background: rgba(255, 54, 33, 0.06);
    color: var(--db-lava);
}

.ch-tel:hover i {
    opacity: 1;
    transform: translateX(0);
    color: var(--db-lava);
}

.ch-tel:focus-visible {
    outline: 2px solid var(--db-lava);
    outline-offset: 1px;
}

/* Touch devices have no hover, so keep the arrow permanently visible */
@media (hover: none) {
    .ch-tel i {
        opacity: 0.55;
        transform: translateX(0);
    }
}

.ch-body .ch-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--db-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.ch-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--db-text-dark);
    margin-bottom: 3px;
}

.ch-body p {
    font-size: 12.5px;
    color: var(--db-text-muted);
    line-height: 1.4;
}

.ch-link {
    font-size: 13px;
    font-weight: 600;
    color: #25d366;
    display: block;
    margin-bottom: 3px;
}

/* ===================================================================
   FOOTER
   =================================================================== */

.footer-section {
    background: var(--db-dark);
    padding: 64px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand-col .brand-logo {
    margin-bottom: 16px;
}

.footer-p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--db-coral);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-sub-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 14px;
}

.newsletter-box {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
}

.newsletter-box input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-box button {
    padding: 10px 16px;
    background: var(--db-lava);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.newsletter-box button:hover {
    background: var(--db-lava-dark);
}

.news-msg {
    font-size: 12px;
    color: var(--accent-green);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.footer-contact-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-bottom-bar p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-policy-links a,
.footer-policy-links button {
    padding: 0;
    background: none;
    border: 0;
    font-family: inherit;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.15s ease;
}

.footer-policy-links a:hover,
.footer-policy-links button:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-policy-links button:focus-visible {
    outline: 2px solid var(--db-lava);
    outline-offset: 3px;
    border-radius: 3px;
}

.footer-policy-links span {
    color: rgba(255, 255, 255, 0.2);
}

/* ===================================================================
   BACK TO TOP
   =================================================================== */

.sd-totop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    /* Below the policy modal (1000) but above page content */
    z-index: 900;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Frosted glass — the coral icon keeps it legible over both the light
       and dark sections it floats above. */
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.38) 100%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    color: var(--db-lava);
    font-size: 16px;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(27, 49, 57, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s, box-shadow var(--transition-fast);
}

.sd-totop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sd-totop.is-visible:hover {
    transform: translateY(-3px) scale(1.06);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow:
        0 16px 38px rgba(27, 49, 57, 0.26),
        0 0 24px rgba(255, 54, 33, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Without backdrop blur the panel would read as barely-there white */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .sd-totop {
        background: rgba(255, 255, 255, 0.92);
    }
}

.sd-totop:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .sd-totop {
        right: 16px;
        bottom: 18px;
        width: 44px;
        height: 44px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sd-totop {
        transition: opacity 0.2s ease, visibility 0.2s;
        transform: none;
    }

    .sd-totop.is-visible,
    .sd-totop.is-visible:hover {
        transform: none;
    }
}

/* ===================================================================
   POLICY MODAL
   =================================================================== */

.sd-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.sd-modal[hidden] {
    display: none;
}

.sd-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 18, 0.72);
    backdrop-filter: blur(4px);
    animation: sdModalFade 0.2s ease;
}

.sd-modal-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 720px;
    max-height: min(85vh, 760px);
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(6, 12, 18, 0.4);
    overflow: hidden;
    animation: sdModalIn 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@keyframes sdModalIn {
    from { opacity: 0; transform: translateY(14px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.sd-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 30px 20px;
    border-bottom: 1px solid var(--db-border-light);
    flex-shrink: 0;
}

.sd-modal-kicker {
    display: block;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--db-lava);
    margin-bottom: 7px;
}

.sd-modal-title {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--db-text-dark);
    line-height: 1.2;
}

.sd-modal-close {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--db-off-white);
    border: 1px solid var(--db-border-light);
    border-radius: var(--radius-sm);
    color: var(--db-text-body);
    font-size: 15px;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.sd-modal-close:hover {
    background: var(--db-text-dark);
    border-color: var(--db-text-dark);
    color: #ffffff;
}

.sd-modal-close:focus-visible {
    outline: 2px solid var(--db-lava);
    outline-offset: 2px;
}

.sd-modal-body {
    padding: 24px 30px 28px;
    overflow-y: auto;
    flex: 1;
}

.sd-modal-body:focus {
    outline: none;
}

.sd-modal-body p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--db-text-body);
    margin-bottom: 16px;
}

.sd-modal-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--db-text-dark);
    letter-spacing: -0.01em;
    margin: 26px 0 10px;
}

.sd-modal-body h4:first-child {
    margin-top: 0;
}

.sd-modal-body ul {
    list-style: none;
    margin-bottom: 16px;
}

.sd-modal-body li {
    position: relative;
    padding-left: 20px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--db-text-body);
    margin-bottom: 9px;
}

.sd-modal-body li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 1px;
    background: var(--db-lava);
    opacity: 0.6;
}

.sd-modal-body strong {
    color: var(--db-text-dark);
    font-weight: 600;
}

.sd-modal-body a {
    color: var(--db-lava);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sd-modal-todo {
    padding: 1px 6px;
    background: rgba(255, 176, 32, 0.16);
    border: 1px dashed rgba(200, 130, 0, 0.5);
    border-radius: 3px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: #8a5a00;
}

.sd-modal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 15px 30px;
    border-top: 1px solid var(--db-border-light);
    background: var(--db-off-white);
    font-size: 12.5px;
    color: var(--db-text-muted);
    flex-shrink: 0;
}

.sd-modal-foot a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    color: var(--db-text-dark);
}

.sd-modal-foot a:hover {
    color: var(--db-lava);
}

.sd-modal-foot i {
    font-size: 11px;
    color: var(--db-lava);
}

body.sd-modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .sd-modal {
        padding: 0;
    }

    .sd-modal-panel {
        max-width: none;
        max-height: 100vh;
        height: 100%;
        border-radius: 0;
    }

    .sd-modal-head {
        padding: 20px 20px 16px;
    }

    .sd-modal-title {
        font-size: 20px;
    }

    .sd-modal-body {
        padding: 20px;
    }

    .sd-modal-foot {
        padding: 14px 20px;
    }
}

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

    .sd-modal-panel,
    .sd-modal-backdrop {
        animation: none;
    }
}

/* ===================================================================
   ANIMATIONS & SCROLL
   =================================================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate][data-delay="50"] {
    transition-delay: 0.05s;
}

[data-animate][data-delay="100"] {
    transition-delay: 0.1s;
}

[data-animate][data-delay="120"] {
    transition-delay: 0.12s;
}

[data-animate][data-delay="60"] {
    transition-delay: 0.06s;
}

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

/* ===================================================================
   RESPONSIVE — COMPREHENSIVE MOBILE-FIRST SYSTEM
   Breakpoints: 1200px (laptop) | 768px (tablet) | 480px (mobile)
   =================================================================== */

/* ── 1200px: Large tablet / small laptop ── */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 56px;
    }

    /* Products */
    .db-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Industries */
    .sd-sec-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Split sections */
    .db-split-text-col {
        padding: 64px 48px 64px 56px;
    }

    .db-split-visual-col {
        padding: 48px 56px 48px 48px;
        min-height: 480px;
    }

    .db-split-row.reverse .db-split-text-col {
        padding: 64px 56px 64px 48px;
    }

    .db-split-row.reverse .db-split-visual-col {
        padding: 48px 48px 48px 56px;
    }
}

/* ── 1024px: Tablet landscape ── */
@media (max-width: 1024px) {

    /* Why SpotDefence */
    .sd-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Testimonials — two columns */
    .sd-tst-grid {
        column-count: 2;
    }

    /* Products */
    .db-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Industries */
    .sd-sec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing / scoping */
    .sd-journey {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    /* The connector rotates: left-to-right on desktop, top-to-bottom here */
    .sd-jstep:not(:last-child) {
        padding-bottom: 52px;
    }

    .sd-jstep:not(:last-child)::before {
        top: auto;
        bottom: 22px;
        left: 50%;
        right: auto;
        width: 2px;
        height: 24px;
        transform: translateX(-1px);
        background: linear-gradient(180deg, rgba(255, 54, 33, 0.5), rgba(255, 54, 33, 0.13));
    }

    .sd-jstep:not(:last-child)::after {
        top: auto;
        bottom: 14px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(135deg);
    }

    .sd-jbody p {
        max-width: none;
        font-size: 15px;
    }

    .sd-jlabel {
        white-space: normal;
        height: auto;
    }

    .sd-scope-cover {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Contact */
    .db-contact-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .db-faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .db-faq-sticky-content {
        position: static;
    }

    /* Industry facts */
    .sd-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Split panels */
    .db-split-row,
    .db-split-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    /* Once stacked, lead with the copy — the visual follows it. */
    .db-split-row.reverse .db-split-text-col {
        order: -1;
    }

    .db-split-text-col,
    .db-split-row.reverse .db-split-text-col {
        padding: 56px 40px;
    }

    .db-split-visual-col,
    .db-split-row.reverse .db-split-visual-col {
        padding: 48px 40px;
        min-height: auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── 768px: Tablet portrait / large mobile ── */
@media (max-width: 768px) {

    /* Base */
    .container {
        padding: 0 32px;
    }

    /* Section padding */
    .sd-why-section,
    .db-products-section,
    .sd-facts,
    .db-pipeline-section,
    .sd-sectors,
    .sd-tst,
    .db-pricing-section,
    .db-faq-section,
    .db-contact-section {
        padding: 64px 0;
    }

    /* Testimonials — single column */
    .sd-tst-grid {
        column-count: 1;
    }

    .sd-tst-head {
        margin-bottom: 36px;
    }

    /* Hero */
    .home-banner-section {
        padding: 48px 0 64px;
    }

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

    /* Ambient glow is sized for the desktop card — scale it down here */
    .banner-visual::before {
        width: 300px;
        height: 300px;
        filter: blur(40px);
    }

    /* Single column here, so let the image keep its natural aspect ratio
       and drop the 3D tilt — it reads as a rendering glitch on a phone. */
    .hero-visual-stage {
        --rx: 0;
        --ry: 0;
        perspective: none;
    }

    .hero-visual-card {
        max-width: 460px;
        height: auto;
        min-height: 0;
        transform: none;
        box-shadow: 0 0 28px rgba(168, 85, 247, 0.26), 0 16px 40px rgba(0, 0, 0, 0.6);
    }

    .hero-feature-image {
        height: auto;
        scale: 1;
        translate: 0 0;
    }

    /* Chips would overhang off-screen at this width */
    .hero-chip {
        display: none;
    }

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

    .hero-subhead {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .banner-btn-group {
        gap: 10px;
    }

    .db-btn-primary,
    .db-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .trust-stat-divider {
        display: none;
    }

    .hero-cta-caption {
        font-size: 12px;
        gap: 6px;
    }

    /* Top bar marquee on tablet/mobile */
    .top-bar {
        height: 36px;
        font-size: 11.5px;
    }

    .top-marquee-item {
        font-size: 11px;
        gap: 7px;
    }

    .t-pill {
        font-size: 9.5px;
        padding: 1.5px 6px;
    }

    .t-sep {
        margin: 0 16px;
    }

    /* Nav */
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Menu stacks vertically here, so a vertical hairline makes no sense */
    .nav-divider {
        display: none;
    }

    /* Hamburger doesn't need the desktop CTA inset */
    .nav-container {
        padding: 0 24px;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        z-index: 999;
        gap: 4px;
        border-top: 1px solid var(--db-border-light);
    }

    .nav-menu.open .nav-link {
        padding: 12px 8px;
        font-size: 15px;
        width: 100%;
    }

    /* Section headers */
    .db-section-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .db-section-sub {
        font-size: 15px;
    }

    .db-section-header {
        margin-bottom: 40px;
    }

    /* Why SpotDefence */
    .sd-why-card {
        padding: 26px 22px 24px;
    }

    .sd-why-card-head {
        margin-bottom: 24px;
    }

    .sd-why-card-title {
        font-size: 18px;
    }

    .sd-why-foot .db-btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Products */
    .db-products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .db-product-card {
        padding: 24px 20px;
    }

    /* Roomier tap targets for the module filters */
    .db-pill-btn {
        padding: 11px 18px;
        font-size: 13.5px;
    }

    .db-console-metrics-bar {
        flex-direction: column;
        gap: 0;
    }

    /* Methodology — swap the phase rail for an accordion */
    .sd-ph-rail {
        display: none;
    }

    .sd-ph {
        margin-top: 32px;
    }

    .sd-ph-acc {
        display: block;
    }

    .sd-ph-acc:not(:first-child) {
        margin-top: 10px;
    }

    .sd-ph-acc-btn.is-open {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .sd-ph-panel.is-active {
        grid-template-columns: 1fr;
        border: 1px solid rgba(255, 54, 33, 0.35);
        border-top: 0;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: none;
    }

    .sd-ph-main {
        padding: 24px 22px 22px;
    }

    /* The accordion header already names the phase */
    .sd-ph-tag {
        display: none;
    }

    .sd-ph-title {
        font-size: 22px;
    }

    .sd-ph-main p,
    .sd-ph-list li,
    .sd-ph-output {
        font-size: 16px;
    }

    .sd-ph-side {
        padding: 24px 22px 26px;
    }

    .sd-ph-safeguard {
        margin-top: 28px;
        gap: 14px;
    }

    /* Industry facts */
    .sd-facts-grid {
        grid-template-columns: 1fr;
    }

    .sd-fact {
        padding: 28px 22px 26px;
    }

    .sd-facts-head {
        margin-bottom: 40px;
    }

    .sd-facts-foot .db-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .db-guarantee-strip {
        grid-template-columns: 1fr;
    }

    .db-g-item {
        border-right: none;
        border-bottom: 1px solid var(--db-border-light);
    }

    /* Split panels */
    .db-split-row,
    .db-split-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .db-split-text-col,
    .db-split-row.reverse .db-split-text-col {
        padding: 40px 24px;
    }

    .db-split-visual-col,
    .db-split-row.reverse .db-split-visual-col {
        padding: 32px 24px;
        min-height: auto;
    }

    .db-split-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .db-split-card {
        max-width: 100%;
    }

    /* Parallax strip */
    .db-parallax-strip {
        background-attachment: scroll !important;
        height: auto;
        padding: 64px 24px;
    }

    .db-parallax-headline {
        font-size: clamp(20px, 5vw, 30px);
    }

    /* Industries */
    .sd-sec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sd-sec-card {
        padding: 24px 20px 22px;
    }

    .sd-sec-head {
        margin-bottom: 38px;
    }

    /* Pricing */
    .sd-scope-cover {
        padding: 28px 24px;
    }

    .sd-cover-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sd-callback {
        padding: 40px 24px;
    }

    .sd-callback-actions {
        flex-direction: column;
        gap: 16px;
    }

    .db-pricing-card {
        padding: 28px 24px;
    }

    /* FAQ */
    .db-faq-title {
        font-size: 15px;
    }

    .db-faq-idx {
        font-size: 11px;
        width: 26px;
        height: 26px;
    }

    /* Contact */
    .db-contact-grid {
        grid-template-columns: 1fr;
    }

    .db-form-row {
        grid-template-columns: 1fr;
    }

    .db-contact-info-cards {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .newsletter-box {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-box input {
        border-radius: var(--radius-sm);
    }

    .newsletter-box button {
        border-radius: var(--radius-sm);
        width: 100%;
    }

    /* Client ticker */
    .ticker-label-box {
        display: none;
    }

    .ticker-window {
        width: 100%;
    }

    /* Parallax bg — disable fixed on mobile for performance */
    .db-products-section,
        .db-dark-section,
    .why-section,
    .db-parallax-strip {
        background-attachment: scroll !important;
    }
}

/* ── 480px: Small mobile ── */
@media (max-width: 480px) {

    /* Base */
    .container {
        padding: 0 22px;
    }

    /* Hero */
    .home-banner-section {
        padding: 36px 0 48px;
    }

    .hero-title {
        font-size: clamp(26px, 9vw, 36px);
        letter-spacing: -0.02em;
    }

    .hero-subhead {
        font-size: 15px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .banner-btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .db-btn-primary,
    .db-btn-secondary {
        width: 100%;
        font-size: 14px;
        padding: 13px 20px;
    }

    /* Section headers */
    .db-section-title {
        font-size: clamp(20px, 7vw, 28px);
    }

    .db-eyebrow {
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    /* Industries */
    .sd-sec-grid {
        grid-template-columns: 1fr;
    }

    /* Trust */
    .db-certs-grid {
        grid-template-columns: 1fr;
    }

    /* Split visual card */
    .asset-row {
        font-size: 11px;
    }

    .asset-row.lvl2 {
        padding-left: 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-policy-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    /* Pricing */
    .db-pricing-card {
        padding: 24px 18px;
    }

    /* Nav */
    .nav-cta {
        padding: 10px 16px;
        font-size: 13px;
    }

    .navbar-brand-text {
        font-size: 18px;
    }

    .navbar-logo {
        width: 26px;
        height: 26px;
    }

    /* Top bar marquee on small phones */
    .top-bar {
        height: 34px;
        font-size: 11px;
    }

    .top-marquee-item {
        font-size: 10.5px;
        gap: 6px;
    }

    .t-pill {
        font-size: 9px;
        padding: 1px 5px;
    }

    .t-sep {
        margin: 0 12px;
    }
}

/* ===================================================================
   SIDE-BY-SIDE SPLIT FEATURE SECTIONS
   =================================================================== */

.db-split-feature-section {
    background: var(--db-white);
}

.db-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 560px;
}

.db-split-row.reverse {
    direction: rtl;
}

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

.db-split-text-col {
    padding: 80px 64px 80px 80px;
}

.db-split-row.reverse .db-split-text-col {
    padding: 80px 80px 80px 64px;
}

.db-split-visual-col {
    padding: 60px 80px 60px 64px;
    background: var(--db-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.db-split-row.reverse .db-split-visual-col {
    padding: 60px 64px 60px 80px;
}

.db-split-title {
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 600;
    color: var(--db-text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.db-split-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--db-text-body);
    margin-bottom: 28px;
    max-width: 480px;
}

.db-split-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.db-split-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--db-text-body);
    line-height: 1.5;
}

.db-split-list i {
    color: var(--db-lava);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.db-split-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--db-lava);
    transition: gap 0.2s ease;
    border-bottom: 1px solid transparent;
}

.db-split-cta:hover {
    gap: 12px;
    border-bottom-color: var(--db-lava);
}

/* Split visual cards */
.db-split-card {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.db-split-card.dark {
    background: var(--db-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.db-split-card.light {
    background: #ffffff;
    border: 1px solid var(--db-border-light);
}

.db-split-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.db-split-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.db-split-card-dot.active {
    background: var(--accent-green);
    box-shadow: 0 0 6px var(--accent-green);
    animation: radarPulse 2s infinite;
}

.db-split-card-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    flex: 1;
}

.db-split-card-status {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--accent-green);
    background: rgba(0, 230, 118, 0.1);
    padding: 2px 8px;
    border-radius: 9999px;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

/* Asset tree */
.db-split-asset-tree {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.asset-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    padding: 5px 8px;
    border-radius: 4px;
    transition: background 0.15s ease;
    cursor: default;
}

.asset-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.asset-row.root {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
}

.asset-row.lvl1 {
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.7);
}

.asset-row.lvl2 {
    padding-left: 40px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.asset-tag {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    margin-left: auto;
}

.asset-tag.new {
    background: rgba(147, 197, 253, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, 0.3);
}

.asset-tag.exposed {
    background: rgba(255, 54, 33, 0.15);
    color: var(--db-lava);
    border: 1px solid rgba(255, 54, 33, 0.3);
}

.asset-tag.warn {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.db-split-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.db-split-card-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Light card (report) */
.db-split-report-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--db-border-light);
}

.db-report-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255, 54, 33, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--db-lava);
    font-size: 18px;
    flex-shrink: 0;
}

.db-split-report-header strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--db-text-dark);
    margin-bottom: 2px;
}

.db-split-report-header span {
    font-size: 12px;
    color: var(--db-text-muted);
}

.db-split-vuln-list {
    padding: 12px 22px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.db-vuln-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--db-border-light);
    font-size: 13.5px;
}

.db-vuln-row:last-child {
    border-bottom: none;
}

.db-sev-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.db-sev-badge.crit {
    background: #fee2e2;
    color: #dc2626;
}

.db-sev-badge.high {
    background: #fef3c7;
    color: #d97706;
}

.db-sev-badge.med {
    background: #dbeafe;
    color: #2563eb;
}

.db-sev-badge.low {
    background: #d1fae5;
    color: #059669;
}

.db-vuln-name {
    flex: 1;
    color: var(--db-text-dark);
}

.db-vuln-row.resolved .fa-circle-check {
    color: #10b981;
    font-size: 14px;
}

.db-split-report-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    border-top: 1px solid var(--db-border-light);
    font-size: 12.5px;
    color: var(--db-text-muted);
}

.db-cert-stamp {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #059669;
    font-weight: 600;
}

/* ===================================================================
   ENGINEER-READY REPORTS — CONSULTING DELIVERABLE DOSSIER
   Vector-sharp native composition for high-density / 4K displays.
   =================================================================== */

.er-report-section {
    --er-ink: #071a3e;
    --er-blue: #087eff;
    --er-coral: #ff584f;
    --er-mint: #16a67b;
    position: relative;
    overflow: hidden;
    padding: 48px 0 34px;
    color: var(--er-ink);
    background-color: #f5faff;
    background-image:
        linear-gradient(rgba(50, 117, 179, .075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 117, 179, .075) 1px, transparent 1px),
        radial-gradient(circle at 73% 42%, rgba(44, 155, 255, .11), transparent 34%),
        linear-gradient(120deg, #f9fcff 0%, #eef7ff 100%);
    background-size: 64px 64px, 64px 64px, auto, auto;
}

.er-report-section::before,
.er-report-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.er-report-section::before {
    width: 100px;
    height: 1px;
    top: 104px;
    right: 10%;
    background: #7fb5e8;
    box-shadow: 34px -14px 0 -0.4px #7fb5e8;
    opacity: .65;
}

.er-report-section::after {
    width: 13px;
    height: 13px;
    top: 82px;
    right: calc(10% + 26px);
    border-top: 1px solid #7fb5e8;
    border-left: 1px solid #7fb5e8;
}

.er-report-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 80px, 1450px);
    margin: 0 auto;
}

.er-report-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.er-report-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--er-coral);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.er-report-heading h2 {
    margin: 0 0 12px;
    color: var(--er-ink);
    font-size: clamp(42px, 3.45vw, 56px);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.045em;
}

.er-report-heading p {
    max-width: 700px;
    margin: 0;
    color: #456181;
    font-size: 16px;
    line-height: 1.5;
}

.er-report-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 220px;
    margin-top: 8px;
    padding: 15px 22px;
    border: 1px solid #ff756e;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(135deg, #ff635a, #f8403d);
    box-shadow: 0 14px 28px rgba(236, 52, 48, .2);
    font-size: 15px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease;
}

.er-report-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(236, 52, 48, .28);
}

.er-dossier {
    position: relative;
    height: 510px;
    margin-top: 18px;
    perspective: 1600px;
}

.er-cover,
.er-page,
.er-brief,
.er-retest {
    box-shadow: 0 24px 58px rgba(20, 55, 90, .17), 0 4px 12px rgba(20, 55, 90, .1);
}

.er-cover {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 62px;
    width: 29%;
    max-width: 374px;
    height: 410px;
    padding: 30px 32px 26px;
    overflow: hidden;
    border: 1px solid rgba(103, 164, 229, .38);
    border-radius: 3px 9px 9px 3px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 10%, rgba(27, 132, 255, .22), transparent 34%),
        linear-gradient(145deg, #07162d, #0b2545 68%, #08162c);
    transform: rotate(-3.4deg);
    transform-origin: bottom left;
}

.er-cover::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: linear-gradient(90deg, #030b19, #183556, #07162d);
    box-shadow: 4px 0 12px rgba(0, 0, 0, .38);
}

.er-cover-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 750;
    letter-spacing: -.03em;
}

.er-cover-brand span {
    width: 22px;
    height: 22px;
    border: 5px solid #168cff;
    border-radius: 4px 10px 4px 10px;
    transform: rotate(36deg);
}

.er-cover-rule {
    width: 38px;
    height: 3px;
    margin-top: 38px;
    background: #3d9dff;
}

.er-cover h3 {
    margin: 29px 0 14px;
    color: #f7fbff;
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 650;
    line-height: 1.04;
    letter-spacing: -.035em;
    text-shadow: 0 2px 18px rgba(34, 135, 255, .12);
}

.er-confidential {
    margin: 0;
    color: #a9ccef;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.er-cover-lines {
    position: absolute;
    inset: auto -45px 96px -25px;
    height: 95px;
    transform: skewX(-26deg) rotate(-4deg);
}

.er-cover-lines i {
    display: block;
    height: 1px;
    margin: 22px 0;
    background: linear-gradient(90deg, transparent, #158aff 22%, #186bff 80%, transparent);
    box-shadow: 0 0 10px rgba(17, 126, 255, .55);
}

.er-cover-meta {
    position: absolute;
    left: 32px;
    bottom: 38px;
}

.er-cover-meta span,
.er-cover-meta strong {
    display: block;
}

.er-cover-meta span {
    margin-bottom: 4px;
    color: #7da8d3;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.er-cover-meta strong { font-size: 13px; font-weight: 550; }
.er-cover small { position: absolute; right: 24px; bottom: 14px; color: #6e96bd; font-size: 9px; }

.er-open-report {
    position: absolute;
    z-index: 3;
    left: 24.5%;
    top: 56px;
    width: 56%;
    height: 418px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #c9d9e9;
    border-radius: 4px 7px 7px 4px;
    background: #fdfefe;
    box-shadow: 0 27px 62px rgba(20, 55, 90, .18), 0 3px 10px rgba(20, 55, 90, .1);
    transform: rotate(.7deg);
}

.er-open-report::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 18px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(43, 78, 112, .07), transparent 45%, rgba(43, 78, 112, .06));
    pointer-events: none;
}

.er-page {
    position: relative;
    min-width: 0;
    padding: 20px 23px;
    box-shadow: none;
    background:
        linear-gradient(rgba(59, 121, 178, .025) 1px, transparent 1px),
        #fff;
    background-size: 100% 27px;
}

.er-page-kicker {
    display: flex;
    justify-content: space-between;
    padding-bottom: 9px;
    border-bottom: 1px solid #d7e2ec;
    color: #58779a;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.er-finding-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 17px 0 13px;
}

.er-finding-title > span {
    padding: 4px 10px;
    border-radius: 3px;
    color: #fff;
    background: linear-gradient(#ff6c63, #e83c36);
    box-shadow: 0 5px 12px rgba(229, 50, 45, .22);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.er-finding-title h3,
.er-remediation-page > h3 {
    margin: 0;
    color: #0b2a56;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.er-impact strong { color: #173c69; font-size: 12px; }
.er-impact p { margin: 4px 0 12px; color: #405c7a; font-size: 11px; line-height: 1.45; }

.er-evidence {
    overflow: hidden;
    border: 1px solid #c5d9eb;
    border-radius: 5px;
    background: #f1f7fc;
}

.er-evidence-head,
.er-diff-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 9px;
    border-bottom: 1px solid #d0e0ed;
    color: #193c63;
    font-size: 9px;
}

.er-evidence-head span,
.er-diff-title span { color: #7891aa; font-size: 8px; text-transform: uppercase; }

.er-evidence code {
    display: block;
    padding: 7px 9px;
    border-bottom: 1px solid #d7e4ee;
    color: #244a70;
    font-family: var(--font-mono);
    font-size: 8px;
    line-height: 1.45;
    white-space: normal;
}

.er-evidence code:last-child { border: 0; }
.er-evidence code em { color: #087adf; font-style: normal; font-weight: 700; }

.er-validation {
    position: absolute;
    right: 23px;
    bottom: 21px;
    padding: 7px 10px;
    border: 1px solid #21a679;
    border-radius: 3px;
    color: #07815d;
    background: #e9fff7;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: rotate(-4deg);
}

.er-validation i { margin-right: 5px; }
.er-page-no { position: absolute; left: 23px; bottom: 13px; color: #7891a8; font-size: 8px; }

.er-remediation-page { padding-left: 28px; }
.er-remediation-page > h3 { margin-top: 18px; text-transform: uppercase; }
.er-remediation-intro { margin: 5px 0 13px; color: #5d7691; font-size: 9px; line-height: 1.4; }
.er-fix-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.er-fix-list li { display: flex; gap: 9px; }
.er-fix-list li > span {
    display: grid;
    place-items: center;
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #3198ff, #1160d7);
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(16, 105, 218, .18);
}
.er-fix-list strong { display: block; color: #163e6a; font-size: 10px; }
.er-fix-list p { margin: 2px 0 0; color: #5b7590; font-size: 8px; line-height: 1.35; }

.er-diff {
    margin-top: 12px;
    overflow: hidden;
    border: 1px solid #c5d8e9;
    border-radius: 5px;
    background: #f7fafc;
}

.er-code-before,
.er-code-after { display: grid; grid-template-columns: 54px 1fr; align-items: center; min-height: 31px; font-size: 8px; }
.er-code-before { color: #aa2c31; background: #fff0f1; }
.er-code-after { color: #067956; background: #e9faf4; }
.er-code-before b,.er-code-after b { padding-left: 8px; }
.er-code-before code,.er-code-after code { overflow-wrap: anywhere; font-family: var(--font-mono); font-size: 8px; }

.er-brief {
    position: absolute;
    z-index: 4;
    top: 18px;
    right: 0;
    width: 22.5%;
    height: 282px;
    padding: 24px 24px 20px;
    border: 1px solid #d3e0ec;
    border-radius: 3px;
    color: #14365e;
    background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(240,247,253,.98));
    transform: rotate(4.3deg);
}

.er-brief > span,
.er-retest > span {
    color: #153d6a;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.er-brief h3 { margin: 5px 0 16px; font-size: 16px; line-height: 1.2; }
.er-brief h3::after { content:""; display:block; width:32px; height:2px; margin-top:10px; background:var(--er-coral); }
.er-brief ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.er-brief li { display: flex; align-items: flex-start; gap: 9px; }
.er-brief li i { width: 20px; padding-top: 2px; color: #1a66b7; font-size: 13px; }
.er-brief li strong,.er-brief li small { display: block; }
.er-brief li strong { font-size: 9px; }
.er-brief li small { margin-top: 2px; color: #66809a; font-size: 8px; line-height: 1.35; }

.er-retest {
    position: absolute;
    z-index: 6;
    right: 1.5%;
    bottom: 4px;
    width: 21.5%;
    height: 230px;
    padding: 23px 22px;
    border: 1px solid #b7dbd0;
    border-radius: 3px;
    color: #173f51;
    background:
        linear-gradient(rgba(22, 132, 104, .045) 1px, transparent 1px),
        linear-gradient(145deg, #f2fffb, #e8f8f4);
    background-size: 100% 24px, auto;
    transform: rotate(4.5deg);
}

.er-retest-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 2px solid var(--er-mint);
    border-radius: 50%;
    color: var(--er-mint);
    font-size: 18px;
}

.er-retest h3 { margin: 5px 0 12px; color: #126a54; font-size: 18px; }
.er-retest p { max-width: 75%; margin: 0 0 12px; color: #55786e; font-size: 9px; line-height: 1.45; }
.er-retest dl { display: grid; gap: 5px; margin: 0; }
.er-retest dl div { display: grid; grid-template-columns: 64px 1fr; font-size: 8px; }
.er-retest dt { color: #709188; }
.er-retest dd { margin: 0; color: #2e6053; font-weight: 600; }
.er-signature { position: absolute; left: 22px; bottom: 17px; padding-top: 7px; border-top: 1px solid #7cae9f; color: #568478; font-size: 8px; }

.er-callout {
    position: absolute;
    z-index: 7;
    color: #123f73;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

.er-callout::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 28px;
    border-top: 1px solid #104778;
    border-left: 1px solid #104778;
}

.er-callout::after { content:""; position:absolute; width:7px; height:7px; border-radius:50%; background:#104778; }
.er-callout-proof { top: 12px; left: 36%; }
.er-callout-proof::before { top: 22px; left: -44px; }
.er-callout-proof::after { top: 18px; left: -48px; }
.er-callout-fix { top: 9px; left: 61%; }
.er-callout-fix::before { top: 22px; left: -44px; }
.er-callout-fix::after { top: 18px; left: -48px; }
.er-callout-retest { right: 24%; bottom: 3px; }
.er-callout-retest::before { top: -18px; right: -45px; transform: scaleX(-1) rotate(15deg); }
.er-callout-retest::after { top: -22px; right: -49px; }

.er-report-footer {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 2fr);
    align-items: center;
    gap: 34px;
    padding-top: 20px;
    border-top: 1px solid #9fc2e2;
}

.er-report-footer > p { margin: 0; color: #4b6683; font-size: 13px; line-height: 1.45; }
.er-report-footer ul { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0; padding: 0; list-style: none; }
.er-report-footer li { display: flex; align-items: center; gap: 9px; color: #173b67; font-size: 12px; white-space: nowrap; }
.er-report-footer li i { color: #125da9; font-size: 18px; }

@media (min-width: 1700px) {
    .er-report-shell { width: min(100% - 160px, 1660px); }
    .er-dossier { height: 570px; }
    .er-cover { max-width: 440px; height: 470px; }
    .er-open-report { height: 476px; }
    .er-page { padding: 24px 28px; }
    .er-finding-title h3,.er-remediation-page > h3 { font-size: 24px; }
    .er-impact p { font-size: 14px; }
    .er-evidence code { font-size: 11px; }
    .er-fix-list strong { font-size: 13px; }
    .er-fix-list p,.er-remediation-intro { font-size: 11px; }
    .er-brief { height: 320px; }
    .er-retest { height: 250px; }
}

@media (max-width: 1120px) {
    .er-report-shell { width: min(100% - 48px, 1040px); }
    .er-cover { width: 31%; }
    .er-open-report { left: 27%; width: 57%; }
    .er-brief { width: 23%; }
    .er-retest { width: 23%; }
    .er-callout { display: none; }
    .er-page { padding: 18px 16px; }
    .er-finding-title h3,.er-remediation-page > h3 { font-size: 17px; }
}

@media (max-width: 900px) {
    .er-report-section { padding: 58px 0; }
    .er-report-heading { display: block; }
    .er-report-heading h2 br { display: none; }
    .er-report-cta { margin-top: 24px; }
    .er-dossier { height: auto; margin-top: 38px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; perspective: none; }
    .er-cover,.er-open-report,.er-brief,.er-retest { position: relative; inset: auto; width: auto; max-width: none; height: auto; transform: none; }
    .er-cover { min-height: 410px; }
    .er-open-report { grid-column: 1 / -1; min-height: 430px; }
    .er-brief,.er-retest { min-height: 250px; }
    .er-report-footer { margin-top: 30px; grid-template-columns: 1fr; }
    .er-report-footer ul { flex-wrap: wrap; justify-content: flex-start; }
}

@media (max-width: 620px) {
    .er-report-section { background-size: 42px 42px, 42px 42px, auto, auto; }
    .er-report-shell { width: min(100% - 32px, 580px); }
    .er-report-heading h2 { font-size: 38px; }
    .er-report-heading p { font-size: 15px; }
    .er-report-cta { width: 100%; }
    .er-dossier { grid-template-columns: 1fr; }
    .er-cover { min-height: 390px; }
    .er-open-report { grid-column: 1; grid-template-columns: 1fr; height: auto; }
    .er-open-report::before { display: none; }
    .er-page { min-height: 390px; padding: 22px; }
    .er-brief,.er-retest { min-height: 270px; }
    .er-report-footer ul { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .er-report-footer li { white-space: normal; }
}

/* Compact desktop dossier: keeps the complete deliverable inside shorter viewports. */
@media (min-width: 901px) {
    .er-report-section { padding: 30px 0 24px; }
    .er-report-heading h2 { margin-bottom: 9px; font-size: clamp(38px, 3vw, 48px); }
    .er-report-heading p { font-size: 15px; }
    .er-report-cta { margin-top: 4px; padding-block: 13px; }
    .er-dossier { height: 428px; margin-top: 10px; }

    .er-cover {
        top: 51px;
        height: 346px;
        padding: 24px 27px 21px;
    }
    .er-cover-rule { margin-top: 27px; }
    .er-cover h3 { margin: 22px 0 10px; font-size: clamp(24px, 1.9vw, 30px); }
    .er-cover-lines { bottom: 78px; height: 78px; }
    .er-cover-meta { left: 27px; bottom: 29px; }
    .er-cover small { display: none; }

    .er-open-report { top: 45px; height: 354px; }
    .er-page { padding: 15px 18px; }
    .er-page-kicker { padding-bottom: 7px; }
    .er-finding-title { margin: 11px 0 8px; }
    .er-finding-title h3,
    .er-remediation-page > h3 { font-size: 18px; }
    .er-impact p { margin: 3px 0 8px; line-height: 1.35; }
    .er-evidence-head,
    .er-diff-title { padding: 5px 8px; }
    .er-evidence code { padding: 5px 8px; line-height: 1.3; }
    .er-validation { right: 18px; bottom: 14px; padding: 6px 9px; }
    .er-page-no { left: 18px; bottom: 10px; }
    .er-remediation-page { padding-left: 23px; }
    .er-remediation-page > h3 { margin-top: 12px; }
    .er-remediation-intro { margin-bottom: 8px; }
    .er-fix-list { gap: 6px; }
    .er-fix-list li > span { flex-basis: 20px; width: 20px; height: 20px; }
    .er-diff { margin-top: 8px; }
    .er-code-before,
    .er-code-after { min-height: 25px; }

    .er-brief {
        top: 10px;
        height: 235px;
        padding: 19px 20px 16px;
    }
    .er-brief h3 { margin: 4px 0 11px; font-size: 15px; }
    .er-brief h3::after { margin-top: 7px; }
    .er-brief ul { gap: 8px; }

    .er-retest {
        right: 1.5%;
        bottom: 4px;
        height: 191px;
        padding: 18px 18px;
    }
    .er-retest-icon { top: 16px; right: 16px; width: 37px; height: 37px; font-size: 15px; }
    .er-retest h3 { margin: 4px 0 8px; font-size: 16px; }
    .er-retest p { margin-bottom: 8px; line-height: 1.35; }
    .er-retest dl { gap: 3px; }
    .er-signature { left: 18px; bottom: 12px; }

    .er-callout-proof { top: 0; }
    .er-callout-fix { top: 0; }
    .er-callout-retest { bottom: 0; }
    .er-report-footer { gap: 28px; padding-top: 14px; }
}

@media (prefers-reduced-motion: no-preference) {
    .er-dossier.animated .er-cover { animation: er-cover-in .8s cubic-bezier(.2,.8,.2,1) both; }
    .er-dossier.animated .er-open-report { animation: er-pages-in .9s .08s cubic-bezier(.2,.8,.2,1) both; }
    .er-dossier.animated .er-brief { animation: er-brief-in .75s .18s cubic-bezier(.2,.8,.2,1) both; }
    .er-dossier.animated .er-retest { animation: er-retest-in .75s .3s cubic-bezier(.2,.8,.2,1) both; }
}

@keyframes er-cover-in { from { opacity:0; transform:translateY(28px) rotate(-6deg); } to { opacity:1; transform:rotate(-3.4deg); } }
@keyframes er-pages-in { from { opacity:0; transform:translateY(32px) rotate(0); } to { opacity:1; transform:rotate(.7deg); } }
@keyframes er-brief-in { from { opacity:0; transform:translate(22px,18px) rotate(7deg); } to { opacity:1; transform:rotate(4.3deg); } }
@keyframes er-retest-in { from { opacity:0; transform:translate(26px,22px) rotate(7deg); } to { opacity:1; transform:rotate(4.5deg); } }

/* ===================================================================
   PARALLAX STRIP
   =================================================================== */

.db-parallax-strip {
    position: relative;
    height: 340px;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='340'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%230B1920'/%3E%3Cstop offset='1' stop-color='%23132B37'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1440' height='340' fill='url(%23g)'/%3E%3Ccircle cx='200' cy='80' r='240' fill='%23FF3621' opacity='0.06'/%3E%3Ccircle cx='1200' cy='280' r='300' fill='%23052cff' opacity='0.06'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-parallax-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 25, 32, 0.82);
    z-index: 1;
}

.db-parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 32px;
}

.db-parallax-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--db-coral);
    display: block;
    margin-bottom: 18px;
}

.db-parallax-headline {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

/* ===================================================================
   TESTIMONIALS — MASONRY QUOTE GRID
   =================================================================== */

.sd-tst {
    padding: 100px 0;
    background:
        radial-gradient(70% 55% at 50% 0%, rgba(255, 93, 71, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, #eef2fa 0%, #e9eef8 55%, #eef1f8 100%);
}

.sd-tst-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.sd-tst-title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: var(--db-text-dark);
    margin-bottom: 18px;
}

.sd-tst-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.sd-tst-stars {
    display: inline-flex;
    gap: 3px;
    color: var(--db-lava);
    font-size: 15px;
}

.sd-tst-score {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--db-text-body);
}

/* ----- Masonry via CSS columns ----- */
.sd-tst-grid {
    column-count: 3;
    column-gap: 22px;
}

.sd-tst-card {
    break-inside: avoid;
    margin: 0 0 22px;
    padding: 28px 26px 24px;
    background: #ffffff;
    border: 1px solid rgba(27, 49, 57, 0.06);
    border-radius: 16px;
    box-shadow:
        0 1px 2px rgba(27, 49, 57, 0.04),
        0 8px 24px rgba(27, 49, 57, 0.06);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.sd-tst-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 2px 4px rgba(27, 49, 57, 0.05),
        0 16px 38px rgba(27, 49, 57, 0.10);
}

.sd-tst-quote {
    margin: 0 0 22px;
    font-size: 15.5px;
    line-height: 1.66;
    color: var(--db-text-dark);
    letter-spacing: -0.005em;
}

.sd-tst-quote::before {
    content: "\201C";
}

.sd-tst-quote::after {
    content: "\201D";
}

.sd-tst-who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-tst-av {
    --av: 148, 163, 184;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    color: rgb(var(--av));
    background: rgba(var(--av), 0.11);
    border: 1px solid rgba(var(--av), 0.22);
}

.sd-tst-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sd-tst-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--db-text-dark);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.sd-tst-role {
    font-size: 13px;
    color: var(--db-text-muted);
    line-height: 1.35;
}

/* ----- Footnote ----- */
.sd-tst-foot {
    margin-top: 34px;
    text-align: center;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--db-text-body);
}

.sd-tst-foot a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 6px;
    font-weight: 600;
    color: var(--db-lava);
    transition: gap var(--transition-fast);
}

.sd-tst-foot a:hover {
    gap: 11px;
}

.sd-tst-foot a:focus-visible {
    outline: 2px solid var(--db-lava);
    outline-offset: 3px;
    border-radius: 4px;
}

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

    .sd-tst-card,
    .sd-tst-foot a {
        transition: none;
    }

    .sd-tst-card:hover {
        transform: none;
    }
}

/* ===================================================================
   PARALLAX JS HOOK — sticky scroll sections
   =================================================================== */

.db-sticky-feature-section {
    position: relative;
}

/* Scroll-triggered fade-in animations */
[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"].animated,
[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================================================
   RESPONSIVE — new sections
   =================================================================== */

@media (max-width: 1024px) {

    .db-split-row,
    .db-split-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .db-split-text-col,
    .db-split-row.reverse .db-split-text-col {
        padding: 56px 40px;
    }

    .db-split-visual-col,
    .db-split-row.reverse .db-split-visual-col {
        padding: 48px 40px;
        min-height: auto;
    }

}

@media (max-width: 768px) {

    .db-split-text-col,
    .db-split-row.reverse .db-split-text-col {
        padding: 40px 24px;
    }

    .db-split-visual-col,
    .db-split-row.reverse .db-split-visual-col {
        padding: 32px 24px;
    }

    .db-split-card {
        max-width: 100%;
    }

    .db-parallax-strip {
        background-attachment: scroll;
        height: auto;
        padding: 64px 24px;
    }

}

/* Legacy class aliases */
.db-dark-section {
    background: url('assets/backgrounds/blue-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.why-section {
    background: url('assets/backgrounds/blue-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* ===================================================================
   BLUE-BG.PNG — Dark overlay on all parallax sections
   Keeps text readable while letting the purple waves bleed through
   =================================================================== */

/* Shared overlay mixin for dark parallax sections (NOT hero) */
.db-products-section::before,
.db-dark-section::before,
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 22, 0.82);
    /* deep navy tint — fades image to ~18% visibility */
    pointer-events: none;
    z-index: 0;
}

/* Ensure all direct children inside dark sections sit above the overlay */
.db-products-section>*,
.db-dark-section>*,
.why-section>* {
    position: relative;
    z-index: 1;
}

/* Products section — a touch more visible waves for visual interest */
.db-products-section::before {
    background: rgba(8, 14, 22, 0.78);
}

/* ===================================================================
   Blue-bg on inline dark component panels
   (split card dark, story-right panel)
   =================================================================== */

.db-split-card.dark {
    background: url('assets/backgrounds/blue-bg.png') center center / cover no-repeat !important;
    background-attachment: scroll !important;
    /* scroll (not fixed) inside card */
    position: relative;
    overflow: hidden;
}

.db-split-card.dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 26, 0.86);
    z-index: 0;
    pointer-events: none;
}

.db-split-card.dark>* {
    position: relative;
    z-index: 1;
}

/* Also apply to parallax strip (already has its own overlay, just upgrade bg) */
.db-parallax-strip {
    background-image: url('assets/backgrounds/blue-bg.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}

.db-parallax-strip::before {
    background: linear-gradient(135deg,
            rgba(8, 14, 26, 0.85) 0%,
            rgba(25, 8, 50, 0.70) 50%,
            rgba(8, 14, 26, 0.85) 100%) !important;
}

/* ===================================================================
   Mobile — iOS doesn't support background-attachment: fixed well
   Fall back to scroll (still shows the image, just not parallax)
   =================================================================== */

@media (max-width: 768px) {

    .db-products-section,
        .db-dark-section,
    .why-section,
    .db-parallax-strip {
        background-attachment: scroll !important;
    }
}

.certifications-section {
    background: var(--db-dark);
}

.services-section {
    background: var(--db-dark);
}

.vapt-methodology-section {
    background: var(--db-light-bg);
}

.metrics-section {
    background: var(--db-dark);
}

.industries-section {
    background: var(--db-off-white);
}

.hp-pricing-section {
    background: #ffffff;
}

.hp-faq-section {
    background: #ffffff;
}

.hp-contact-section {
    background: var(--db-light-bg);
}
/* Four-scene hero story. Scoped so the rest of the landing page is unchanged. */
.sd-hero-story { --story-progress: 0; width: 100%; min-width: 0; align-self: center; position: relative; color: #e9f1ff; }
.sd-story-heading { display: flex; justify-content: space-between; gap: 16px; padding: 0 6px 20px; color: #a0b9e5; font: 10px/1.6 var(--font-mono, monospace); letter-spacing: .12em; }
.sd-story-heading span:last-child { color: #7d91b2; text-align: right; }
.sd-story-stage { position: relative; display: grid; perspective: 1400px; isolation: isolate; }
.sd-story-stage::before { content: ''; position: absolute; inset: 15% 5%; background: radial-gradient(ellipse, #2559df30, transparent 70%); filter: blur(24px); pointer-events: none; }
.sd-story-scene { grid-area: 1 / 1; min-width: 0; min-height: 465px; position: relative; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(20px) scale(.96); transition: opacity 700ms ease, transform 700ms cubic-bezier(.22,1,.36,1), visibility 700ms; }
.sd-story-scene.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; z-index: 1; }
.sd-story-card { border: 1px solid #7c9ddd66; border-radius: 16px; background: linear-gradient(140deg, #253a60ef, #091224f5 72%); box-shadow: inset 0 1px 0 #e8f0ff30, 0 24px 48px #0006, 0 0 25px #2460ed12; padding: 24px; }
.sd-story-light { background: linear-gradient(135deg, #fbfcff, #e2eaff 70%, #c9dcff); color: #14223c; border-color: #f2f7ff; box-shadow: inset 0 0 0 3px #ffffff4a, 0 24px 48px #0005, 0 6px 30px #568eff40; }
.sd-hero-story h3 { font-size: clamp(18px, 1.55vw, 24px); line-height: 1.25; letter-spacing: -.035em; margin: 16px 0 12px; color: inherit; }
.sd-hero-story h4 { font-size: 14px; line-height: 1.4; margin: 10px 0 8px; color: #f2f6ff; }
.sd-hero-story p { font-size: 14px; line-height: 1.65; color: #b9c9e4; margin: 0; }
.sd-story-light p { color: #425576; }
.sd-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sd-card-label { font: 10px/1.6 var(--font-mono, monospace); letter-spacing: .09em; color: #aebfdf; }
.sd-story-light .sd-card-label { color: #52698c; }
.sd-severity { padding: 4px 12px; background: #ffa1b3; color: #561c31; border-radius: 7px; font-size: 12px; font-weight: 700; }
.sd-evidence { position: absolute; width: 65%; top: 22px; left: 1%; transform: rotateY(-7deg) rotateZ(-3deg); }
.sd-evidence-tabs { display: flex; justify-content: space-between; gap: 8px; font-size: 11px; color: #2459da; margin-top: 22px; border-bottom: 1px solid #b7c8e4; padding-bottom: 10px; }
.sd-evidence-tabs span:last-child { color: #687d9b; }
.sd-evidence pre { margin: 0 0 20px; padding: 17px 0; color: #213859; overflow-wrap: anywhere; white-space: pre-wrap; font: 12px/1.9 var(--font-mono, monospace); }
.sd-evidence code { font: inherit; }
.sd-evidence code span { color: #2459da; font-weight: 700; }
.sd-validated { display: inline-flex; gap: 7px; align-items: center; padding: 8px 10px; border-radius: 7px; background: #a4e8db; color: #075849; font-size: 12px; font-weight: 600; }
.sd-card-foot { display: block; font-size: 10px; color: #59708e; margin-top: 14px; }
.sd-evidence-notes { position: absolute; right: 0; top: 60px; width: 32%; display: grid; gap: 18px; transform: rotateY(-7deg) rotateZ(-3deg); }
.sd-mini-card { padding: 18px; }
.sd-mini-card > i { color: #79b1ff; font-size: 19px; }
.sd-mini-card p { font-size: 12px; }
.sd-path-panel { position: absolute; top: 20px; left: 3%; width: 94%; transform: rotateY(-6deg) rotateZ(-2deg); padding-bottom: 40px; }
.sd-path-panel h3 { font-size: 25px; }
.sd-path-map { position: relative; height: 165px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; margin-top: 20px; }
.sd-path-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sd-path-lines path { fill: none; stroke: #6a9fff; stroke-width: 2; }
.sd-path-lines .sd-path-risk { stroke: #ff97a9; }
.sd-path-node { display: flex; flex-direction: column; align-items: center; z-index: 1; gap: 10px; text-align: center; color: #c5d4ef; font-size: 11px; line-height: 1.4; }
.sd-path-node > i { width: 48px; height: 48px; border-radius: 50%; background: #122a50; border: 1px solid #658ed8; display: grid; place-items: center; color: #9fc6ff; font-size: 19px; box-shadow: 0 0 20px #508eff22; }
.sd-path-node:nth-last-child(-n+2) { translate: 0 -40px; }
.sd-path-exposed > i { background: #45283a; border-color: #ff97a9; color: #ffc3cd; box-shadow: 0 0 25px #ff819d33; }
.sd-path-finding { position: absolute; bottom: 25px; left: 0; width: 78%; transform: rotateZ(-2deg); }
.sd-path-finding h3 { font-size: 20px; margin: 9px 0; }
.sd-blue-tag, .sd-verified-tag { display: inline-block; margin-top: 14px; padding: 6px 10px; border: 1px solid #5285d677; border-radius: 7px; font-size: 11px; color: #99c7ff; background: #19407d30; }
.sd-report-cover { position: absolute; left: 3%; top: 22px; width: 51%; min-height: 340px; transform: rotateZ(-8deg); z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
.sd-report-brand { font-weight: 800; font-size: 20px; letter-spacing: -.04em; margin-bottom: 24px; }
.sd-report-brand span { color: #235ae8; }
.sd-report-cover h3 { font-size: 28px; margin: 18px 0; }
.sd-report-rule { width: 64px; height: 3px; background: #4c80ff; margin: 4px 0 24px; }
.sd-report-cover p { font-size: 12px; }
.sd-report-cover .sd-card-foot { margin-top: auto; padding-top: 20px; }
.sd-report-summary { position: absolute; width: 55%; right: 1%; top: 48px; min-height: 300px; transform: rotateZ(-3deg); padding-left: 40px; }
.sd-report-summary h3 { font-size: 20px; }
.sd-report-summary ul { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 16px; }
.sd-report-summary li { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #c5d4ef; }
.sd-report-summary li i { color: #7baaff; }
.sd-risk-dot { width: 10px; height: 10px; flex-shrink: 0; background: #ff97a9; border-radius: 50%; }
.sd-report-note { border-top: 1px solid #8ca8d633; padding-top: 14px; font-size: 12px; line-height: 1.8; color: #a5badf; }
.sd-report-benefits { position: absolute; bottom: 5px; left: 7%; right: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; z-index: 3; transform: rotateZ(-3deg); }
.sd-report-benefits > span { padding: 18px 12px; font-size: 11px; }
.sd-report-benefits i { display: block; color: #80b2ff; font-size: 20px; margin-bottom: 12px; }
.sd-fix-step { position: absolute; width: 37%; min-height: 240px; padding: 20px; transform: rotateY(-8deg) rotateZ(-4deg); }
.sd-fix-first { left: 0; top: 110px; }
.sd-fix-second { left: 28%; top: 150px; z-index: 2; }
.sd-fix-final { right: 0; top: 45px; width: 39%; min-height: 310px; z-index: 3; border-color: #83c4da88; }
.sd-fix-step > i { display: block; color: #82b6ff; font-size: 28px; margin: 25px 0; }
.sd-fix-step h3 { font-size: 19px; }
.sd-fix-step p { font-size: 12px; }
.sd-fix-step .sd-card-label { font-size: 9px; }
.sd-closed { color: #a6f5df; border: 1px solid #75cdb66b; background: #17615355; padding: 3px 7px; border-radius: 5px; font-size: 10px; }
.sd-fix-step > .sd-fix-check { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid #9af3dd; border-radius: 50%; background: linear-gradient(145deg, #86e3d4, #158678); color: #e5fff7; box-shadow: 0 0 30px #5ceac03b; }
.sd-verified-tag { color: #b6e8df; border-color: #72cbb75c; background: #21665833; }
.sd-story-controls { display: flex; align-items: center; gap: 18px; margin-top: 24px; position: relative; z-index: 3; }
.sd-story-controls[hidden] { display: none; }
.sd-story-tabs { display: grid; grid-template-columns: repeat(4, 1fr); flex: 1; min-width: 0; }
.sd-story-tabs button { position: relative; display: flex; gap: 7px; align-items: center; justify-content: center; border: 0; border-bottom: 1px solid #7295c94d; border-radius: 0; background: none; padding: 16px 4px; color: #98acd0; font: inherit; font-size: 13px; cursor: pointer; }
.sd-story-tabs button > span { color: #79a7ff; font-size: 12px; }
.sd-story-tabs button[aria-selected="true"] { color: #f2f6ff; border-bottom-color: #77a8ff; }
.sd-story-tabs button[aria-selected="true"]::after { content: ''; position: absolute; height: 3px; bottom: -1px; left: 0; right: 0; background: #8dc4ff; box-shadow: 0 0 9px #589cff; transform: scaleX(var(--story-progress)); transform-origin: left; }
.sd-story-pause { display: grid; place-items: center; width: 40px; height: 40px; flex-shrink: 0; border: 1px solid #8aa6d3; border-radius: 50%; color: #d7e7ff; background: #14244080; cursor: pointer; }
.sd-story-tabs button:hover, .sd-story-pause:hover { background: #375d9b33; color: white; }
.sd-hero-story :focus-visible { outline: 2px solid #9dcaff; outline-offset: 5px; }
.sd-hero-story.is-running .is-active .sd-story-card { animation: sdStoryFloat 6s ease-in-out infinite; }
.sd-hero-story.is-running .is-active .sd-evidence-notes .sd-story-card { animation-delay: -2s; }
.sd-hero-story.is-running .is-active .sd-path-lines path { animation: sdStoryTrace 2.4s ease both; }
.sd-hero-story.is-running .is-active .sd-path-lines .sd-path-risk { animation-delay: .7s; }
.sd-hero-story.is-running .is-active .sd-fix-check { animation: sdStoryConfirm 1.2s ease both; }
.sd-hero-story:not(.is-running) .sd-story-card { animation-play-state: paused; }
@keyframes sdStoryFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@keyframes sdStoryTrace { from { stroke-dasharray: 1; stroke-dashoffset: 1; } to { stroke-dasharray: 1; stroke-dashoffset: 0; } }
@keyframes sdStoryConfirm { from { opacity: 0; scale: .85; } to { opacity: 1; scale: 1; } }
@media (max-width: 1100px) and (min-width: 769px) {
    .sd-story-card { padding: 16px; }
    .sd-evidence { width: 66%; }
    .sd-evidence-notes { width: 31%; }
    .sd-mini-card { padding: 12px; }
    .sd-hero-story h4 { font-size: 12px; }
    .sd-mini-card p { font-size: 11px; }
    .sd-story-heading { font-size: 9px; }
    .sd-report-summary { padding-left: 28px; }
    .sd-story-tabs button { flex-direction: column; gap: 2px; }
    .sd-fix-step .sd-card-top { flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .sd-hero-story { max-width: 620px; margin: 30px auto 0; }
    .sd-story-heading { font-size: 9px; }
    .sd-story-scene { display: flex; flex-direction: column; gap: 14px; min-height: 0; }
    .sd-story-card, .sd-evidence-notes, .sd-report-benefits { position: relative; inset: auto; width: 100%; transform: none; }
    .sd-story-card { padding: 22px; }
    .sd-evidence-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .sd-mini-card { padding: 16px; }
    .sd-path-panel { padding-bottom: 10px; }
    .sd-path-finding { margin: 0; }
    .sd-report-cover { min-height: 240px; }
    .sd-report-summary { min-height: 0; }
    .sd-report-summary h3 { margin-top: 8px; }
    .sd-report-summary ul { gap: 10px; margin: 12px 0 0; }
    .sd-report-note { display: none; }
    .sd-report-benefits { gap: 8px; }
    .sd-report-benefits > span { padding: 14px 10px; font-size: 11px; }
    .sd-report-cover h3 { font-size: 26px; }
    .sd-report-brand { margin-bottom: 14px; }
    .sd-report-rule { margin: 0 0 14px; }
    .sd-fix-step { min-height: 0; display: grid; grid-template-columns: 36px 1fr; column-gap: 15px; }
    .sd-fix-step > .sd-card-label, .sd-fix-step > .sd-card-top { grid-column: 1 / -1; }
    .sd-fix-step > i { grid-row: 2 / 4; margin: 22px 0 0; font-size: 24px; }
    .sd-fix-step h3 { margin: 16px 0 5px; }
    .sd-fix-step p { grid-column: 2; }
    .sd-fix-step > .sd-fix-check { width: 36px; height: 36px; }
    .sd-fix-step .sd-verified-tag { grid-column: 2; justify-self: start; }
    .sd-story-controls { gap: 10px; margin-top: 22px; }
    .sd-story-tabs button { font-size: 12px; flex-direction: column; gap: 3px; padding: 12px 2px; }
    .sd-story-pause { width: 36px; height: 36px; }
    .sd-story-scene { transition: none; }
    .sd-hero-story .sd-story-card, .sd-hero-story .sd-path-lines path, .sd-hero-story .sd-fix-check { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) {
    .sd-story-scene { transition: none; }
    .sd-hero-story *, .sd-hero-story *::before, .sd-hero-story *::after { animation: none !important; transition: none !important; }
}

.sd-story-pause[hidden] { display: none; }
@media (max-width: 1100px) and (min-width: 769px) { .sd-story-scene { min-height: 520px; } }

/* Live review: keep decorative depth clear of all readable content. */
@media (min-width: 769px) {
    .sd-story-scene { min-height: 510px; }
    .sd-path-panel { top: 12px; transform: rotateZ(-1deg); padding: 22px; }
    .sd-path-panel h3 { font-size: 22px; margin: 12px 0 8px; }
    .sd-path-panel p { font-size: 13px; }
    .sd-path-map { height: 140px; margin-top: 16px; }
    .sd-path-finding { bottom: 0; width: 94%; left: 3%; transform: rotateZ(-1deg); padding: 20px; }
    #hero-scene-2 { display: grid; grid-template-columns: .95fr 1.05fr; gap: 16px; padding: 20px 2% 0; align-content: start; }
    .sd-report-cover, .sd-report-summary { position: relative; inset: auto; width: 100%; transform: none; min-height: 320px; padding: 20px; }
    .sd-report-summary { margin-top: 16px; }
    .sd-report-cover { transform: rotateZ(-1deg); }
    .sd-report-cover h3 { font-size: 25px; }
    .sd-report-summary h3 { font-size: 21px; }
    .sd-report-summary li { font-size: 13px; align-items: flex-start; }
    .sd-report-summary li i, .sd-report-summary .sd-risk-dot { margin-top: 4px; flex-shrink: 0; }
    .sd-report-benefits { position: relative; inset: auto; width: 100%; grid-column: 1 / -1; transform: none; }
    #hero-scene-3 { display: grid; grid-template-columns: .9fr 1.1fr; gap: 16px; align-content: center; padding: 16px 2%; }
    .sd-fix-step { position: relative; inset: auto; width: 100%; min-height: 0; transform: none; padding: 20px; }
    .sd-fix-first { grid-column: 1; grid-row: 1; }
    .sd-fix-second { grid-column: 1; grid-row: 2; }
    .sd-fix-final { grid-column: 2; grid-row: 1 / 3; align-self: center; min-height: 310px; }
    .sd-fix-step > i { margin: 18px 0; font-size: 24px; }
    .sd-fix-step h3 { font-size: 20px; margin: 10px 0; }
    .sd-fix-step p { font-size: 13px; }
    .sd-fix-step .sd-card-label { font-size: 10px; }
    .sd-fix-final .sd-card-top { flex-wrap: wrap; }
}
.sd-path-node:nth-last-child(-n+2) { translate: none; }
.sd-story-tabs button { min-height: 48px; }
.sd-story-pause { width: 44px; height: 44px; }
.sd-hero-story .sd-story-card { animation: sdStoryFloat 6s ease-in-out infinite; animation-play-state: paused; }
.sd-hero-story.is-running .is-active .sd-story-card { animation-play-state: running; }
@media (max-width: 768px) {
    .sd-story-pause { width: 44px; height: 44px; }
    .sd-hero-story .sd-story-card { animation: none; }
    .sd-story-scene { grid-area: auto; }
    .sd-story-scene:not(.is-active) { display: none; }
    .sd-hero-story p { font-size: 14px; }
    .sd-mini-card h4 { font-size: 14px; }
    .sd-report-summary li { font-size: 14px; }
    .sd-story-heading { letter-spacing: .05em; }
}

/* Reference hero: dark masthead, electric-blue trails and pale floating evidence. */
.sd-reference-header, .sd-reference-header.scrolled { background: #030c19f5; border-bottom: 1px solid #7daaff18; box-shadow: none; }
.sd-reference-header .nav-container { height: 74px; max-width: 1600px; padding: 0 64px; margin: 0 auto; }
.sd-reference-header .brand-logo { gap: 9px; }
.sd-reference-wordmark { font-size: 28px; font-weight: 700; letter-spacing: -.055em; color: #f7f9ff; }
.sd-brand-mark { flex-shrink: 0; }
.sd-reference-header .nav-menu { gap: 38px; }
.sd-reference-header .nav-item { color: #f2f5ff; font-size: 14px; font-weight: 400; }
.sd-reference-header .nav-item:hover, .sd-reference-header .nav-item.active { color: #8cbdff; }
.sd-reference-header .btn-nav-talk { background: transparent; color: #e9f1ff !important; font-weight: 400; font-size: 14px; border: 1px solid #819ed1; border-radius: 16px; box-shadow: none; padding: 10px 23px; margin-left: 4px; }
.sd-reference-header .btn-nav-talk:hover { background: #223e693d; }
.sd-reference-header .mobile-menu-toggle span { background: #d8e7ff; }
.sd-reference-hero { padding: 18px 0 25px; background: #01050b; border-bottom: 1px solid #8ca7cb7d; }
.sd-reference-hero > .container { max-width: 1600px; padding: 0 64px; }
.sd-reference-hero .banner-grid { grid-template-columns: minmax(0, .46fr) minmax(0, .54fr); gap: 24px; align-items: center; min-height: 470px; }
.sd-reference-hero .banner-text { padding-bottom: 64px; min-width: 0; }
.sd-hero-eyebrow { color: #75b5ff; font-size: 12px; line-height: 1.6; letter-spacing: .18em; margin: 0 0 26px; }
.sd-reference-hero .hero-title { font-size: clamp(32px, 3.5vw, 56px); font-weight: 600; line-height: 1.13; letter-spacing: -.045em; margin: 0 0 16px; }
.sd-reference-hero .hero-title > span { display: block; white-space: nowrap; }
.sd-reference-hero .hero-highlight { color: #6596ff; background: linear-gradient(180deg, #83acff, #4d7def); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 650; }
.sd-reference-hero .hero-subhead { color: #c4d5ee; font-size: clamp(16px, 1.5vw, 23px); line-height: 1.55; margin: 0 0 28px; }
.sd-reference-hero .banner-btn-group { margin: 0; }
.sd-reference-hero .db-btn-primary { border: 1px solid #ffb1bf; border-radius: 14px; background: linear-gradient(180deg, #ff98ae, #ff718e); color: #120b15; padding: 14px 25px; min-height: 54px; gap: 20px; font-size: 17px; font-weight: 600; box-shadow: 0 8px 30px #ff71902b, inset 0 1px 0 #ffd5dd77; }
.sd-reference-hero .db-btn-primary:hover { color: #120b15; background: #ff9eb4; box-shadow: 0 10px 35px #ff719040; }
.sd-reference-hero .db-btn-primary i { font-size: 20px; }
.sd-reference-atmosphere { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 75% 55%, #0925686b, transparent 58%), linear-gradient(180deg, #01050b, #020916 55%, #01050b); }
.sd-reference-trails { position: absolute; width: 100%; height: 100%; inset: 0; pointer-events: none; }
.sd-reference-hero .banner-visual::before { display: none; }
.sd-reference-hero .sd-hero-story { margin: 0; max-width: none; }
.sd-reference-hero .sd-story-stage::before { background: radial-gradient(ellipse, #2c6bff22, transparent 70%); }
.sd-reference-hero .sd-story-scene { min-height: 420px; }
.sd-reference-hero .sd-story-card { background: linear-gradient(140deg, #183461ce, #081427eb 65%); border: 1px solid #88aef3a6; border-radius: 13px; box-shadow: inset 0 0 0 2px #98bff01f, inset 0 1px 0 #e8f0ff4a, 0 18px 30px #0004, 0 0 18px #347cff18; }
.sd-reference-hero .sd-story-light { background: linear-gradient(140deg, #f7faff 2%, #e4edff 48%, #c8e0ff); color: #0b1b37; border-color: #f9fcff; box-shadow: inset 0 0 0 4px #ffffff6b, inset -5px -5px 16px #7ccbff99, 0 0 20px #2d8dff5c, 8px 9px 0 -4px #52afff5c, 0 28px 46px #0007; }
.sd-reference-hero .sd-evidence { width: 60%; left: 2%; top: 32px; padding: 23px; transform: perspective(1100px) rotateY(-8deg) rotateX(3deg) rotateZ(-3deg) skewX(-5deg); border-radius: 18px; }
.sd-evidence-title { display: flex; align-items: center; gap: 10px; position: relative; }
.sd-evidence-icon { background: linear-gradient(145deg, #70ccff, #3872ff); border: 1px solid #b0dfff; box-shadow: 0 3px 8px #3e79f842; color: #e6f8ff; width: 33px; height: 36px; display: grid; place-items: center; flex-shrink: 0; border-radius: 7px; }
.sd-reference-hero .sd-evidence h3 { font-size: clamp(16px, 1.42vw, 22px); letter-spacing: -.03em; margin: 3px 0 0; font-weight: 700; font-style: italic; }
.sd-evidence-title > div { flex: 1; min-width: 0; }
.sd-reference-hero .sd-evidence .sd-card-label { font-size: 9px; letter-spacing: .1em; }
.sd-reference-hero .sd-severity { background: linear-gradient(#ff9aab, #ff7695); border-radius: 10px; color: #280b1b; padding: 6px 14px; font-size: 13px; font-style: italic; }
.sd-evidence-title .sd-severity { position: absolute; right: -4px; top: -15px; }
.sd-reference-hero .sd-evidence > p { color: #344b72; font-size: 13px; line-height: 1.55; margin: 14px 0 18px; }
.sd-reference-hero .sd-evidence-tabs { justify-content: flex-start; gap: 0; padding: 0; margin: 0; border: 0; }
.sd-evidence-tabs button { padding: 8px 15px; border: 0; border-radius: 7px 7px 0 0; background: #b4caf142; color: #344b72; font: italic 12px/1.4 var(--font-body, sans-serif); cursor: pointer; }
.sd-evidence-tabs button[aria-pressed="true"] { color: #245bfa; background: #edf5ff; border-bottom: 1px solid #487bff; }
.sd-request-window { position: relative; background: #b9cff242; border: 1px solid #a9c6ef66; border-radius: 0 9px 9px 9px; padding: 10px 14px; }
.sd-reference-hero .sd-evidence pre { margin: 0; padding: 0; font: italic 12px/1.65 var(--font-mono, monospace); color: #243e65; min-height: 80px; }
.sd-request-symbol { position: absolute; right: 13px; top: 14px; color: #5475a7; font-size: 18px; }
.sd-evidence-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 17px; }
.sd-reference-hero .sd-validated { font-size: 11px; padding: 8px 9px; gap: 5px; font-style: italic; white-space: nowrap; background: #a4e8db; border-radius: 7px; }
.sd-reference-hero .sd-validated i { color: #078574; font-size: 19px; }
.sd-reviewer { display: flex; align-items: center; gap: 7px; font-size: 9px; font-style: italic; color: #536e99; }
.sd-reviewer i { background: #a9c4e9; border-radius: 50%; color: #263e60; width: 26px; height: 28px; flex-shrink: 0; display: grid; place-items: center; font-size: 15px; }
.sd-reference-hero .sd-evidence-notes { width: 35%; top: 28px; right: 0; gap: 17px; transform: perspective(1200px) rotateY(-8deg) rotateZ(-3deg); }
.sd-reference-hero .sd-mini-card { padding: 19px; }
.sd-note-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sd-note-heading > i:first-child { color: #65a4ff; font-size: 20px; filter: drop-shadow(0 0 5px #3f8bff80); }
.sd-note-heading > i:last-child { color: #69a1ff; font-size: 12px; margin-left: auto; }
.sd-reference-hero .sd-mini-card h4 { font-size: 13px; font-weight: 500; margin: 0; }
.sd-reference-hero .sd-mini-card p { font-size: 13px; line-height: 1.6; color: #c2d5f4; }
.sd-reference-hero .sd-story-controls { margin-top: 5px; gap: 26px; }
.sd-reference-hero .sd-story-tabs button { padding: 15px 0; font-size: 16px; gap: 14px; justify-content: flex-start; }
.sd-reference-hero .sd-story-tabs button > span { font-size: 19px; color: #6a9ffa; }
.sd-reference-hero .sd-story-tabs button[aria-selected="true"]::after { height: 3px; }
.sd-reference-hero .sd-story-pause { width: 46px; height: 46px; color: #edf4ff; font-size: 18px; background: #07122580; border-color: #b1ccef; }
.sd-reference-hero .sd-path-panel { padding: 19px; width: 94%; }
.sd-reference-hero .sd-path-panel h3 { font-size: 22px; }
.sd-reference-hero .sd-path-panel p { font-size: 12px; }
.sd-reference-hero .sd-path-map { height: 116px; margin-top: 12px; }
.sd-reference-hero .sd-path-finding { padding: 17px 21px; bottom: 2px; }
.sd-reference-hero .sd-path-finding h3 { font-size: 20px; }
.sd-reference-hero .sd-path-finding p { font-size: 12px; }
.sd-reference-hero #hero-scene-2 { gap: 12px; padding-top: 12px; }
.sd-reference-hero .sd-report-cover, .sd-reference-hero .sd-report-summary { min-height: 280px; padding: 20px; }
.sd-reference-hero .sd-report-cover h3 { font-size: 27px; }
.sd-reference-hero .sd-report-brand { margin-bottom: 14px; }
.sd-reference-hero .sd-report-rule { margin-bottom: 14px; }
.sd-reference-hero .sd-report-summary { margin-top: 12px; }
.sd-reference-hero .sd-report-benefits > span { padding: 13px; }
.sd-reference-hero .sd-report-benefits i { font-size: 18px; margin-bottom: 8px; }
.sd-reference-hero #hero-scene-3 { gap: 12px; padding: 10px 2%; }
.sd-reference-hero .sd-fix-step { padding: 17px 21px; }
.sd-reference-hero .sd-fix-step > i { margin: 13px 0; }
.sd-reference-hero .sd-fix-step h3 { margin: 8px 0; }
.sd-reference-hero .sd-fix-final { min-height: 280px; }
@media (min-width: 1600px) {
    .sd-reference-hero .sd-story-scene { min-height: 450px; }
    .sd-reference-hero .banner-grid { min-height: 500px; }
    .sd-reference-hero .sd-evidence { top: 45px; }
    .sd-reference-hero .sd-evidence-notes { top: 44px; }
}
@media (min-width: 769px) and (max-width: 1100px) {
    .sd-reference-header .nav-container, .sd-reference-hero > .container { padding-left: 36px; padding-right: 36px; }
    .sd-reference-hero .banner-grid { grid-template-columns: .44fr .56fr; gap: 20px; }
    .sd-reference-hero .hero-title { font-size: 3.35vw; }
    .sd-reference-hero .hero-subhead { font-size: 16px; }
    .sd-reference-hero .db-btn-primary { font-size: 14px; padding: 12px 18px; }
    .sd-reference-hero .sd-evidence { width: 62%; padding: 17px; }
    .sd-reference-hero .sd-evidence-title { gap: 7px; }
    .sd-reference-hero .sd-evidence-icon { width: 24px; height: 28px; font-size: 13px; }
    .sd-reference-hero .sd-evidence h3 { font-size: 15px; }
    .sd-reference-hero .sd-evidence-notes { width: 33%; }
    .sd-reference-hero .sd-mini-card { padding: 12px; }
    .sd-reference-hero .sd-mini-card p { font-size: 12px; }
    .sd-reference-hero .sd-mini-card h4 { font-size: 12px; }
    .sd-note-heading { gap: 6px; }
    .sd-note-heading > i:last-child { display: none; }
    .sd-reference-hero .sd-story-controls { gap: 14px; }
    .sd-reference-hero .sd-story-tabs button { gap: 7px; font-size: 13px; }
    .sd-reference-hero .sd-story-tabs button > span { font-size: 15px; }
    .sd-reviewer { display: none; }
    .sd-reference-header .nav-menu { gap: 24px; }
    .sd-reference-wordmark { font-size: 25px; }
}
@media (max-width: 768px) {
    .sd-reference-header .nav-container { height: 68px; padding: 0 22px; }
    .sd-reference-wordmark { font-size: 25px; }
    .sd-reference-header .nav-menu { background: #051022; border-color: #27436a; gap: 16px; }
    .sd-reference-header .btn-nav-talk { margin: 0; }
    .sd-reference-hero { padding: 42px 0 25px; }
    .sd-reference-hero > .container { padding: 0 22px; }
    .sd-reference-hero .banner-grid { display: flex; flex-direction: column; gap: 32px; min-height: 0; }
    .sd-reference-hero .banner-text { padding-bottom: 0; width: 100%; }
    .sd-hero-eyebrow { font-size: 10px; margin-bottom: 20px; }
    .sd-reference-hero .hero-title { font-size: clamp(30px, 6.8vw, 48px); line-height: 1.12; letter-spacing: -.045em; }
    .sd-reference-hero .hero-title > span { white-space: normal; }
    .sd-reference-hero .hero-subhead { font-size: 17px; margin: 20px 0 24px; }
    .sd-reference-hero .db-btn-primary { min-height: 50px; font-size: 15px; padding: 12px 21px; }
    .sd-reference-hero .banner-visual { width: 100%; }
    .sd-reference-hero .sd-story-scene { min-height: 0; }
    .sd-reference-hero .sd-evidence { position: relative; inset: auto; width: 100%; padding: 22px; transform: none; }
    .sd-reference-hero .sd-evidence-title { padding-top: 8px; }
    .sd-reference-hero .sd-evidence h3 { font-size: 20px; }
    .sd-reference-hero .sd-evidence .sd-severity { top: -8px; padding: 4px 10px; font-size: 11px; }
    .sd-reference-hero .sd-evidence > p { font-size: 14px; }
    .sd-reference-hero .sd-evidence pre { font-size: 11px; }
    .sd-request-symbol { display: none; }
    .sd-reference-hero .sd-evidence-footer { flex-wrap: wrap; }
    .sd-reviewer { font-size: 10px; }
    .sd-reference-hero .sd-evidence-notes { position: relative; inset: auto; width: 100%; transform: none; gap: 12px; }
    .sd-reference-hero .sd-mini-card { padding: 16px; }
    .sd-reference-hero .sd-mini-card h4 { font-size: 13px; }
    .sd-reference-hero .sd-mini-card p { font-size: 13px; }
    .sd-note-heading { gap: 8px; flex-wrap: wrap; }
    .sd-note-heading > i:last-child { display: none; }
    .sd-reference-hero .sd-story-controls { gap: 12px; margin-top: 20px; }
    .sd-reference-hero .sd-story-tabs button { justify-content: center; font-size: 13px; gap: 4px; padding: 12px 2px; }
    .sd-reference-hero .sd-story-tabs button > span { font-size: 15px; }
    .sd-reference-hero .sd-path-panel, .sd-reference-hero .sd-path-finding { width: 100%; inset: auto; transform: none; }
    .sd-reference-hero .sd-report-cover, .sd-reference-hero .sd-report-summary { min-height: 0; margin: 0; padding: 22px; }
    .sd-reference-hero .sd-report-cover { min-height: 260px; }
    .sd-reference-hero .sd-fix-step, .sd-reference-hero .sd-fix-final { min-height: 0; }
    .sd-reference-trails { opacity: .6; }
}
@media (max-width: 400px) {
    .sd-reference-hero .sd-evidence h3 { font-size: 18px; }
    .sd-reference-hero .sd-mini-card { padding: 13px; }
    .sd-reference-hero .sd-mini-card p { font-size: 12px; }
}

/* Keep the report and retest compositions faithful to the approved scene board. */
@media (min-width: 769px) {
    .sd-reference-hero #hero-scene-2 { display: block; padding: 0; }
    .sd-reference-hero .sd-report-cover { position: absolute; width: 46%; left: 3%; right: auto; top: 25px; min-height: 295px; transform: rotateZ(-6deg); }
    .sd-reference-hero .sd-report-summary { position: absolute; width: 54%; right: 1%; left: auto; top: 40px; margin: 0; min-height: 295px; padding-left: 11%; transform: rotateZ(-2deg); }
    .sd-reference-hero .sd-report-summary h3 { font-size: 20px; }
    .sd-reference-hero .sd-report-benefits { position: absolute; left: 5%; right: 0; width: 95%; bottom: 0; transform: rotateZ(-2deg); }
    .sd-reference-hero #hero-scene-3 { display: block; padding: 0; }
    .sd-reference-hero .sd-fix-step { position: absolute; width: 30%; padding: 19px; min-height: 230px; transform: rotateZ(-2deg); }
    .sd-reference-hero .sd-fix-first { left: 0; top: 90px; }
    .sd-reference-hero .sd-fix-second { left: 32%; top: 135px; }
    .sd-reference-hero .sd-fix-final { left: auto; right: 0; top: 30px; width: 34%; min-height: 310px; }
    .sd-reference-hero .sd-fix-step h3 { font-size: 18px; }
    .sd-reference-hero .sd-fix-step p { font-size: 12px; }
    .sd-reference-hero .sd-fix-step .sd-card-label { font-size: 9px; }
    .sd-reference-hero .sd-fix-final .sd-card-top { gap: 5px; }
}
@media (min-width: 769px) and (max-width: 1000px) {
    .sd-reference-hero .sd-fix-step { padding: 13px; }
    .sd-reference-hero .sd-fix-step h3 { font-size: 16px; }
    .sd-reference-hero .sd-fix-step p { font-size: 11px; }
    .sd-reference-hero .sd-report-cover { padding: 16px; }
    .sd-reference-hero .sd-report-cover h3 { font-size: 23px; }
    .sd-reference-hero .sd-report-summary { padding-right: 14px; }
    .sd-reference-hero .sd-report-summary h3 { font-size: 17px; }
}

/* Approved hero scene artwork: exact compositions from the selected design. */
.sd-reference-hero .sd-approved-story-stage {
    width: 100%;
    min-height: 420px;
    display: grid;
    align-items: center;
    perspective: none;
}
.sd-reference-hero .sd-approved-story-stage::before { display: none; }
.sd-reference-hero .sd-approved-scene {
    grid-area: 1 / 1;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    transform: translateY(12px) scale(.975);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, 1, .36, 1), visibility 650ms;
}
.sd-reference-hero .sd-approved-scene.is-active { transform: none; }
.sd-approved-scene-art {
    width: 100%;
    height: auto;
    aspect-ratio: 1536 / 1024;
    display: block;
    object-fit: contain;
    border-radius: 13px;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .28));
    user-select: none;
    -webkit-user-drag: none;
}
.sd-reference-hero .sd-story-controls { margin-top: 2px; }
.sd-reference-hero .sd-story-tabs button { justify-content: center; }
.sd-reference-hero .sd-story-tabs button:first-child { justify-content: flex-start; }
.sd-reference-hero .sd-story-tabs button:last-child { justify-content: flex-end; }
.sd-reference-hero .sd-story-tabs button[aria-selected="true"] { background: linear-gradient(180deg, transparent, rgba(45, 100, 210, .16)); }
@media (min-width: 1600px) {
    .sd-reference-hero .sd-approved-story-stage { min-height: 450px; }
}
@media (min-width: 769px) and (max-width: 1100px) {
    .sd-reference-hero .sd-approved-story-stage { min-height: 390px; }
}
@media (max-width: 768px) {
    .sd-reference-hero .sd-approved-story-stage { min-height: 0; }
    .sd-reference-hero .sd-approved-scene { display: none; }
    .sd-reference-hero .sd-approved-scene.is-active { display: grid; }
    .sd-approved-scene-art { border-radius: 10px; }
    .sd-reference-hero .sd-story-tabs button,
    .sd-reference-hero .sd-story-tabs button:first-child,
    .sd-reference-hero .sd-story-tabs button:last-child { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .sd-reference-hero .sd-approved-scene { transition: none; }
}

/* Restored information-rich hero and service commitment banner. */
.sd-announcement-bar {
    position: relative;
    z-index: 1001;
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #c8d1df;
    background: #071528;
    border-bottom: 1px solid #0f815f;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.sd-announcement-track { display: flex; width: max-content; animation: sd-announcement-scroll 38s linear infinite; }
.sd-announcement-set { display: flex; align-items: center; gap: 12px; padding-right: 12px; }
.sd-announcement-set > i { width: 6px; height: 6px; margin: 0 10px; background: #078d69; transform: rotate(45deg); }
.sd-announcement-set strong { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; color: #c884ff; border: 1px solid #70409d; border-radius: 999px; background: #2b174b; font-size: 11px; letter-spacing: .035em; }
.sd-announcement-set strong.is-green { color: #16e69b; border-color: #00876a; background: #06352e; }
.sd-announcement-set strong .fa-circle { font-size: 6px; }
.sd-announcement-bar:hover .sd-announcement-track { animation-play-state: paused; }
@keyframes sd-announcement-scroll { to { transform: translateX(-50%); } }

.sd-reference-header { background: #fff; border-bottom: 1px solid #e9edf4; box-shadow: 0 6px 22px rgba(9, 24, 54, .06); }
.sd-reference-header .nav-container { max-width: 1760px; height: 84px; padding-inline: 34px; }
.sd-reference-header .brand-logo { gap: 11px; }
.sd-reference-header .sd-brand-copy { display: flex; flex-direction: column; }
.sd-reference-header .sd-reference-wordmark { color: #091a38; font-size: 27px; line-height: 1; font-weight: 700; letter-spacing: -.035em; }
.sd-reference-header .sd-reference-wordmark > span { color: #163dff; }
.sd-reference-header .sd-brand-copy small { margin-top: 8px; color: #64758a; font-size: 9px; line-height: 1; font-weight: 700; letter-spacing: .19em; }
.sd-reference-header .nav-menu { gap: 28px; }
.sd-reference-header .nav-item { position: relative; color: #252b3f; font-size: 15px; font-weight: 600; }
.sd-reference-header .nav-item:hover,
.sd-reference-header .nav-item.active { color: #123cff; }
.sd-reference-header .nav-item.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -17px; height: 3px; border-radius: 4px; background: #123cff; }
.sd-reference-header .btn-nav-talk { margin-left: 4px; padding: 15px 25px; color: #fff; background: #1038ff; border-color: #1038ff; border-radius: 5px; box-shadow: 0 8px 22px rgba(16, 56, 255, .22); }
.sd-reference-header .btn-nav-talk:hover { color: #fff; background: #092bd5; border-color: #092bd5; }

.sd-reference-hero { min-height: 690px; padding: 50px 0 28px; }
.sd-reference-hero > .container { max-width: 1680px; padding-inline: 54px; }
.sd-reference-hero .banner-grid { grid-template-columns: minmax(520px, .52fr) minmax(560px, .48fr); gap: clamp(24px, 3vw, 58px); min-height: 610px; align-items: center; }
.sd-reference-hero .banner-text { align-self: center; padding: 0 0 2px; }
.sd-reference-hero .hero-title { font-size: clamp(42px, 3.2vw, 61px); line-height: 1.1; margin-bottom: 27px; }
.sd-reference-hero .hero-highlight { background: linear-gradient(90deg, #8eb7ff, #42b9ff); background-clip: text; -webkit-background-clip: text; }
.sd-reference-hero .hero-subhead { margin: 0 0 24px; color: #d7d8de; font-size: clamp(18px, 1.3vw, 24px); line-height: 1.45; font-weight: 500; }
.sd-reference-hero .hero-description { max-width: 670px; margin: 0 0 32px; color: #b9bbc5; font-size: 17px; line-height: 1.65; }
.sd-reference-hero .banner-btn-group { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.sd-reference-hero .db-btn-primary { min-height: 58px; padding: 15px 27px; color: #fff; background: #ff382d; border-color: #ff382d; border-radius: 5px; box-shadow: 0 10px 30px rgba(255, 56, 45, .18); }
.sd-reference-hero .db-btn-primary:hover { color: #fff; background: #e82a21; }
.sd-reference-hero .sd-btn-secondary { min-height: 58px; padding: 15px 29px; display: inline-flex; align-items: center; justify-content: center; color: #f4f5fa; border: 1px solid #606372; border-radius: 5px; font-size: 17px; font-weight: 600; transition: .25s ease; }
.sd-reference-hero .sd-btn-secondary:hover { color: #fff; border-color: #9ca3b5; background: rgba(255,255,255,.05); }
.sd-hero-benefits { display: flex; flex-wrap: wrap; align-items: center; gap: 0; margin: 16px 0 0; color: #a8aab5; font-size: 14px; }
.sd-hero-benefits span { display: inline-flex; align-items: center; }
.sd-hero-benefits span + span::before { content: "•"; margin: 0 10px; color: #434755; }
.sd-hero-benefits i { margin-right: 8px; color: #ff5b35; }
.sd-hero-stats { max-width: 660px; margin: 42px 0 0; padding-top: 27px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); }
.sd-hero-stats > div { padding-right: 24px; }
.sd-hero-stats > div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.15); }
.sd-hero-stats dt { color: #fff; font-size: 27px; line-height: 1; font-weight: 800; }
.sd-hero-stats dd { margin: 9px 0 0; color: #aeb0ba; font-size: 13px; }
.sd-reference-hero .sd-approved-story-stage { min-height: 430px; }

@media (max-width: 1280px) and (min-width: 769px) {
    .sd-reference-header .nav-menu { gap: 18px; }
    .sd-reference-header .nav-item { font-size: 13px; }
    .sd-reference-hero > .container { padding-inline: 34px; }
    .sd-reference-hero .banner-grid { grid-template-columns: minmax(430px, .48fr) minmax(480px, .52fr); gap: 20px; }
    .sd-reference-hero .hero-title { font-size: 41px; }
    .sd-reference-hero .hero-description { font-size: 15px; }
}

@media (max-width: 980px) and (min-width: 769px) {
    .sd-reference-header .nav-item:nth-child(5),
    .sd-reference-header .nav-item:nth-child(6),
    .sd-reference-header .nav-item:nth-child(7) { display: none; }
    .sd-reference-hero .banner-grid { grid-template-columns: .46fr .54fr; }
    .sd-reference-hero .hero-title { font-size: 34px; }
    .sd-reference-hero .hero-description { font-size: 14px; line-height: 1.55; }
    .sd-reference-hero .sd-approved-story-stage { min-height: 350px; }
}

/* Keep the complete desktop hero visible on shorter screens and at browser zoom. */
@media (min-width: 769px) and (max-height: 820px) {
    .sd-announcement-bar { height: 30px; font-size: 10px; }
    .sd-announcement-set strong { padding: 4px 9px; font-size: 9px; }
    .sd-reference-header .nav-container { height: 72px; }
    .sd-reference-header .nav-item.active::after { bottom: -13px; }
    .sd-reference-header .btn-nav-talk { padding-top: 12px; padding-bottom: 12px; }
    .sd-reference-hero {
        box-sizing: border-box;
        height: calc(100svh - 102px);
        min-height: 600px;
        padding-top: 20px;
        padding-bottom: 18px;
    }
    .sd-reference-hero .banner-grid { height: 100%; min-height: 0; }
    .sd-reference-hero .hero-title { font-size: clamp(36px, 3vw, 48px); margin-bottom: 18px; }
    .sd-reference-hero .hero-subhead { margin-bottom: 15px; font-size: 18px; }
    .sd-reference-hero .hero-description { margin-bottom: 20px; font-size: 14px; line-height: 1.5; }
    .sd-reference-hero .db-btn-primary,
    .sd-reference-hero .sd-btn-secondary { min-height: 50px; padding-top: 11px; padding-bottom: 11px; font-size: 15px; }
    .sd-hero-benefits { margin-top: 11px; font-size: 12px; }
    .sd-hero-stats { margin-top: 22px; padding-top: 17px; }
    .sd-hero-stats dt { font-size: 23px; }
    .sd-hero-stats dd { margin-top: 6px; font-size: 11px; }
    .sd-reference-hero .sd-approved-story-stage { min-height: 400px; }
    .sd-reference-hero .sd-story-controls { margin-top: 0; }
    .sd-reference-hero .sd-story-tabs button { padding-top: 11px; padding-bottom: 11px; }
}

@media (max-width: 768px) {
    .sd-announcement-bar { height: 32px; font-size: 10px; }
    .sd-announcement-set strong { padding: 4px 9px; font-size: 9px; }
    .sd-reference-header .nav-container { height: 72px; }
    .sd-reference-header .sd-brand-copy small { margin-top: 6px; font-size: 7px; }
    .sd-reference-header .mobile-menu-toggle span { background: #13213d; }
    .sd-reference-header .nav-menu { background: #fff; border-color: #d8deea; box-shadow: 0 18px 30px rgba(9,24,54,.12); }
    .sd-reference-header .nav-item { color: #252b3f; }
    .sd-reference-header .nav-item.active::after { display: none; }
    .sd-reference-hero { min-height: 0; padding: 46px 0 34px; }
    .sd-reference-hero .banner-grid { gap: 38px; }
    .sd-reference-hero .hero-title { font-size: clamp(34px, 9vw, 48px); margin-bottom: 22px; }
    .sd-reference-hero .hero-subhead { font-size: 18px; margin-bottom: 18px; }
    .sd-reference-hero .hero-description { font-size: 15px; line-height: 1.65; margin-bottom: 27px; }
    .sd-reference-hero .banner-btn-group { align-items: stretch; }
    .sd-reference-hero .db-btn-primary,
    .sd-reference-hero .sd-btn-secondary { flex: 1 1 210px; }
    .sd-hero-benefits { line-height: 2; }
    .sd-hero-stats { margin-top: 30px; padding-top: 22px; }
    .sd-hero-stats > div { padding-right: 10px; }
    .sd-hero-stats > div + div { padding-left: 12px; }
    .sd-hero-stats dt { font-size: 23px; }
    .sd-hero-stats dd { font-size: 11px; line-height: 1.35; }
}

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

/* Light Evidence Chain methodology. */
.ec-method { position:relative; overflow:hidden; padding:48px 0 54px; color:#102448; background:radial-gradient(ellipse at 75% 30%,#dcedfc88,transparent 58%),linear-gradient(90deg,#abccec20 1px,transparent 1px),linear-gradient(#abccec20 1px,transparent 1px),#f7fafb; background-size:auto,48px 48px,48px 48px,auto; }
.ec-shell { max-width:1536px; margin:auto; padding:0 40px; }
.ec-heading { display:flex; justify-content:space-between; gap:30px; align-items:flex-start; }
.ec-eyebrow { color:#ff5e4b; letter-spacing:.2em; font-size:13px; margin:0 0 12px; }
.ec-eyebrow span { display:inline-block; width:50px; height:1px; background:#91b6df; vertical-align:middle; margin-left:14px; }
.ec-heading h2 { color:#081c3e; font-size:clamp(36px,3.4vw,54px); line-height:1.02; letter-spacing:-.045em; margin:0 0 14px; }
.ec-intro { max-width:620px; font-size:17px; line-height:1.5; margin:0; }
.ec-timing { flex-shrink:0; padding:12px 16px; border:1px solid #1685ff; border-radius:12px; font-size:11px; letter-spacing:.12em; color:#064ccb; background:#ffffffa0; display:flex; gap:12px; align-items:center; }
.ec-timing i { font-size:19px; }
.ec-chain { position:relative; min-height:650px; margin-top:-65px; display:grid; grid-template-columns:.8fr .78fr 1.15fr 1fr; gap:28px; align-items:start; padding:0 65px 20px 80px; }
.ec-path { position:absolute; inset:0; height:100%; width:100%; pointer-events:none; filter:drop-shadow(0 2px 6px #1685ff55); }
.ec-endpoint { position:absolute; z-index:2; width:86px; margin:0; color:#5278a3; font-size:10px; font-weight:500; line-height:1.7; letter-spacing:.1em; text-transform:uppercase; }
.ec-endpoint-start { left:0; top:calc(43.55% - 70px); }
.ec-endpoint-end { right:0; top:calc(58.06% + 30px); text-align:right; }
.ec-card { position:relative; z-index:1; min-width:0; padding:22px 22px 18px; background:linear-gradient(140deg,#fff,#f6fbff); border:1px solid #91c8ff; border-radius:18px; box-shadow:9px 11px 0 -1px #e5f2fc,10px 12px 0 #badcf4,0 20px 30px #25557a18; color:#102448; transition:transform .25s,box-shadow .25s; }
.ec-card:hover,.ec-card:focus-within { transform:translateY(-4px); box-shadow:9px 15px 0 -1px #e5f2fc,10px 16px 0 #badcf4,0 25px 35px #25557a20; }
.ec-phase { display:flex; align-items:baseline; gap:8px; padding-bottom:12px; border-bottom:1px solid #b6d5f3; font-size:10px; letter-spacing:.1em; line-height:1.5; margin:0 0 22px; }
.ec-phase b { font-size:20px; color:#0784ff; letter-spacing:0; }
.ec-card h3 { font-size:23px; line-height:1.16; letter-spacing:-.035em; color:#0b1a3d; margin:18px 0 12px; }
.ec-card > p:not(.ec-phase):not(.ec-output) { font-size:15px; line-height:1.5; }
.ec-icon { display:block; font-size:49px; color:#0789ff; }
.ec-output { font-size:9px; letter-spacing:.12em; line-height:1.6; border-top:1px solid #b6d5f3; padding-top:15px; margin:18px 0 0; }
.ec-output span { padding:0 8px; color:#1285ef; }
.ec-recon { margin-top:170px; }
.ec-assess { margin-top:110px; }
.ec-exploit { margin-top:175px; background:linear-gradient(145deg,#f4fbff,#dff0ff); }
.ec-exploit .ec-phase b,.ec-exploit .ec-icon { color:#ff634c; }
.ec-report { background:linear-gradient(145deg,#173c69,#0b223e 80%); color:#dcecff; }
.ec-report h3 { color:white; }
.ec-report .ec-phase,.ec-report .ec-output { border-color:#719ac866; }
.ec-report ul { margin:22px 0; padding:0; font-size:14px; line-height:1.7; }
.ec-report li { padding:5px 0 5px 21px; position:relative; }
.ec-report li::before { content:"—"; position:absolute; left:0; color:#719ac8; }
.ec-recon,.ec-assess,.ec-exploit,.ec-report { grid-row:1; }
.ec-recon { grid-column:1; }
.ec-assess { grid-column:2; }
.ec-exploit { grid-column:3; }
.ec-report { grid-column:4; }
.ec-right { grid-column:4; grid-row:1; display:flex; flex-direction:column; gap:48px; }
.ec-retest { margin-top:0; }
.ec-retest .ec-icon { color:#00aa7c; }
.ec-statuses { display:flex; flex-wrap:wrap; gap:7px; margin:18px 0; font-size:10px; }
.ec-statuses span { color:#00795b; border:1px solid #00ac82; background:#edfff8; padding:6px 8px; border-radius:6px; }
.ec-statuses span:nth-child(2) { color:#9b5a00; border-color:#e6a01a; background:#fff9e9; }
.ec-statuses span:nth-child(3) { color:#cb2546; border-color:#ff6d87; background:#fff3f6; }
.ec-evidence { border:1px solid #a3cef5; border-radius:8px; margin-top:18px; overflow:hidden; }
.ec-evidence > small { display:block; padding:9px 12px; font-size:9px; letter-spacing:.1em; border-bottom:1px solid #bddbf4; color:#547197; }
.ec-evidence dl { margin:0; display:grid; grid-template-columns:72px 1fr; font-size:12px; }
.ec-evidence dt { color:#ef5b47; padding:11px 8px; font-size:9px; letter-spacing:.06em; border-right:1px solid #bddbf4; }
.ec-evidence dd { margin:0; padding:11px 9px; overflow-wrap:anywhere; }
.ec-evidence code { font-size:11px; }
.ec-evidence dd span { color:#4b6688; font-size:11px; }
.ec-validated { display:inline-block; border:1px solid #04ab85; background:#e9fff9; border-radius:5px; padding:5px 9px; color:#00816a; font-size:10px; letter-spacing:.1em; margin-top:12px; }
.ec-card details { font-size:13px; margin-top:16px; }
.ec-card summary { cursor:pointer; list-style:none; color:#356eac; display:flex; justify-content:space-between; gap:12px; }
.ec-card summary::-webkit-details-marker { display:none; }
.ec-card summary:focus-visible { outline:2px solid #0b80ff; outline-offset:5px; }
.ec-card details[open] summary span { transform:rotate(45deg); }
.ec-card details p { margin:12px 0 0; font-size:14px; line-height:1.55; }
.ec-report summary { color:#b2d9ff; }
.ec-margin-note { position:absolute; bottom:45px; left:22%; padding:10px 20px; border-left:1px solid #aac9e9; font-size:11px; line-height:2; letter-spacing:.18em; color:#7796bb; }
.ec-radar { width:78px; height:78px; position:relative; border:1px solid #1488ff; border-radius:50%; background:repeating-radial-gradient(circle,#1283ef16 0 11px,#1488ff66 12px,#fff0 13px 24px); }
.ec-radar::after { content:""; position:absolute; top:35px; left:35px; width:8px; height:8px; border-radius:50%; background:#1289ff; }
.ec-radar span { position:absolute; inset:0; border-radius:50%; background:conic-gradient(from 20deg,transparent 0 270deg,#158dff55 340deg,transparent 341deg); }
.ec-rules { position:relative; z-index:2; display:flex; align-items:center; gap:25px; padding:25px 28px; border:1px solid #a4d4ff; border-radius:15px; background:#ffffffd9; }
.ec-rules-title { display:flex; align-items:center; gap:20px; flex:1.2; }
.ec-rules-title > i { font-size:36px; color:#ff644d; }
.ec-rules small,.ec-rules dt { font-size:10px; letter-spacing:.12em; color:#074b9b; }
.ec-rules-title p { margin:8px 0 0; font-size:15px; }
.ec-rules dl { display:grid; grid-template-columns:repeat(4,1fr); flex:2.5; margin:0; }
.ec-rules dl > div { padding:12px 18px; border-left:1px solid #b5d1ee; }
.ec-rules dd { font-size:12px; margin:10px 0 0; }
.ec-boundary { flex:.85; display:flex; align-items:center; gap:12px; border:1px solid #ff6b56; border-radius:8px; padding:13px; font-size:12px; line-height:1.45; color:#e4513d; margin:0; }
.ec-boundary i { font-size:23px; }
@media(min-width:1101px) and (max-width:1350px) {
 .ec-chain { padding-left:35px; padding-right:30px; gap:20px; }
 .ec-card { padding:20px 16px 17px; }
 .ec-card h3 { font-size:21px; }
 .ec-phase { font-size:9px; gap:5px; }
 .ec-right { gap:32px; }
 .ec-rules { gap:14px; padding:22px 18px; }
 .ec-rules dl > div { padding:10px; }
}
@media(max-width:1100px) {
 .ec-heading { display:block; }
 .ec-timing { display:inline-flex; margin-top:24px; }
 .ec-chain { margin-top:30px; min-height:0; padding:0 0 30px; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; }
 .ec-card { margin-top:0; }
 .ec-right { display:contents; }
 .ec-recon { grid-column:1; grid-row:1; }
 .ec-assess { grid-column:2; grid-row:1; }
 .ec-exploit { grid-column:1; grid-row:2 / span 2; }
 .ec-report { grid-column:2; grid-row:2; }
 .ec-retest { grid-column:2; grid-row:3; }
 .ec-path,.ec-margin-note { display:none; }
 .ec-endpoint { position:static; width:auto; grid-column:1 / -1; padding:8px 0; text-align:left; }
 .ec-endpoint-start { grid-row:1; }
 .ec-endpoint-end { grid-row:5; }
 .ec-chain:has(.ec-endpoint) .ec-recon,.ec-chain:has(.ec-endpoint) .ec-assess { grid-row:2; }
 .ec-chain:has(.ec-endpoint) .ec-exploit { grid-row:3 / span 2; }
 .ec-chain:has(.ec-endpoint) .ec-report { grid-row:3; }
 .ec-chain:has(.ec-endpoint) .ec-retest { grid-row:4; }
 .ec-rules { flex-wrap:wrap; }
 .ec-rules-title { flex:1 1 100%; }
 .ec-rules dl { flex:1 1 70%; }
 .ec-boundary { flex:1 1 180px; }
}
@media(max-width:650px) {
 .ec-method { padding:44px 0; }
 .ec-shell { padding:0 24px; }
 .ec-heading h2 { font-size:36px; }
 .ec-intro { font-size:16px; }
 .ec-timing { font-size:9px; letter-spacing:.07em; padding:12px; }
 .ec-chain { display:flex; flex-direction:column; gap:30px; }
 .ec-chain::before { content:""; position:absolute; top:0; bottom:0; left:26px; border-left:2px solid #70b9ff; }
 .ec-card { width:100%; padding:24px; }
 .ec-card h3 { font-size:26px; }
 .ec-phase { font-size:11px; }
 .ec-output { font-size:10px; }
 .ec-rules { padding:22px; }
 .ec-rules dl { grid-template-columns:1fr 1fr; gap:15px 0; }
 .ec-boundary { flex-basis:100%; }
}
@media(prefers-reduced-motion:no-preference) {
 .ec-method.ec-visible .ec-path > g:first-of-type { stroke-dasharray:1000; animation:ec-trace 2.2s ease-out both; }
 .ec-method.ec-visible .ec-radar span { animation:ec-sweep 9s linear infinite; }
 .ec-method:not(.ec-visible) .ec-radar span { animation-play-state:paused; }
 @keyframes ec-trace { from { stroke-dashoffset:1000; } to { stroke-dashoffset:0; } }
 @keyframes ec-sweep { to { transform:rotate(360deg); } }
}

/* Compact desktop composition; script fits this natural layout to short viewports. */
@media (min-width:1101px) {
 .ec-method { padding:24px 0; }
 .ec-shell { transform-origin:top center; }
 .ec-heading h2 { font-size:42px; }
 .ec-intro { font-size:16px; max-width:650px; }
 .ec-chain { min-height:0; margin-top:-44px; padding:0 96px 20px; gap:24px; }
 .ec-recon { margin-top:112px; }
 .ec-assess { margin-top:65px; }
 .ec-exploit { margin-top:112px; }
 .ec-right { gap:24px; }
 .ec-card { padding:16px 18px; }
 .ec-phase { margin-bottom:14px; padding-bottom:8px; }
 .ec-icon { font-size:36px; }
 .ec-radar { width:60px; height:60px; }
 .ec-radar::after { top:26px; left:26px; }
 .ec-card h3 { font-size:22px; margin:12px 0 10px; }
 .ec-card details { margin-top:10px; }
 .ec-output { padding-top:10px; margin-top:12px; }
 .ec-report ul { margin:12px 0; line-height:1.5; }
 .ec-report li { padding-top:3px; padding-bottom:3px; }
 .ec-evidence { margin-top:12px; }
 .ec-evidence dt,.ec-evidence dd { padding-top:8px; padding-bottom:8px; }
 .ec-statuses { margin:12px 0; }
 .ec-rules { padding:16px 22px; gap:18px; }
 .ec-rules dl > div { padding:8px 12px; }
 .ec-margin-note { bottom:35px; left:19%; }
 .ec-method.ec-fitted { height:var(--ec-fit-height); }
 .ec-method.ec-fitted .ec-shell { transform:scale(var(--ec-fit-scale)); }
 /* Expanded details remain in normal flow and may extend the section. */
 .ec-method:has(details[open]) { height:auto; }
 .ec-method:has(details[open]) .ec-shell { transform:none; }
}

/* Why SpotDefence — proportions matched to the approved 1536 × 1024 visual. */
@media (min-width: 1025px) {
    .sd-why-section {
        padding: 44px 0 50px;
        background: radial-gradient(ellipse at 50% 0%, #0d1b31 0%, #07111d 58%, #070c17 100%);
    }
    .sd-why-waves { position: absolute; z-index: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 230px; pointer-events: none; }
    .sd-why-section > .container { position: relative; z-index: 1; max-width: 1536px; padding-inline: 86px; }
    .sd-why-intro { max-width: none; margin-bottom: 26px; }
    .sd-why-intro .db-eyebrow { margin-bottom: 12px; font-size: 12px; letter-spacing: .2em; }
    .sd-why-title { margin-bottom: 14px; font-size: clamp(42px, 3.6vw, 52px); line-height: 1.03; letter-spacing: -.035em; }
    .sd-why-lede { max-width: none; font-size: 16px; line-height: 1.5; }
    .sd-why-grid { gap: 24px; }
    .sd-why-card {
        min-height: 332px;
        padding: 24px 28px 25px;
        border-color: rgba(104, 177, 190, .48);
        border-radius: 8px;
        background:
            radial-gradient(115% 88% at 8% 0%, rgba(25, 103, 124, .22), transparent 62%),
            linear-gradient(165deg, rgba(8, 38, 50, .93), rgba(9, 26, 38, .96));
        box-shadow: 0 20px 42px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .025);
    }
    .sd-why-card-head { margin-bottom: 18px; }
    .sd-why-icon { width: 52px; height: 52px; }
    .sd-why-icon svg { filter: drop-shadow(0 0 9px rgba(255, 104, 105, .25)); }
    .sd-why-num { padding-top: 2px; font-family: var(--font-body); font-size: 14px; font-weight: 400; letter-spacing: 0; color: #8793a6; }
    .sd-why-card-title { margin-bottom: 12px; font-size: 24px; line-height: 1.2; font-weight: 600; letter-spacing: -.025em; }
    .sd-why-card-body { margin-bottom: 20px; font-size: 16px; line-height: 1.5; color: #b5c0d0; }
    .sd-why-card-label {
        position: relative;
        padding-top: 15px;
        padding-right: 35px;
        font-size: 11px;
        letter-spacing: .2em;
        color: #c4ccda;
        border-top-color: rgba(155, 184, 193, .28);
    }
    .sd-why-card-label::after { content: "→"; position: absolute; top: 8px; right: 0; color: #ff6f70; font-family: var(--font-body); font-size: 25px; line-height: 1; letter-spacing: 0; }
    .sd-why-foot { margin-top: 24px; padding: 24px 9px 0; border-top-color: rgba(145, 169, 186, .25); }
    .sd-why-foot-text { font-size: 16px; color: #b8c1d1; }
    .sd-why-cta { min-width: 285px; min-height: 50px; justify-content: center; padding: 13px 24px; border-radius: 7px; color: #08101b; background: linear-gradient(180deg, #ff858a, #ff696c); border-color: #ff8d91; font-size: 16px; box-shadow: 0 14px 30px rgba(255, 96, 102, .2); }
    .sd-why-cta:hover { color: #08101b; background: #ff9296; }
}

/* Keep section artwork anchored to its section across mobile and desktop. */
#services,
.db-parallax-strip {
    background-attachment: scroll !important;
}


/* Get Started — compact desktop composition that fits a standard viewport. */
@media (min-width: 1025px) {
    .db-contact-section {
        min-height: calc(100svh - 85px);
        padding: 34px 0 38px;
        display: flex;
        align-items: center;
    }

    .db-contact-section .db-section-header {
        margin-bottom: 22px;
    }

    .db-contact-section .db-section-title {
        font-size: clamp(38px, 3.1vw, 48px);
        line-height: 1.04;
        margin-bottom: 12px;
    }

    .db-contact-section .db-section-sub {
        max-width: 820px;
        line-height: 1.5;
    }

    .db-contact-section .db-contact-grid {
        grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
        gap: 24px;
    }

    .db-contact-section .db-console-top-strip {
        padding: 11px 20px;
    }

    .db-contact-section form {
        padding: 18px 22px 20px;
    }

    .db-contact-section .db-form-row {
        gap: 12px;
        margin-bottom: 10px;
    }

    .db-contact-section .db-form-field {
        gap: 4px;
    }

    .db-contact-section .db-form-field input,
    .db-contact-section .db-form-field select,
    .db-contact-section .db-form-field textarea {
        padding: 9px 12px;
    }

    .db-contact-section .db-form-field textarea {
        min-height: 68px;
    }

    .db-contact-section .db-form-privacy-note {
        margin: 2px 0 10px;
        line-height: 1.4;
    }

    .db-contact-section .db-form-consent {
        margin-bottom: 13px;
    }

    .db-contact-section .db-ct-info-console {
        gap: 10px;
    }

    .db-contact-section .db-contact-channel-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .db-contact-section .ch-tels {
        margin-top: 7px;
    }
}


/* Get Started — compact laptop-height composition. */
@media (min-width: 1025px) and (max-height: 1000px) {
    .db-contact-section {
        padding: 18px 0 20px;
    }

    .db-contact-section .db-section-header {
        margin-bottom: 14px;
    }

    .db-contact-section .db-section-header br {
        display: none;
    }

    .db-contact-section .db-section-title {
        font-size: clamp(32px, 2.5vw, 38px);
        line-height: 1.05;
        margin-bottom: 8px;
    }

    .db-contact-section .db-section-sub {
        max-width: 1080px;
        font-size: 15px;
        line-height: 1.4;
    }

    .db-contact-section .db-console-top-strip {
        padding: 8px 18px;
    }

    .db-contact-section form {
        padding: 14px 20px 16px;
    }

    .db-contact-section .db-form-row {
        gap: 10px;
        margin-bottom: 8px;
    }

    .db-contact-section .db-form-field input,
    .db-contact-section .db-form-field select,
    .db-contact-section .db-form-field textarea {
        padding: 7px 11px;
    }

    .db-contact-section .db-form-field textarea {
        min-height: 58px;
    }

    .db-contact-section .db-form-privacy-note {
        margin: 0 0 7px;
        font-size: 12.5px;
        line-height: 1.3;
    }

    .db-contact-section .db-form-consent {
        margin-bottom: 9px;
    }

    .db-contact-section .db-form-consent label {
        font-size: 12px;
        line-height: 1.35;
    }

    .db-contact-section .db-btn-submit-main,
    .db-contact-section .db-btn-submit-wa {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .db-contact-section .db-contact-channel-card {
        padding: 11px 14px;
    }

    .db-contact-section .ch-tels {
        margin-top: 4px;
    }

    .db-contact-section .ch-tel {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}
