/* =============================================================================
   P&P Insurance Agency — Main Stylesheet  (Revamp v2)
   Stack: Bespoke CSS · Grid · Flexbox · CSS Variables
   Design: Premium financial services — clean, smooth, high-conversion
   ============================================================================= */

/* ─────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────────────────────── */
:root {
    /* ── Brand Palette ─────────────────────────────────── */
    /* Deep charcoal — dark sections, text */
    --clr-dark-950: #111214;
    --clr-dark-900: #1e2024;
    --clr-dark-800: #2D3034;
    --clr-dark-700: #3d4248;
    --clr-dark-600: #52585f;
    --clr-dark-100: #e8e9ea;
    --clr-dark-50:  #f4f4f5;

    /* Red — primary brand color */
    --clr-red-950:  #3b0101;
    --clr-red-900:  #560202;
    --clr-red-800:  #6b0404;
    --clr-red-700:  #890505;   /* primary */
    --clr-red-600:  #a80606;
    --clr-red-500:  #c41212;
    --clr-red-400:  #e02424;
    --clr-red-100:  #fde8e8;
    --clr-red-50:   #fff5f5;

    /* Neutral */
    --clr-white:    #ffffff;
    --clr-gray-50:  #f8f8f9;
    --clr-gray-100: #f0f0f2;
    --clr-gray-200: #e2e2e6;
    --clr-gray-300: #c8c8ce;
    --clr-gray-400: #9a9aa4;
    --clr-gray-500: #6e6e78;
    --clr-gray-600: #4a4a54;
    --clr-gray-800: #2D3034;
    --clr-text:     #1e2024;
    --clr-text-muted: #6e6e78;

    /* Semantic aliases */
    --clr-primary:       var(--clr-red-700);
    --clr-primary-dark:  var(--clr-red-800);
    --clr-primary-light: var(--clr-red-600);
    --clr-surface:       var(--clr-white);
    --clr-surface-alt:   var(--clr-gray-50);

    /* Typography */
    --font-sans:    'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;

    --fs-xs:   0.75rem;    /* 12px */
    --fs-sm:   0.875rem;   /* 14px */
    --fs-base: 1rem;       /* 16px */
    --fs-md:   1.125rem;   /* 18px */
    --fs-lg:   1.25rem;    /* 20px */
    --fs-xl:   1.375rem;   /* 22px */
    --fs-2xl:  1.625rem;   /* 26px */
    --fs-3xl:  2rem;       /* 32px */
    --fs-4xl:  2.5rem;     /* 40px */
    --fs-5xl:  3.25rem;    /* 52px */
    --fs-6xl:  4rem;       /* 64px */
    --fs-7xl:  5rem;       /* 80px */

    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semi:   600;
    --fw-bold:   700;
    --fw-black:  800;

    --lh-none:   1;
    --lh-tight:  1.15;
    --lh-snug:   1.35;
    --lh-normal: 1.65;

    /* Spacing (8pt grid) */
    --sp-1:  0.25rem;
    --sp-2:  0.5rem;
    --sp-3:  0.75rem;
    --sp-4:  1rem;
    --sp-5:  1.25rem;
    --sp-6:  1.5rem;
    --sp-8:  2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* Layout */
    --container-max: 1600px;
    --container-pad: clamp(1.25rem, 5vw, 2.5rem);

    /* Radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   14px;
    --radius-xl:   22px;
    --radius-2xl:  32px;
    --radius-full: 9999px;

    /* Shadows — refined, layered */
    --shadow-xs:  0 1px 2px rgba(0,0,0,.06);
    --shadow-sm:  0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
    --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
    --shadow-xl:  0 20px 56px rgba(0,0,0,.13), 0 8px 20px rgba(0,0,0,.07);
    --shadow-red: 0 8px 32px rgba(137,5,5,.22), 0 2px 8px rgba(137,5,5,.12);

    /* Transitions */
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --dur-fast:    160ms;
    --dur-base:    280ms;
    --dur-slow:    440ms;

    /* Header */
    --topbar-h:  38px;
    --header-h:  150px;
}

