:root {
  --background: #f7faff;
  --foreground: #0b1b33;
  --card: #ffffff;
  --card-foreground: #0b1b33;
  --popover: #ffffff;
  --popover-foreground: #0b1b33;
  --primary: #1769ff;
  --primary-foreground: #ffffff;
  --secondary: #eaf2ff;
  --secondary-foreground: #0b3f9c;
  --muted: #eff4fb;
  --muted-foreground: #60708a;
  --accent: #dceaff;
  --accent-foreground: #0b3f9c;
  --destructive: #c92032;
  --border: #dce6f4;
  --input: #cfdceb;
  --ring: #1769ff;
  --radius: 0.9rem;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.visual-hero {
  position: relative;
  overflow: hidden;
  background: #edf5ff;
  border-bottom: 1px solid #dce7f5;
}

.visual-hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.visual-hero__hotspot {
  position: absolute;
  left: 4.05%;
  top: 51.55%;
  width: 21.7%;
  height: 7.2%;
  z-index: 2;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 0.7vw, 12px);
  padding: 0 clamp(12px, 1.7vw, 28px);
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1769ff 0%, #3184ff 100%);
  box-shadow: 0 12px 30px rgba(23, 105, 255, 0.34);
  color: #ffffff;
  font-size: clamp(12px, 1.22vw, 20px);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  animation: hero-button-float 2.5s ease-in-out infinite;
  transition: filter 180ms ease, box-shadow 180ms ease;
}

.visual-hero__hotspot:hover {
  filter: brightness(1.06);
  box-shadow: 0 15px 36px rgba(23, 105, 255, 0.42);
}

.visual-hero__hotspot svg {
  width: clamp(14px, 1.35vw, 21px);
  height: clamp(14px, 1.35vw, 21px);
  flex: 0 0 auto;
}

.visual-hero__hotspot:focus-visible {
  outline: 4px solid #082654;
  outline-offset: 5px;
}

.visual-hero__hotspot::before,
.visual-hero__hotspot::after,
.hero-pulse-button::before,
.hero-pulse-button::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  pointer-events: none;
  border: 2px solid rgba(46, 130, 255, 0.42);
  border-radius: inherit;
  animation: hero-button-wave 2.8s ease-out infinite;
}

.visual-hero__hotspot::after,
.hero-pulse-button::after {
  animation-delay: 1.4s;
}

.hero-pulse-button {
  position: relative;
  isolation: isolate;
  overflow: visible;
  animation: hero-button-float 2.5s ease-in-out infinite;
}

