/* ============================================================================
   redesign.css — "v2" look for comparesmallbusinessinsurance.com
   ----------------------------------------------------------------------------
   Everything here is scoped to `.v2` on <body>, so it only affects the pages
   that opt in. The rest of the site keeps the old styles.css look until we
   decide to roll this out. To move a page over:

       1. add  <link rel="stylesheet" href="/redesign.css" />  after styles.css
       2. add  class="v2"  to <body>

   Load order matters: styles.css first, this second. Every rule below is
   prefixed with `.v2` so it wins on specificity as well as order.

   Layout is mobile-first: the base rules are the phone, and `min-width`
   queries add the desktop. Sections are grouped and labelled so a small
   change ("move that button up", "make this simpler") is a one-place edit.
   ========================================================================= */

/* ---------------------------------------------------------------- Typeface */
/* Inter, self-hosted and subset to latin (48KB). Self-hosted rather than
   Google-hosted so there is no third-party request in front of the first
   paint, and `swap` so text is readable while it loads. */
@font-face {
  font-family: 'Inter var';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ------------------------------------------------------------------ Tokens */
/* Colours, spacing and shadows live here and nowhere else — change a value
   once and the whole page follows. */
.v2 {
  --ink: #0f1b2c;          /* headings and body text */
  --ink-soft: #33465b;     /* long-form body copy */
  --muted: #5e7186;        /* captions, notes, meta */
  --line: #e3e9f1;         /* borders */
  --line-soft: #eef2f7;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;      /* alternating section background */
  --bg-tint: #eef4ff;      /* blue wash for accent panels */
  --navy: #0d2743;         /* dark panels */
  --navy-2: #143a63;
  --brand: #1558c4;        /* the one action colour */
  --brand-dark: #11459d;
  --teal: #0d8f8a;         /* ticks and small accents only */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 44, .05);
  --shadow: 0 2px 4px rgba(15, 27, 44, .04), 0 14px 32px rgba(15, 27, 44, .07);
  --maxw: 1120px;
}

/* -------------------------------------------------------------------- Base */
.v2 {
  font-family: 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: -.003em;
}
.v2 .container { max-width: var(--maxw); padding: 0 20px; }
.v2 h1, .v2 h2, .v2 h3, .v2 h4 { color: var(--ink); font-weight: 700; letter-spacing: -.022em; }
.v2 h1 { font-size: clamp(1.8rem, 5.9vw, 2.85rem); line-height: 1.08; font-weight: 800; letter-spacing: -.032em; margin: 0 0 .45em; }
.v2 h2 { font-size: clamp(1.45rem, 3.6vw, 2rem); line-height: 1.18; margin: 0 0 .5em; }
.v2 h3 { font-size: 1.125rem; line-height: 1.3; margin: 0 0 .4em; }
.v2 p { margin: 0 0 1.05rem; }
.v2 a { color: var(--brand); text-underline-offset: 2px; }
.v2 strong { color: var(--ink); font-weight: 650; }
/* Dark panels: put `strong` back to a light colour or it disappears. */
.v2 .calc-out strong, .v2 .calc-next strong, .v2 .v2-close strong,
.v2 .site-footer strong { color: #fff; }
.v2 ::selection { background: #cfe0ff; }

/* Section rhythm. One variable sets the vertical space on every band. */
.v2 section, .v2 .v2-section { padding: 44px 0; }
@media (min-width: 900px) { .v2 section, .v2 .v2-section { padding: 76px 0; } }
.v2 .v2-band { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.v2 .v2-section-head { max-width: 46rem; margin: 0 0 28px; }
.v2 .v2-section-head p { color: var(--muted); font-size: 1.0625rem; margin: 0; }
.v2 .section-sub { color: var(--muted); margin: -.2rem 0 1.8rem; }

/* ----------------------------------------------------------------- Buttons */
/* One action colour, one shape. No pills, no glow, no gradient — those read
   as advertising. The primary button is the only saturated block on a page. */
.v2 .btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.008em;
  line-height: 1.35;
  padding: .85rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 0;
  box-shadow: none;
  text-decoration: none;
  white-space: normal;
  transition: background .15s ease;
}
.v2 .btn:hover, .v2 .btn:focus-visible { background: var(--brand-dark); color: #fff; }
.v2 .btn-lg { padding: 1.05rem 1.8rem; font-size: 1.0625rem; }
.v2 .btn-sm { padding: .5rem .95rem; font-size: .9375rem; }
.v2 .btn-block { display: block; width: 100%; text-align: center; }
/* Quiet secondary action — used at most once per screen, next to the primary. */
.v2 .v2-btn-quiet {
  display: inline-block;
  padding: .85rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.v2 .v2-btn-quiet:hover { border-color: #c6d3e4; background: var(--bg-soft); }
/* The line of reassurance under a primary button. Plain text, not a badge. */
.v2 .v2-cta-note, .v2 .hero-cta-note {
  display: block;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
  margin: .7rem 0 0;
  font-weight: 400;
}
.v2 .v2-cta { margin: 1.5rem 0; }
.v2 .v2-cta .btn { width: 100%; text-align: center; }
@media (min-width: 620px) { .v2 .v2-cta .btn { width: auto; } }

/* ------------------------------------------------------------------ Header */
.v2 .site-header { background: #fff; border-bottom: 1px solid var(--line); box-shadow: none; }
.v2 .header-inner { height: 64px; gap: 10px; }
@media (min-width: 900px) { .v2 .header-inner { height: 76px; } }
.v2 .brand-mark { height: 34px; }
@media (min-width: 900px) { .v2 .brand-mark { height: 40px; } }
.v2 .brand { gap: 10px; }
.v2 .brand-name { font-size: 1.02rem; font-weight: 700; letter-spacing: -.024em; color: var(--ink); }
.v2 .brand-name .bn-blue { color: var(--brand); }
.v2 .brand-tag { display: none; }        /* the "Compare | Protect | Save" trio read as a banner */
.v2 .brand-lockup { display: none; }
@media (min-width: 760px) { .v2 .brand-lockup { display: flex; } }
.v2 .main-nav { gap: 20px; margin-right: 12px; }
.v2 .main-nav a { display: none; color: var(--ink-soft); font-weight: 500; font-size: .96rem; text-decoration: none; }
.v2 .main-nav a:first-child { display: inline; }
@media (min-width: 760px) { .v2 .main-nav a { display: inline; } }
.v2 .main-nav a:hover { color: var(--brand); }
.v2 .header-inner .btn { flex: none; }

/* ============================================================ HOME — hero */
/* Light, not navy. A dark full-bleed hero behind an orange button is the
   single strongest "landing page" signal; a white one reads as a publisher. */
.v2-hero {
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0 40px;
}
@media (min-width: 900px) { .v2-hero { padding: 56px 0 72px; } }
.v2-hero-grid { display: grid; gap: 28px; }
@media (min-width: 980px) {
  .v2-hero-grid { grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: start; }
}
.v2-hero-grid > * { min-width: 0; }
.v2-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 600; letter-spacing: .01em;
  color: #1a4f9c; background: var(--bg-tint);
  border: 1px solid #d8e6fb; border-radius: 999px;
  padding: .3rem .7rem; margin: 0 0 1rem;
}
.v2-hero h1 { color: var(--ink); max-width: 17ch; }
.v2-lede { font-size: 1.0625rem; color: var(--ink-soft); max-width: 44ch; margin: 0 0 1.35rem; }
@media (min-width: 900px) { .v2-lede { font-size: 1.1875rem; } }
/* The primary button. One per screen, full width on a phone so it is the
   obvious next move, auto width on desktop so it does not shout. */
.v2-hero-cta .btn { width: 100%; text-align: center; }
@media (min-width: 620px) { .v2-hero-cta .btn { width: auto; min-width: 20rem; } }
/* Three short facts, not ticks in a stack. Honest, checkable claims only. */
.v2-assure { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .55rem; }
@media (min-width: 560px) { .v2-assure { grid-template-columns: repeat(3, auto); justify-content: start; gap: 1.4rem; } }
.v2-assure li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9375rem; color: var(--ink-soft); }
.v2-assure svg { flex: none; width: 17px; height: 17px; margin-top: 2px; color: var(--teal); }

/* Calculator card in the hero */
.v2-hero-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
@media (min-width: 900px) { .v2-hero-card { padding: 24px; } }
.v2-hero-card .calc { border: 0; box-shadow: none; padding: 0; margin: 0; }
.v2-hero-card-head { margin: 0 0 14px; }
.v2-hero-card-head strong { display: block; font-size: 1.0625rem; color: var(--ink); font-weight: 650; letter-spacing: -.015em; }
.v2-hero-card-head span { display: block; font-size: .875rem; color: var(--muted); margin-top: 2px; }

/* ================================================= Shared content blocks */
/* Coverage / feature cards */
.v2-cards { display: grid; gap: 14px; }
@media (min-width: 620px) { .v2-cards { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 980px) { .v2-cards { grid-template-columns: repeat(3, 1fr); } }
.v2-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.v2-card h3 { font-size: 1.0625rem; margin-bottom: .3em; }
.v2-card p { margin: 0; font-size: .9375rem; color: var(--muted); line-height: 1.6; }
.v2-card-ico { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: var(--bg-tint); color: var(--brand); margin-bottom: 12px; }
.v2-card-ico svg { width: 20px; height: 20px; }

/* Numbered steps — "what happens after you click" */
.v2-steps { display: grid; gap: 22px; counter-reset: step; }
@media (min-width: 860px) { .v2-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.v2-step { position: relative; padding-top: 0; }
.v2-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: .875rem; font-weight: 700; margin-bottom: 12px;
}
.v2-step h3 { font-size: 1.0625rem; }
.v2-step p { font-size: .9375rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* Guide cards */
.v2-guide-grid { display: grid; gap: 14px; }
@media (min-width: 620px) { .v2-guide-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 980px) { .v2-guide-grid { grid-template-columns: repeat(3, 1fr); } }
.v2-guide-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; text-decoration: none; color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.v2-guide-card:hover { border-color: #c9d8ee; box-shadow: var(--shadow-sm); }
.v2-guide-card .v2-tag { font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.v2-guide-card h3 { font-size: 1.0625rem; color: var(--ink); margin-bottom: .35em; }
.v2-guide-card p { font-size: .9375rem; color: var(--muted); margin: 0 0 14px; line-height: 1.6; }
.v2-guide-card .v2-card-link { margin-top: auto; font-size: .9375rem; font-weight: 600; color: var(--brand); }
.v2-guide-card-tool { background: #f8fbff; border-color: #d5e4f8; }

/* Closing call to action — the second and last button on a page */
.v2-close { background: var(--navy); color: #cddcec; }
.v2-close .v2-close-inner { max-width: 44rem; }
.v2-close h2 { color: #fff; }
.v2-close p { color: #b7cbdf; font-size: 1.0625rem; margin-bottom: 1.5rem; }
.v2-close .btn { background: #fff; color: var(--navy); }
.v2-close .btn:hover { background: #e8f0fa; color: var(--navy); }
.v2-close .v2-cta-note { color: #8fa9c4; }

/* "How we make money" honesty panel — a trust signal, stated plainly */
.v2-howitworks { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 20px; }
@media (min-width: 900px) { .v2-howitworks { padding: 28px 30px; } }
.v2-howitworks h2 { font-size: 1.25rem; }
.v2-howitworks p { font-size: .9375rem; color: var(--muted); margin: 0 0 .8rem; }
.v2-howitworks p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ Footer */
.v2 .site-footer { background: var(--navy); color: #9db4cc; padding: 44px 0 36px; text-align: left; }
@media (min-width: 900px) { .v2 .site-footer { padding: 60px 0 44px; } }
.v2 .footer-lockup { justify-content: flex-start; margin-bottom: 1.1rem; }
.v2 .footer-mark { height: 34px; }
.v2 .footer-name { font-size: 1rem; color: #fff; font-weight: 700; letter-spacing: -.022em; }
.v2 .footer-name .fn-blue { color: #79b0f5; }
.v2 .footer-nav { justify-content: flex-start; max-width: none; gap: 10px 22px; margin: 0 0 1.8rem; }
.v2 .footer-nav a { color: #b7cbdf; font-size: .9rem; font-weight: 500; text-decoration: none; }
.v2 .footer-nav a:hover { color: #fff; text-decoration: underline; }
.v2 .footer-disclaimer { font-size: .8125rem; line-height: 1.7; color: #8aa3bd; margin: 0; max-width: 62rem; }
.v2 .footer-affiliate { display: block; margin-top: .9rem; color: #7893ae; }
.v2 .footer-legal { font-size: .8125rem; color: #7893ae; margin: 1.6rem 0 0; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); }

/* ======================================================= ARTICLE templates */
.v2 .crumbs { font-size: .8125rem; color: var(--muted); padding: 14px 0 0; }
.v2 .crumbs a { color: var(--muted); text-decoration: none; }
.v2 .crumbs a:hover { color: var(--brand); text-decoration: underline; }

.v2 .post-hero { background: #fff; border-bottom: 0; padding: 10px 0 0; }
.v2 .post-hero .eyebrow {
  text-transform: none; letter-spacing: 0; font-size: .8125rem; font-weight: 500;
  color: var(--muted); margin-bottom: .8rem;
}
.v2 .post-hero h1 { font-size: clamp(1.85rem, 5.4vw, 2.75rem); max-width: 22ch; }
.v2 .post-hero-answer { font-size: 1.0625rem; color: var(--ink-soft); max-width: 60ch; margin: .4rem 0 0; }
@media (min-width: 900px) { .v2 .post-hero-answer { font-size: 1.1875rem; } }
.v2 .reading { max-width: 720px; }
/* styles.css reorders the article CTA above the headline on phones. On a v2
   page the reader gets the question answered first and the button after it,
   so reading order is simply DOM order. */
.v2 .post-hero .reading { display: block; }
.v2 .post-hero .reading > * { order: 0; }
.v2 .article-body { padding: 26px 0 8px; line-height: 1.75; font-size: 1.0625rem; color: var(--ink-soft); }
@media (min-width: 900px) { .v2 .article-body { padding: 34px 0 8px; font-size: 1.125rem; line-height: 1.78; } }
.v2 .article-body h2 { margin: 2.4rem 0 .7rem; font-size: clamp(1.35rem, 3.2vw, 1.75rem); }
.v2 .article-body h3 { margin: 1.9rem 0 .5rem; font-size: 1.125rem; }
.v2 .article-body ul, .v2 .article-body ol { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.v2 .article-body li { margin-bottom: .5rem; }
/* The base stylesheet bolds every in-article link, which makes a paragraph
   read as a row of buttons. Normal weight, normal underline. */
.v2 .article-body a { font-weight: 400; text-decoration-thickness: 1px; text-decoration-color: #9fbdea; }
.v2 .article-body a:hover { text-decoration-color: var(--brand); }
.v2 .article-body strong a, .v2 .guide-jump a, .v2 .toc a, .v2 .related a { font-weight: 500; }

/* Advertising disclosure — quiet, above the fold, one line */
.v2 .disclosure-inline {
  font-size: .8125rem; color: var(--muted); background: transparent;
  border: 0; border-left: 2px solid var(--line); border-radius: 0;
  padding: .1rem 0 .1rem .8rem; margin: 1.2rem 0 0;
}
/* Key-answer panel */
.v2 .why-box {
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--brand);
  border-radius: var(--radius); padding: 18px 20px; margin: 1.8rem 0;
}
@media (min-width: 900px) { .v2 .why-box { padding: 22px 26px; } }
.v2 .why-box h2 { margin: 0 0 .5rem; font-size: 1.0625rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 650; }
.v2 .why-box p:last-child { margin-bottom: 0; }
.v2 .guide-jump { font-size: .9375rem; background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--teal); border-radius: var(--radius); padding: .85rem 1rem; margin: 1.6rem 0; }

/* Contents */
.v2 .toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin: 2rem 0; font-size: .9375rem; }
.v2 .toc strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .7rem; font-weight: 650; }
.v2 .toc ol, .v2 .toc ul { margin: 0; padding-left: 1.1rem; columns: 1; }
@media (min-width: 720px) { .v2 .toc ol, .v2 .toc ul { columns: 2; column-gap: 2rem; } }
.v2 .toc li { margin-bottom: .4rem; break-inside: avoid; }
.v2 .toc a { text-decoration: none; }
.v2 .toc a:hover { text-decoration: underline; }

/* Tables */
.v2 .table-scroll { margin: 0 0 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; }
.v2 .data-table { font-size: .9375rem; margin: 0; }
.v2 .data-table th, .v2 .data-table td { padding: .7rem .9rem; border-bottom: 1px solid var(--line-soft); text-align: left; }
.v2 .data-table thead th { background: var(--bg-soft); color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 650; border-bottom: 1px solid var(--line); white-space: nowrap; }
.v2 .data-table tbody tr:last-child td { border-bottom: 0; }
.v2 .rec-badge { background: var(--bg-tint); color: var(--brand); font-weight: 650; }

/* FAQ */
.v2 .faq { margin-top: 2.6rem; }
.v2 .faq-item { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.v2 .faq-item h3 { font-size: 1.0625rem; margin-bottom: .35em; }
.v2 .faq-item p { font-size: .9375rem; color: var(--muted); margin: 0; }
@media (min-width: 900px) { .v2 .faq-item p { font-size: 1rem; } }

/* End-of-article next step — the last button on the page */
.v2 .next-step {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--ink-soft);
  padding: 22px; margin: 2.6rem 0 0;
}
@media (min-width: 900px) { .v2 .next-step { padding: 28px 30px; } }
.v2 .next-step h2 { color: var(--ink); font-size: 1.25rem; margin-bottom: .45em; }
.v2 .next-step p { color: var(--muted); font-size: .9375rem; }
.v2 .next-step .btn { background: var(--brand); color: #fff; }
.v2 .next-step .cta-row { margin: 1.2rem 0 0; }
.v2 .next-step .cta-row .btn { width: 100%; text-align: center; }
@media (min-width: 620px) { .v2 .next-step .cta-row .btn { width: auto; } }
.v2 .next-step a:not(.btn) { color: var(--brand); }

.v2 .related { margin: 2.6rem 0 0; }
.v2 .related h2 { font-size: 1.25rem; }
.v2 .related ul { list-style: none; padding: 0; margin: 0; }
.v2 .related li { border-top: 1px solid var(--line); padding: .8rem 0; }
.v2 .related a { text-decoration: none; font-weight: 500; }
.v2 .related a:hover { text-decoration: underline; }
.v2 .article-disclaimer { font-size: .8125rem; line-height: 1.7; color: var(--muted); border-top: 1px solid var(--line); margin-top: 2.6rem; padding-top: 1.4rem; }

/* In-article CTA row */
.v2 .cta-row { margin: 2rem 0; }
.v2 .cta-row .btn { width: 100%; text-align: center; }
@media (min-width: 620px) { .v2 .cta-row .btn { width: auto; } }

/* =========================================================== GUIDE HUB */
.v2-hub-hero { background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%); border-bottom: 1px solid var(--line-soft); padding: 22px 0 32px; }
@media (min-width: 900px) { .v2-hub-hero { padding: 40px 0 52px; } }
.v2-hub-hero h1 { max-width: 18ch; }
.v2-hub-hero .v2-lede { max-width: 54ch; }
/* Jump links to the grouped sections below — navigation, not calls to action */
.v2-hub-jump { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.4rem 0 0; }
.v2-hub-jump a {
  display: inline-block; padding: .45rem .85rem; border: 1px solid var(--line);
  background: #fff; border-radius: 999px; font-size: .875rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
}
.v2-hub-jump a:hover { border-color: #c6d3e4; color: var(--brand); }
/* The long tail: 100 identical cards became an unreadable wall. Grouped
   link lists keep every URL and every internal link, and fit on one screen. */
.v2-hub-group { margin: 0 0 36px; scroll-margin-top: 80px; }
.v2-hub-group > h2 { font-size: 1.25rem; margin-bottom: .2em; }
.v2-hub-group > p { color: var(--muted); font-size: .9375rem; margin: 0 0 16px; }
.v2-link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
@media (min-width: 720px) { .v2-link-list { grid-template-columns: repeat(2, 1fr); column-gap: 32px; } }
@media (min-width: 1000px) { .v2-link-list { grid-template-columns: repeat(3, 1fr); } }
.v2-link-list li { border-bottom: 1px solid var(--line-soft); }
.v2-link-list a { display: block; padding: .7rem .2rem; font-size: .9375rem; color: var(--ink-soft); text-decoration: none; }
.v2-link-list a:hover { color: var(--brand); }
/* One trade per block: the pillar page as the heading, its state guides under it. */
.v2-trade { margin: 0 0 28px; }
.v2-trade > h3 { font-size: 1.0625rem; margin-bottom: .15em; }
.v2-trade > h3 a { text-decoration: none; }
.v2-trade > h3 a:hover { text-decoration: underline; }
.v2-trade-note { font-size: .8438rem; color: var(--muted); margin: 0 0 8px; }
/* A four-up "start here" row on wide screens. */
@media (min-width: 1000px) { .v2-guide-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ======================================================= CONTACT FORM ====
   The form itself, its endpoint and its bot protection are untouched — this
   is the look only, so the fields match the rest of the v2 pages. */
.v2 .contact-form { margin: 1.4rem 0 2.2rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
@media (min-width: 900px) { .v2 .contact-form { padding: 26px 28px; } }
.v2 .contact-form label { font-size: .8125rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.v2 .contact-form input, .v2 .contact-form select, .v2 .contact-form textarea {
  border: 1px solid #ccd8e6; border-radius: var(--radius-sm); padding: .7rem .8rem; font-size: 1rem;
}
.v2 .contact-form input:focus, .v2 .contact-form select:focus, .v2 .contact-form textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(21, 88, 196, .14);
}
.v2 .contact-form .btn { margin-top: .4rem; }
.v2 .form-fineprint { font-size: .8125rem; color: var(--muted); margin: 1rem 0 0; line-height: 1.6; }
.v2 .form-success, .v2 .form-error { border-radius: var(--radius-sm); font-weight: 500; }

/* ======================================================== COST CALCULATOR */
.v2 .calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; margin: 0 0 1.6rem; }
@media (min-width: 900px) { .v2 .calc { padding: 22px 24px; } }
.v2 .calc-out { background: var(--navy); border-radius: 12px; padding: 20px 18px; }
.v2 .calc-out-label { font-size: .72rem; letter-spacing: .09em; color: #86b3ea; font-weight: 650; }
.v2 .calc-figure { font-weight: 800; letter-spacing: -.035em; }
.v2 .calc-range { color: #c3d6ea; font-size: .9375rem; }
.v2 .calc-annual { color: #92acc6; font-size: .8125rem; }
.v2 .calc-out .btn { background: #fff; color: var(--navy); margin-top: 1.1rem; }
.v2 .calc-out .btn:hover { background: #e8f0fa; color: var(--navy); }
.v2 .calc-out .hero-cta-note { color: #92acc6; font-size: .8125rem; text-align: center; }
.v2 .calc-next { border-top: 1px solid rgba(255,255,255,.14); color: #b7cbdf; font-size: .8125rem; }
.v2 .calc h2.calc-adjust, .v2 .calc-adjust { font-size: .72rem; letter-spacing: .09em; color: var(--muted); font-weight: 650; text-transform: uppercase; margin: 1.4rem 0 .8rem; }
.v2 .calc-grid { gap: 12px 14px; }
.v2 .calc label { font-size: .8125rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.v2 .calc select, .v2 .calc input {
  border: 1px solid #ccd8e6; border-radius: var(--radius-sm);
  padding: .65rem .75rem; font-size: 1rem; font-family: inherit; color: var(--ink); background: #fff;
}
.v2 .calc select:focus, .v2 .calc input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(21, 88, 196, .14); }
.v2 .calc-note { font-size: .8125rem; color: var(--muted); }
.v2 .calc-breakdown { font-size: .8438rem; border-top: 1px solid var(--line); }

/* ------------------------------------------------------------ Housekeeping */
/* The old sticky bottom bar is gone from these pages; drop the space it
   reserved so the footer is not floating above 76px of nothing. */
.v2 { padding-bottom: 0 !important; }
/* Section height hints from styles.css were measured against the old layout.
   Turning them off keeps the scroll-depth denominator honest while the new
   heights settle; re-measure before putting them back. */
.v2 .coverage, .v2 .steps, .v2 .cta-band, .v2 .guides, .v2 .site-footer { content-visibility: visible; }