/* ─────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    color: var(--clr-text);
    background-color: var(--clr-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: var(--lh-tight);
    font-weight: var(--fw-bold);
    color: var(--clr-text);
}

p { margin: 0; }
address { font-style: normal; }

/* ─────────────────────────────────────────────────────────
   3. ACCESSIBILITY
   ───────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: var(--sp-2) var(--sp-4);
    background: var(--clr-dark-900);
    color: var(--clr-white);
    font-weight: var(--fw-semi);
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 2px solid var(--clr-red-600);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────────────────────
   4. LAYOUT
   ───────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section { padding-block: var(--sp-24); }
.section--lg { padding-block: var(--sp-32); }
.section--sm { padding-block: var(--sp-16); }

.section__header {
    max-width: 660px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: var(--sp-16);
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-red-700);
    margin-bottom: var(--sp-4);
}
.section__eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.section__title {
    font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    color: var(--clr-dark-900);
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-4);
    letter-spacing: -0.01em;
}

.section__subtitle {
    font-size: var(--fs-lg);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
}

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

/* ─────────────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.875rem 1.875rem;
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    letter-spacing: 0.02em;
    line-height: 1;
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color var(--dur-fast) var(--ease-out),
        color            var(--dur-fast) var(--ease-out),
        border-color     var(--dur-fast) var(--ease-out),
        box-shadow       var(--dur-fast) var(--ease-out),
        transform        var(--dur-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 80ms; }

.btn--sm { padding: 0.625rem 1.375rem; font-size: var(--fs-xs); letter-spacing: 0.03em; }
.btn--lg { padding: 1rem 2.25rem; font-size: var(--fs-base); }

/* Primary — red solid */
.btn--primary {
    background: var(--clr-red-700);
    color: var(--clr-white);
    border-color: var(--clr-red-700);
    box-shadow: 0 2px 8px rgba(137,5,5,.25);
}
.btn--primary:hover {
    background: var(--clr-red-800);
    border-color: var(--clr-red-800);
    box-shadow: var(--shadow-red);
    color: var(--clr-white);
}

/* Gold/CTA — light on dark backgrounds */
.btn--gold {
    background: var(--clr-white);
    color: var(--clr-dark-900);
    border-color: var(--clr-white);
    font-weight: var(--fw-bold);
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.btn--gold:hover {
    background: var(--clr-gray-50);
    border-color: var(--clr-gray-50);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    color: var(--clr-dark-900);
}

/* Accent */
.btn--accent {
    background: var(--clr-red-600);
    color: var(--clr-white);
    border-color: var(--clr-red-600);
    box-shadow: 0 2px 8px rgba(137,5,5,.2);
}
.btn--accent:hover {
    background: var(--clr-red-700);
    border-color: var(--clr-red-700);
    box-shadow: var(--shadow-red);
    color: var(--clr-white);
}

/* Outline */
.btn--outline {
    background: transparent;
    color: var(--clr-red-700);
    border-color: var(--clr-red-700);
}
.btn--outline:hover {
    background: var(--clr-red-700);
    color: var(--clr-white);
    box-shadow: var(--shadow-red);
}

/* Outline white — on dark backgrounds */
.btn--outline-white {
    background: transparent;
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.35);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.7);
    color: var(--clr-white);
}

/* ─────────────────────────────────────────────────────────
   6. TOP BAR
   ───────────────────────────────────────────────────────── */
.topbar {
    background-color: var(--clr-dark-950);
    color: rgba(255,255,255,.65);
    font-size: var(--fs-xs);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
}
.topbar__item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.topbar__item a {
    color: rgba(255,255,255,.85);
    font-weight: var(--fw-medium);
    transition: color var(--dur-fast);
}
.topbar__item a:hover { color: var(--clr-white); }
.topbar__item--right  { margin-left: auto; }

/* ─────────────────────────────────────────────────────────
   7. SITE HEADER / PRIMARY NAV
   ───────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-gray-100);
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: box-shadow var(--dur-base) var(--ease-out),
                background var(--dur-base) var(--ease-out),
                border-color var(--dur-base);
}
.site-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    border-color: transparent;
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}

/* Logo */
.site-header__logo img {
    height: 140px;
    width: auto;
    transition: opacity var(--dur-fast);
}
.site-header__logo:hover img { opacity: .85; }

