:root {
  color-scheme: light;
  --page: #f4f8fc;
  --page-soft: #eef5fb;
  --surface: #ffffff;
  --surface-blue: #eaf4fc;
  --surface-deep: #0b2744;
  --ink: #10243c;
  --heading: #0c2b51;
  --muted: #5b6f84;
  --line: #d7e3ed;
  --line-strong: #bdd4e7;
  --blue: #1264bc;
  --blue-dark: #0c3f77;
  --blue-light: #58a7e8;
  --cyan: #168da8;
  --yellow: #ffd43b;
  --yellow-dark: #e7ad00;
  --red: #e83e3a;
  --green: #13855d;
  --shadow-sm: 0 10px 28px rgba(29, 83, 128, .08);
  --shadow: 0 24px 64px rgba(25, 74, 114, .13);
  --radius: 20px;
  --radius-sm: 13px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 4%, rgba(79, 161, 227, .12), transparent 24rem),
    linear-gradient(180deg, #fff 0, var(--page) 48%, #fff 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  width: 1em;
  height: 1em;
}

.svg-sprite {
  position: absolute;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 9px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(198, 218, 234, .8);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  gap: 9px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
}

.brand-mark img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.brand-copy strong {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.brand-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-blue);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 3px;
}

.nav a {
  min-height: 44px;
  padding: 11px 10px;
  color: #334c66;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
  background: var(--surface-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.phone-compact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--heading);
}

.phone-compact > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--blue);
  border-radius: 10px;
  background: var(--surface-blue);
}

.phone-compact span,
.phone-compact strong,
.phone-compact small {
  display: block;
}

.phone-compact strong {
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
}

.phone-compact small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--blue-dark);
  background: #fff;
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #1772cc, #0d54a3);
  box-shadow: 0 12px 28px rgba(18, 100, 188, .23);
}

.button-primary:hover {
  background: linear-gradient(135deg, #1164ba, #0b478c);
  box-shadow: 0 16px 34px rgba(18, 100, 188, .29);
}

.button-secondary {
  color: var(--blue-dark);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .9);
}

.button-secondary:hover {
  border-color: #8db9dd;
  box-shadow: var(--shadow-sm);
}

