/* ── Fonts ─────────────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
    --navy:       #0d2137;
    --navy-light: #1e3a5f;
    --navy-mid:   #2c4f7c;
    --steel:      #4a6fa5;
    --steel-light:#6b8fc7;
    --orange:     #e07b2a;
    --orange-dark:#c4621a;
    --orange-light:#f4a460;
    --gray-900:   #111827;
    --gray-800:   #1f2937;
    --gray-700:   #374151;
    --gray-600:   #4b5563;
    --gray-500:   #6b7280;
    --gray-400:   #9ca3af;
    --gray-300:   #d1d5db;
    --gray-200:   #e5e7eb;
    --gray-100:   #f3f4f6;
    --gray-50:    #f9fafb;
    --white:      #ffffff;
    --success:    #059669;

    --radius-sm:  4px;
    --radius:     8px;
    --radius-lg:  12px;
    --radius-xl:  16px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.1);
    --shadow:     0 4px 12px rgba(0,0,0,.12);
    --shadow-lg:  0 8px 30px rgba(0,0,0,.16);
    --shadow-xl:  0 20px 60px rgba(0,0,0,.2);

    --transition: 0.2s ease;
    --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container:  1200px;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--steel); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-steel  { color: var(--steel); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(224,123,42,.4);
}
.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-100);
    color: var(--navy);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border-color: var(--white);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.125rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* ── Cookie Banner ─────────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.875rem; flex: 1; }
.cookie-banner a { color: var(--orange-light); }

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1.5rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
}
.logo:hover { color: var(--orange-light); }
.logo-icon { font-size: 1.5rem; line-height: 1; color: var(--orange); }
.logo-text { font-size: 1.125rem; letter-spacing: -0.02em; }
.logo-text strong { font-weight: 700; }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.main-nav a {
    color: rgba(255,255,255,.85);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}
.nav-cta { margin-left: 0.75rem; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e4a7a 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 1.25rem;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--orange-light); }
.hero-lead {
    font-size: 1.125rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,.75);
}
.trust-item .check { color: var(--success); font-size: 1rem; }

/* ── Quote Form ────────────────────────────────────────────────────────────── */
.quote-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    color: var(--gray-800);
}
.quote-card-header {
    margin-bottom: 1.5rem;
    text-align: center;
}
.quote-card-header h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.quote-card-header p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6875rem 0.875rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--steel);
    box-shadow: 0 0 0 3px rgba(74,111,165,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-privacy {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.75rem;
}
.form-privacy a { color: var(--steel); }

/* ── Stats Bar ─────────────────────────────────────────────────────────────── */
.stats-bar {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.75rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.stat-item {}
.stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ── Section Styles ────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--gray-50); }
.section-dark {
    background: var(--navy);
    color: var(--white);
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,.75); }

/* ── Building Type Cards ───────────────────────────────────────────────────── */
.building-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.type-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.type-card:hover {
    border-color: var(--steel);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: inherit;
}
.type-card-icon { font-size: 2rem; line-height: 1; }
.type-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.type-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.type-card .cost {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--steel);
}
.type-card-arrow {
    font-size: 0.875rem;
    color: var(--orange);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ── How It Works ──────────────────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: steps;
}
.step-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}
.step-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.step-item p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; }

/* ── State Grid ────────────────────────────────────────────────────────────── */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}
.state-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition);
}
.state-card:hover {
    border-color: var(--steel);
    background: var(--gray-50);
    color: var(--navy);
    transform: translateX(3px);
}
.state-abbr {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

/* ── City Grid ─────────────────────────────────────────────────────────────── */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}
.city-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.875rem 1.125rem;
    text-decoration: none;
    color: var(--gray-800);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    transition: all var(--transition);
}
.city-card:hover {
    border-color: var(--steel);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
}
.city-name { font-size: 0.9375rem; font-weight: 600; }
.city-state { font-size: 0.75rem; color: var(--gray-500); }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.375rem 0;
    text-align: left;
    font-family: var(--font);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-question .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--steel);
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--steel); color: var(--white); }
.faq-answer {
    display: none;
    padding-bottom: 1.375rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.75;
}
.faq-answer p + p { margin-top: 0.75rem; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA Section ───────────────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}
.cta-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.125rem;
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Breadcrumb ────────────────────────────────────────────────────────────── */
.breadcrumb {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 0;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}
.breadcrumb li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumb li + li::before { content: '›'; color: var(--gray-400); }
.breadcrumb a { color: var(--steel); }
.breadcrumb [aria-current="page"] { color: var(--gray-700); font-weight: 500; }