/* Desktop Nav */
.site-nav { margin-left: auto; }
.site-nav__list {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.625rem 1.125rem;
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: var(--clr-gray-500);
    border-radius: var(--radius-full);
    letter-spacing: 0.01em;
    transition: color var(--dur-fast), background var(--dur-fast);
}
.site-nav__link:hover { color: var(--clr-dark-900); background: var(--clr-gray-100); }
.site-nav__link.is-active {
    color: var(--clr-red-700);
    font-weight: var(--fw-semi);
    background: var(--clr-red-50);
}

.site-header__cta { margin-left: var(--sp-4); }

/* Nav Dropdown (Mega Menu) */
.has-dropdown { position: relative; }
.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(0);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out),
                visibility 0s var(--dur-fast);
    z-index: 101;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.04);
    padding: var(--sp-5);
    min-width: 320px;
    max-width: 420px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    display: block;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out),
                visibility 0s 0s;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.nav-dropdown__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-1);
}
.nav-dropdown__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--radius-md);
    transition: background var(--dur-fast);
}
.nav-dropdown__item:hover {
    background: var(--clr-gray-50);
}
.nav-dropdown__label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: var(--clr-dark-900);
    line-height: 1.3;
}
.nav-dropdown__hint {
    font-size: var(--fs-xs);
    color: var(--clr-gray-400);
    line-height: 1.3;
}

.nav-dropdown--contact { min-width: 280px; }
.nav-dropdown__contact-card { display: flex; flex-direction: column; gap: var(--sp-3); }
.nav-dropdown__contact-title {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--clr-dark-900);
    margin-bottom: var(--sp-1);
}
.nav-dropdown__contact-row {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--clr-gray-600);
}
.nav-dropdown__contact-row svg { color: var(--clr-red-700); flex-shrink: 0; }
.nav-dropdown__contact-row a { color: var(--clr-red-700); transition: color var(--dur-fast); }
.nav-dropdown__contact-row a:hover { color: var(--clr-red-800); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--sp-2);
    margin-left: auto;
    border-radius: var(--radius-md);
    transition: background var(--dur-fast);
}
.nav-toggle:hover { background: var(--clr-gray-100); }
.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-dark-800);
    border-radius: var(--radius-full);
    transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base), width var(--dur-base);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-white);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    border-top: 1px solid var(--clr-gray-100);
    padding: var(--sp-4) 0 var(--sp-6);
    z-index: 99;
}
.mobile-nav[aria-hidden="false"] { display: block; }
.mobile-nav__list { padding-inline: var(--container-pad); }
.mobile-nav__link {
    display: block;
    padding: var(--sp-3) var(--sp-2);
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    color: var(--clr-dark-800);
    border-bottom: 1px solid var(--clr-gray-100);
    transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.mobile-nav__link:hover { color: var(--clr-red-700); padding-left: var(--sp-4); }
.mobile-nav__link.is-active { color: var(--clr-red-700); font-weight: var(--fw-semi); }
.mobile-nav__cta {
    display: block;
    width: 100%;
    margin-top: var(--sp-5);
    text-align: center;
    border-radius: var(--radius-full);
}

/* ─────────────────────────────────────────────────────────
   8. HERO SECTION
   ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: clamp(580px, 88vh, 800px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-dark-950);
}

/* Geometric background pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(137,5,5,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(45,48,52,.6) 0%, transparent 60%);
    z-index: 1;
}

/* Grid dot pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 1;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.08;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(17,18,20,.98) 0%,
        rgba(30,32,36,.92) 50%,
        rgba(17,18,20,.85) 100%
    );
    z-index: 0;
}

/* Right side accent bar */
.hero__accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--clr-red-700) 30%, var(--clr-red-600) 70%, transparent 100%);
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--sp-20);
    align-items: center;
    padding-block: var(--sp-24);
    width: 100%;
}

/* Left: content */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: var(--sp-6);
}
.hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-red-600);
    flex-shrink: 0;
    animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196,18,48,.5); }
    50%       { box-shadow: 0 0 0 6px rgba(196,18,48,.0); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-4xl), 5.5vw, var(--fs-7xl));
    font-weight: var(--fw-black);
    line-height: var(--lh-none);
    color: var(--clr-white);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-6);
}
.hero__title em {
    font-style: normal;
    color: var(--clr-red-500);
}
.hero__title span {
    display: block;
    color: rgba(255,255,255,.88);
}

