/* NerdHelpDesk, shared styles */
:root {
  --cyan: #00CEFF;
  --cyan-bright: #5CFFF7;
  --cyan-deep: #0C98ED;
  --blue: #0C98ED;
  --blue-deep: #0A7BC4;
  --cobalt: #0C3767;
  --slate-950: #071E3A;
  --slate-900: #0C3767;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.14);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem; /* ~17px, easier for office managers */
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
.bear-card img, .split-visual img { width: 100%; max-width: 340px; height: auto; margin-inline: auto; }
a { color: var(--blue-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--cyan-deep); }
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--cyan); color: var(--slate-950);
  padding: .75rem 1rem; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Top bar */

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--slate-900); font-weight: 800;
  letter-spacing: -0.02em; font-size: 1.15rem;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span { display: inline-block; }
.brand .help { color: var(--blue); }

.nav-toggle {
  display: none; background: var(--slate-100); border: 1px solid var(--slate-200);
  border-radius: 10px; padding: .55rem .7rem; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--slate-800);
  margin: 5px 0; border-radius: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: .15rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none; color: var(--slate-700); font-weight: 600;
  font-size: .95rem; padding: .55rem .8rem; border-radius: 10px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  background: var(--slate-100); color: var(--slate-950);
}
.nav-cta { display: flex; align-items: center; gap: .6rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-weight: 700; font-size: .95rem; border-radius: 999px;
  padding: .75rem 1.25rem; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: .18s ease;
  line-height: 1.2;
  text-transform: none; /* keep title case, not all-caps */
  letter-spacing: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; box-shadow: 0 8px 20px rgba(12,55,103,.28);
}
.btn-primary:hover { filter: brightness(1.05); color: white; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: white; border-color: rgba(255,255,255,.45);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); color: white; }
.btn-outline {
  background: white; color: var(--blue-deep); border-color: var(--slate-200);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue-deep); }
.btn-ghost {
  background: rgba(255,255,255,.1); color: white; border-color: transparent;
}
.btn-call {
  background: var(--slate-900); color: white;
}
.btn-call:hover { background: var(--slate-800); color: white; }
.btn-lg { padding: .95rem 1.55rem; font-size: 1.05rem; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(0,198,224,.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(37,99,235,.28), transparent 50%),
    linear-gradient(160deg, var(--slate-950), #0f1b33 50%, #122445);
  color: white; overflow: hidden;
  padding: 4.5rem 0 4rem;
}
.hero-grid {
  display: grid; grid-template-columns: 1.25fr .85fr; gap: 2.5rem; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: var(--cyan-bright); font-weight: 700; font-size: .85rem;
  padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  line-height: 1.12; letter-spacing: -0.03em; margin: 0 0 1rem;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--cyan-bright), #93c5fd);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: 1.15rem; color: var(--slate-300); max-width: 36rem; margin: 0 0 1.75rem;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: .65rem;
}
.trust-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: .45rem .85rem; font-size: .85rem; color: var(--slate-200);
  font-weight: 600;
}
.hero-visual {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.bear-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.bear-card img {
  width: min(280px, 100%); margin: 0 auto 1rem; filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
}
.bear-card figcaption {
  color: var(--slate-300); font-size: .92rem; margin: 0;
}
.bear-card strong { color: white; }

/* Sections */
section { padding: 4rem 0; }
.section-muted { background: var(--slate-50); }
.section-dark {
  background: linear-gradient(160deg, var(--slate-950), #13213d);
  color: white;
}
.section-head { max-width: 42rem; margin-bottom: 2.25rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker {
  color: var(--blue-deep); font-weight: 800; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em; margin: 0 0 .5rem;
}
.section-dark .section-kicker { color: var(--cyan-bright); }
h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.2; margin: 0 0 .75rem; color: var(--slate-900);
}
.section-dark h2 { color: white; }
.lead { font-size: 1.1rem; color: var(--slate-600); margin: 0; max-width: 68ch; line-height: 1.6; }
.section-dark .lead { color: var(--slate-300); }

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
/* Four service cards: 2×2 on desktop (readable lists); still collapses via media queries */
.cards.cards-4 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow); transition: .2s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #bae6fd; }
.card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(0,198,224,.2), rgba(37,99,235,.18));
  color: var(--blue-deep);
  flex-shrink: 0;
}
.card-icon .icon-svg {
  width: 40px; height: 40px; display: block;
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: .85rem;
  background: linear-gradient(135deg, rgba(0,198,224,.18), rgba(37,99,235,.15));
  color: var(--blue-deep);
}
.feature-icon .icon-svg {
  width: 32px; height: 32px; display: block;
}
.card h3 { margin: 0 0 .55rem; font-size: 1.2rem; color: var(--slate-900); }
.card p { margin: 0 0 1rem; color: var(--slate-600); line-height: 1.55; }
.card ul { margin: 0 0 1.1rem; padding-left: 1.1rem; color: var(--slate-600); }
.card li { margin: .35rem 0; }
.card-link { font-weight: 700; text-decoration: none; color: var(--blue-deep); }
.card-link:hover { color: var(--cyan-deep); }

