:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dbe3ee;
  --paper: #ffffff;
  --bg: #f5f7fb;
  --navy: #10223f;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --teal: #0f766e;
  --amber: #f59e0b;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0f172a;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-wrap {
  width: min(1160px, calc(100% - 40px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}
.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
}
.brand strong { display: block; color: white; font-size: 1.02rem; letter-spacing: 0; }
.brand small { display: block; color: rgba(255, 255, 255, 0.68); font-size: 0.74rem; line-height: 1.1; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-left: auto;
}
.desktop-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}
.desktop-nav a:hover { color: white; }
.header-phone {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #0f172a;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu-inner {
  width: min(100% - 28px, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 0 18px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}
.mobile-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}
.mobile-menu .mobile-menu-phone {
  color: white;
}
.mobile-menu .btn {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: white;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 0.9rem; }
.btn-wide { width: 100%; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }
.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  position: relative;
  color: white;
  background-image: url("/assets/img/hourlypro-hero.png");
  background-image: image-set(url("/assets/img/hourlypro-hero.webp") type("image/webp"), url("/assets/img/hourlypro-hero.png") type("image/png"));
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-home { padding: clamp(70px, 9vw, 104px) 0 clamp(54px, 7vw, 78px); }
.hero-service { padding: clamp(56px, 8vw, 92px) 0 clamp(48px, 6vw, 66px); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 24, 44, 0.94) 0%, rgba(16, 34, 63, 0.84) 38%, rgba(16, 34, 63, 0.36) 72%, rgba(16, 34, 63, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 24, 44, 0.25), rgba(12, 24, 44, 0.1));
}
.hero-content {
  position: relative;
  max-width: 1160px;
}
.hero-content h1 {
  max-width: 790px;
  margin: 14px 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero-service .hero-content h1 { max-width: 900px; font-size: clamp(2.1rem, 5vw, 4.1rem); }
.hero-lead {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 42px 0 0;
}
.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}
.hero-stats dt { font-size: 1.45rem; font-weight: 800; }
.hero-stats dd { margin: 2px 0 0; color: rgba(255,255,255,0.68); font-size: 0.9rem; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 800;
}
.hero .eyebrow { color: #7dd3fc; }
.section { padding: clamp(58px, 8vw, 88px) 0; background: var(--paper); }
.section-muted { background: var(--bg); }
.section-dark {
  background: linear-gradient(135deg, #101f39, #143b5b 58%, #0f766e);
  color: white;
}
.section h2, .section-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}
.section h3 { margin: 0; font-size: 1.08rem; line-height: 1.25; }
.section p { color: var(--ink-soft); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-head { margin-bottom: 34px; }
.section-lead {
  max-width: 740px;
  margin: 14px 0 0;
  font-size: 1.08rem;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: start;
}
.text-stack p:first-child { margin-top: 0; }
.text-stack a, .jetlyn-line a, .company-note a { color: var(--blue); font-weight: 800; }
.legal-content {
  max-width: 940px;
}
.legal-meta {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(37,99,235,0.08);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}
.legal-doc {
  display: grid;
  gap: 16px;
}
.legal-card {
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
}
.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}
.legal-card p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}
.legal-card li + li { margin-top: 8px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card, .related-card, .task-card, .step-card, .proof-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.service-card {
  min-height: 190px;
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}
.service-card:hover { border-color: rgba(37,99,235,0.45); transform: translateY(-2px); }
.service-card span, .related-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.related-card span {
  display: block;
  width: fit-content;
}
.related-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.step-card {
  padding: 22px;
  background: rgba(255,255,255,0.96);
}
.section-dark .step-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.step-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(37,99,235,0.12);
  color: var(--blue);
  font-weight: 800;
}
.section-dark .step-card span { background: rgba(255,255,255,0.14); color: white; }
.step-card p { margin: 10px 0 0; font-size: 0.95rem; }
.proof-list {
  display: grid;
  gap: 14px;
}
.proof-list div {
  padding: 18px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.proof-list strong { display: block; margin-bottom: 6px; }
.proof-list p { margin: 0; }
.proof-list a { color: var(--blue); font-weight: 800; text-decoration: none; }
.proof-light div {
  background: white;
  border-color: var(--line);
}
.trust-grid, .case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.trust-grid div, .case-card {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  padding: 20px;
}
.trust-grid strong, .case-card strong { display: block; margin-bottom: 6px; }
.trust-grid p, .case-card p { margin: 8px 0 0; }
.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.case-card {
  border-color: var(--line);
  background: white;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
}
.case-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-card h3 { margin-bottom: 12px; }
.case-card p { color: var(--ink-soft); }
.task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.task-card {
  padding: 18px 20px;
  color: var(--ink-soft);
  font-weight: 600;
}
.rate-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.rates {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.rates th, .rates td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.rates th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rates tr:last-child td { border-bottom: 0; }
.rate-cards { display: none; }
.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.calculator-copy h2 { margin-bottom: 16px; }
.calculator-notes {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.calculator-notes li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}
.calculator-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}
.price-calculator {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
.calculator-field {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}
.calculator-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
}
.calculator-field select:focus-visible { outline: 3px solid rgba(37,99,235,0.22); border-color: var(--blue); }
.price-calculator fieldset { margin: 24px 0 0; padding: 0; border: 0; }
.price-calculator legend,
.calculator-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 800;
}
.calculator-field { display: grid; justify-content: stretch; }
.calculator-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.calculator-options label { min-width: 0; cursor: pointer; }
.calculator-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calculator-options span {
  display: grid;
  min-height: 78px;
  place-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-align: center;
  font-weight: 800;
}
.calculator-options small { display: block; margin-top: 4px; color: var(--muted); font-size: 0.72rem; line-height: 1.25; font-weight: 600; }
.calculator-options input:checked + span {
  border-color: var(--blue);
  background: rgba(37,99,235,0.08);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.calculator-options input:focus-visible + span { outline: 3px solid rgba(37,99,235,0.25); outline-offset: 2px; }
.calculator-result {
  display: grid;
  gap: 5px;
  margin: 26px 0 18px;
  padding: 20px;
  border-left: 4px solid var(--teal);
  background: var(--bg);
}
.calculator-result > span { color: var(--muted); font-size: 0.86rem; font-weight: 700; }
.calculator-result > strong { color: var(--ink); font-size: 2rem; line-height: 1.1; }
.calculator-result small { color: var(--ink-soft); }
.calculator-result-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.calculator-result-meta div { min-width: 0; }
.calculator-result-meta span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.calculator-result-meta strong { display: block; color: var(--ink); font-size: 0.88rem; line-height: 1.35; overflow-wrap: anywhere; }
.calculator-includes { margin: 14px 0 0; color: var(--ink-soft); font-size: 0.86rem; line-height: 1.5; }
.calculator-includes span { color: var(--ink); font-weight: 800; }
.calculator-includes strong { color: var(--ink-soft); font-weight: 600; }
.calculator-reassurance { margin: 12px 0 0; color: var(--teal); font-size: 0.82rem; text-align: center; font-weight: 750; }
.calculator-disclaimer { margin: 12px 0 0; color: var(--muted); font-size: 0.78rem; text-align: center; }
.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.intent-card {
  display: block;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
}
.intent-card:hover { border-color: rgba(37,99,235,0.45); transform: translateY(-2px); }
.intent-card > span { display: block; margin-bottom: 12px; color: var(--teal); font-size: 0.76rem; font-weight: 800; text-transform: uppercase; }
.intent-card p { min-height: 76px; margin: 10px 0 16px; }
.intent-card > strong { color: var(--blue); font-size: 0.9rem; }
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.confidence-grid > div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}
.confidence-grid strong { display: block; margin-bottom: 8px; }
.confidence-grid p { margin: 0; }
.confidence-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,0.06);
}
.compact-lead-form textarea { min-height: 105px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.related-card {
  display: block;
  min-width: 0;
  padding: 18px;
  text-decoration: none;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0 20px;
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}
.faq-list p {
  margin: -4px 0 18px;
  color: var(--ink-soft);
}
.contact-band {
  padding: clamp(58px, 8vw, 88px) 0;
  background: #0f172a;
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}
.contact-band h2 { color: white; }
.contact-band .section-lead, .contact-band p { color: rgba(255,255,255,0.72); }
.contact-lines {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}
.contact-lines a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.lead-form {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.lead-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 700;
}
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.lead-form textarea { resize: vertical; min-height: 120px; }
.consent-line {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  margin: 2px 0 16px !important;
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.84rem !important;
  line-height: 1.4;
}
.consent-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}
.consent-line a { color: white; font-weight: 800; }
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status { min-height: 24px; margin: 12px 0 0; font-weight: 800; }
.form-status.ok { color: #86efac; }
.form-status.error { color: #fecaca; }
.form-note { margin: 10px 0 0; font-size: 0.82rem; }
.form-note a { color: white; font-weight: 800; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}
.breadcrumbs a { color: white; text-decoration: none; font-weight: 700; }
.site-footer {
  background: #08111f;
  color: white;
  padding: 54px 0 26px;
}
.footer-grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 34px;
}
.brand-footer { color: white; }
.site-footer h2 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.footer-subhead { margin-top: 22px !important; }
.site-footer p, .site-footer a, .site-footer li {
  color: rgba(255,255,255,0.68);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: white; }
.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.48);
  font-size: 0.9rem;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 50;
  padding: 0 18px;
}
.cookie-notice.is-hidden {
  display: none;
}
.cookie-notice-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.98);
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.22);
}
.cookie-notice p {
  flex: 1 1 auto;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}