.button-accent {
  color: #182331;
  background: linear-gradient(135deg, #ffe05b, var(--yellow));
  box-shadow: 0 12px 26px rgba(218, 164, 0, .22);
}

.button-accent:hover {
  background: linear-gradient(135deg, #ffe873, #ffc91f);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .15);
}

.hero {
  padding: 54px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 26px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .065em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--heading);
  font-size: clamp(44px, 5.25vw, 68px);
  line-height: .99;
  font-weight: 900;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 880;
  letter-spacing: -.025em;
}

h3 {
  margin-bottom: 9px;
  color: var(--heading);
  font-size: 21px;
  line-height: 1.22;
  font-weight: 840;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 26px;
}

.repair-inline {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  align-items: center;
  max-width: 670px;
  gap: 11px;
  padding: 13px 15px;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
}

.repair-inline > svg:first-child {
  width: 36px;
  height: 36px;
  padding: 8px;
  color: var(--blue);
  border-radius: 9px;
  background: var(--surface-blue);
}

.repair-inline span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.repair-inline strong {
  display: block;
  color: var(--heading);
  font-size: 14px;
}

.repair-inline .repair-arrow {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.hero-visual {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 525px;
}

.hero-equipment {
  width: min(100%, 690px);
  height: auto;
  margin: 0 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(20, 64, 102, .12));
}

.promo-card {
  position: static;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 92px;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid #ffd06a;
  border-radius: 18px;
  background:
    radial-gradient(circle at 3% 18%, rgba(255, 215, 84, .27), transparent 12rem),
    linear-gradient(120deg, #fffdf5 0%, #fff8e6 56%, #fff 100%);
  box-shadow: 0 22px 48px rgba(118, 82, 0, .12);
}

.promo-calendar {
  display: grid;
  place-items: center;
  align-content: center;
  width: 82px;
  height: 92px;
  border: 2px solid #ed5a4f;
  border-radius: 15px;
  color: var(--heading);
  background: #fff;
  overflow: hidden;
}

.promo-calendar-month {
  align-self: start;
  width: 100%;
  padding: 4px 0;
  color: #fff;
  background: #ed5a4f;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.promo-calendar strong {
  margin-top: -3px;
  font-size: 34px;
  line-height: 1;
}

.promo-calendar > span:last-child {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.promo-kicker {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card h2 {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -.015em;
}

.promo-card mark {
  color: var(--red);
  background: transparent;
}

.promo-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.promo-urgency {
  display: grid;
  place-items: center;
  align-content: center;
  min-width: 90px;
  height: 82px;
  padding: 8px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #ef554c, #cd2928);
  box-shadow: 0 12px 24px rgba(207, 41, 40, .18);
  text-align: center;
}

.promo-urgency span,
.promo-urgency small {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-urgency strong {
  font-size: 27px;
  line-height: 1;
}

.promo-button {
  grid-column: 2 / -1;
  justify-self: end;
  min-height: 44px;
  padding-inline: 16px;
  white-space: nowrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.trust-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 17px 20px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item > svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--blue);
  border-radius: 12px;
  background: var(--surface-blue);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--heading);
  font-size: 15px;
  line-height: 1.25;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 78px 0;
}

.section.compact {
  padding: 52px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head > div > p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

.centered-head {
  justify-content: center;
  text-align: center;
}

.centered-head > div > p:last-child {
  margin-inline: auto;
}

.compact-head {
  margin-bottom: 22px;
}

.tasks-section {
  padding-top: 38px;
}

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

.task-card {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 132px;
  padding: 16px 10px;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--heading);
  background: #fff;
  box-shadow: 0 10px 26px rgba(24, 73, 113, .06);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.task-card svg {
  width: 45px;
  height: 45px;
  padding: 10px;
  color: var(--blue);
  border-radius: 13px;
  background: var(--surface-blue);
}

.task-card:hover,
.task-card:focus-visible {
  border-color: #9dc4e4;
  box-shadow: 0 16px 34px rgba(24, 73, 113, .11);
  transform: translateY(-2px);
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 3%, rgba(102, 176, 235, .14), transparent 11rem),
    #fff;
  box-shadow: var(--shadow-sm);
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--blue);
  border-radius: 15px;
  background: var(--surface-blue);
}

.solution-icon svg {
  width: 29px;
  height: 29px;
}

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

.solution-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  color: #354d65;
  font-size: 14px;
  list-style: none;
}

.solution-card li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 8px;
}

.solution-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--cyan);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.turnkey-section {
  border-block: 1px solid #e1ebf3;
  background:
    linear-gradient(180deg, rgba(235, 245, 252, .8), rgba(255, 255, 255, .7));
}

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

.process-grid li {
  position: relative;
  min-width: 0;
  padding: 18px 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
  text-align: center;
}

.process-grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -11px;
  z-index: 2;
  width: 12px;
  height: 2px;
  background: #8eb9da;
}

.process-grid li > svg {
  width: 42px;
  height: 42px;
  margin: 5px auto 12px;
  padding: 9px;
  color: var(--blue);
  border-radius: 999px;
  background: var(--surface-blue);
}

.step-number {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin: -31px auto 0;
  color: #fff;
  border-radius: 999px;
  background: var(--blue-dark);
  box-shadow: 0 0 0 5px var(--page-soft);
  font-size: 12px;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.selection-section {
  padding-top: 86px;
}

.selection-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1.28fr);
  gap: 34px;
  padding: 36px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 90%, rgba(52, 158, 207, .3), transparent 20rem),
    linear-gradient(135deg, #0a2948 0%, #0b3c6b 58%, #116f7e 100%);
  box-shadow: 0 28px 72px rgba(10, 49, 85, .22);
}

.selection-copy .section-kicker {
  color: #7ccfff;
}

.selection-copy h2 {
  color: #fff;
}

.selection-copy > p {
  color: rgba(255, 255, 255, .74);
}

.selection-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.selection-benefits li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #eaf7ff;
  font-size: 14px;
  font-weight: 700;
}

.selection-benefits svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: #0d5a41;
  border-radius: 999px;
  background: #8ee0be;
}

.selection-contact {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, .68);
}

.selection-contact a {
  color: #fff;
  font-size: 21px;
  font-weight: 850;
}

.lead-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

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

.lead-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--heading);
  font-size: 12px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #65a6d9;
  box-shadow: 0 0 0 3px rgba(18, 100, 188, .12);
}