@keyframes hero-button-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes hero-button-wave {
  0% {
    opacity: 0.48;
    transform: scale(1);
  }

  78%,
  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

.hero-mobile-action {
  display: none;
  padding: 16px 20px;
  background: #ffffff;
}

.service-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(207, 220, 235, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.service-bar__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
}

.brand img {
  display: block;
  width: 176px;
  height: auto;
}

.service-bar__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0b1b33;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link:hover {
  color: #1769ff;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  border-radius: 999px;
  padding-inline: 24px;
  font-size: 16px;
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(23, 105, 255, 0.2);
}

.primary-button {
  background: linear-gradient(135deg, #1769ff, #2e82ff);
  color: #ffffff;
}

.primary-button:hover {
  background: linear-gradient(135deg, #0f59df, #1769ff);
}

.secondary-button {
  border: 1px solid #bfd4f2;
  background: #ffffff;
  color: #0b3f9c;
  box-shadow: none;
}

.section {
  padding: 88px 0;
}

.section--white {
  background: #ffffff;
}

.section--blue {
  background: linear-gradient(180deg, #edf5ff 0%, #f7faff 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #1769ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-heading h2,
.request-copy h2 {
  margin: 0;
  color: #0b1b33;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading p,
.request-copy > p {
  margin: 18px 0 0;
  color: #5b6d87;
  font-size: 18px;
}

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

.benefit-card {
  min-height: 196px;
  padding: 26px;
  border: 1px solid #dce6f4;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(23, 52, 92, 0.07);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  background: #eaf2ff;
  color: #1769ff;
}

.benefit-card h3 {
  margin: 0;
  font-size: 20px;
}

.benefit-card p {
  margin: 10px 0 0;
  color: #60708a;
}

.price-panel {
  overflow: hidden;
  border: 1px solid #d8e4f2;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(22, 57, 105, 0.09);
}

.price-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: #0b1b33;
  color: #ffffff;
}

.price-panel__top strong {
  font-size: 18px;
}

.price-panel__top span {
  color: #b9cae4;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  border-top: 1px solid #e6edf6;
}

.price-list li:first-child {
  border-top: 0;
}

.price-list strong {
  color: #0b3f9c;
  font-size: 17px;
  white-space: nowrap;
}

.price-action {
  min-height: 36px;
  padding-inline: 16px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #0b3f9c;
  box-shadow: none;
}

.price-action:hover {
  background: #d8e8ff;
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-top: 1px solid #dce6f4;
  background: #f8fbff;
}

.price-note p {
  margin: 0;
  color: #4e627e;
}

.price-note strong {
  color: #0b1b33;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: repair-step;
}

.step-card {
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid #dce6f4;
  border-radius: 22px;
  background: #ffffff;
  counter-increment: repair-step;
}

.step-card::before {
  content: "0" counter(repair-step);
  display: block;
  margin-bottom: 32px;
  color: #1769ff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin: 0;
  font-size: 19px;
}

.step-card p {
  margin: 9px 0 0;
  color: #60708a;
}

.assurance {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  background: #0b1b33;
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(7, 31, 66, 0.2);
}

.assurance h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.assurance p {
  margin: 16px 0 0;
  color: #bfd0e9;
  font-size: 17px;
}

.assurance-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurance-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.assurance-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #5fa2ff;
}

.request-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.request-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: #0b1b33;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 850;
  text-decoration: none;
}

.request-contact:hover {
  color: #1769ff;
}

.request-hours {
  margin: 8px 0 0;
  color: #60708a;
}

.lead-card {
  padding: 32px;
  border: 1px solid #d8e4f2;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(23, 52, 92, 0.09);
}

.lead-card h3 {
  margin: 0 0 24px;
  font-size: 24px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #253c5d;
  font-size: 14px;
  font-weight: 700;
}

.field-input,
.field-textarea {
  width: 100%;
  border: 1px solid #cfdceb;
  border-radius: 14px;
  background: #fbfdff;
  color: #0b1b33;
  font-size: 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-input {
  height: 52px;
  padding: 0 15px;
}

.field-textarea {
  min-height: 100px;
  padding: 13px 15px;
  resize: vertical;
}

.field-input:focus-visible,
.field-textarea:focus-visible {
  border-color: #1769ff;
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.14);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #536781;
  font-size: 14px;
}

.consent-row a {
  color: #0b5bdb;
  text-underline-offset: 2px;
}

.consent-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 6px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #a8182a;
  font-size: 14px;
}

.footer {
  padding: 38px 0 30px;
  background: #07172c;
  color: #c4d2e6;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .brand img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer .phone-link {
  color: #ffffff;
}

.footer__legal {
  display: grid;
  gap: 10px;
  padding-top: 22px;
  font-size: 14px;
}

.footer__legal p {
  margin: 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
}

.footer__links a,
.footer__link-button {
  color: #dce7f6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__link-button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.footer__links a:hover,
.footer__link-button:hover {
  color: #ffffff;
}

.modal-card {
  max-height: min(720px, calc(100vh - 32px));
  overflow-y: auto;
  border: 1px solid #dce6f4;
  border-radius: 24px;
  padding: 28px;
}

.modal-card [data-slot="dialog-title"] {
  color: #0b1b33;
  font-size: 27px;
  line-height: 1.15;
}

.modal-card [data-slot="dialog-description"] {
  color: #60708a;
  font-size: 16px;
  line-height: 1.5;
}

.success-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #e6f8ef;
  color: #087443;
}

.legal-header {
  border-bottom: 1px solid #dce6f4;
  background: #ffffff;
}

.legal-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header__back {
  color: #0b5bdb;
  font-weight: 750;
  text-decoration: none;
}

.legal-main {
  padding: 64px 0 90px;
}

.legal-document {
  max-width: 880px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid #dce6f4;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(23, 52, 92, 0.07);
}

.legal-document h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-document p,
.legal-document li {
  color: #3d526f;
}

.legal-document a {
  color: #0b5bdb;
}

.legal-document__date {
  margin: 12px 0 30px;
  color: #728199 !important;
}

.service-info__lead {
  padding: 20px;
  border-radius: 16px;
  background: #edf5ff;
  color: #1f416f !important;
  font-size: 17px;
}

@media (max-width: 980px) {
  .benefit-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .assurance,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .request-grid {
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .visual-hero__hotspot {
    display: none;
  }

  .hero-mobile-action {
    display: block;
  }

  .hero-mobile-action .primary-button {
    width: 100%;
  }

  .service-bar__inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand img {
    width: 118px;
  }

  .service-bar__actions {
    gap: 8px;
  }

  .service-bar__actions .primary-button {
    display: none;
  }

  .phone-link {
    font-size: 14px;
  }

  .phone-link svg {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading p,
  .request-copy > p {
    font-size: 16px;
  }

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

  .benefit-card {
    min-height: 0;
  }

  .price-panel__top,
  .price-note,
  .footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-list li {
    grid-template-columns: 1fr auto;
    gap: 7px 16px;
    padding: 15px 18px;
  }

  .price-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .price-panel__top,
  .price-note {
    padding-inline: 18px;
  }

  .assurance,
  .lead-card,
  .legal-document {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .legal-main {
    padding: 36px 0 64px;
  }

  .modal-card {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Standalone Beget build */
.primary-button,
.secondary-button,
.price-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.primary-button:disabled,
.secondary-button:disabled,
.price-action:disabled {
  cursor: wait;
  opacity: 0.62;
}

.primary-button svg,
.secondary-button svg,
.price-action svg {
  width: 18px;
  height: 18px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 20, 43, 0.68);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.modal .modal-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(5, 20, 43, 0.3);
}

.modal-card h2 {
  margin: 0;
  padding-right: 42px;
  color: #0b1b33;
  font-size: 27px;
  line-height: 1.15;
}

.modal-card__description {
  margin: 10px 0 22px;
  color: #60708a;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #edf4ff;
  color: #23466f;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  background: #dceaff;
}

.modal-open {
  overflow: hidden;
}

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

.status--success {
  color: #087443;
}

.legal-page {
  min-height: 100vh;
}

.legal-header .brand img {
  width: 176px;
}

@media (max-width: 720px) {
  .modal .modal-card {
    max-height: calc(100vh - 24px);
  }
}
