/* ==========================================================================
   Generator Depot Ohio — public site design system
   FOUNDATION owns this base. Module agents: APPEND page-specific rules at
   the END of this file under a comment block:  /* === [module] === * /
   Never edit existing rules.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
    --navy-950: #081a33;
    --navy-900: #0b2344;
    --navy-800: #0e2c55;
    --navy-700: #1d3f6e;
    --ink: #12233c;
    --orange-600: #e05f00;
    --orange-500: #f47b20;
    --orange-100: #fdebdc;
    --bg: #f6f8fb;
    --card: #ffffff;
    --line: #e3e9f2;
    --slate-600: #4a5b73;
    --slate-500: #64748b;
    --green-600: #15803d;
    --red-600: #b91c1c;
    --amber-600: #b45309;

    --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --radius-card: 14px;
    --radius-btn: 10px;
    --shadow-sm: 0 1px 2px rgba(8, 26, 51, .06), 0 1px 3px rgba(8, 26, 51, .08);
    --shadow-md: 0 4px 14px rgba(8, 26, 51, .08), 0 2px 4px rgba(8, 26, 51, .05);
    --shadow-lg: 0 18px 40px rgba(8, 26, 51, .14), 0 6px 14px rgba(8, 26, 51, .08);
    --container: 1200px;
    --gutter: 24px;
    --header-h: 76px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--card);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange-600); }
a:hover { color: var(--navy-700); }

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

:focus-visible {
    outline: 3px solid var(--orange-500);
    outline-offset: 2px;
    border-radius: 4px;
}

.icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    vertical-align: middle;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 300;
    background: var(--navy-950);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 10px 0;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .5em;
    color: var(--ink);
    line-height: 1.15;
    font-weight: 700;
}

h1, .h1 {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: clamp(38px, 6vw, 64px);
}

h2, .h2 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: clamp(28px, 4vw, 42px);
}

h3, .h3 { font-size: clamp(20px, 2.5vw, 25px); }
h4, .h4 { font-size: 18px; }

p { margin: 0 0 1em; }

.lead {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--slate-600);
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange-600);
    margin-bottom: 14px;
}

.eyebrow--light { color: var(--orange-500); }

.text-muted { color: var(--slate-500); }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container--narrow { max-width: 860px; }

.section { padding-block: 96px; }
.section--tight { padding-block: 64px; }
.section--alt { background: var(--bg); }

.section--navy {
    background:
        radial-gradient(ellipse 80% 60% at 85% -10%, rgba(244, 123, 32, .12), transparent 60%),
        linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    color: rgba(255, 255, 255, .82);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section--orange {
    background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 70%);
    color: #fff;
}
.section--orange h1, .section--orange h2, .section--orange h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate-600); }
.section--navy .section-head p { color: rgba(255, 255, 255, .75); }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, border-color .18s ease,
        transform .18s ease, box-shadow .18s ease;
}
.btn .icon { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }

.btn--primary {
    background: var(--orange-500);
    color: #fff;
    box-shadow: 0 6px 16px rgba(224, 95, 0, .28);
}
.btn--primary:hover {
    background: var(--orange-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(224, 95, 0, .34);
}

.btn--navy { background: var(--navy-900); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }

.btn--outline {
    background: transparent;
    border-color: var(--navy-900);
    color: var(--navy-900);
}
.btn--outline:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }

.btn--light {
    background: #fff;
    color: var(--navy-900);
    box-shadow: var(--shadow-md);
}
.btn--light:hover { background: var(--orange-100); color: var(--navy-950); transform: translateY(-2px); }

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; transform: translateY(-2px); }

.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   6. Cards
   -------------------------------------------------------------------------- */
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    padding: 32px 28px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card--lift:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--orange-100);
    color: var(--orange-600);
    margin-bottom: 20px;
}
.card__icon .icon { width: 28px; height: 28px; }

.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; color: var(--slate-600); }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--orange-600);
    text-decoration: none;
    margin-top: 14px;
}
.card-link:hover { color: var(--navy-700); }
.card-link:hover .icon { transform: translateX(3px); }
.card-link .icon { width: 17px; height: 17px; transition: transform .18s ease; }

