:root {
  --ink: #080808;
  --muted: #5f5f5f;
  --paper: #ffffff;
  --soft: #f6f6f6;
  --line: #dedede;
  --red: #f2c200;
  --red-dark: #d8aa00;
  --teal: #080808;
  --teal-dark: #080808;
  --amber: #f2c200;
  --blue: #080808;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 227, 223, 0.9);
  backdrop-filter: blur(14px);
}

.utility-bar {
  background: var(--ink);
  color: white;
  font-size: 0.88rem;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  white-space: nowrap;
  overflow: auto;
}

.utility-inner a {
  font-weight: 800;
}

.nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 248px;
}

.brand-logo {
  display: block;
  width: 248px;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
}

.site-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-menu a {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 760;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  align-items: center;
  justify-content: center;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--amber);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(242, 194, 0, 0.28);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(242, 194, 0, 0.34);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 18px;
}

.button-secondary {
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.2);
  color: white;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #263142;
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
}

.hero {
  background:
    linear-gradient(115deg, rgba(246, 246, 246, 0.98), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 88% 16%, rgba(242, 194, 0, 0.18), transparent 30%),
    var(--soft);
  padding: 76px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: 3.35rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: 2.25rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  color: #374151;
  font-size: 1.13rem;
}

.hero-actions,
.action-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 30px 0 0;
}

.trust-row div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px;
}

.trust-row dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-row dd {
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-media {
  position: relative;
}

.hero-media picture,
.hero-media > img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 240px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 16px;
  box-shadow: 0 12px 25px rgba(17, 24, 39, 0.18);
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge strong {
  font-size: 1rem;
}

.media-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-strip {
  background: var(--ink);
  color: white;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-grid a {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px;
}

.quick-grid a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-grid strong,
.quick-grid span span {
  display: block;
}

.quick-grid span span,
.quick-grid a > span:last-child {
  color: #d8dee9;
}

.quick-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: var(--ink);
  font-weight: 900;
  flex: 0 0 34px;
}

.section {
  padding: 78px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 32px;
}

.section-heading p:last-child {
  color: var(--muted);
  margin-bottom: 4px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 292px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.service-meta span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 10px;
  font-weight: 820;
}

.service-meta strong {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-more {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin-top: 14px;
}

.service-more summary {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-weight: 950;
  gap: 8px;
  padding: 0;
}

.service-more summary::marker,
.service-more summary::-webkit-details-marker {
  display: none;
  content: "";
}

.service-more summary::after {
  content: "+";
  background: var(--amber);
  border-radius: 999px;
  color: var(--ink);
  display: inline-grid;
  font-size: 0.85rem;
  height: 18px;
  place-items: center;
  width: 18px;
}

.service-more[open] summary::after {
  content: "-";
}

.service-extra {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
}

.service-extra strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.service-extra ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-extra li {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
  padding-left: 18px;
}

.service-extra li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.service-details {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
}

.service-details div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.service-details dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-details dd {
  color: var(--muted);
  font-weight: 820;
  margin: 2px 0 0;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--soft);
  color: var(--ink);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 42px;
}

.split p {
  color: var(--muted);
  max-width: 620px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
}

.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.price-line:first-child {
  padding-top: 0;
}

.price-line strong {
  white-space: nowrap;
}

.price-panel p {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 222px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 950;
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.area-band {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(242, 194, 0, 0.1)),
    #ffffff;
  border-block: 1px solid var(--line);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-list a {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 15px 16px;
  font-weight: 900;
}

.area-list a.area-wide {
  grid-column: 1 / -1;
}

.area-list a span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.area-list a:hover,
.area-list a:focus-visible {
  border-color: var(--teal);
}

.route-section {
  background: white;
}

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.route-grid p {
  max-width: 690px;
  color: var(--muted);
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.route-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 194, 0, 0.14), rgba(255, 255, 255, 0.82)),
    white;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.09);
}

.route-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.route-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 780;
}

.route-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(242, 194, 0, 0.18);
}

.reviews {
  background: var(--ink);
  color: white;
}

.reviews .eyebrow {
  color: var(--amber);
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: center;
}

.review-snippets {
  display: grid;
  gap: 14px;
}

