:root {
  --blue: #075cff;
  --blue-strong: #0047cc;
  --blue-soft: #e9f1ff;
  --ink: #05070b;
  --ink-soft: #1b2433;
  --muted: #687386;
  --line: #d9e1ef;
  --surface: #ffffff;
  --surface-soft: #f6f9ff;
  --shadow: 0 24px 70px rgba(6, 26, 69, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
p,
a,
span,
strong {
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  max-width: calc(100vw - 40px);
  margin: 0 auto;
  box-sizing: border-box;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(5, 7, 11, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 40px), 1240px);
  min-height: 64px;
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 188px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(7, 92, 255, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  background: var(--blue-strong);
}

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

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 34px rgba(5, 7, 11, 0.08);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #a9c8ff;
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 150px 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(5, 7, 11, 0.88) 0%, rgba(5, 7, 11, 0.66) 46%, rgba(5, 7, 11, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.55), rgba(5, 7, 11, 0.08));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 46px;
  align-items: end;
}

.hero-grid > *,
.strip-grid > *,
.service-card,
.review-card,
.location-card,
.checkout-card,
.summary-card,
.booking-form,
.company-panel > *,
.footer-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
  padding: 70px 0 22px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .kicker,
.companies .kicker {
  color: #9cc0ff;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bento-card {
  min-height: 168px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.bento-card h2 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.05;
}

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