/* --------------------------------------------------------------------------
   7. Badges (status)
   -------------------------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 11px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.6;
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--slate-600);
    white-space: nowrap;
}

.badge--new,
.badge--scheduled,
.badge--sent { background: #e8f1fd; border-color: #c9defa; color: #1d4ed8; }

.badge--contacted,
.badge--in-progress { background: #e6f4f9; border-color: #c4e5f0; color: #0e7490; }

.badge--quote-sent,
.badge--draft,
.badge--unscheduled { background: #f1f5f9; border-color: #e2e8f0; color: var(--slate-600); }

.badge--won,
.badge--active,
.badge--paid,
.badge--completed,
.badge--passed { background: #e9f7ee; border-color: #c8ebd4; color: var(--green-600); }

.badge--lost,
.badge--failed,
.badge--overdue,
.badge--emergency,
.badge--canceled { background: #fdecec; border-color: #f8d0d0; color: var(--red-600); }

.badge--attention,
.badge--needs-service,
.badge--on-hold,
.badge--paused,
.badge--high { background: #fdf3e3; border-color: #f8e2bb; color: var(--amber-600); }

.badge--void,
.badge--inactive,
.badge--decommissioned { background: #f1f5f9; border-color: #e2e8f0; color: #94a3b8; text-decoration: line-through; }

.badge--prospect { background: var(--orange-100); border-color: #fad9bc; color: var(--orange-600); }

.badge--residential,
.badge--commercial,
.badge--maintenance,
.badge--financing,
.badge--other,
.badge--normal { background: #eef2f9; border-color: var(--line); color: var(--navy-700); }

/* --------------------------------------------------------------------------
   8. Forms
   -------------------------------------------------------------------------- */
.field { margin-bottom: 20px; }

.field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
}

.field .req { color: var(--red-600); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field input[type="password"],
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    transition: border-color .15s ease, box-shadow .15s ease;
    appearance: none;
}

.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5b73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(244, 123, 32, .18);
}

.field .hint { font-size: 13px; color: var(--slate-500); margin-top: 5px; }
.field .error { font-size: 13px; color: var(--red-600); margin-top: 5px; font-weight: 500; }
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: var(--red-600); }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
}
.form-grid .field--full { grid-column: 1 / -1; }