.lead-form [aria-invalid="true"] {
  border-color: #dc4a46;
  box-shadow: 0 0 0 3px rgba(220, 74, 70, .1);
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #b42318 !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.35;
}

.field-error[hidden] {
  display: none;
}

.form-wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
}

.consent span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
}

.consent .field-error {
  grid-column: 1 / -1;
}

.form-submit {
  white-space: nowrap;
}

.form-note {
  margin: 12px 0 0;
  color: #8190a0;
  font-size: 10px;
}

.form-error {
  margin-top: 15px;
  padding: 14px;
  border: 1px solid #f0aaa6;
  border-radius: 10px;
  color: #8f201b;
  background: #fff3f2;
  font-size: 12px;
  line-height: 1.45;
}

.form-error[hidden] {
  display: none;
}

.form-success {
  margin-top: 15px;
  padding: 14px;
  border: 1px solid #9dd8c0;
  border-radius: 10px;
  color: #0c6646;
  background: #ecfbf5;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success span {
  margin-top: 3px;
  font-size: 12px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.brands-section {
  padding-top: 60px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.brand-row span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px;
  color: #456079;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.025em;
  filter: grayscale(1);
}

.cto-section {
  padding-top: 42px;
}

.cto-shell {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 40%, rgba(57, 145, 210, .17), transparent 17rem),
    linear-gradient(120deg, #fff, #edf6fc);
  box-shadow: var(--shadow-sm);
}

.cto-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--blue);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.cto-icon svg {
  width: 45px;
  height: 45px;
}

.cto-copy .section-kicker {
  margin-bottom: 6px;
}

.cto-copy h2 {
  font-size: 30px;
}

.cto-copy > p {
  max-width: 760px;
  margin-bottom: 13px;
  color: var(--muted);
}

.cto-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin: 0;
  padding: 0;
  color: #3c5268;
  font-size: 13px;
  list-style: none;
}

.cto-copy li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
  font-weight: 900;
}

.cto-button {
  gap: 8px;
  white-space: nowrap;
}

.faq-section {
  padding-top: 70px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(0, 1.48fr);
  gap: 44px;
}

.faq-intro > p:last-of-type {
  color: var(--muted);
}

.faq-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-panel details + details {
  border-top: 1px solid var(--line);
}

.faq-panel summary {
  position: relative;
  padding: 19px 54px 19px 20px;
  color: var(--heading);
  cursor: pointer;
  font-size: 15px;
  font-weight: 820;
  list-style: none;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-panel summary::after {
  content: "+";
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--blue);
  font-size: 23px;
  line-height: 1;
}

.faq-panel details[open] summary::after {
  content: "−";
}

.faq-panel details > div {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
}

.faq-panel details > div p {
  margin: 0;
}

.final-cta-section {
  padding-top: 42px;
  padding-bottom: 70px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 25%, rgba(74, 189, 215, .28), transparent 17rem),
    linear-gradient(135deg, #092642, #0d4878 63%, #137483);
  box-shadow: 0 24px 56px rgba(10, 54, 91, .2);
}

.final-cta .section-kicker {
  color: #78d2f2;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.mobile-cta {
  display: none;
}

.site-footer {
  padding: 48px 0 28px;
  color: #d9e8f3;
  background: #071d31;
}

.site-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  white-space: normal;
}

.site-footer .brand-mark,
.site-footer .brand-mark img {
  width: 42px;
  height: 42px;
}

.site-footer .brand-copy {
  display: block;
  min-width: 0;
  white-space: normal;
}

.site-footer .brand-copy strong,
.site-footer .brand-copy span {
  display: block;
}

.site-footer .brand-copy strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.site-footer .brand-copy span {
  margin-top: 2px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr 1.25fr;
  gap: 34px;
}

.footer-brand {
  min-width: 0;
  color: #fff;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.5;
}