.hero__subtitle {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,.62);
    line-height: var(--lh-normal);
    max-width: 480px;
    margin-bottom: var(--sp-10);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    align-items: center;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    margin-top: var(--sp-12);
    padding-top: var(--sp-8);
    border-top: 1px solid rgba(255,255,255,.08);
}
.hero__trust-item { text-align: left; }
.hero__trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-black);
    color: var(--clr-white);
    line-height: var(--lh-none);
}
.hero__trust-item span {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero__trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* Right: quote card */
.hero__card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.04);
    position: relative;
}
.hero__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-red-700), var(--clr-red-500));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.hero__card-title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--clr-dark-900);
    text-align: center;
    margin-bottom: var(--sp-1);
}
.hero__card-sub {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    text-align: center;
    margin-bottom: var(--sp-6);
}

/* ─────────────────────────────────────────────────────────
   9. FORM ELEMENTS
   ───────────────────────────────────────────────────────── */
.quote-form {}
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
}
.form-group label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-gray-500);
}
.form-control {
    width: 100%;
    padding: 0.8125rem 1rem;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    color: var(--clr-text);
    background: var(--clr-gray-50);
    border: 1.5px solid var(--clr-gray-200);
    border-radius: var(--radius-md);
    appearance: none;
    -webkit-appearance: none;
    transition:
        border-color var(--dur-fast) var(--ease-out),
        box-shadow   var(--dur-fast) var(--ease-out),
        background   var(--dur-fast);
}
.form-control::placeholder { color: var(--clr-gray-300); }
.form-control:hover { border-color: var(--clr-gray-300); }
.form-control:focus {
    outline: none;
    border-color: var(--clr-red-700);
    background: var(--clr-white);
    box-shadow: 0 0 0 3px rgba(137,5,5,.10);
}
.form-control.is-error {
    border-color: var(--clr-red-600);
    background: var(--clr-red-50);
}
.form-control.is-valid {
    border-color: #16a34a;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e78' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.75rem;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
    line-height: var(--lh-normal);
}

.form-error {
    font-size: var(--fs-xs);
    color: var(--clr-red-600);
    font-weight: var(--fw-medium);
    margin-top: var(--sp-1);
}

/* Honeypot */
.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    left: -9999px;
}

/* Multi-step form */
.form-steps {
    display: flex;
    gap: var(--sp-2);
    margin-bottom: var(--sp-8);
    position: relative;
}
.form-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: var(--clr-gray-200);
    z-index: 0;
}
.form-step-indicator {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    position: relative;
    z-index: 1;
}
.form-step-indicator__dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--clr-white);
    border: 2px solid var(--clr-gray-200);
    color: var(--clr-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    transition: all var(--dur-base) var(--ease-out);
}
.form-step-indicator.is-active .form-step-indicator__dot {
    background: var(--clr-dark-900);
    border-color: var(--clr-dark-900);
    color: var(--clr-white);
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.form-step-indicator.is-done .form-step-indicator__dot {
    background: #16a34a;
    border-color: #16a34a;
    color: var(--clr-white);
}
.form-step-indicator__label {
    font-size: var(--fs-xs);
    color: var(--clr-gray-400);
    text-align: center;
    font-weight: var(--fw-medium);
    letter-spacing: 0.02em;
}
.form-step-indicator.is-active .form-step-indicator__label {
    color: var(--clr-dark-900);
    font-weight: var(--fw-semi);
}
.form-step-indicator.is-done .form-step-indicator__label {
    color: #16a34a;
}

.form-panel { display: none; }
.form-panel.is-active { display: block; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

/* ─────────────────────────────────────────────────────────
   10. SERVICES GRID — dark section with numbered glass cards
   ───────────────────────────────────────────────────────── */
.services-section {
    background: var(--clr-dark-950);
    position: relative;
    overflow: hidden;
}

/* Radial glow top-right */
.services-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(137,5,5,.14) 0%, transparent 70%);
    pointer-events: none;
}
/* dot grid texture */
.services-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Section header overrides for dark bg */
.services-section .section__title    { color: var(--clr-white); }
.services-section .section__subtitle { color: rgba(255,255,255,.50); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
    position: relative;
    z-index: 1;
    counter-reset: service-counter;
}