/* Honeypot — visually removed, still submittable by bots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   9. Tables
   -------------------------------------------------------------------------- */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: #fff;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.table th {
    text-align: left;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate-500);
    background: var(--bg);
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr { transition: background .12s ease; }
.table tbody tr:hover { background: #fbfcfe; }

.table .num { text-align: right; font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   10. Alerts / flash
   -------------------------------------------------------------------------- */
.flash-container:empty { display: none; }
.flash-container { padding-top: 16px; }
.flash-container .alert { margin-bottom: 0; }

.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}

.alert > .icon { margin-top: 2px; }
.alert__body { flex: 1; font-size: 14.5px; }
.alert__body strong { display: block; margin-bottom: 2px; }
.alert__list { margin: 6px 0 0; padding-left: 18px; }
.alert__list li { margin-bottom: 2px; }

.alert__close {
    background: none;
    border: 0;
    padding: 2px;
    cursor: pointer;
    color: inherit;
    opacity: .55;
    transition: opacity .15s ease;
}
.alert__close:hover { opacity: 1; }
.alert__close .icon { width: 16px; height: 16px; }

.alert--success { background: #f0faf3; border-color: #c8ebd4; color: #14532d; }
.alert--success > .icon { color: var(--green-600); }
.alert--error { background: #fdf1f1; border-color: #f8d0d0; color: #7f1d1d; }
.alert--error > .icon { color: var(--red-600); }
.alert--info { background: #eff6ff; border-color: #cfe0fa; color: #1e3a8a; }
.alert--info > .icon { color: #1d4ed8; }

/* --------------------------------------------------------------------------
   11. Utility strip
   -------------------------------------------------------------------------- */
.utility-strip {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .8);
    font-size: 13.5px;
}

.utility-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
    padding-block: 6px;
}

.utility-strip__contact,
.utility-strip__logins { display: flex; align-items: center; gap: 18px; }

.utility-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s ease;
}
.utility-strip__link:hover { color: var(--orange-500); }
.utility-strip__link .icon { width: 15px; height: 15px; }

.utility-strip__area {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .55);
}
.utility-strip__area .icon { width: 15px; height: 15px; }

.utility-strip__sep { color: rgba(255, 255, 255, .3); }

/* --------------------------------------------------------------------------
   12. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px rgba(8, 26, 51, .08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: var(--header-h);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 0 0 auto;
}

.brand__logo {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
}

.brand__wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 23px;
    line-height: 1.05;
    letter-spacing: .04em;
    color: var(--navy-950);
    text-transform: uppercase;
}
.brand__wordmark em { font-style: normal; color: var(--orange-500); }
.brand__state {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .34em;
    color: var(--slate-500);
}

.site-nav { margin-left: auto; }

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__link {
    display: block;
    padding: 9px 13px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-radius: 8px;
    transition: color .15s ease, background .15s ease;
}
.site-nav__link:hover { color: var(--orange-600); background: var(--orange-100); }
.site-nav__link.is-active { color: var(--orange-600); font-weight: 600; }

.site-nav__mobile-extras { display: none; }

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-900);
    text-decoration: none;
    transition: color .15s ease;
}
.site-header__phone:hover { color: var(--orange-600); }
.site-header__phone .icon { width: 18px; height: 18px; color: var(--orange-500); }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 9px;
    cursor: pointer;
    color: var(--navy-900);
}
.nav-toggle .icon { width: 22px; height: 22px; display: block; }
.nav-toggle__close { display: none; }
body.nav-open .nav-toggle__open { display: none; }
body.nav-open .nav-toggle__close { display: block; }

/* --------------------------------------------------------------------------
   13. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 82% 0%, rgba(244, 123, 32, .16), transparent 60%),
        radial-gradient(ellipse 60% 60% at -5% 100%, rgba(29, 63, 110, .55), transparent 65%),
        linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    color: rgba(255, 255, 255, .85);
    padding-block: 110px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 90% at 50% 10%, #000 30%, transparent 75%);
    pointer-events: none;
}

.hero > .container { position: relative; }

.hero h1 { color: #fff; margin-bottom: 18px; max-width: 15ch; }
.hero h1 .accent { color: var(--orange-500); }

.hero__sub {
    font-size: clamp(17px, 2vw, 21px);
    color: rgba(255, 255, 255, .78);
    max-width: 560px;
    margin-bottom: 34px;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__trust {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 44px;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .icon { width: 16px; height: 16px; color: var(--orange-500); }

.hero--page { padding-block: 84px; }

/* --------------------------------------------------------------------------
   14. Ticker / marquee
   -------------------------------------------------------------------------- */
.ticker {
    overflow: hidden;
    background: var(--navy-950);
    border-block: 1px solid rgba(255, 255, 255, .08);
    padding-block: 13px;
}

.ticker__track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-inline: 26px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    white-space: nowrap;
}

.ticker__item::after {
    content: '•';
    margin-left: 52px;
    color: var(--orange-500);
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   15. Step timeline (How It Works / Installation Process)
   -------------------------------------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
}

.step {
    position: relative;
    padding-top: 22px;
}

.step::before {
    counter-increment: step;
    content: '0' counter(step);
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--orange-500);
    display: block;
    margin-bottom: 14px;
}

.step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 4px;
    border-radius: 2px;
    background: var(--orange-500);
}

.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--slate-600); font-size: 15px; margin: 0; }

.section--navy .step p { color: rgba(255, 255, 255, .72); }