.footer-grid > div > p {
  max-width: 350px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  color: rgba(255, 255, 255, .42);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(18, 100, 188, .32);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .nav a {
    padding-inline: 7px;
    font-size: 13px;
  }

  .phone-compact span {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  }

  .promo-card {
    grid-template-columns: 72px minmax(0, 1fr) 80px;
  }

  .promo-button {
    grid-column: 2 / -1;
    justify-self: end;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 10px;
  }

  .process-grid li:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

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

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

  .nav a {
    width: 100%;
    padding: 13px;
    font-size: 15px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 20px;
  }

  .hero-equipment {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selection-shell {
    grid-template-columns: 1fr;
  }

  .cto-shell {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cto-icon {
    width: 72px;
    height: 72px;
  }

  .cto-button {
    grid-column: 2;
    justify-self: start;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy span {
    display: none;
  }

  .phone-compact > svg {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .nav {
    left: 12px;
    right: 12px;
  }

  .hero {
    padding-top: 34px;
  }

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

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 19px;
  }

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

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

  .hero-actions .button {
    width: 100%;
  }

  .repair-inline {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .repair-inline .repair-arrow {
    display: none;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-equipment {
    order: 1;
    margin: 14px -6px 0;
    width: calc(100% + 12px);
  }

  .promo-card {
    position: static;
    order: 2;
    grid-template-columns: 64px minmax(0, 1fr) 72px;
    gap: 12px;
    margin-top: 6px;
    padding: 14px;
    border-radius: 15px;
  }

  .promo-calendar {
    width: 64px;
    height: 76px;
    border-radius: 11px;
  }

  .promo-calendar strong {
    font-size: 27px;
  }

  .promo-card h2 {
    font-size: 16px;
  }

  .promo-card p:last-child {
    display: none;
  }

  .promo-urgency {
    min-width: 68px;
    width: 68px;
    height: 68px;
    border-radius: 11px;
  }

  .promo-urgency strong {
    font-size: 23px;
  }

  .promo-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .trust-item {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 78px;
    padding: 13px;
    gap: 8px;
  }

  .trust-item > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .trust-item strong {
    font-size: 13px;
  }

  .trust-item span {
    font-size: 11px;
  }

  .section {
    padding: 52px 0;
  }

  .section.compact {
    padding: 38px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .tasks-section {
    padding-top: 32px;
  }

  .task-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .task-card {
    min-height: 112px;
    padding: 13px 8px;
    font-size: 13px;
  }

  .task-card svg {
    width: 40px;
    height: 40px;
  }

  .solution-grid {
    display: flex;
    gap: 12px;
    margin-right: -12px;
    padding-right: 12px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
  }

  .solution-card {
    flex: 0 0 88%;
    padding: 20px;
    scroll-snap-align: start;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-grid li {
    display: grid;
    grid-template-columns: 34px 42px minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
    padding: 12px 14px;
    text-align: left;
  }

  .process-grid li:not(:last-child)::after {
    display: none;
  }

  .step-number {
    width: 30px;
    height: 30px;
    margin: 0;
    box-shadow: none;
  }

  .process-grid li > svg {
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .process-grid h3,
  .process-grid p {
    grid-column: 3;
  }

  .process-grid h3 {
    margin: 0 0 2px;
  }

  .selection-section {
    padding-top: 56px;
  }

  .selection-shell {
    gap: 22px;
    padding: 22px 16px 16px;
    border-radius: 18px;
  }

  .selection-benefits {
    margin-block: 18px 22px;
  }

  .lead-form {
    padding: 16px;
    border-radius: 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-wide {
    grid-column: 1;
  }

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

  .form-submit {
    width: 100%;
  }

  .brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-row span:last-child {
    grid-column: 1 / -1;
  }

  .cto-shell {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .cto-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .cto-icon svg {
    width: 32px;
    height: 32px;
  }

  .cto-copy h2 {
    font-size: 25px;
  }

  .cto-copy > p,
  .cto-copy ul,
  .cto-button {
    grid-column: 1 / -1;
  }

  .cto-copy ul {
    display: grid;
  }

  .cto-button {
    width: 100%;
  }

  .faq-layout {
    gap: 18px;
  }

  .faq-panel summary {
    padding: 17px 48px 17px 16px;
    font-size: 14px;
  }

  .faq-panel summary::after {
    right: 16px;
  }

  .faq-panel details > div {
    padding: 0 16px 16px;
  }

  .final-cta-section {
    padding-bottom: 42px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    border-radius: 17px;
  }

  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-actions .button {
    width: 100%;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 25;
    display: inline-flex;
    min-height: 52px;
    box-shadow: 0 18px 36px rgba(13, 64, 113, .3);
    transition: opacity .18s ease, transform .18s ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 34px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .promo-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .promo-urgency {
    grid-column: 1;
  }

  .promo-button {
    grid-column: 2;
    align-self: stretch;
    font-size: 12px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

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