.service-card {
    counter-increment: service-counter;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: var(--sp-8) var(--sp-6) var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    position: relative;
    overflow: hidden;
    transition:
        transform      var(--dur-base) var(--ease-out),
        background     var(--dur-base) var(--ease-out),
        border-color   var(--dur-base) var(--ease-out),
        box-shadow     var(--dur-base) var(--ease-out);
}

/* Ghost counter number — large background watermark */
.service-card::after {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    bottom: -10px;
    right: var(--sp-5);
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: var(--fw-black);
    line-height: 1;
    color: rgba(255,255,255,.04);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

/* Top red accent line on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-red-700), var(--clr-red-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-base) var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.075);
    border-color: rgba(137,5,5,.40);
    box-shadow: 0 0 0 1px rgba(137,5,5,.20), 0 12px 40px rgba(0,0,0,.30);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(137,5,5,.25);
    border: 1px solid rgba(137,5,5,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-red-400);
    flex-shrink: 0;
    transition:
        background  var(--dur-base),
        border-color var(--dur-base),
        color        var(--dur-base),
        transform    var(--dur-base);
}
.service-card:hover .service-card__icon {
    background: var(--clr-red-700);
    border-color: var(--clr-red-700);
    color: var(--clr-white);
    transform: scale(1.08);
}

.service-card__title {
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: rgba(255,255,255,.92);
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.45);
    line-height: var(--lh-normal);
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(137,5,5,.70);
    transition: color var(--dur-fast), gap var(--dur-fast);
    margin-top: var(--sp-1);
}
.service-card:hover .service-card__link {
    color: var(--clr-red-400);
    gap: var(--sp-3);
}

/* ─────────────────────────────────────────────────────────
   11. TRUST / WHY US SECTION — horizontal card layout
   ───────────────────────────────────────────────────────── */
.trust-section {
    background: var(--clr-white);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
    counter-reset: trust-counter;
}

.trust-item {
    counter-increment: trust-counter;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: var(--sp-5);
    row-gap: var(--sp-2);
    align-items: start;

    /* card */
    text-align: left;
    padding: var(--sp-6) var(--sp-7);
    border-radius: var(--radius-lg);
    background: var(--clr-white);
    border: 1px solid var(--clr-gray-100);
    border-left: 3px solid var(--clr-red-700);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--dur-base), transform var(--dur-base), border-left-color var(--dur-base);
}

/* Ghost counter number */
.trust-item::after {
    content: counter(trust-counter, decimal-leading-zero);
    position: absolute;
    bottom: -12px;
    right: var(--sp-5);
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: var(--fw-black);
    line-height: 1;
    color: rgba(0,0,0,.035);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

.trust-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-left-color: var(--clr-red-600);
}

.trust-item__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--clr-dark-950);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.20);
    flex-shrink: 0;
    transition: background var(--dur-base), transform var(--dur-base);
}
.trust-item:hover .trust-item__icon {
    background: var(--clr-red-700);
    transform: scale(1.06);
}

.trust-item__title {
    grid-column: 2;
    grid-row: 1;
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: var(--clr-dark-900);
    align-self: end;
}

.trust-item__text {
    grid-column: 2;
    grid-row: 2;
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    align-self: start;
}

/* ─────────────────────────────────────────────────────────
   12. CARRIER LOGOS STRIP
   ───────────────────────────────────────────────────────── */
.carriers-section {
    background: var(--clr-white);
    border-top: 1px solid var(--clr-gray-100);
}

.carrier-carousel {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.carrier-carousel__track {
    display: flex;
    gap: var(--sp-3);
    width: max-content;
    animation: scroll-carriers 50s linear infinite;
}
.carrier-carousel:hover .carrier-carousel__track {
    animation-play-state: paused;
}
@keyframes scroll-carriers {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carrier-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.125rem;
    background: var(--clr-white);
    border: 1px solid var(--clr-gray-200);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    letter-spacing: 0.04em;
    color: var(--clr-gray-500);
    box-shadow: var(--shadow-xs);
    transition:
        border-color var(--dur-fast),
        color var(--dur-fast),
        box-shadow var(--dur-fast),
        transform var(--dur-fast);
}
.carrier-badge:hover {
    border-color: var(--clr-gray-300);
    color: var(--clr-dark-900);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────
   13. STATS BAR
   ───────────────────────────────────────────────────────── */
.stats-bar {
    background: var(--clr-dark-950);
    padding-block: var(--sp-16);
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 100% at 50% 0%, rgba(137,5,5,.12) 0%, transparent 70%);
}
.stats-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 24px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    transition: background var(--dur-base), border-color var(--dur-base);
}
.stat-item:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.10);
}

