/* ============================================================
   RateForge — Landing Design System (SolarShift-exact)
   Font: Manrope | Primary #16a34a | Dark #111827
   ============================================================ */

/* ── Design Tokens ── */
:root {
    --bg:             #ffffff;
    --bg-soft:        #f9fafb;
    --bg-tint:        #f0fdf4;
    --bg-dark:        #111827;
    --bg-dark-2:      #1f2937;

    --text:           #111827;
    --text-2:         #374151;
    --muted:          #4b5563;
    --muted-2:        #6b7280;

    --border:         #e5e7eb;
    --border-2:       #d1d5db;

    --primary:        #16a34a;
    --primary-h:      #15803d;
    --primary-l:      #22c55e;
    --primary-soft:   #dcfce7;
    --primary-mid:    #bbf7d0;

    --gold:           #f59e0b;

    --r-sm:   0.375rem;
    --r-md:   0.5rem;
    --r-lg:   0.75rem;
    --r-xl:   1rem;
    --r-2xl:  1.25rem;
    --r-full: 9999px;

    --sh-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --sh-md:    0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.08);
    --sh-lg:    0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.08);
    --sh-xl:    0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.08);
    --sh-green: 0 10px 15px -3px rgba(22,163,74,.25), 0 4px 6px -4px rgba(22,163,74,.15);

    --max-w: 80rem;
    --px: clamp(1rem, 4vw, 2rem);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body.landing-body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 5rem; /* room for sticky bar */
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 700; }
ul { padding: 0; margin: 0; list-style: none; }

.marketing-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── INNER CONTAINER ── */
.hdr-inner,
.section-inner,
.hero-inner,
.ftr-upper,
.ftr-lower,
.band-inner {
    width: min(100%, var(--max-w));
    margin-inline: auto;
    padding-inline: var(--px);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 4.5rem;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-l));
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--sh-green);
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.025em;
}

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.site-nav a {
    padding: 0.5rem 0.875rem;
    border-radius: var(--r-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--muted);
    transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--bg-soft);
    color: var(--text);
}

/* Header Actions */
.hdr-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6875rem 1.375rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    border-radius: var(--r-md);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.12s, border-color 0.15s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-sm  { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg  { padding: 0.9375rem 2rem; font-size: 1.0625rem; }
.btn-xl  { padding: 1.0625rem 2.5rem; font-size: 1.125rem; }

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--sh-green);
}
.btn-primary:hover {
    background: var(--primary-h);
    border-color: var(--primary-h);
    transform: translateY(-1px);
    box-shadow: 0 14px 22px -5px rgba(22,163,74,.35);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    border-color: var(--border-2);
    color: var(--text-2);
}
.btn-secondary:hover {
    background: var(--bg-soft);
    color: var(--text);
}

.btn-ghost {
    background: var(--primary-soft);
    border-color: var(--primary-mid);
    color: var(--primary-h);
}
.btn-ghost:hover {
    background: var(--primary-mid);
}

.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--primary-h);
}
.btn-white:hover {
    background: #f0fdf4;
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.55);
    color: #fff;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.9);
}

/* ═══════════════════════════════════════════
   BADGES
═══════════════════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3125rem 0.75rem;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.badge-green  { background: var(--primary-soft); color: var(--primary-h); }
.badge-white  { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section      { padding-block: 6rem; }
.section-sm   { padding-block: 4rem; }
.section-alt  { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); }
.section-green { background: var(--primary); }

.section-header {
    text-align: center;
    max-width: 50rem;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}
.section-dark .section-eyebrow { color: var(--primary-mid); }
.section-green .section-eyebrow { color: rgba(255,255,255,0.7); }

.section-header h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text);
}
.section-dark .section-header h2,
.section-green .section-header h2 { color: #fff; }

.section-header p {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.7;
}
.section-dark .section-header p,
.section-green .section-header p { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════ */
.hero { background: var(--bg); padding-block: 5rem 3rem; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-inner-single {
    grid-template-columns: 1fr;
}

.hero-copy { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 3.875rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: var(--text);
}

.hero-copy h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero-copy > p {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.hero-cta-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: center;
}

.hero-cta-panel .hero-actions {
    flex-direction: column;
    align-items: stretch;
}

.hero-cta-panel .hero-actions .btn {
    justify-content: center;
}

.hero-subtext {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted-2);
}
.hero-subtext i { color: var(--primary); font-size: 0.875rem; }