/* --------------------------------------------------------------------------
   16. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion__item + .accordion__item { border-top: 1px solid var(--line); }

.accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: 0;
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: color .15s ease;
}
.accordion__trigger:hover { color: var(--orange-600); }
.accordion__trigger .icon { transition: transform .22s ease; color: var(--orange-500); }
.accordion__trigger[aria-expanded="true"] { color: var(--orange-600); }
.accordion__trigger[aria-expanded="true"] .icon { transform: rotate(180deg); }

.accordion__panel { padding: 0 24px 22px; color: var(--slate-600); }
.accordion__panel p:last-child { margin-bottom: 0; }
.accordion__panel[hidden] { display: none; }

/* --------------------------------------------------------------------------
   17. Chips (service-area counties) & testimonials
   -------------------------------------------------------------------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy-700);
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, border-color .18s ease, color .18s ease;
}
.chip:hover { transform: translateY(-2px); border-color: var(--orange-500); color: var(--orange-600); }
.chip .icon { width: 15px; height: 15px; color: var(--orange-500); }

.quote-card { position: relative; }
.quote-card::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    right: 22px;
    font-family: var(--font-display);
    font-size: 110px;
    line-height: 1;
    color: var(--orange-100);
    pointer-events: none;
}
.quote-card blockquote {
    margin: 0 0 18px;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink);
    position: relative;
}
.quote-card figcaption {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-600);
}
.quote-card .stars { display: inline-flex; gap: 2px; color: var(--orange-500); }
.quote-card .stars .icon { width: 15px; height: 15px; fill: currentColor; }

/* --------------------------------------------------------------------------
   18. Stats / counters
   -------------------------------------------------------------------------- */
.stat { text-align: center; }
.stat__value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1;
    color: var(--orange-500);
}
.stat__label {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--slate-500);
}
.section--navy .stat__label { color: rgba(255, 255, 255, .65); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background:
        radial-gradient(ellipse 70% 60% at 90% 0%, rgba(244, 123, 32, .08), transparent 55%),
        var(--navy-950);
    color: rgba(255, 255, 255, .72);
    font-size: 14.5px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
    gap: 44px;
    padding-block: 72px 56px;
}

.footer-wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}
.footer-wordmark em { font-style: normal; color: var(--orange-500); }
.footer-wordmark__state { font-size: 15px; letter-spacing: .42em; color: rgba(255, 255, 255, .55); }

.site-footer__blurb { line-height: 1.7; margin-bottom: 22px; }

.social-row { display: flex; gap: 10px; }
.social-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color .18s ease, color .18s ease, transform .18s ease, background .18s ease;
}
.social-dot:hover {
    border-color: var(--orange-500);
    background: var(--orange-500);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer__heading {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.site-footer__list a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    transition: color .15s ease, padding-left .15s ease;
}
.site-footer__list a:hover { color: var(--orange-500); padding-left: 4px; }

.site-footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.site-footer__list--contact .icon {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    color: var(--orange-500);
}

.site-footer__cta { margin-top: 22px; }

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-block: 26px;
    text-align: center;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
}

.site-footer__copyright { margin: 0 0 8px; }
.site-footer__legal a { color: rgba(255, 255, 255, .55); text-decoration: none; }
.site-footer__legal a:hover { color: var(--orange-500); }