blockquote {
  margin: 0;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

blockquote p {
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0 18px;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-section {
  padding: 78px 0;
  background: var(--ink);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.contact-section .eyebrow {
  color: var(--amber);
}

.contact-section p {
  max-width: 620px;
  color: #e5e5e5;
}

.contact-section .button {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.2);
}

.contact-section .button-secondary {
  background: white;
  color: var(--ink);
}

.relatel-widget-slot {
  margin-top: 22px;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
  font-style: normal;
}

.contact-card strong,
.contact-card span,
.contact-card a {
  display: block;
}

.contact-card strong {
  margin-bottom: 12px;
}

.contact-card a {
  margin-top: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-hero {
  background:
    linear-gradient(120deg, rgba(246, 246, 246, 0.98), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 88% 22%, rgba(242, 194, 0, 0.18), transparent 30%),
    var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 40px;
  align-items: center;
}

.faq-hero p {
  max-width: 720px;
  color: #374151;
  font-size: 1.08rem;
}

.faq-summary {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.faq-summary strong {
  margin-bottom: 2px;
  font-size: 1.08rem;
}

.faq-summary span {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.faq-toc {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}

.faq-toc strong {
  margin-bottom: 4px;
}

.faq-toc a {
  border-radius: 8px;
  color: var(--muted);
  padding: 8px 10px;
  font-weight: 850;
}

.faq-toc a:hover,
.faq-toc a:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.faq-content {
  display: grid;
  gap: 54px;
}

.faq-category {
  scroll-margin-top: 130px;
}

.faq-category .section-heading {
  margin-bottom: 18px;
}

.notice-box {
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: #fff8d6;
  color: var(--ink);
  margin: 0 0 14px;
  padding: 16px 18px;
  font-weight: 820;
}

.faq-cta {
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 28px;
}

.faq-cta p {
  color: #c7d0dd;
}

.landing-hero {
  background:
    linear-gradient(120deg, rgba(246, 246, 246, 0.98), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 86% 24%, rgba(242, 194, 0, 0.16), transparent 30%),
    var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.landing-hero p {
  max-width: 720px;
  color: #374151;
  font-size: 1.08rem;
}

.landing-proof,
.landing-side,
.landing-links {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 20px;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.landing-proof strong,
.landing-side strong,
.landing-links strong {
  font-size: 1.08rem;
}

.landing-proof span,
.landing-side span {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  font-weight: 850;
}

.landing-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.landing-side {
  position: sticky;
  top: 128px;
}

.landing-main {
  display: grid;
  gap: 28px;
}

.landing-lead {
  color: #374151;
  font-size: 1.08rem;
  font-weight: 760;
}

.landing-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.landing-info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.landing-info-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.landing-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 194, 0, 0.14), rgba(255, 255, 255, 0.88)),
    white;
  padding: 24px;
}

.landing-route p {
  color: var(--muted);
  margin-bottom: 0;
}

.landing-faq {
  display: grid;
  gap: 10px;
}

.landing-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  color: var(--teal-dark);
  font-weight: 900;
}

.landing-links a:hover,
.landing-links a:focus-visible {
  border-color: var(--teal);
  background: var(--soft);
}

.site-footer {
  background: #0b1220;
  color: white;
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 4px 0 0;
  color: #c7d0dd;
}

.footer-grid > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 900;
}

.voicebot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.voicebot button,
.voicebot input {
  font: inherit;
}

.voicebot-launcher,
.voicebot-panel {
  pointer-events: auto;
}

.voicebot.is-open .voicebot-launcher {
  display: none;
}

.voicebot-launcher {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.voicebot-launcher svg,
.voicebot button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 20px;
}

.voicebot-panel {
  width: min(390px, calc(100vw - 24px));
  max-height: min(680px, calc(100vh - 96px));
  display: grid;
  grid-template-rows: auto auto minmax(140px, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.24);
}

.voicebot-panel[hidden] {
  display: none;
}

.voicebot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink);
  color: white;
  padding: 16px;
}

.voicebot-header strong,
.voicebot-header span {
  display: block;
}

.voicebot-header span {
  color: #c7d0dd;
  font-size: 0.88rem;
}

.voicebot-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  color: white;
  cursor: pointer;
}

.voicebot-status {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 800;
}

.voicebot-status.is-listening {
  background: #fff3bf;
  color: #7a4f00;
}

.voicebot-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 14px;
}

.voice-message {
  max-width: 86%;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.94rem;
}

.voice-message.bot {
  justify-self: start;
  background: var(--soft);
  color: var(--ink);
}

.voice-message.user {
  justify-self: end;
  background: var(--amber);
  color: var(--ink);
}

.voicebot-suggestions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 12px;
}

.voicebot-suggestions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.voicebot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 12px;
}

.voicebot-form input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
}

.voicebot-send {
  width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--amber);
  color: var(--ink);
  cursor: pointer;
}

.voicebot-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px 12px;
}

.voicebot-controls button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.voicebot-controls .voicebot-mute {
  background: #eef2f7;
  color: var(--ink);
}

.voicebot-controls .voicebot-listen.is-listening {
  background: var(--amber);
  color: var(--ink);
}

@media (max-width: 900px) {
  .utility-inner {
    justify-content: flex-start;
  }

  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-menu {
    position: absolute;
    inset: 112px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .nav-shell > .button {
    justify-self: end;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid,
  .faq-hero-grid,
  .landing-hero-grid,
  .section-heading,
  .split,
  .route-grid,
  .reviews-grid,
  .faq-layout,
  .faq-page-grid,
  .landing-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-toc {
    position: static;
  }

  .landing-side {
    position: static;
  }

  .landing-info-grid {
    grid-template-columns: 1fr;
  }

  .landing-route {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-media picture,
  .hero-media > img {
    aspect-ratio: 16 / 10;
  }

  .quick-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .quick-grid a,
  .quick-grid a:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .utility-inner {
    gap: 16px;
    font-size: 0.82rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 172px;
  }

  .nav-shell {
    min-height: 68px;
    gap: 10px;
  }

  .nav-shell > .button {
    min-height: 40px;
    padding-inline: 12px;
  }

  .nav-shell > .button svg {
    display: none;
  }

  .site-menu {
    inset: 104px 12px auto 12px;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-actions,
  .contact-actions,
  .route-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-row,
  .area-list {
    grid-template-columns: 1fr;
  }

  .area-list a.area-wide {
    grid-column: auto;
  }

  .hero-media picture,
  .hero-media > img {
    aspect-ratio: 4 / 3;
  }

  .section,
  .contact-section {
    padding: 56px 0;
  }

  .service-card,
  .steps li {
    min-height: auto;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .voicebot {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .voicebot:not(.is-open) {
    left: auto;
  }

  .voicebot-launcher {
    width: 100%;
    justify-content: center;
  }

  .voicebot:not(.is-open) .voicebot-launcher {
    width: auto;
  }

  .voicebot-panel {
    width: 100%;
    max-height: calc(100vh - 84px);
  }

  .voicebot-suggestions,
  .voicebot-controls {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