.stat-item__number {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-4xl), 4vw, var(--fs-5xl));
    font-weight: var(--fw-black);
    color: var(--clr-white);
    line-height: var(--lh-none);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.02em;
}
.stat-item__label {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--fw-medium);
}

/* ─────────────────────────────────────────────────────────
   14. TESTIMONIALS
   ───────────────────────────────────────────────────────── */
.testimonials-section { background: var(--clr-gray-50); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.testimonial-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-gray-100);
    border-radius: var(--radius-lg);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    transition: box-shadow var(--dur-base), transform var(--dur-base);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Large quote mark */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-6);
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--clr-gray-100);
    font-weight: var(--fw-black);
    pointer-events: none;
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
}
.testimonial-card__stars svg { color: #d97706; }

.testimonial-card__quote {
    font-size: var(--fs-base);
    color: var(--clr-gray-600);
    line-height: var(--lh-normal);
    flex: 1;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--clr-gray-100);
}

.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-dark-800), var(--clr-dark-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--clr-white);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: var(--fw-semi);
    font-size: var(--fs-sm);
    color: var(--clr-dark-900);
}
.testimonial-card__meta {
    font-size: var(--fs-xs);
    color: var(--clr-gray-400);
}

/* ─────────────────────────────────────────────────────────
   15. PAGE HERO (inner pages)
   ───────────────────────────────────────────────────────── */
.page-hero {
    background: var(--clr-dark-950);
    padding-block: var(--sp-20) var(--sp-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% -10%, rgba(137,5,5,.20) 0%, transparent 60%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--clr-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: var(--sp-4);
    position: relative;
    z-index: 1;
}
.page-hero__eyebrow::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: var(--clr-red-600);
    border-radius: var(--radius-full);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-4xl), 5vw, var(--fs-6xl));
    font-weight: var(--fw-black);
    color: var(--clr-white);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-4);
    position: relative;
    z-index: 1;
}
.page-hero__sub {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,.55);
    max-width: 580px;
    margin-inline: auto;
    line-height: var(--lh-normal);
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────
   16. CTA BAND (pre-footer)
   ───────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(125deg, var(--clr-dark-950) 0%, var(--clr-dark-900) 50%, var(--clr-red-950) 100%);
    padding-block: var(--sp-20);
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 24px 24px;
}
.cta-band::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(137,5,5,.20) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-12);
    position: relative;
    z-index: 1;
}
.cta-band__text h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-3xl), 3.5vw, var(--fs-4xl));
    font-weight: var(--fw-black);
    color: var(--clr-white);
    letter-spacing: -0.01em;
    margin-bottom: var(--sp-3);
}
.cta-band__text p {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,.55);
    max-width: 480px;
    line-height: var(--lh-normal);
}
.cta-band__actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   17. SITE FOOTER
   ───────────────────────────────────────────────────────── */
.site-footer {
    background: var(--clr-dark-950);
    color: rgba(255,255,255,.55);
    padding-top: var(--sp-20);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--sp-12);
    padding-bottom: var(--sp-12);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.site-footer__tagline {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.40);
    line-height: var(--lh-normal);
    margin-top: var(--sp-4);
    margin-bottom: var(--sp-5);
    font-style: italic;
}
.site-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--clr-red-500);
    font-size: var(--fs-md);
    font-weight: var(--fw-semi);
    margin-bottom: var(--sp-3);
    transition: color var(--dur-fast);
}
.site-footer__phone:hover { color: var(--clr-red-400); }
.site-footer__address {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.30);
    line-height: var(--lh-normal);
}

.site-footer__heading {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.30);
    margin-bottom: var(--sp-5);
}