.cookie-notice strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}
.cookie-notice a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}
.cookie-notice a:hover {
  color: var(--blue-dark);
}
.cookie-btn {
  flex: 0 0 auto;
  box-shadow: none;
}

@media (max-width: 980px) {
  .desktop-nav, .header-phone, .nav-wrap > .btn { display: none; }
  .mobile-menu-toggle { display: grid; }
  .nav-wrap { width: min(100% - 28px, 1160px); gap: 14px; }
  .split, .contact-grid, .calculator-layout { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid, .related-grid, .trust-grid, .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intent-grid, .confidence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .section-inner, .footer-grid, .footer-bottom { width: min(100% - 28px, 1160px); }
  .site-header { position: static; }
  .nav-wrap { height: 62px; }
  .brand small { display: none; }
  .brand-logo { width: 38px; height: 38px; }
  .btn-small { min-height: 38px; padding: 0 12px; font-size: 0.84rem; }
  .mobile-menu-inner { grid-template-columns: 1fr; }
  .hero-home, .hero-service { padding: 56px 0 46px; }
  .hero-content h1 { font-size: clamp(2.05rem, 12vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .rate-wrap { display: none; }
  .rate-cards { display: grid; gap: 12px; }
  .rate-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
  }
  .rate-card span { display: block; color: var(--teal); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
  .rate-card strong { display: block; margin: 8px 0; color: var(--ink); font-size: 1.35rem; }
  .rate-card p { margin: 0; }
  .calculator-options { grid-template-columns: 1fr; }
  .calculator-options span { min-height: 58px; grid-template-columns: minmax(0, 1fr) auto; align-items: center; justify-content: space-between; text-align: left; }
  .calculator-options small { max-width: 145px; margin: 0; text-align: right; }
  .calculator-result > strong { font-size: 1.65rem; }
  .calculator-result-meta { grid-template-columns: 1fr; }
  .intent-grid, .confidence-grid { grid-template-columns: 1fr; }
  .intent-card p { min-height: 0; }
  .hero-stats, .service-grid, .task-grid, .steps-grid, .related-grid, .trust-grid, .case-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .lead-form { padding: 18px; }
  .cookie-notice {
    bottom: 12px;
    padding: 0 12px;
  }
  .cookie-notice-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }
  .cookie-btn {
    width: 100%;
  }
}