.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    background: #fff;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.hero-trust-item i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Hero Panel */
.hero-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-xl);
    overflow: hidden;
}

.estimate-panel-wrap {
    max-width: 52rem;
    margin-inline: auto;
}

.hero-panel-head {
    padding: 1.25rem 1.5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.hero-panel-head-text { flex: 1; }
.hero-panel-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.hero-panel-head h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

.hero-panel-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6875rem 0.875rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}

.panel-row-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}
.panel-row-label i { color: var(--primary); }
.panel-row-value { font-size: 0.8125rem; color: var(--muted); font-weight: 500; }

.panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

.panel-metric {
    padding: 0.75rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.panel-metric i { color: var(--primary); font-size: 0.875rem; }
.panel-metric strong { font-size: 1.0625rem; font-weight: 700; color: var(--text); }
.panel-metric span { font-size: 0.75rem; color: var(--muted); }

.panel-total {
    padding: 0.875rem 1.125rem;
    background: var(--primary);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.panel-total-label { font-size: 0.8125rem; color: rgba(255,255,255,0.8); font-weight: 600; }
.panel-total-value { font-size: 1.125rem; font-weight: 800; color: #fff; }

.panel-cta { display: flex; flex-direction: column; gap: 0.625rem; }
.panel-cta .btn { width: 100%; justify-content: center; }

.panel-divider {
    position: relative;
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted-2);
}
.panel-divider::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    border-top: 1px solid var(--border);
}
.panel-divider span { position: relative; background: #fff; padding-inline: 0.75rem; }

.panel-role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.panel-role-item {
    padding: 0.6875rem 0.75rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}
.panel-role-item strong { display: block; font-size: 0.8125rem; color: var(--text); margin-bottom: 0.2rem; }
.panel-role-item p { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }

/* ═══════════════════════════════════════════
   STATS BAND (divides hero from services)
═══════════════════════════════════════════ */
.stats-band {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-band-inner {
    width: min(100%, var(--max-w));
    margin-inline: auto;
    padding-inline: var(--px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-band-item {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    align-items: center;
    text-align: center;
}

.stats-band-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.stats-band-item strong {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.025em;
}

.stats-band-item span {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.45;
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
    transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-3px);
}
.card-body { padding: 1.75rem; }

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--r-lg);
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.card-body h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-body p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS (icon-left layout)
═══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
    transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: var(--r-lg);
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.25rem;
}

.service-copy h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}
.service-copy p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   GRIDS
═══════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ═══════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--sh-sm);
    transition: box-shadow 0.18s;
}
.process-card:hover { box-shadow: var(--sh-md); }

.process-number {
    width: 3rem;
    height: 3rem;
    border-radius: var(--r-full);
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.process-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   IMPACT METRICS
═══════════════════════════════════════════ */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.impact-card {
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-sm);
    text-align: center;
    transition: box-shadow 0.18s;
}
.impact-card:hover { box-shadow: var(--sh-md); }

.impact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--r-full);
    margin-inline: auto;
    margin-bottom: 1rem;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.375rem;
}

.impact-value {
    display: block;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}
.impact-label { font-size: 0.9375rem; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.18s;
}
.testimonial-card:hover { box-shadow: var(--sh-md); }

.testimonial-stars { display: flex; gap: 0.25rem; }
.testimonial-stars i { color: var(--gold); font-size: 0.875rem; }

.testimonial-quote {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
}
.testimonial-author strong { font-size: 0.9375rem; font-weight: 700; color: var(--text); }
.testimonial-author span { font-size: 0.875rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    box-shadow: var(--sh-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.faq-question h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}
.faq-question i { color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }

.faq-answer {
    margin-top: 0.875rem;
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CTA BAND (full-width green)
═══════════════════════════════════════════ */
.cta-band {
    background: var(--primary);
    padding-block: 5rem;
    text-align: center;
}

.cta-band-inner {
    width: min(100%, var(--max-w));
    margin-inline: auto;
    padding-inline: var(--px);
}

.cta-band h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 1rem;
}
.cta-band p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    max-width: 40rem;
    margin-inline: auto;
    margin-bottom: 2rem;
    line-height: 1.65;
}
.cta-band-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-band-subtext {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
}

/* ═══════════════════════════════════════════
   INLINE HIGHLIGHT BAND
═══════════════════════════════════════════ */
.inline-band {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-tint);
    border: 1px solid var(--primary-mid);
    border-radius: var(--r-xl);
    margin-top: 2.5rem;
}

