/* Country Broadband — hand-coded site styles. No framework, no builder. */

:root {
  --blue: #1c62d9;          /* primary — logo royal blue */
  --blue-2: #4e86ee;        /* logo light blue */
  --blue-dark: #16305e;     /* headings / footer navy */
  --blue-wash: #eef4fe;     /* pale section background */
  --ink: #253048;
  --muted: #5c6a85;
  --line: #dde5f1;
  --green: #1d9d55;
  --gold: #f5a623;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 48, 94, .10);
  --font: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue); }
h1, h2, h3, h4 { color: var(--blue-dark); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 10px; top: 10px; background: #fff; padding: 8px 14px; z-index: 200; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid var(--blue);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-solid { background: var(--blue); color: #fff; }
.btn-solid:hover { background: #1553bd; }
.btn-ghost { background: #fff; color: var(--blue); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #16305e; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* ---------- top bar + header ---------- */
.topbar { background: var(--blue-dark); color: #cdd9f0; font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; padding-top: 6px; padding-bottom: 6px; gap: 12px; }
.topbar-phone { color: #fff; text-decoration: none; white-space: nowrap; }
.topbar-phone strong { color: #ffd67e; }

.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 14px rgba(22,48,94,.08); }
.header-in { display: flex; align-items: center; gap: 26px; padding-top: 8px; padding-bottom: 8px; }
.brand img { width: 92px; height: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; flex-wrap: wrap; }
.site-nav a { color: var(--blue-dark); text-decoration: none; font-weight: 600; font-size: .92rem; }
.site-nav a:hover { color: var(--blue); }
.site-nav .nav-cta { background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 999px; }
.site-nav .nav-cta:hover { background: #1553bd; color: #fff; }
.header-phone { display: flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 800; text-decoration: none; white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--blue-dark); margin: 5px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(100deg, rgba(13,32,74,.88) 0%, rgba(22,58,130,.72) 45%, rgba(28,98,217,.28) 100%),
              url("/img/hero-farmhouse.jpg") center/cover no-repeat;
}
.hero-in { padding: 90px 20px 110px; max-width: 660px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p.lead { font-size: 1.15rem; color: #e8efff; margin: 0 0 1.2em; }
.hero .price-line { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #ffd67e; line-height: 1.1; }
.hero .price-line small { font-size: .45em; font-weight: 600; color: #e8efff; }
.hero .foot-note { font-size: .8rem; color: #b9c9e8; margin-top: 1em; }
.hero .btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.gift-strip {
  background: linear-gradient(90deg, #f5a623, #ffc75e);
  color: #16305e;
  text-align: center;
  font-weight: 700;
  padding: 12px 20px;
}
.gift-strip a { color: #16305e; }

/* ---------- sections ---------- */
.section { padding: 70px 0; }
.section.tint { background: var(--blue-wash); }
.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.feature svg { width: 44px; height: 44px; color: var(--blue); margin-bottom: 12px; }
.feature h3 { font-size: 1.05rem; }
.feature p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- plan cards ---------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-flag { background: var(--blue-dark); color: #fff; text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .12em; padding: 7px 10px; }
.plan-flag.gold { background: linear-gradient(90deg, #f5a623, #ffc75e); color: #16305e; }
.plan-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.plan h3 { font-size: 1.5rem; letter-spacing: .04em; }
.plan .speed { font-size: 1.9rem; font-weight: 800; color: var(--blue); }
.plan .speed small { font-size: .5em; color: var(--muted); font-weight: 600; }
.plan ul.plan-specs { list-style: none; margin: 18px 0; padding: 0; }
.plan ul.plan-specs li { padding: 7px 0 7px 30px; position: relative; font-size: .95rem; border-bottom: 1px dashed var(--line); }
.plan ul.plan-specs li:last-child { border-bottom: 0; }
.plan ul.plan-specs li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
}
.plan .price-block { margin: 6px 0 4px; }
.plan .price-promo { font-size: 2.6rem; font-weight: 800; color: var(--blue-dark); line-height: 1; }
.plan .price-promo small { font-size: .38em; font-weight: 600; color: var(--muted); }
.plan .price-after { font-size: .85rem; color: var(--muted); }
.plan .plan-cta { margin-top: auto; padding-top: 18px; }
.plan .plan-cta .btn { width: 100%; }
.plan .bestfor { font-size: .85rem; color: var(--muted); margin-top: 14px; }

.promo-note { max-width: 760px; margin: 26px auto 0; font-size: .85rem; color: var(--muted); text-align: center; }

/* fiber-style price row: big promo price, strike-through regular, device
   cutout riding next to the price (Josh 2026-08-12, fiber.cb as the model) */
.plan .badge { display: inline-block; background: var(--blue-wash); color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .08em; padding: 4px 12px; border-radius: 999px; margin-bottom: 8px; align-self: flex-start; }
.plan .blurb { font-size: .9rem; color: var(--muted); margin: 0 0 4px; }
/* keep the three price rows level on desktop even when blurbs wrap unevenly */
@media (min-width: 641px) { .plans .plan .blurb { min-height: 4.7em; } }
.pr { display: flex; align-items: center; gap: 4px; margin: 12px 0 4px; min-height: 96px; }
.pr sup { font-size: 1.3rem; font-weight: 800; color: var(--blue-dark); align-self: flex-start; margin-top: 14px; }
.pr .big { font-size: 3.6rem; font-weight: 800; color: var(--blue-dark); line-height: 1; }
.pr .per { display: flex; flex-direction: column; margin-left: 4px; line-height: 1.25; }
.pr .per b { color: var(--blue-dark); font-size: .95rem; }
.pr .per s { color: var(--muted); font-size: .9rem; }
.pr .per .term { color: var(--muted); font-size: .72rem; font-weight: 600; }
.pr img.dev { width: 44%; max-width: 170px; height: auto; margin-left: auto; }
.plan .fine { font-size: .74rem; color: var(--muted); margin: 2px 0 10px; }
.plan details.feats { border-top: 1px solid var(--line); padding: 10px 0; margin-bottom: 4px; }
.plan details.feats summary { cursor: pointer; font-weight: 700; color: var(--blue); font-size: .9rem; list-style: none; }
.plan details.feats summary::-webkit-details-marker { display: none; }
.plan details.feats summary::after { content: " +"; }
.plan details.feats[open] summary::after { content: " \2212"; }
.plan details.feats ul { margin: 10px 0 0; padding-left: 20px; font-size: .88rem; }
.plan details.feats li { margin-bottom: 6px; }

.gift-ico { height: 1.9em; width: auto; vertical-align: middle; margin-right: 8px; display: inline-block; }
.plan-flag .gift-ico { height: 1.7em; }

.g-badge { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: #4285F4; font-weight: 800; font-size: .8rem; margin-right: 4px; vertical-align: middle; }

/* promo picker on order forms */
.promo-pick { border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
.promo-pick legend, .promo-pick .pp-title { font-size: .85rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.promo-pick label { display: flex; gap: 10px; align-items: center; padding: 6px 0; font-size: .92rem; cursor: pointer; }

/* gift badge */
.gift-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #16305e, #1c62d9);
  color: #fff; border-radius: 12px;
  padding: 10px 16px; font-weight: 700;
}
.gift-badge .amount { font-size: 1.5rem; color: #ffd67e; }

/* ---------- compare table ---------- */
.compare-scroll { overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
table.compare th, table.compare td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.compare th { background: var(--blue-dark); color: #fff; font-weight: 700; }
table.compare td:first-child { text-align: left; font-weight: 600; color: var(--blue-dark); }
table.compare .yes { color: var(--green); font-weight: 800; }
table.compare .no { color: #c33; font-weight: 800; }

/* ---------- compare spec cards (no horizontal scroll, ever) ---------- */
.compare-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 22px 10px; }
.ccard h3 { text-align: center; font-size: 1.05rem; letter-spacing: .06em; background: var(--blue-dark); color: #fff; margin: -20px -22px 12px; padding: 12px 10px; border-radius: var(--radius) var(--radius) 0 0; }
.ccard .crow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.ccard .crow:last-child { border-bottom: 0; }
.ccard dt { color: var(--muted); }
.ccard dd { margin: 0; font-weight: 700; color: var(--blue-dark); text-align: right; }
.ccard dd small { font-weight: 600; color: var(--muted); }
.ccard dd.yes { color: var(--green); }
.ccard dd.no { color: #c33; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
/* Google-review carousel (2026-08-21) — curated reviews rendered by site.js */
#reviews { scroll-margin-top: 96px; }
.cbrev-wrap { position: relative; display: flex; align-items: center; gap: 10px; }
.cbrev-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 14px; flex: 1; scrollbar-width: none; }
.cbrev-track::-webkit-scrollbar { display: none; }
.cbrev-track .review { flex: 0 0 300px; scroll-snap-align: start; display: flex; flex-direction: column; }
.cbrev-track .review p { flex: 1; }
.rev-who { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.rev-ava { width: 40px; height: 40px; border-radius: 50%; flex: 0 0 40px; object-fit: cover; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.05rem; }
.rev-nm { font-weight: 700; color: var(--blue-dark); font-size: .9rem; line-height: 1.25; }
.rev-src { font-size: .78rem; color: #66707e; display: flex; align-items: center; gap: 5px; }
.cbrev-btn { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--blue-dark); }
.cbrev-btn:hover { background: var(--blue-dark); color: #fff; }
/* cards must never exceed the visible strip between the arrows — at 390px
   that strip is ~239px, so a fixed 260px basis clipped every card's left edge
   (Josh, 2026-08-26); 100% of the track = exactly one full card per view */
@media (max-width: 640px) { .cbrev-track .review { flex-basis: min(260px, 100%); } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.review .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 10px; }
.review p { font-size: .92rem; margin: 0 0 12px; }
.review .who { font-weight: 700; color: var(--blue-dark); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; padding: 0 22px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--blue-dark); padding: 16px 0; list-style: none; position: relative; padding-right: 34px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--blue); }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-a { padding: 0 0 18px; color: var(--ink); font-size: .95rem; }

/* ---------- split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* ---------- choose cards (home-or-business) ---------- */
.choose { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 860px; margin: 0 auto; }
.choose a.choice { display: block; position: relative; border-radius: var(--radius); overflow: hidden; text-decoration: none; box-shadow: var(--shadow); }
.choose .choice img { display: block; width: 100%; height: 320px; object-fit: cover; transition: transform .3s ease; }
.choose .choice:hover img { transform: scale(1.04); }
.choose .choice .label {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(13,32,74,.92));
  color: #fff; font-weight: 800; font-size: 1.3rem;
  padding: 60px 20px 22px; text-align: center; letter-spacing: .06em;
}

/* ---------- order form ---------- */
.order-grid { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .order-grid { grid-template-columns: 1fr; } }
.order-summary { position: sticky; top: 120px; }
.order-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.order-form h2 { font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 5px; }
.field input, .field select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font); font-size: .95rem; color: var(--ink);
  background: #fff;
}
.field input:focus, .field select:focus { outline: 2px solid var(--blue-2); border-color: var(--blue-2); }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; margin-bottom: 12px; }
.checkline input { margin-top: 3px; }
.form-error { color: #c33; font-weight: 600; font-size: .9rem; min-height: 1.4em; margin: 6px 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- pre-footer + footer ---------- */
.preFooter { background: var(--blue); color: #fff; padding: 46px 0; }
.preFooter-in { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; text-align: center; }
@media (max-width: 680px) { .preFooter-in { grid-template-columns: 1fr; } }
.pf-card h3 { color: #cdd9f0; letter-spacing: .14em; font-size: .9rem; }
.pf-card .pf-big { color: #fff; font-size: 2rem; font-weight: 800; text-decoration: none; display: inline-block; margin-bottom: 8px; }
.pf-card p { color: #dbe6fb; font-size: .9rem; margin: 8px 0 0; }
.pf-card .btn { border-color: #fff; background: #fff; color: var(--blue); }

.site-footer { background: var(--blue-dark); color: #b9c9e8; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 34px; }
.footer-logo { filter: brightness(0) invert(1); opacity: .9; width: 110px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: .9rem; }
.site-footer a { color: #b9c9e8; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 22px; font-size: .85rem; }
.footer-legal .fineprint { font-size: .72rem; color: #7f93bd; line-height: 1.55; }

/* ---------- page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(100deg, #0d204a, #1c62d9); color: #fff; padding: 58px 0; }
.page-hero h1 { color: #fff; margin: 0 0 .3em; }
.page-hero p { color: #dbe6fb; max-width: 700px; margin: 0; font-size: 1.05rem; }

/* ---------- misc ---------- */
.badge-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 22px; }
.thanks-panel { max-width: 620px; margin: 0 auto; text-align: center; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 50px 34px; }
.thanks-panel .bigcheck { width: 74px; height: 74px; color: var(--green); }

/* ---------- responsive nav ---------- */
@media (max-width: 1020px) {
  .header-phone span { display: none; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; box-shadow: 0 14px 20px rgba(22,48,94,.14);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { text-align: center; margin-top: 10px; border-bottom: 0; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { z-index: 90; }
  .header-in { position: relative; }
  .site-nav { margin-left: 0; }
  .nav-toggle { margin-left: 0; }
  .header-in { justify-content: space-between; }
}
@media (max-width: 680px) {
  .topbar-in span:first-child { display: none; }
  .topbar-in { justify-content: center; }
  .hero-in { padding: 60px 20px 70px; }
}

/* --- multi-step order wizard (/order) --- */
.stepbar { display: flex; align-items: center; margin-bottom: 22px; }
.stepbar .sb { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: #dfe7f5; color: #5a6b8c; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.stepbar .sb.on { background: var(--blue); color: #fff; }
.stepbar i { flex: 1; height: 3px; background: #dfe7f5; margin: 0 8px; }
.stepbar i.on { background: var(--blue); }
.fstep[hidden] { display: none; }
.step-actions { display: flex; gap: 14px; align-items: center; margin-top: 4px; }
.step-actions .btn { flex: 1; }
.step-back { flex: 0 0 auto; background: none; border: 0; color: var(--blue); font-weight: 700; cursor: pointer; padding: 12px 6px; font-size: .9rem; font-family: inherit; }
.plan-chip { background: var(--blue-dark); color: #fff; border-radius: 10px; padding: 10px 14px; font-size: .9rem; margin-bottom: 18px; display: flex; justify-content: space-between; gap: 10px; align-items: center; flex-wrap: wrap; }
.plan-chip a { color: #ffc75e; font-size: .8rem; white-space: nowrap; }
.pcards { display: grid; gap: 14px; margin-bottom: 14px; }
.pcard { position: relative; display: block; cursor: pointer; }
.pcard input { position: absolute; opacity: 0; }
.pcard .pc-in { display: block; border: 2px solid var(--line); border-radius: 12px; padding: 16px 18px; transition: border-color .15s, box-shadow .15s; }
.pcard input:checked + .pc-in { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28, 98, 217, .15); }
.pcard input:focus-visible + .pc-in { outline: 2px solid var(--blue); outline-offset: 2px; }
.pc-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .95rem; letter-spacing: .06em; color: var(--blue-dark); }
.pc-head em { font-style: normal; background: linear-gradient(90deg, #f5a623, #ffc75e); color: #16305e; font-size: .68rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; white-space: nowrap; letter-spacing: .04em; }
.pc-head em.plain { background: #dfe7f5; color: #16305e; }
.pc-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin: 8px 0 6px; font-weight: 800; color: var(--blue-dark); font-size: 1.7rem; line-height: 1; }
.pc-price small { font-size: .85rem; font-weight: 700; }
.pc-price s { color: var(--muted); font-weight: 600; font-size: .95rem; }
.pc-price .pc-term { color: var(--muted); font-weight: 600; font-size: .72rem; }
.pc-price img.dev { width: 36px; height: auto; margin-left: auto; align-self: center; }
.pc-specs { display: block; color: var(--muted); font-size: .85rem; line-height: 1.55; }
.promo-pick .svc-blurb { color: var(--muted); font-size: .85rem; margin: 0 0 8px; }

/* cookie notice bar */
.cookiebar[hidden] { display: none; }
.cookiebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: #16305e; color: #fff; padding: 7px 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.25); }
.cookiebar p { margin: 0; font-size: .76rem; line-height: 1.3; }
.cookiebar a { color: #ffd27a; }
.cookiebar .btn { padding: 4px 16px; font-size: .74rem; flex: none; }

/* ---- opt-in rescue popup (order wizard, 2026-08-26) ---- */
.rescue-overlay { position: fixed; inset: 0; background: rgba(22,48,94,.55); z-index: 90;
  display: flex; align-items: flex-end; justify-content: center; }
.rescue-overlay[hidden] { display: none; }
.rescue-modal { background: #fff; width: 100%; max-width: 520px; border-radius: 18px 18px 0 0;
  padding: 24px 22px 22px; box-shadow: 0 -8px 30px rgba(0,0,0,.25);
  max-height: 88vh; overflow-y: auto; box-sizing: border-box; animation: rescue-up .25s ease-out; }
@keyframes rescue-up { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .rescue-modal { animation: none; } }
@media (min-width: 600px) {
  .rescue-overlay { align-items: center; padding: 20px; }
  .rescue-modal { border-radius: 16px; animation: none; }
}
.rescue-badge { display: inline-block; background: #fdecec; color: #c0392b; font-weight: 700;
  font-size: .75rem; letter-spacing: .5px; border-radius: 20px; padding: 4px 12px; margin-bottom: 10px; }
.rescue-modal h3 { font-size: 1.15rem; color: var(--blue-dark); margin: 0 0 10px; line-height: 1.3; }
.rescue-modal p { font-size: .95rem; margin: 0 0 12px; }
.rescue-line { display: flex; gap: 8px; align-items: center; background: var(--blue-wash);
  border: 1px solid #d6e4fb; border-radius: 10px; padding: 10px 12px; margin-bottom: 6px; font-size: .95rem; }
.rescue-line small { color: #667; }
.rescue-line b, .rescue-total b { margin-left: auto; color: var(--blue-dark); white-space: nowrap; }
.rescue-total { display: flex; background: #eafaf1; border: 1px solid #bfe8d1; border-radius: 10px;
  padding: 10px 12px; font-weight: 800; color: #14663a; font-size: 1rem; margin-bottom: 14px; }
.rescue-total b { color: #14663a; }
.rescue-fine { font-size: .72rem; color: #667; background: #f7f9fd; border-radius: 8px;
  padding: 10px 12px; margin-bottom: 14px; }
.rescue-yes { display: block; width: 100%; background: var(--green); }
.rescue-yes:hover { background: #177f45; }
.rescue-no { display: block; width: 100%; background: none; border: 0; color: #8a94a6;
  font-size: .8rem; text-decoration: underline; margin-top: 12px; cursor: pointer; padding: 6px; }

/* FREE300 keyword invite — decline path of the rescue popup only (2026-08-26) */
.free300-note { background: #f3f8ff; border: 1px solid #cfe0fb; border-left: 4px solid var(--green);
  border-radius: 10px; padding: 12px 14px; margin: 14px 0 0; font-size: .92rem; color: var(--ink); }
.free300-note[hidden] { display: none; }
.free300-note strong { color: var(--blue-dark); }
.free300-note small { display: block; margin-top: 6px; font-size: .72rem; color: #667; line-height: 1.45; }

/* ── Inline step reviews (Josh 2026-08-31) ──
   One real Google review per order-wizard step, sitting under the step's
   buttons — replaces the scrollable review section that was pulling people
   away from the form. */
.step-review-rotator{position:relative;margin-top:18px;min-height:96px}
.step-review{display:none;gap:12px;align-items:flex-start;padding:12px 14px;background:#f6f8fa;border:1px solid #e3e8ee;border-radius:12px;animation:srfade .6s ease}
.step-review.on{display:flex}
@keyframes srfade{from{opacity:0}to{opacity:1}}
.step-review img{width:44px;height:44px;border-radius:50%;object-fit:cover;flex:0 0 44px}
.step-review .sr-stars{color:#f5a623;font-size:.85rem;letter-spacing:2px}
.step-review p{margin:2px 0 4px;font-size:.92rem;font-style:italic;line-height:1.45;color:#222}
.step-review .sr-who{font-size:.78rem;color:#5b6771;font-weight:600}