.powered-by { margin: 0; text-align: center; }
.powered-by a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: 13.5px;
    transition: color .15s ease;
}
.powered-by a:hover { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------------------
   20. Scroll-reveal animation
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal--d1 { transition-delay: .1s; }
.reveal--d2 { transition-delay: .2s; }
.reveal--d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .ticker__track { animation: none; flex-wrap: wrap; width: auto; }
    *,
    *::before,
    *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   21. Pager (public lists, if any)
   -------------------------------------------------------------------------- */
.pager { margin-top: 28px; }
.pager__list {
    display: flex;
    gap: 6px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.pager__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 38px;
    height: 38px;
    padding-inline: 12px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.pager__link:hover { border-color: var(--orange-500); color: var(--orange-600); }
.pager__link.is-current { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.pager__link .icon { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .section { padding-block: 72px; }
    .grid--3 { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .utility-strip__link--email span,
    .utility-strip__area { display: none; }

    /* Mobile navigation panel */
    .nav-toggle { display: inline-flex; }
    .site-header__phone span { display: none; }
    .site-header__actions .btn--primary { display: none; }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(340px, 88vw);
        background: #fff;
        box-shadow: -24px 0 60px rgba(8, 26, 51, .22);
        padding: 92px 26px 32px;
        transform: translateX(105%);
        transition: transform .28s ease;
        overflow-y: auto;
        z-index: 190;
        margin-left: 0;
    }
    body.nav-open .site-nav { transform: none; }

    .site-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
    .site-nav__link { padding: 13px 12px; font-size: 17px; border-radius: 10px; }

    .site-nav__mobile-extras {
        display: grid;
        gap: 12px;
        margin-top: 26px;
        padding-top: 26px;
        border-top: 1px solid var(--line);
    }
    .site-nav__mobile-logins {
        display: flex;
        justify-content: center;
        gap: 22px;
        font-size: 14.5px;
        font-weight: 600;
    }
    .site-nav__mobile-logins a { color: var(--slate-600); text-decoration: none; }
    .site-nav__mobile-logins a:hover { color: var(--orange-600); }

    body.nav-open { overflow: hidden; }
    body.nav-open .nav-toggle { position: relative; z-index: 195; }
}

@media (max-width: 640px) {
    .section { padding-block: 56px; }
    .section-head { margin-bottom: 34px; }
    .grid--2,
    .grid--4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .hero { padding-block: 72px; }
    .hero__ctas .btn { width: 100%; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 36px; padding-block: 52px 40px; }
    .card { padding: 26px 22px; }
    .utility-strip__contact { gap: 12px; }
    .brand__wordmark { font-size: 19px; }
    .brand__logo { width: 44px; height: 44px; }
}

/* --------------------------------------------------------------------------
   23. Print
   -------------------------------------------------------------------------- */
@media print {
    .utility-strip,
    .site-header,
    .site-footer,
    .nav-toggle,
    .btn { display: none !important; }
    body { background: #fff; color: #000; }
}

/* === home (PUB-HOME) === */
.hero__layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.power-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; padding: 26px 26px 22px; backdrop-filter: blur(6px); max-width: 400px; margin-left: auto; box-shadow: 0 30px 80px rgba(0, 0, 0, .35); }
.power-card__head { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: .12em; color: #fff; margin-bottom: 18px; }
.power-card__dot { width: 10px; height: 10px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: power-pulse 2s ease-out infinite; }
.power-card__row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .09); font-size: 14.5px; color: rgba(255, 255, 255, .75); }
.power-card__row strong { font-size: 13px; letter-spacing: .08em; }
.power-card__good { color: #34d399; }
.power-card__bad { color: #f87171; }
.power-card__pulse { height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .1); margin-top: 20px; overflow: hidden; }
.power-card__pulse span { display: block; height: 100%; width: 40%; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--orange-500), transparent); animation: power-sweep 2.2s linear infinite; }
.power-card__note { margin: 16px 0 0; font-size: 13px; color: rgba(255, 255, 255, .55); }
@keyframes power-pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); } 70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }
@keyframes power-sweep { from { transform: translateX(-120%); } to { transform: translateX(300%); } }