.site-footer__nav ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer__nav a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.50);
    transition: color var(--dur-fast), padding-left var(--dur-fast);
    display: inline-block;
}
.site-footer__nav a:hover { color: rgba(255,255,255,.88); padding-left: var(--sp-2); }

.site-footer__carrier-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}
.site-footer__carrier-list li {
    font-size: var(--fs-xs);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius-full);
    padding: var(--sp-1) var(--sp-3);
    color: rgba(255,255,255,.40);
    transition: background var(--dur-fast), color var(--dur-fast);
}
.site-footer__carrier-list li:hover {
    background: rgba(255,255,255,.09);
    color: rgba(255,255,255,.65);
}

.site-footer__bottom {
    padding-block: var(--sp-5);
}
.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.22);
}
.site-footer__bottom-right {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}
.footer-divider { color: rgba(255,255,255,.10); }

/* Sentinel badge */
.sentinel-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.35);
    font-weight: var(--fw-medium);
}
.sentinel-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: sentinel-pulse 2.2s ease-in-out infinite;
}
@keyframes sentinel-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
    50%  { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Powered by */
.powered-by {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.22);
    transition: color var(--dur-fast);
}
.powered-by:hover { color: rgba(255,255,255,.55); }
.powered-by strong { font-weight: var(--fw-semi); color: rgba(255,255,255,.35); }

/* ─────────────────────────────────────────────────────────
   18. CONTACT PAGE
   ───────────────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--sp-16);
    align-items: start;
}

.contact-info-card {
    background: var(--clr-dark-950);
    border-radius: var(--radius-xl);
    padding: var(--sp-10);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-red-700), var(--clr-red-500));
}
.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(137,5,5,.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--clr-white);
    margin-bottom: var(--sp-8);
}

.contact-info-item {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
    margin-bottom: var(--sp-6);
}
.contact-info-item__icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    flex-shrink: 0;
}
.contact-info-item__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.30);
    margin-bottom: var(--sp-1);
}
.contact-info-item__value {
    font-size: var(--fs-base);
    color: rgba(255,255,255,.88);
}
.contact-info-item__value a {
    color: var(--clr-red-400);
    transition: color var(--dur-fast);
}
.contact-info-item__value a:hover { color: var(--clr-red-300, #f87171); }

/* ─────────────────────────────────────────────────────────
   19. ABOUT PAGE
   ───────────────────────────────────────────────────────── */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
}
.about-intro-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    background: var(--clr-dark-100);
    position: relative;
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.about-intro-text .section__eyebrow { margin-bottom: var(--sp-3); }
.about-intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-3xl), 3.5vw, var(--fs-5xl));
    font-weight: var(--fw-black);
    color: var(--clr-dark-900);
    letter-spacing: -0.01em;
    margin-bottom: var(--sp-5);
}
.about-intro-text p {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: var(--lh-normal);
    margin-bottom: var(--sp-5);
}

/* ─────────────────────────────────────────────────────────
   20. THANK YOU PAGE
   ───────────────────────────────────────────────────────── */
.thankyou-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-block: var(--sp-24);
    background: var(--clr-gray-50);
}
.thankyou-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: var(--sp-16) var(--sp-12);
    box-shadow: var(--shadow-lg);
    max-width: 560px;
    margin-inline: auto;
    border: 1px solid var(--clr-gray-100);
    position: relative;
    overflow: hidden;
}
.thankyou-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
}
.thankyou-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-8);
    color: #16a34a;
    box-shadow: 0 4px 20px rgba(22,163,74,.2);
}

/* ─────────────────────────────────────────────────────────
   21. ALERT / NOTICE
   ───────────────────────────────────────────────────────── */
.alert {
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-5);
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    border: 1px solid transparent;
}
.alert--error {
    background: var(--clr-red-50);
    color: var(--clr-red-800);
    border-color: var(--clr-red-100);
    border-left: 3px solid var(--clr-red-600);
}
.alert--success {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
    border-left: 3px solid #22c55e;
}
.alert--info {
    background: var(--clr-gray-50);
    color: var(--clr-dark-800);
    border-color: var(--clr-gray-200);
    border-left: 3px solid var(--clr-dark-600);
}