.inline-band-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    border-radius: var(--r-lg);
    color: var(--primary);
    font-size: 1.25rem;
}

.inline-band-copy { flex: 1; }
.inline-band-copy h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.inline-band-copy p { font-size: 0.9375rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   QUOTE CARD
═══════════════════════════════════════════ */
.quote-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    border-radius: var(--r-2xl);
    margin-top: 2rem;
}
.quote-card blockquote {
    margin: 0 0 1rem;
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}
.quote-card cite {
    font-style: normal;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════
   HERO COMPACT (inner pages)
═══════════════════════════════════════════ */
.hero-compact {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding-block: 4rem 3.5rem;
}

.hero-compact .hero-inner {
    gap: 3rem;
}

.hero-compact .hero-copy h1 {
    font-size: clamp(1.875rem, 4vw, 3rem);
}

/* Feature checklist (right panel inner pages) */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 600;
}
.feature-checklist li i { color: var(--primary); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    margin-top: auto;
}

.ftr-upper {
    display: grid;
    grid-template-columns: 2.25fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-block: 4rem;
}

.ftr-brand-col { display: flex; flex-direction: column; gap: 1.25rem; }

.ftr-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ftr-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-l));
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.ftr-logo-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
}

.ftr-tagline {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

.ftr-social {
    display: flex;
    gap: 0.625rem;
}
.ftr-social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: background 0.15s, color 0.15s;
}
.ftr-social a:hover {
    background: var(--primary);
    color: #fff;
}

.ftr-col h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.125rem;
}

.ftr-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.ftr-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.15s;
}
.ftr-links a:hover { color: #fff; }

.ftr-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.75rem;
}
.ftr-contact-item i { color: var(--primary-l); margin-top: 0.15rem; flex-shrink: 0; }
.ftr-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.ftr-contact-item a:hover { color: #fff; }

.ftr-lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
}
.ftr-lower-links { display: flex; gap: 1.25rem; }
.ftr-lower-links a { color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color 0.15s; }
.ftr-lower-links a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════
   STICKY BOTTOM BAR
═══════════════════════════════════════════ */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(17,24,39,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.sticky-bar-inner {
    width: min(100%, var(--max-w));
    margin-inline: auto;
    padding-inline: var(--px);
    padding-block: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.sticky-bar-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}
.sticky-bar-actions { display: flex; gap: 0.75rem; align-items: center; }

/* ═══════════════════════════════════════════
   HERO METRICS (homepage left side cards)
═══════════════════════════════════════════ */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-2);
}
.hero-social-proof-dots { display: flex; gap: -0.25rem; }
.hero-social-proof-dots span {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--primary-soft);
    border: 2px solid #fff;
    display: grid;
    place-items: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary-h);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 75rem) {
    .ftr-upper { grid-template-columns: 1fr 1fr 1fr; }
    .ftr-brand-col { grid-column: span 3; }
}

@media (max-width: 64rem) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-panel { max-width: 32rem; }
    .hero-copy > p { max-width: none; }
    .hero-cta-panel {
        max-width: 32rem;
        width: 100%;
    }

    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid  { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }

    .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-band-item:nth-child(2) { border-right: none; }
    .stats-band-item:nth-child(3),
    .stats-band-item:nth-child(4) { border-top: 1px solid var(--border); }
    .stats-band-item:nth-child(4) { border-right: none; }

    .inline-band { flex-direction: column; gap: 1rem; }
}

@media (max-width: 48rem) {
    .section { padding-block: 4rem; }
    .hero { padding-block: 3rem 2.5rem; }
    .hero-compact { padding-block: 2.5rem 2rem; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .impact-grid  { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .panel-metrics { grid-template-columns: repeat(2, 1fr); }
    .panel-role-grid { grid-template-columns: 1fr; }

    .stats-band-inner { grid-template-columns: 1fr; }
    .stats-band-item { border-right: none !important; border-top: 1px solid var(--border); }
    .stats-band-item:first-child { border-top: none; }

    .cta-band-actions { flex-direction: column; align-items: center; }
    .ftr-upper { grid-template-columns: 1fr; gap: 2rem; }
    .ftr-brand-col { grid-column: span 1; }
    .ftr-lower { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .sticky-bar-inner { flex-direction: column; gap: 0.75rem; }
    .sticky-bar-actions { width: 100%; }
    .sticky-bar-actions .btn { flex: 1; justify-content: center; }
}