.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.feature {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.25rem 1.35rem;
  height: 100%;
}
.features { align-items: stretch; }
.feature h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--slate-600); font-size: .98rem; line-height: 1.55; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.split-visual {
  background: linear-gradient(145deg, #0b1b33, #122445);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center;
}
.split-visual figcaption { color: var(--slate-300) !important; }
.split-visual img { margin: 0 auto 1rem; max-width: 320px; }
.split-visual figcaption { color: var(--slate-600); margin: 0; }

.cta-band {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,198,224,.25), transparent 50%),
    linear-gradient(120deg, var(--slate-950), #163064);
  color: white; padding: 3.5rem 0; text-align: center;
}
.cta-band h2 { color: white; margin-bottom: .75rem; }
.cta-band p { color: var(--slate-300); max-width: 36rem; margin: 0 auto 1.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* FAQ */
.faq-list { display: grid; gap: .75rem; max-width: 48rem; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.15rem; font-weight: 700; color: var(--slate-900);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--blue); font-size: 1.25rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 1.15rem 1.15rem; color: var(--slate-600); line-height: 1.6; max-width: 70ch; }

/* Forms */
.form-card {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .35rem; color: var(--slate-800); }
input, textarea, select {
  width: 100%; border: 1px solid var(--slate-300); border-radius: 10px;
  padding: .75rem .9rem; font: inherit; background: white; color: var(--slate-900);
}
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(0,198,224,.35); border-color: var(--cyan-deep);
}
.form-note { font-size: .9rem; color: var(--slate-500); margin-top: .75rem; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: start;
}
.contact-list { display: grid; gap: 1rem; }
.contact-item {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.15rem 1.25rem;
}
.contact-item h3, .contact-title { margin: 0 0 .35rem; font-size: 1rem; font-weight: 700; color: var(--slate-900); }
.contact-item a { font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.contact-item p { margin: .35rem 0 0; color: var(--slate-600); font-size: .92rem; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0 0; font-size: .9rem; color: var(--slate-500);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumbs a { color: var(--slate-600); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .4rem; color: var(--slate-400); }

.page-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, var(--slate-50), white);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em; margin: .5rem 0 .75rem; color: var(--slate-950);
  line-height: 1.15;
}
.page-hero .lead { max-width: 42rem; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.step {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.35rem; position: relative;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white; display: grid; place-items: center; font-weight: 800; margin-bottom: .85rem;
}
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.area-chip {
  background: white; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; font-weight: 700; color: var(--slate-800);
}
.area-chip span { display: block; font-weight: 500; color: var(--slate-500); font-size: .9rem; margin-top: .25rem; }

.pricing-note {
  background: #ecfeff; border: 1px solid #a5f3fc; border-radius: var(--radius);
  padding: 1.15rem 1.25rem; color: var(--slate-700);
}

/* Equal-height service cards so bottoms (links) line up */
.cards { align-items: stretch; }
.card > ul { flex: 1 1 auto; }
.card > .card-link { margin-top: auto; padding-top: .35rem; }

/* Note under cards: one cyan clarify + plain also-line (not a second banner) */
.after-cards {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  text-align: center;
}
.after-cards .pricing-note {
  margin: 0;
  text-align: center;
  line-height: 1.55;
}
.after-cards .pricing-note a {
  font-weight: 600;
  white-space: nowrap;
}
.after-cards .also-under {
  margin: .85rem auto 0;
  max-width: 36rem;
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.55;
}
.after-cards .also-under a {
  font-weight: 600;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  background: var(--slate-950); color: var(--slate-300); padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: .65rem; margin-bottom: .85rem; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand strong { color: white; font-size: 1.1rem; }
.site-footer h4 { color: white; margin: 0 0 .85rem; font-size: .95rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: .4rem 0; }
.site-footer a { color: var(--slate-300); text-decoration: none; }
.site-footer a:hover { color: var(--cyan-bright); }
.footer-nap { font-style: normal; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: space-between; font-size: .88rem; color: var(--slate-500);
}

/* 404 */
.error-page { text-align: center; padding: 5rem 0; }
.error-page .code {
  font-size: 5rem; font-weight: 900; letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0;
}

@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards, .features, .steps, .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { gap: 1.5rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
  .nav-row { flex-wrap: wrap; position: relative; }
  .nav-links, .nav-cta { display: none; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    order: 3; flex: 1 1 100%;
    background: white; border-top: 1px solid var(--slate-200);
    padding: .5rem 0 .25rem; gap: .15rem;
  }
  .site-header.is-open .nav-links a { padding: .85rem .9rem; min-height: 44px; }
  .site-header.is-open .nav-cta {
    display: flex; flex-direction: column; order: 4; flex: 1 1 100%;
    background: white; padding: .35rem 0 1rem; gap: .55rem;
    border-bottom: 1px solid var(--slate-200);
  }
  .site-header.is-open .nav-cta .btn { width: 100%; min-height: 44px; }
}
@media (max-width: 760px) {
  .cards, .cards.cards-4, .features, .steps, .areas-grid, .form-row { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; min-height: 48px; }
  .brand span { font-size: 1.05rem; }
}

/* Pricing calculator */
.calc-wrap {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; align-items: start;
}
.calc-card, .calc-summary {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 1.35rem 1.45rem; box-shadow: var(--shadow);
}
.calc-presets {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; margin: 1rem 0 1.25rem;
}
.calc-preset {
  background: var(--slate-50); border: 1px solid var(--slate-200);
  border-radius: 12px; padding: .85rem .7rem; cursor: pointer; text-align: center;
  font: inherit; font-weight: 700; color: var(--slate-800); transition: .15s ease;
}
.calc-preset:hover { border-color: var(--cyan); background: #ecfeff; }
.calc-preset.is-active {
  border-color: var(--blue); background: linear-gradient(135deg, rgba(0,206,255,.12), rgba(12,152,237,.12));
  box-shadow: 0 0 0 2px rgba(12,152,237,.18);
}
.calc-preset small { display: block; font-weight: 500; color: var(--slate-500); margin-top: .25rem; font-size: .8rem; }
.calc-row {
  display: grid; grid-template-columns: 1fr auto; gap: .75rem 1rem; align-items: center;
  padding: .9rem 0; border-top: 1px solid var(--slate-100);
}
.calc-row:first-of-type { border-top: 0; }
.calc-row h3 { margin: 0; font-size: 1rem; color: var(--slate-900); }
.calc-row .rate { color: var(--slate-500); font-size: .9rem; margin: .15rem 0 0; }
.calc-qty {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 999px; padding: .25rem;
}
.calc-qty button {
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: white; color: var(--slate-900); font-weight: 800; font-size: 1.15rem;
  cursor: pointer; box-shadow: 0 1px 2px rgba(15,23,42,.08);
}
.calc-qty button:hover { background: var(--cyan-bright); }
.calc-qty input {
  width: 3.2rem; text-align: center; border: 0; background: transparent;
  font-weight: 800; font-size: 1.05rem; padding: .25rem 0;
}
.calc-summary h3 { margin: 0 0 1rem; font-size: 1.15rem; }
.calc-line {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .45rem 0; color: var(--slate-600); font-size: .95rem;
  border-bottom: 1px dashed var(--slate-200);
}
.calc-line strong { color: var(--slate-900); font-variant-numeric: tabular-nums; }
.calc-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 1rem; padding-top: .85rem; border-top: 2px solid var(--slate-200);
  font-size: 1.15rem; font-weight: 800; color: var(--slate-950);
}
.calc-total .amount {
  font-size: 1.75rem;
  background: linear-gradient(90deg, var(--cyan-deep), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.calc-disclaimer {
  margin-top: 1rem; padding: .9rem 1rem;
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 12px;
  color: #9a3412; font-size: .9rem;
}
.calc-disclaimer strong { color: #7c2d12; }
.calc-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.1rem; }
.price-teaser {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; margin: 1.25rem 0;
}
.price-chip {
  background: white; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1rem 1.1rem; text-align: center;
  display: flex; flex-direction: column; justify-content: center; min-height: 6.5rem;
}
.price-chip .amt {
  display: block; font-size: 1.45rem; font-weight: 800; color: var(--slate-950);
  letter-spacing: -0.02em;
}
.price-chip .amt span { font-size: .85rem; font-weight: 600; color: var(--slate-500); }
.price-chip .lbl { display: block; margin-top: .25rem; color: var(--slate-600); font-size: .88rem; font-weight: 600; }
.hero-visual .bear-card img { width: min(340px, 100%); }
@media (min-width: 961px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
}

@media (max-width: 960px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-presets, .price-teaser { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .calc-presets, .price-teaser { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }
}

/* Layout safety + sticky estimate */
body { overflow-x: clip; }
.hero-grid, .split, .calc-wrap, .contact-grid { min-width: 0; }
.hero-visual, .bear-card, .split-visual { max-width: 100%; }
.btn { min-height: 44px; }
.calc-summary { position: sticky; top: calc(var(--header-h) + .75rem); }
@media (max-width: 960px) {
  .calc-summary { position: static; }
}
@media (max-width: 760px) {
  .price-teaser { grid-template-columns: 1fr 1fr; }
  .calc-total .amount { font-size: 1.5rem; }
  .split p .btn { margin: .35rem .5rem .35rem 0 !important; display: inline-flex; }
}

.btn-row { display: flex; flex-wrap: wrap; gap: .65rem; align-items: center; }
.btn-row .btn { margin: 0 !important; }
.split > div, .split > figure { min-width: 0; max-width: 100%; }


/* Readable emphasis for prices / key facts */
strong, b { font-weight: 750; color: var(--slate-900); }
.hero strong, .cta-band strong, .section-dark strong { color: inherit; }
.calc-disclaimer strong, .pricing-note strong { font-weight: 800; }


/* Services cards with "What's Included" keep link at bottom */
.card > h4 { margin-top: .15rem; }
.card > .card-link { margin-top: auto; }


.teaser-footnote {
  max-width: 40rem;
  margin: 1.15rem auto 0;
  text-align: center;
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.55;
}
.teaser-footnote a { font-weight: 600; }


.contact-solo {
  max-width: 36rem;
  margin: 0 auto;
}
.contact-solo .contact-list { gap: 1.1rem; }


/* Honeypot: hidden from people, bots often fill it */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-card { position: relative; }


/* Service area coverage map (Google Maps JS) */
.coverage-map-block { margin: 2.75rem 0 2rem; }
.map-shell {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--slate-50);
}
.map-legend {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin: 1rem 0 0;
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.5;
  max-width: 46rem;
}
.map-swatch {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .2rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.35);
  border: 2px solid #0ea5e9;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.15rem;
}
#service-area-map {
  width: 100%;
  height: 420px;
}
.map-status {
  margin: .75rem 0 0;
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.5;
  max-width: 46rem;
}
.map-status.is-error { color: #b45309; }
@media (max-width: 700px) {
  #service-area-map { height: 320px; }
}