/* ─────────────────────────────────────────────────────────
   22. SCROLL REVEAL
   ───────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity  var(--dur-slow) var(--ease-out),
        transform var(--dur-slow) var(--ease-out);
}
.reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────
   23. UTILITY CLASSES
   ───────────────────────────────────────────────────────── */
.bg-white   { background-color: var(--clr-white); }
.bg-light   { background-color: var(--clr-gray-50); }
.bg-navy    { background-color: var(--clr-dark-950); }
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────
   24. RESPONSIVE — TABLET (≤ 960px)
   ───────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-block: var(--sp-16);
    }
    .hero__subtitle  { margin-inline: auto; }
    .hero__actions   { justify-content: center; }
    .hero__trust     { justify-content: center; flex-wrap: wrap; }
    .hero__card      { max-width: 480px; margin-inline: auto; }
    .hero__eyebrow   { justify-content: center; }

    .services-grid     { grid-template-columns: repeat(2, 1fr); }
    .trust-grid        { grid-template-columns: 1fr; }
    .stats-grid        { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

    .cta-band__inner   { flex-direction: column; text-align: center; }
    .cta-band__text p  { margin-inline: auto; }
    .cta-band__actions { align-items: center; flex-direction: row; justify-content: center; }

    .contact-layout   { grid-template-columns: 1fr; }
    .about-intro-grid { grid-template-columns: 1fr; }
    .form-row         { grid-template-columns: 1fr; }

    .service-detail-grid { grid-template-columns: 1fr !important; }

    .site-header__logo img { height: 110px; }
    :root { --header-h: 120px; }
}

/* ─────────────────────────────────────────────────────────
   25. RESPONSIVE — MOBILE (≤ 640px)
   ───────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    :root {
        --topbar-h: 0px;
        --header-h: 95px;
        --sp-20:    3rem;
        --sp-24:    3.5rem;
        --sp-16:    2.5rem;
        --sp-32:    4rem;
    }

    .topbar            { display: none; }
    .site-nav          { display: none; }
    .site-header__cta  { display: none; }
    .nav-toggle        { display: flex; }
    .site-header__logo img { height: 80px; }

    .services-grid     { grid-template-columns: 1fr; }
    .trust-grid        { grid-template-columns: 1fr; }
    .stats-grid        { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }

    .service-detail-grid  { grid-template-columns: 1fr !important; }
    .service-bullet-grid  { grid-template-columns: 1fr !important; }

    .cta-band__inner   { gap: var(--sp-8); }
    .cta-band__actions { flex-direction: column; align-items: stretch; }
    .cta-band__actions .btn { width: 100%; }
    .cta-band__text h2 { font-size: var(--fs-2xl); }

    .hero { min-height: auto; }
    .hero__inner { padding-block: var(--sp-12); gap: var(--sp-8); }
    .hero__title { font-size: clamp(var(--fs-3xl), 10vw, var(--fs-4xl)); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__trust { gap: var(--sp-5); }
    .hero__card { padding: var(--sp-6); }

    .section__header { margin-bottom: var(--sp-10); }
    .stat-item { padding: var(--sp-5) var(--sp-4); }

    .site-footer__bottom-inner { flex-direction: column; text-align: center; gap: var(--sp-2); }

    .form-steps { display: none; }
    .form-row   { grid-template-columns: 1fr; }

    .about-compare-grid { grid-template-columns: 1fr !important; }
    .contact-info-card  { padding: var(--sp-6); }
    .carriers-strip     { gap: var(--sp-2); }
    .carrier-badge      { font-size: var(--fs-xs); padding: var(--sp-1) var(--sp-3); }
    .testimonial-card   { padding: var(--sp-6); }
    .site-footer        { padding-top: var(--sp-12); }

    .page-hero          { padding-block: var(--sp-12) var(--sp-10); }
    .page-hero::after   { height: 36px; }

    .thankyou-card { padding: var(--sp-8) var(--sp-5); }
}

/* ─────────────────────────────────────────────────────────
   26. PRINT
   ───────────────────────────────────────────────────────── */
@media print {
    .topbar, .site-header, .site-footer, .cta-band,
    .nav-toggle, .mobile-nav, .btn { display: none !important; }
    body { font-size: 11pt; color: #000; }
}
