/* ============================================================
   InsureClicks v2 — shared stylesheet
   Loaded by all pages via /css/ic-v2.css
   Last updated: 2026-05-19
   ============================================================ */

:root {
    --primary: #4299e1;
    --primary-600: #3182ce;
    --primary-700: #2b6cb0;
    --primary-800: #2c5282;
    --primary-50: #ebf8ff;
    --primary-100: #bee3f8;
    --ink: #1a202c;
    --ink-mid: #2d3748;
    --slate: #4a5568;
    --slate-mid: #718096;
    --slate-light: #a0aec0;
    --line: #e2e8f0;
    --bg: #ffffff;
    --bg-tint: #f7fafc;
    --bg-blue: #f0f7fc;
    --green: #38a169;
    --amber: #ed8936;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(15,30,60,0.06);
    --shadow-md: 0 8px 30px rgba(15,30,60,0.08);
    --shadow-lg: 0 18px 50px rgba(15,30,60,0.12);
    --r-sm: 8px;
    --r: 12px;
    --r-lg: 18px;
    --max: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    background: var(--bg);
    color: var(--ink-mid);
    font-family: "Plus Jakarta Sans", -apple-system, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}
/* Grid/flex items need min-width:0 so long children don't blow out columns */
.hero-grid > *, .page-hero-grid > *, .quote-grid > *, .footer-grid > *, .calc-grid > * { min-width: 0; }
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", sans-serif; color: var(--ink); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.serif { font-family: "Source Serif 4", Georgia, serif; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
a { color: var(--primary-700); }
a:hover { color: var(--primary-800); }
img { max-width: 100%; height: auto; }