.bento-focus {
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(7, 92, 255, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #edf4ff 100%);
}

.bento-focus span {
  width: max-content;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bento-card img {
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  margin: -24px;
  object-fit: cover;
}

.bento-blue {
  background: var(--blue);
  color: #fff;
}

.bento-blue p,
.bento-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.bento-dark {
  background: var(--ink);
  color: #fff;
}

.rating {
  margin-bottom: 16px;
  color: #fff;
  font-size: 20px;
}

.review-card .rating {
  color: var(--blue);
}

.quality-strip {
  background: var(--ink);
  color: #fff;
}

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

.strip-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.strip-title {
  color: #fff !important;
  font-weight: 800;
}

.strip-grid a {
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid var(--blue);
}

.section {
  padding: 104px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head h2,
.why-copy h2,
.process-copy h2,
.booking-copy h2,
.company-panel h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p:last-child,
.why-copy p,
.process-copy p,
.booking-copy p,
.company-panel p {
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: var(--surface-soft);
}

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

.service-card {
  min-height: 470px;
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(6, 26, 69, 0.08);
}

.service-card-large {
  grid-column: span 2;
}

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

.service-card img.image-display {
  object-position: center 52%;
}

.service-card img.image-store {
  object-position: center 46%;
}

.service-card img.image-cases {
  object-position: center 50%;
}

.service-card img.image-diagnosis {
  object-position: center 52%;
}

.service-card img.image-quick {
  object-position: center 56%;
}

.service-card img.image-software {
  object-position: center 42%;
}

.service-card img.image-advice {
  object-position: center 42%;
}

.service-card div {
  padding: 24px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue);
}

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

.service-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.15;
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 8px;
}

.service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.why {
  background: #fff;
}

.why-grid,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 118px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric-grid article {
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.metric-grid article:nth-child(2),
.metric-grid article:nth-child(3) {
  background: var(--blue);
}

.metric-grid strong {
  display: block;
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.reviews {
  overflow: hidden;
  background: var(--surface-soft);
}

.review-shell {
  position: relative;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 44px rgba(6, 26, 69, 0.08);
}

.review-card p {
  color: var(--ink-soft);
  font-size: 17px;
}

.review-card footer {
  display: grid;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card span {
  color: var(--muted);
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.review-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.review-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.locations {
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.location-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-card {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 92, 255, 0.92), rgba(5, 7, 11, 0.95)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 14px);
  color: #fff;
}

.map-card span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
}

.map-card strong {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.05;
}

.map-card small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.location-body {
  padding: 28px;
}

.location-body h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.1;
}

address {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-style: normal;
}

.hours {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--muted);
}

.hours strong {
  color: var(--ink);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-card .button-light {
  border-color: var(--line);
}

.process {
  background: var(--ink);
  color: #fff;
}

.process-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.step-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.step-list span {
  display: block;
  margin-bottom: 28px;
  color: #9cc0ff;
  font-weight: 900;
}

.step-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.step-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.price-calculator {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.price-calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 22px;
  align-items: start;
}

.calculator-main {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.checkout-card,
.summary-card,
.booking-form {
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.summary-card {
  position: sticky;
  top: 96px;
  align-self: start;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 16px 0 4px;
  color: var(--ink);
  font-size: 56px;
  font-weight: 1000;
  line-height: 0.95;
  letter-spacing: 0;
}

.price small {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 20px;
}

.price-note {
  color: var(--muted);
  font-size: 14px;
}

.summary {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.summary .summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  animation: summaryIn 220ms ease both;
}

.summary strong {
  max-width: 58%;
  color: var(--ink);
  text-align: right;
}

.summary .total-row {
  align-items: center;
  border: 0;
  border-radius: 16px;
  padding: 14px;
  background: #f3f7ff;
}

.summary .total-row strong {
  color: var(--blue-strong);
  font-size: 18px;
}

@keyframes summaryIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 2px;
}

.progress-step {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.progress-step span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--blue);
}

.progress-step.is-active {
  border-color: #bcd4ff;
  background: var(--blue-soft);
  color: var(--blue-strong);
  box-shadow: 0 12px 26px rgba(7, 92, 255, 0.09);
}

.progress-step.is-active span {
  background: var(--blue);
  color: #fff;
}

.progress-step:hover,
.progress-step:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.step-panel {
  display: none;
}

.step-panel.is-active {
  display: grid;
  gap: 18px;
  animation: fadeUp 240ms ease both;
}

.step-head {
  display: grid;
  gap: 8px;
}

.step-head span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-head h3 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.05;
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

label span {
  font-size: 14px;
}

.field-label.required::after {
  content: " *";
  color: var(--blue);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 92, 255, 0.12);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid,
.custom-select.is-invalid .custom-select-trigger {
  border-color: #e59aa7;
  background-color: #fff8f9;
}

.field-error {
  color: #9a1c1c;
  font-size: 13px;
  font-weight: 700;
}

.custom-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  z-index: 4;
}

.custom-select.is-open {
  z-index: 40;
}

.custom-select-trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.custom-select-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select:not(.has-value) .custom-select-label,
.custom-select.is-disabled .custom-select-label {
  color: var(--muted);
}

.custom-select.is-disabled .custom-select-trigger {
  cursor: not-allowed;
  opacity: 0.62;
}

.custom-select-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: var(--blue);
  clip-path: polygon(20% 35%, 50% 65%, 80% 35%, 90% 45%, 50% 85%, 10% 45%);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-trigger:hover,
.custom-select-trigger:focus-visible,
.custom-select.is-open .custom-select-trigger {
  border-color: #9cc0ff;
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(7, 92, 255, 0.1);
  outline: none;
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  max-height: 270px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(188, 212, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(6, 26, 69, 0.16);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.custom-select-option {
  width: 100%;
  display: block;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  outline: none;
  background: var(--blue-soft);
}

.custom-select-option.is-active {
  background: #dce9ff;
  color: var(--blue-strong);
  font-weight: 800;
}

.custom-select-option.is-placeholder {
  color: var(--muted);
}

.custom-select-option:disabled {
  cursor: not-allowed;
  color: #a2adbf;
  background: transparent;
}

.option-panel,
.repair-info,
.info-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #d8e6ff;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
  color: var(--ink-soft);
  animation: fadeUp 260ms ease both;
}

.option-panel strong,
.info-card strong {
  color: var(--ink);
  font-size: 17px;
}

.option-panel p,
.repair-info p,
.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.dynamic-fields {
  display: grid;
  gap: 14px;
  animation: fadeUp 260ms ease both;
}

.inline-actions,
.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.step-actions {
  justify-content: flex-end;
  margin-top: 4px;
}

.inline-actions .button,
.step-actions .button {
  min-height: 44px;
}

.inline-actions .button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 92, 255, 0.2);
}

.check-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--ink-soft);
}

.check-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--blue);
}

.check-line input[required] + span::after {
  content: " *";
  color: var(--blue);
  font-weight: 900;
}