.brands-band { display: grid; grid-template-columns: 1.1fr 1.3fr; gap: 48px; align-items: center; }
.brands-band__lead h2 { color: #fff; }
.brands-band__lead p { color: rgba(255, 255, 255, .72); margin: 0; }
.brands-band__logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.brand-mark { display: flex; flex-direction: column; gap: 5px; padding: 20px 22px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: .06em; color: rgba(255, 255, 255, .85); background: rgba(255, 255, 255, .04); }
.brand-mark em { font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: 12.5px; letter-spacing: .05em; color: rgba(255, 255, 255, .5); }
.brand-mark--primary { border-color: var(--orange-500); background: rgba(244, 123, 32, .12); color: #fff; }
.brand-mark--primary em { color: var(--orange-500); font-weight: 600; }

.financing-points { display: grid; gap: 18px; align-content: center; }
.financing-point { display: flex; gap: 14px; padding: 18px 20px; background: rgba(255, 255, 255, .14); border-radius: 14px; color: #fff; }
.financing-point .icon { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; }
.financing-point strong { display: block; font-size: 16px; }
.financing-point span { font-size: 14px; color: rgba(255, 255, 255, .85); }

.why-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 20px; }
.why-list li { display: flex; gap: 16px; }
.why-list .icon { flex: 0 0 auto; width: 24px; height: 24px; color: var(--orange-500); margin-top: 3px; }
.why-list strong { display: block; font-size: 16.5px; color: var(--ink); }
.why-list span { font-size: 14.5px; color: var(--slate-600); }
.stack-quotes { display: grid; gap: 20px; }
.quote-card .stars { margin-bottom: 12px; }

.ohio-panel { display: flex; align-items: center; justify-content: center; }
.ohio-svg { width: min(360px, 80%); color: var(--navy-800); }
.ohio-svg__dot { fill: var(--orange-500); animation: power-pulse 2.4s ease-out infinite; }
.ohio-svg__label { font-family: var(--font-display); font-size: 7px; font-weight: 700; letter-spacing: .18em; fill: var(--navy-700); }

.quote-form { max-width: 720px; margin-inline: auto; padding: 40px; }
.quote-form .form-grid { margin-bottom: 18px; }
.field--radios { border: 0; padding: 0; margin: 0 0 18px; }
.field--radios legend { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill { cursor: pointer; }
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--slate-600); transition: all .15s ease; }
.radio-pill span .icon { width: 17px; height: 17px; }
.radio-pill input:checked + span { border-color: var(--orange-500); background: var(--orange-100); color: var(--orange-600); }
.radio-pill input:focus-visible + span { outline: 2px solid var(--orange-500); outline-offset: 2px; }
.req { color: var(--orange-600); }
.quote-form__fine { margin: 14px 0 0; text-align: center; font-size: 13px; color: var(--slate-500); }

@media (max-width: 1200px) { .brands-band__logos { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; gap: 44px; }
  .power-card { margin-inline: auto; }
  .brands-band { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 22px; }
}

/* === pages (PUB-PAGES) === */
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.check-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--slate-600); }
.check-list .icon { flex: 0 0 auto; width: 18px; height: 18px; color: var(--green-600); margin-top: 2px; }
.check-list--roomy { gap: 16px; }
.check-list--roomy li { font-size: 15px; }
.check-list strong { color: var(--ink); }
.section-bolt { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 18px; background: rgba(244, 123, 32, .15); color: var(--orange-500); margin-bottom: 22px; }
.section-bolt .icon { width: 30px; height: 30px; }
.chip-row--center { justify-content: center; }
.commercial-cta-card h3 { margin-bottom: 10px; }
.commercial-cta-card .btn { margin-top: 18px; }
.commercial-cta-card__alt { margin: 14px 0 0; font-size: 13.5px; }
.values-card h3 { margin-bottom: 16px; }
.fine-print { margin-top: 22px; font-size: 13px; color: var(--slate-500); }
.card__icon--center { margin-inline: auto; }
.hero__ctas--center { justify-content: center; }
.grid--1 { display: grid; gap: 16px; }
.plan-highlights .financing-point { background: var(--card); border: 1px solid var(--line); color: var(--ink); }
.plan-highlights .financing-point .icon { color: var(--orange-500); }
.plan-highlights .financing-point span { color: var(--slate-600); }
.plan-highlights .financing-point strong { color: var(--ink); }
.split--contact { grid-template-columns: 1fr 1.15fr; }
.contact-list { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list__icon { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; background: var(--orange-100); color: var(--orange-600); }
.contact-list__icon .icon { width: 22px; height: 22px; }
.contact-list strong { display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-500); margin-bottom: 3px; }
.contact-list a { color: var(--navy-900); font-weight: 600; text-decoration: none; font-size: 16.5px; }
.contact-list a:hover { color: var(--orange-600); }
.ohio-panel--contact { margin-top: 10px; }
.ohio-panel--contact .ohio-svg { width: min(280px, 70%); }
.quote-form--contact h3 { margin-bottom: 18px; }
.legal-copy h2 { font-size: 24px; margin: 34px 0 12px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { color: var(--slate-600); line-height: 1.75; }
@media (max-width: 900px) { .steps--3 { grid-template-columns: 1fr; } .split--contact { grid-template-columns: 1fr; } }

/* === mobile nav + hero contrast fixes === */
/* The header's backdrop-filter made it the containing block for the
   fixed-position mobile drawer, clipping the menu to the header box. */
@media (max-width: 900px) {
    .site-header { backdrop-filter: none; background: #fff; }
    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(8, 26, 51, .55);
        z-index: 185;
    }
    .site-nav { padding-top: 84px; }
}
.hero .btn--outline { border-color: rgba(255, 255, 255, .55); color: #fff; }
.hero .btn--outline:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; }
.hero .btn--outline .icon { color: var(--orange-500); }
.utility-strip__link,
.utility-strip__area,
.site-header__phone { white-space: nowrap; }

/* === settings-driven footer social icons === */
.social-dot .icon { width: 17px; height: 17px; }