/* === ENROLLMENT BANNER === */
.enroll-banner {
    background: linear-gradient(90deg, var(--primary-800) 0%, var(--primary-700) 100%);
    color: white;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
}
.enroll-banner strong { color: #ffd86b; font-weight: 700; }
.enroll-banner a { color: white; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* === HEADER === */
.site-header { background: white; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
    color: white;
    font-weight: 800;
    font-size: 18px;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name .name { color: var(--ink); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand-name .tag { color: var(--primary-700); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--slate); text-decoration: none; font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--primary-700); }
.nav a.active { color: var(--primary-700); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    color: var(--ink); text-decoration: none;
    font-weight: 700; font-size: 16px;
}
.header-phone .icon { color: var(--primary); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 15px; transition: transform 0.15s, box-shadow 0.2s, background 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 6px 14px rgba(66,153,225,0.35); }
.btn-primary:hover { background: var(--primary-600); color: white; transform: translateY(-1px); box-shadow: 0 10px 20px rgba(66,153,225,0.45); }
.btn-outline { background: white; color: var(--primary-700); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-50); }
.btn-ghost { background: var(--bg-tint); color: var(--ink); }
.btn-ghost:hover { background: var(--line); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* === HOME HERO === */
.hero {
    background:
        radial-gradient(900px 500px at 90% -10%, rgba(66,153,225,0.18), transparent 60%),
        radial-gradient(700px 400px at -5% 110%, rgba(66,153,225,0.10), transparent 60%),
        linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 13px; font-weight: 600;
    border-radius: 999px;
    margin-bottom: 22px;
    border: 1px solid var(--primary-100);
}
.hero-eyebrow .pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(66,153,225,0.6);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(66,153,225,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(66,153,225,0); }
    100% { box-shadow: 0 0 0 0 rgba(66,153,225,0); }
}
.hero h1 {
    font-size: clamp(36px, 4.6vw, 60px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    line-height: 1.05;
}
.hero h1 .accent { color: var(--primary); }
.hero h1 .accent-serif { font-family: "Source Serif 4", serif; font-style: italic; font-weight: 600; color: var(--primary-700); }
.hero .lede { font-size: 19px; color: var(--slate); max-width: 580px; margin-bottom: 28px; line-height: 1.6; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-bottom: 32px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-mid); font-size: 14px; font-weight: 500; }
.hero-trust .check {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--primary-50); color: var(--primary-700);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
}
.hero-rating { display: flex; align-items: center; gap: 14px; color: var(--slate-mid); font-size: 14px; }
.hero-rating .stars { color: #f6ad55; font-size: 18px; letter-spacing: 1px; }
.hero-rating .count { font-weight: 600; color: var(--ink-mid); }

/* Home hero CTA cards */
.hero-cards { display: grid; gap: 18px; }
.hero-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    position: relative;
}
.hero-card.featured {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
    color: white;
    border: none;
}
.hero-card .card-label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--primary-700);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}
.hero-card .card-label .badge {
    background: var(--amber); color: white;
    font-size: 10px; padding: 3px 8px; border-radius: 999px;
    letter-spacing: 0.04em;
}
.hero-card.featured .card-label { color: #bee3f8; }
.hero-card h2 {
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.hero-card.featured h2 { color: white; }
.hero-card .card-sub { color: var(--slate); font-size: 14.5px; margin-bottom: 18px; }
.hero-card.featured .card-sub { color: rgba(255,255,255,0.85); }
.phone-block { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.phone-block .ring {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 22px;
}
.phone-number {
    font-size: 30px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1;
}
.phone-number small { display: block; font-size: 12px; font-weight: 500; opacity: 0.8; letter-spacing: 0.04em; margin-top: 4px; }
.phone-cta {
    display: block;
    background: white;
    color: var(--primary-800);
    text-align: center;
    padding: 14px;
    border-radius: var(--r-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s;
}
.phone-cta:hover { background: var(--primary-50); color: var(--primary-800); }
.tty { font-size: 12px; opacity: 0.75; margin-top: 12px; text-align: center; }

/* ZIP entry form */
.zip-form { display: flex; gap: 8px; }
.zip-form input {
    flex: 1; padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    font-size: 16px;
    font-family: inherit;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.zip-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(66,153,225,0.18); }
.zip-form button {
    padding: 14px 22px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.zip-form button:hover { background: var(--primary-600); transform: translateY(-1px); }

/* === PAGE HERO (inner pages, not home) — visually identical to home .hero === */
.page-hero {
    background:
        radial-gradient(900px 500px at 90% -10%, rgba(66,153,225,0.18), transparent 60%),
        radial-gradient(700px 400px at -5% 110%, rgba(66,153,225,0.10), transparent 60%),
        linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.page-hero-grid > .hero-cards { margin: 0; }
.page-hero .breadcrumb {
    font-size: 13px;
    color: var(--slate-mid);
    margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: var(--slate-mid); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--primary-700); }
.page-hero .breadcrumb span.sep { margin: 0 8px; color: var(--slate-light); }
.page-hero h1 {
    font-size: clamp(36px, 4.6vw, 60px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    line-height: 1.05;
}
.page-hero h1 .accent { color: var(--primary); }
.page-hero h1 .accent-serif { font-family: "Source Serif 4", serif; font-style: italic; font-weight: 600; color: var(--primary-700); }
.page-hero .lede {
    font-size: 19px;
    color: var(--slate);
    max-width: 580px;
    line-height: 1.6;
    margin-bottom: 28px;
}
.page-hero .hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* === CARRIER STRIP === */
.carrier-strip {
    background: white;
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.carrier-label {
    text-align: center;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--slate-mid);
    margin-bottom: 24px;
}
.carrier-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
    align-items: center;
}
.carrier {
    display: flex; align-items: center; justify-content: center;
    height: 56px;
    color: var(--slate-mid);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s, transform 0.2s;
    filter: grayscale(1);
    opacity: 0.7;
}
.carrier:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.carrier-aetna { color: #7d3c98; }
.carrier-uhc { color: #002677; }
.carrier-humana { color: #1e7a3f; }
.carrier-anthem { color: #00538a; }
.carrier-cigna { color: #0d6e6e; }
.carrier-mutual { color: #00427e; }
.carrier-wellcare { color: #c00d27; }
.carrier-kaiser { color: #006bb6; }
.carrier-wordmark { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

/* === SECTIONS === */
.section { padding: 90px 0; }
.section.tint { background: var(--bg-tint); }
.section.blue-tint { background: linear-gradient(180deg, var(--bg-blue) 0%, #ffffff 100%); }
.section.tight { padding: 60px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--primary-700);
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.section-title .accent { color: var(--primary); }
.section-deck { font-size: 18px; color: var(--slate); line-height: 1.6; }

/* === PROSE (article body) === */
.prose { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--ink-mid); }
.prose.wide { max-width: 880px; }
.prose h2 {
    font-size: 30px; line-height: 1.15;
    margin-top: 56px; margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.prose h3 {
    font-size: 22px; line-height: 1.2;
    margin-top: 36px; margin-bottom: 12px;
    letter-spacing: -0.015em;
}
.prose h4 { font-size: 17px; margin-top: 28px; margin-bottom: 10px; color: var(--primary-800); text-transform: uppercase; letter-spacing: 0.04em; }
.prose p { margin-bottom: 18px; }
.prose p > strong:first-child { color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 22px 0; padding-left: 26px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose ul li::marker { color: var(--primary); }
.prose blockquote {
    border-left: 4px solid var(--primary);
    padding: 14px 0 14px 26px;
    margin: 24px 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 19px;
    font-style: italic;
    color: var(--ink-mid);
    background: var(--bg-blue);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.prose a { color: var(--primary-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--primary-800); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 36px 0; }
.prose .callout {
    background: var(--bg-blue);
    border: 1px solid var(--primary-100);
    border-radius: var(--r);
    padding: 22px 26px;
    margin: 28px 0;
}
.prose .callout strong { color: var(--primary-800); }
.prose .callout p:last-child { margin-bottom: 0; }
.prose .callout-amber {
    background: #fffaeb; border-color: #fde6a8;
}
.prose .callout-amber strong { color: #92400e; }
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}
.prose table th {
    text-align: left;
    padding: 12px 14px;
    background: var(--bg-tint);
    color: var(--ink);
    font-weight: 700;
    border-bottom: 2px solid var(--line);
}
.prose table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}
.prose table tr:hover td { background: var(--bg-tint); }

/* === PLAN CARDS === */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.plan {
    background: white;
    border-radius: var(--r-lg);
    padding: 30px 26px 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex; flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-100); }
.plan.popular { border-color: var(--primary); box-shadow: 0 12px 36px rgba(66,153,225,0.18); }
.plan .ribbon {
    position: absolute; top: -12px; right: 24px;
    background: var(--primary);
    color: white;
    font-size: 11px; font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.08em;
    box-shadow: 0 6px 14px rgba(66,153,225,0.3);
}
.plan .icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--primary-50);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
}
.plan.advantage .icon-wrap { background: #e6f7ed; }
.plan.partd .icon-wrap { background: #fef3e1; }
.plan.snp .icon-wrap { background: #f4ebfc; }
.plan h3 { font-size: 21px; margin-bottom: 10px; }
.plan p { font-size: 14.5px; color: var(--slate); line-height: 1.6; margin-bottom: 18px; }
.plan ul { list-style: none; padding: 0; margin-bottom: 22px; flex: 1; }
.plan li {
    font-size: 14px; color: var(--ink-mid);
    padding: 7px 0 7px 26px;
    position: relative;
    line-height: 1.5;
}
.plan li::before {
    content: "✓";
    position: absolute; left: 0; top: 7px;
    width: 18px; height: 18px;
    background: var(--primary-50); color: var(--primary-700);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
}
.plan.advantage li::before { background: #e6f7ed; color: var(--green); }
.plan.partd li::before { background: #fef3e1; color: var(--amber); }
.plan.snp li::before { background: #f4ebfc; color: #805ad5; }
.plan .plan-cta {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary-700); text-decoration: none;
    font-weight: 700; font-size: 14.5px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    transition: gap 0.2s, color 0.2s;
}
.plan .plan-cta:hover { gap: 12px; color: var(--primary-800); }

/* === STAT STRIP === */
.stat-strip { background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%); color: white; padding: 60px 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat .num {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.stat .num .plus { color: #ffd86b; }
.stat .lbl { color: #bee3f8; font-size: 14px; font-weight: 500; }

/* === TOOLS / GUIDE CARDS === */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tool {
    background: white;
    border-radius: var(--r-lg);
    padding: 30px;
    border: 1px solid var(--line);
    text-decoration: none;
    display: flex; flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.tool:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-100); }
.tool .tool-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--primary-50); color: var(--primary-700);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.tool .tool-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--primary-700);
    background: var(--primary-50);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.tool h3 { font-size: 22px; margin-bottom: 10px; }
.tool p { color: var(--slate); font-size: 14.5px; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.tool .arrow { color: var(--primary-700); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.tool:hover .arrow { gap: 12px; }

/* === STATE GRID === */
.state-wrap {
    background: white;
    border-radius: var(--r-lg);
    padding: 40px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.state-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}
.state-grid a {
    padding: 9px 12px;
    color: var(--ink-mid);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.state-grid a:hover { background: var(--primary-50); color: var(--primary-700); }
.state-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; gap: 28px; flex-wrap: wrap; font-size: 13.5px; color: var(--slate); }
.state-foot strong { color: var(--ink); font-weight: 700; }

/* === WHY GRID === */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card { text-align: left; padding: 4px; }
.why-card .why-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    color: var(--primary-700);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { color: var(--slate); font-size: 14.5px; line-height: 1.65; }

/* === PROMISE / FEATURED QUOTE CARD === */
.promise-card {
    background: linear-gradient(135deg, white 0%, var(--bg-blue) 100%);
    border-radius: var(--r-lg);
    border: 1px solid var(--primary-100);
    padding: 48px;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    position: relative;
}
.promise-card .promise-mark {
    position: absolute;
    top: 24px; left: 32px;
    font-family: "Source Serif 4", serif;
    font-size: 72px;
    color: var(--primary);
    line-height: 0.6;
    opacity: 0.4;
    font-weight: 700;
}
.promise-card .promise-title {
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 18px;
    padding-left: 60px;
}
.promise-card p {
    color: var(--slate);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 16px;
    padding-left: 60px;
}
.promise-card p strong { color: var(--ink); }
.promise-card p:last-child { margin-bottom: 0; }

/* === NETWORK / SISTER SITE CARDS === */
.network-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.network-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 26px;
    border: 1px solid var(--line);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex; flex-direction: column;
}
.network-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-100); }
.network-card .badge {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--slate-mid);
    background: var(--bg-tint);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
    align-self: flex-start;
}
.network-card h3 { font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.network-card p { font-size: 13.5px; color: var(--slate); line-height: 1.55; flex: 1; margin-bottom: 12px; }
.network-card .visit {
    color: var(--primary-700); font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
}
.network-card:hover .visit { gap: 12px; }

/* === FAQ === */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r);
    margin-bottom: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq.open { border-color: var(--primary-100); box-shadow: var(--shadow); }
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
    font-size: 16.5px;
    user-select: none;
}
.faq-q .toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary-700);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700;
    transition: transform 0.3s, background 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq.open .toggle { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--slate);
    font-size: 15px;
    line-height: 1.7;
}
.faq.open .faq-a { max-height: 1400px; padding: 0 24px 22px; }

/* === LEAD FORM === */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.quote-copy h2 { margin-bottom: 18px; font-size: clamp(28px, 3vw, 38px); }
.quote-copy .lede { font-size: 17px; color: var(--slate); margin-bottom: 24px; }
.quote-copy ul { list-style: none; padding: 0; margin-top: 24px; }
.quote-copy li {
    padding: 14px 0; padding-left: 36px;
    border-bottom: 1px solid var(--line);
    font-size: 15px; color: var(--ink-mid);
    position: relative;
    line-height: 1.55;
}
.quote-copy li::before {
    content: "✓";
    position: absolute; left: 0; top: 14px;
    width: 22px; height: 22px;
    background: var(--primary); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
}
.quote-copy li strong { color: var(--ink); }
.quote-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.quote-card-head {
    text-align: center;
    margin-bottom: 24px; padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.quote-card-head .pill {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--primary-700); background: var(--primary-50);
    padding: 5px 12px; border-radius: 999px;
    margin-bottom: 12px;
}
.quote-card-head h3 { font-size: 24px; }
.field { margin-bottom: 14px; }
.field label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--ink-mid);
    margin-bottom: 6px;
}
.field input, .field textarea, .field select {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    font-family: inherit; font-size: 15px;
    color: var(--ink);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(66,153,225,0.16);
}
.field-half { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn {
    width: 100%; padding: 15px;
    background: var(--primary); color: white;
    border: none; border-radius: var(--r-sm);
    font-family: inherit; font-weight: 700;
    font-size: 16px; cursor: pointer;
    box-shadow: 0 6px 14px rgba(66,153,225,0.3);
    transition: background 0.2s, transform 0.1s;
}
.submit-btn:hover { background: var(--primary-600); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: wait; }
.form-msg { display: none; padding: 12px 14px; border-radius: var(--r-sm); margin-bottom: 14px; font-size: 14px; }
.form-msg.ok { background: #e6f7ed; color: #1e7a3f; }
.form-msg.err { background: #fed7d7; color: #9b2c2c; }

/* === FOOTER === */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 60px 0 24px; }
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.site-footer a:hover { color: var(--primary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .mark {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
    color: white; font-weight: 800; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
}
.footer-brand .name { color: white; font-weight: 800; font-size: 20px; }
.footer-blurb { font-size: 14px; line-height: 1.65; margin-bottom: 16px; max-width: 360px; }
.footer-phone {
    display: inline-flex; align-items: center; gap: 10px;
    color: white !important; font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
}
.footer-phone .icon { color: var(--primary); }
.footer-grid h4 {
    color: white;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.footer-grid a { display: block; font-size: 14px; margin-bottom: 9px; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-agent {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.footer-agent a { color: var(--primary-100); text-decoration: underline; text-underline-offset: 3px; }

/* === CTA STRIP (reusable bottom CTA) === */
.cta-strip {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.cta-strip h2 {
    color: white;
    font-size: clamp(28px, 3.4vw, 40px);
    margin-bottom: 14px;
}
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 640px; margin: 0 auto 28px; }
.cta-strip .cta-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-strip .btn-primary { background: white; color: var(--primary-800); box-shadow: 0 6px 14px rgba(0,0,0,0.15); }
.cta-strip .btn-primary:hover { background: var(--primary-50); color: var(--primary-800); }
.cta-strip .btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.cta-strip .btn-outline:hover { background: rgba(255,255,255,0.1); color: white; }

/* === RESPONSIVE === */
@media (max-width: 980px) {
    .hero { padding: 50px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .carrier-row { grid-template-columns: repeat(4, 1fr); }
    .plans { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .tools-grid { grid-template-columns: 1fr; }
    .state-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .network-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .promise-card { padding: 36px 28px; }
    .promise-card .promise-mark { font-size: 56px; top: 18px; left: 22px; }
    .promise-card .promise-title, .promise-card p { padding-left: 0; }
    .page-hero { padding: 50px 0 40px; }
}
@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .nav, .header-phone { display: none; }
    .section { padding: 60px 0; }
    .plans { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .carrier-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .carrier-wordmark { font-size: 15px; }
    .state-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .network-grid { grid-template-columns: 1fr; }
    .quote-card { padding: 24px 18px; }
    .field-half { grid-template-columns: 1fr; }
    .state-wrap { padding: 20px; }
    .hero-card { padding: 22px 20px; }
    .phone-number { font-size: 24px; }
    .phone-block .ring { width: 42px; height: 42px; font-size: 19px; }
    .hero { padding: 40px 0 30px; }
    .page-hero { padding: 40px 0 30px; }
    .hero-trust { gap: 12px 18px; }
    .hero-trust span { font-size: 13px; }
}