.availability-status {
  padding: 12px 14px;
  border: 1px solid #cfe0ff;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.availability-status.is-muted {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--muted);
}

.availability-status.is-error {
  border-color: #e59aa7;
  background: #fff8f9;
  color: #9a1c1c;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.check-line .field-error {
  grid-column: 2;
}

.form-error,
.form-success {
  padding: 14px 16px;
  border-radius: 6px;
}

.form-error {
  background: #fff0f0;
  color: #9a1c1c;
}

.form-success {
  background: var(--blue-soft);
  color: var(--ink);
}

.is-hidden {
  display: none !important;
}

.booking {
  background: #fff;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.booking-copy {
  display: grid;
  align-content: start;
}

.booking-copy .kicker {
  color: #cfe0ff;
}

.booking-copy h2 {
  margin-bottom: 18px;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.booking-steps div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.booking-steps span {
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 900;
}

.booking-steps strong {
  font-size: 18px;
}

.booking-steps p {
  margin-bottom: 0;
  font-size: 15px;
}

.appointment-summary {
  position: static;
  margin-top: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(0, 34, 117, 0.18);
}

.appointment-summary .summary {
  margin-top: 8px;
}

.booking-form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 20px 52px rgba(0, 34, 117, 0.2);
}

.companies {
  padding-top: 0;
  background: var(--surface-soft);
}

.company-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
}

.company-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.company-panel h2 {
  margin-bottom: 0;
}

.faq {
  background: #fff;
}

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

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  transition: transform 220ms ease;
}

details[open] summary::after {
  content: "−";
}

.faq-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 260ms ease, opacity 220ms ease;
}

details[open] {
  border-color: #bcd4ff;
  box-shadow: 0 14px 34px rgba(7, 92, 255, 0.08);
}

details[open] .faq-panel {
  opacity: 1;
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 0.9fr;
  gap: 34px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 20px;
  filter: invert(1);
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 16px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: revealIn 650ms ease both;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 40px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-bento {
    max-width: 720px;
  }

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

  .location-card {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 220px;
  }
}

@media (max-width: 860px) {
  .container,
  .header-inner {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 10px;
  }

  .brand img {
    width: 150px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 0 48px;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 7, 11, 0.82) 0%, rgba(5, 7, 11, 0.62) 56%, rgba(5, 7, 11, 0.82) 100%);
  }

  h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-bento,
  .metric-grid,
  .step-list,
  .location-grid,
  .field-row,
  .why-grid,
  .process-grid,
  .price-calculator-layout,
  .booking-grid,
  .faq-grid,
  .company-panel,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .hero-bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card {
    min-height: 150px;
  }

  .strip-grid {
    padding: 22px 0;
  }

  .section {
    padding: 74px 0;
  }

  .section-head h2,
  .why-copy h2,
  .process-copy h2,
  .booking-copy h2,
  .company-panel h2 {
    font-size: 36px;
  }

  .why-copy,
  .summary-card {
    position: static;
  }

  .booking-grid {
    padding: 28px;
  }

  .review-track {
    grid-auto-columns: min(84vw, 390px);
  }

  .service-card-large {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container,
  .header-inner {
    width: auto !important;
    max-width: none !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }

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

  .hero {
    padding-bottom: 32px;
  }

  .hero-bento {
    grid-template-columns: 1fr;
  }

  .progress {
    grid-template-columns: 1fr;
  }

  .progress-step {
    justify-content: flex-start;
  }

  .bento-card {
    min-height: 112px;
    padding: 16px;
  }

  .bento-card:nth-child(1) {
    grid-column: auto;
  }

  .bento-card:nth-child(2) {
    display: none;
  }

  .bento-card h2 {
    font-size: 22px;
  }

  .bento-card p {
    font-size: 14px;
  }

  .rating {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .summary-row {
    flex-direction: column;
    gap: 3px;
  }

  .summary-row strong {
    max-width: none;
    text-align: left;
  }

  .step-actions,
  .inline-actions {
    flex-direction: column;
  }

  h1 {
    font-size: 33px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 16px;
  }

  .section-head h2,
  .why-copy h2,
  .process-copy h2,
  .booking-copy h2,
  .company-panel h2 {
    font-size: 31px;
  }

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

  .price {
    font-size: 42px;
  }
}