/* ── Page Hero (non-homepage) ──────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 3.5rem 0 3rem;
}
.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}
.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 0.3rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 1rem;
}
.page-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.page-hero h1 span { color: var(--orange-light); }
.page-hero-lead {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 1.5rem;
}
.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.page-hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.page-hero-meta-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.06em; }
.page-hero-meta-value { font-size: 1rem; font-weight: 700; color: var(--white); }

/* Sidebar quote card on page heroes */
.page-hero-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    width: 320px;
    flex-shrink: 0;
    box-shadow: var(--shadow-xl);
}
.page-hero-form-wrap h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    text-align: center;
}

/* ── Prose Content ─────────────────────────────────────────────────────────── */
.prose {
    max-width: 780px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}
.prose h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2rem 0 0.75rem;
}
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol {
    margin: 1rem 0 1.25rem 1.5rem;
    list-style: disc;
}
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--gray-900); font-weight: 600; }
.prose a { color: var(--steel); border-bottom: 1px solid rgba(74,111,165,.3); }
.prose a:hover { color: var(--orange); border-color: var(--orange); }
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}
.prose th {
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}
.prose td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: top;
}
.prose tr:hover td { background: var(--gray-50); }

/* ── Info Cards ────────────────────────────────────────────────────────────── */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.info-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.info-card-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.info-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.625rem; }
.info-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* ── Alert / Highlight Box ─────────────────────────────────────────────────── */
.alert {
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    border-left: 4px solid;
}
.alert-info    { background: #eff6ff; border-color: #3b82f6; color: #1e3a5f; }
.alert-success { background: #ecfdf5; border-color: var(--success); color: #064e3b; }
.alert-warning { background: #fffbeb; border-color: #f59e0b; color: #78350f; }

/* ── Content + Sidebar Layout ─────────────────────────────────────────────── */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}
.content-sidebar {
    position: sticky;
    top: 90px;
}
@media (max-width: 900px) {
    .content-with-sidebar { grid-template-columns: 1fr; }
    .content-sidebar { display: none; }
}

/* ── Inline Form Section ───────────────────────────────────────────────────── */
.inline-quote-section {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    padding: 3rem 0;
}
.inline-quote-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.inline-quote-copy h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}
.inline-quote-copy p {
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.inline-quote-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.inline-quote-bullets li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,.85);
}
.inline-quote-bullets .check { color: var(--success); }
.inline-quote-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
}
.inline-quote-form h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    text-align: center;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 2rem;
}
.footer-inner {}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-logo { color: var(--white); }
.footer-logo:hover { color: var(--orange-light); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,.4) !important; }
.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── Chat Widget ───────────────────────────────────────────────────────────── */
#chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    font-family: var(--font);
}
.chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(224,123,42,.5);
    transition: transform var(--transition), box-shadow var(--transition);
    color: var(--white);
}
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(224,123,42,.6); }
.chat-window {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
}
.chat-window.open { display: flex; flex-direction: column; }
.chat-header {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-header h4 { font-size: 0.9375rem; font-weight: 700; margin: 0; }
.chat-close { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 1.25rem; line-height: 1; padding: 0; }
.chat-close:hover { color: var(--white); }
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 300px;
    min-height: 200px;
}
.chat-msg { max-width: 80%; font-size: 0.875rem; line-height: 1.5; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg-inner {
    padding: 0.625rem 0.875rem;
    border-radius: 12px;
}
.chat-msg.bot .chat-msg-inner { background: var(--gray-100); color: var(--gray-800); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-msg-inner { background: var(--navy); color: var(--white); border-bottom-right-radius: 4px; }
.chat-input-row {
    padding: 0.875rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 0.5rem;
}
.chat-input-row input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.875rem;
}
.chat-input-row input:focus { outline: none; border-color: var(--steel); }
.chat-send {
    padding: 0.5rem 0.875rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background var(--transition);
}
.chat-send:hover { background: var(--orange-dark); }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .building-types-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
    .hero { padding: 3rem 0 2.5rem; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .quote-card { padding: 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .building-types-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .inline-quote-inner { grid-template-columns: 1fr; gap: 2rem; }
    .page-hero-inner { grid-template-columns: 1fr; }
    .page-hero-form-wrap { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.25rem; }
    .form-row { grid-template-columns: 1fr; }

    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--navy-light);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0.25rem; }
    .main-nav a { display: block; padding: 0.75rem 1rem; }
    .nav-cta { display: block; text-align: center; margin: 0.5rem 0 0; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons { flex-direction: column; }
    .hero h1 { font-size: 1.875rem; }
    .states-grid { grid-template-columns: repeat(2, 1fr); }
}
