:root {
  --navy-1000: #031127;
  --navy-950: #061a38;
  --navy-900: #08264d;
  --navy-800: #0d3768;
  --blue-700: #0758dc;
  --blue-600: #0a66f5;
  --blue-500: #2e83ff;
  --blue-100: #d8e8ff;
  --blue-50: #edf5ff;
  --cyan: #5ac8ff;
  --orange: #ff6a2b;
  --orange-dark: #e94f0b;
  --orange-soft: #fff0e8;
  --ink: #0b1f3f;
  --body: #50617a;
  --muted: #728198;
  --line: #dce6f2;
  --canvas: #f4f8fd;
  --surface: #ffffff;
  --shadow-sm: 0 12px 32px rgba(5, 31, 70, .08);
  --shadow-md: 0 24px 70px rgba(5, 31, 70, .14);
  --shadow-blue: 0 20px 50px rgba(10, 102, 245, .22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(90, 200, 255, .75);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--blue-600);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 18px;
  color: #fff;
  background: var(--navy-1000);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

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

/* Header */
.topbar {
  position: relative;
  z-index: 1001;
  color: #fff;
  background: var(--navy-1000);
}

.topbar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(90, 200, 255, .35), transparent);
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #bdcbe0;
  font-size: .875rem;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .015em;
}

.topbar a::after {
  width: 7px;
  height: 7px;
  content: "";
  background: #45dc93;
  border: 2px solid rgba(69, 220, 147, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(69, 220, 147, .1);
}

.topbar p {
  margin: 0;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 230, 242, .8);
  box-shadow: 0 12px 35px rgba(3, 17, 39, .06);
  backdrop-filter: blur(18px) saturate(150%);
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.brand img {
  width: 290px;
  height: auto;
  transition: transform .25s ease;
}

.brand:hover img {
  transform: translateY(-2px) scale(1.01);
}

.brand__text {
  color: var(--navy-950);
  font-size: .96rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.015em;
}

.brand__text span {
  display: block;
  margin-top: 3px;
  color: var(--blue-600);
}

.site-nav {
  margin-left: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px;
  list-style: none;
  background: #f4f7fb;
  border: 1px solid #e7edf5;
  border-radius: 999px;
}

.site-nav__links a {
  position: relative;
  display: block;
  padding: 9px 14px;
  color: #30435f;
  border-radius: 999px;
  font-size: .89rem;
  font-weight: 750;
  line-height: 1.2;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-nav__links a:hover {
  color: var(--blue-700);
  background: #fff;
}

.site-nav__links a[aria-current="page"] {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 8px 18px rgba(8, 38, 77, .18);
}

.header-call {
  margin-left: 3px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  color: var(--navy-950);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Type and controls */
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(3.2rem, 6.2vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--body);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 99px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 23px;
  color: #fff;
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  border-radius: 13px;
  box-shadow: 0 12px 26px rgba(10, 102, 245, .23);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 16px 34px rgba(10, 102, 245, .3);
  transform: translateY(-3px);
}

.btn--orange {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 26px rgba(255, 106, 43, .28);
}

.btn--orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(255, 106, 43, .33);
}

.btn--outline {
  color: var(--blue-700);
  background: transparent;
  border-color: rgba(10, 102, 245, .48);
  box-shadow: none;
}

.btn--outline:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.btn svg,
.contact-link svg,
.topbar svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Shared section system */
.section {
  position: relative;
  padding: 112px 0;
}

.section--soft {
  background: var(--canvas);
}

.section--blue-soft {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(90, 200, 255, .19), transparent 25%),
    linear-gradient(135deg, #eaf3ff 0%, #f8fbff 62%, #edf5ff 100%);
}

.section--blue-soft::before {
  position: absolute;
  top: -210px;
  right: -210px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(10, 102, 245, .12);
  border-radius: 50%;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--body);
  font-size: 1.04rem;
}

.title-mark::after {
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 20px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--cyan));
  border-radius: 99px;
}

.section-heading .title-mark::after {
  margin-inline: auto;
}

/* Homepage hero */
.hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(46, 131, 255, .24), transparent 32%),
    linear-gradient(118deg, var(--navy-1000) 0%, var(--navy-950) 48%, #0b3970 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 27px 27px;
  mask-image: linear-gradient(90deg, #000, transparent 54%);
  opacity: .52;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -160px;
  left: -170px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(90, 200, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(90, 200, 255, .025), 0 0 0 145px rgba(90, 200, 255, .02);
}

.hero__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 60px;
  padding-block: 74px 112px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  animation: rise-in .65s ease-out both;
}

.hero__copy .eyebrow {
  color: var(--cyan);
}

.hero__copy h1 {
  max-width: 660px;
  color: #fff;
  text-wrap: balance;
}

.hero__copy .title-mark::after {
  width: 82px;
  background: var(--orange);
}

.hero__copy .lead {
  max-width: 590px;
  margin-top: 26px;
  color: #cbd9eb;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero .btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .35);
}

.hero .btn--outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy-950);
}

.hero__visual {
  position: relative;
  min-height: 540px;
  animation: image-in .75s .08s ease-out both;
}

.hero__visual::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 104px;
  height: 104px;
  content: "";
  border-top: 7px solid var(--orange);
  border-right: 7px solid var(--orange);
  border-radius: 0 26px 0 0;
}

.hero__visual::after {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: -26px;
  max-width: 190px;
  padding: 18px 22px 18px 50px;
  color: #fff;
  content: "6 repair categories";
  background: var(--blue-600);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 17px;
  box-shadow: var(--shadow-blue);
  font-size: .93rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 56% center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 36px 36px 72px 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
}

.trust-wrap {
  position: relative;
  z-index: 4;
  margin-top: -57px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 19px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(220, 230, 242, .9);
  border-radius: 25px;
  box-shadow: 0 26px 70px rgba(3, 17, 39, .16);
  backdrop-filter: blur(14px);
}

.trust-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 10px 30px;
}

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

.trust-item strong {
  color: var(--navy-950);
  line-height: 1.3;
}

.icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  background: linear-gradient(145deg, #f6faff, #e3efff);
  border: 1px solid #cfe2ff;
  border-radius: 17px;
  box-shadow: inset 0 1px 0 #fff;
}

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

/* About image and lists */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .94fr);
  align-items: stretch;
  gap: clamp(55px, 7vw, 96px);
}

.image-frame {
  position: relative;
  z-index: 0;
  min-height: 0;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 76%;
  height: 70%;
  content: "";
  background: linear-gradient(145deg, var(--blue-600), #58b9ff);
  border-radius: var(--radius-lg);
}

.image-frame::after {
  position: absolute;
  right: -18px;
  bottom: 34px;
  max-width: 155px;
  padding: 15px 18px;
  color: #fff;
  content: "Repair support for homes & businesses";
  background: var(--navy-950);
  border-left: 5px solid var(--orange);
  border-radius: 12px 0 0 12px;
  box-shadow: var(--shadow-md);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-copy .lead {
  margin: 24px 0 17px;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--body);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 720;
}

.check-list li::before {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  color: #fff;
  content: "✓";
  background: linear-gradient(145deg, var(--blue-600), var(--blue-500));
  border-radius: 8px;
  box-shadow: 0 7px 15px rgba(10, 102, 245, .2);
  font-size: .75rem;
  font-weight: 900;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  counter-reset: service;
}

.service-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 33px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  counter-increment: service;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #d9e8fa;
  content: "0" counter(service);
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  content: "";
  background: var(--blue-50);
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease;
}

.service-card:hover {
  border-color: rgba(10, 102, 245, .35);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card:hover::after {
  background: #d9eaff;
  transform: scale(1.18);
}

.service-card .icon,
.service-card h3,
.service-card p,
.service-card .text-link {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  max-width: 255px;
  margin: 23px 0 12px;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--body);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--blue-700);
  font-size: .91rem;
  font-weight: 850;
}

.text-link::after {
  content: "→";
  font-size: 1.15rem;
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* Diagnostic panel */
.problems-panel {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(46, 131, 255, .35), transparent 35%),
    var(--navy-950);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.problems-panel__image {
  position: relative;
}

.problems-panel__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 60%, var(--navy-950));
}

.problems-panel__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.problems-panel__content {
  position: relative;
  z-index: 1;
  padding: 60px 55px;
}

.problems-panel h2 {
  color: #fff;
}

.problems-panel .eyebrow {
  color: var(--cyan);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 34px;
}

.problem {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 9px;
  color: #eaf3ff;
  text-align: center;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  font-size: .83rem;
  font-weight: 720;
  line-height: 1.25;
  transition: background .2s ease, transform .2s ease;
}

.problem:hover {
  background: rgba(46, 131, 255, .18);
  transform: translateY(-3px);
}

.problem svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-note {
  margin: 25px 0 0;
  color: #aebfd7;
}

/* Home and business cards */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.support-card {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.support-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .65, .25, 1);
}

.support-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 18%, rgba(3, 17, 39, .92) 100%);
}

.support-card::after {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 25px;
  padding: 8px 13px;
  color: #fff;
  content: "Appliance support";
  background: rgba(3, 17, 39, .72);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support-card:hover img {
  transform: scale(1.06);
}

.support-card__copy {
  position: relative;
  z-index: 2;
  padding: 38px;
  color: #fff;
}

.support-card h3 {
  color: #fff;
  font-size: 1.65rem;
}

.support-card p {
  max-width: 500px;
  margin: 12px 0 0;
  color: #d6e2f1;
}

/* Benefits and process */
.benefit-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 34px 27px;
  text-align: left;
  background: rgba(255, 255, 255, .91);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(9px);
}

.benefit-card::after {
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 125px;
  height: 125px;
  content: "";
  border: 18px solid rgba(10, 102, 245, .07);
  border-radius: 50%;
}

.benefit-card .icon {
  margin-bottom: 27px;
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: #fff;
}

.benefit-card h3 {
  max-width: 210px;
}

.benefit-card p {
  margin: 13px 0 0;
  color: var(--body);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.steps::before {
  position: absolute;
  top: 39px;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background-image: linear-gradient(90deg, var(--blue-100) 65%, transparent 65%);
  background-size: 16px 2px;
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 15px;
  text-align: center;
}

.step__number {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 27px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-700));
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: 0 15px 32px rgba(10, 102, 245, .25);
  font-size: 1.45rem;
  font-weight: 900;
  transform: rotate(4deg);
}

.step:nth-child(even) .step__number {
  transform: rotate(-4deg);
}

.step p {
  margin: 11px auto 0;
  color: var(--body);
  font-size: .94rem;
}

/* Dark reason band */
.reason-band {
  position: relative;
  overflow: hidden;
  padding: 64px 54px 54px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(90, 200, 255, .28), transparent 29%),
    linear-gradient(125deg, var(--navy-1000), var(--navy-900));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.reason-band::before {
  position: absolute;
  top: -115px;
  right: -55px;
  width: 310px;
  height: 310px;
  content: "";
  border: 46px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.reason-band h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
  color: #fff;
  text-align: center;
}

.reason {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 19px;
}

.reason .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  color: var(--cyan);
  background: rgba(90, 200, 255, .1);
  border-color: rgba(90, 200, 255, .25);
}

.reason h3 {
  color: #fff;
  font-size: 1.08rem;
}

.reason p {
  margin: 11px 0 0;
  color: #bdcce0;
  font-size: .91rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 58px;
}

.before-call {
  position: relative;
  overflow: hidden;
  min-height: 485px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.before-call::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 15%, rgba(3, 17, 39, .94) 100%);
}

.before-call img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-call > div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 38px;
}

.before-call h2 {
  color: #fff;
}

.before-call .eyebrow {
  color: var(--cyan);
}

.before-call .check-list {
  margin-bottom: 0;
}

.before-call .check-list li {
  color: #eef5ff;
}

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

.faq-list details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 9px 24px rgba(5, 31, 70, .055);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-list details[open] {
  border-color: rgba(10, 102, 245, .35);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  content: "+";
  background: var(--blue-50);
  border-radius: 10px;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  color: #fff;
  content: "−";
  background: var(--blue-600);
}

.faq-list details p {
  margin: 0;
  padding: 0 56px 22px 22px;
  color: var(--body);
}

/* CTA */
.cta-band {
  position: relative;
  z-index: 3;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 38px;
  overflow: hidden;
  margin: 0 auto -65px;
  padding: 38px 48px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0, rgba(46, 131, 255, .5), transparent 35%),
    linear-gradient(118deg, var(--navy-1000), var(--navy-800));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(3, 17, 39, .25);
}

.cta-band::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  content: "";
  background: var(--orange);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.cta-band p {
  margin: 9px 0 0;
  color: #c5d3e6;
}

.cta-band__phone {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  white-space: nowrap;
}

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 105px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 0, rgba(46, 131, 255, .4), transparent 30%),
    linear-gradient(116deg, var(--navy-1000), var(--navy-900));
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.page-hero::after {
  position: absolute;
  right: -150px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  content: "";
  border: 70px solid rgba(90, 200, 255, .08);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #9fcfff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-hero h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(2.75rem, 5.4vw, 5.15rem);
  text-wrap: balance;
}

.page-hero h1::after {
  display: block;
  width: 76px;
  height: 5px;
  margin-top: 28px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
}

.page-hero p {
  max-width: 770px;
  margin: 27px 0 0;
  color: #c9d7e9;
  font-size: 1.13rem;
}

/* About page statistics */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stat-card {
  position: relative;
  display: block;
  min-height: 180px;
  overflow: hidden;
  padding: 35px 31px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.stat-card:hover {
  border-color: rgba(10, 102, 245, .25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stat-card::before {
  display: block;
  width: 48px;
  height: 7px;
  margin-bottom: 26px;
  content: "";
  background: linear-gradient(90deg, var(--orange), #ff9b62);
  border-radius: 99px;
}

.stat-card::after {
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 145px;
  height: 145px;
  content: "";
  background: var(--blue-50);
  border-radius: 50%;
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy-950);
  font-size: 1.25rem;
}

.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 9px;
  color: var(--body);
}

/* Service detail page */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 125px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-detail::after {
  position: absolute;
  right: -36px;
  bottom: -50px;
  width: 110px;
  height: 110px;
  content: "";
  border: 17px solid var(--blue-50);
  border-radius: 50%;
}

.service-detail:hover {
  border-color: rgba(10, 102, 245, .32);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-detail__media {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--blue-50);
}

.service-detail__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 17, 39, .5));
  pointer-events: none;
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.service-detail:hover .service-detail__media img {
  transform: scale(1.035);
}

.service-detail__type {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  left: 18px;
  padding: 8px 12px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 99px;
  box-shadow: 0 7px 22px rgba(3, 17, 39, .18);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-detail__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px 34px 34px;
}

.service-detail h2 {
  font-size: 1.55rem;
  line-height: 1.2;
}

.service-detail p {
  margin: 12px 0 0;
  color: var(--body);
}

.service-detail .text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
}

/* Search-focused service pages */
.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: stretch;
  gap: 64px;
}

.service-overview__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--blue-50);
  border-radius: 30px 30px 76px 30px;
  box-shadow: var(--shadow-lg);
}

.service-overview__media::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 78px;
  height: 78px;
  content: "";
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(10, 102, 245, .2);
}

.service-overview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overview__media--portrait img {
  object-position: center 42%;
}

.service-overview__copy {
  align-self: center;
  padding-block: 20px;
}

.service-overview__copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--body);
}

.service-overview__copy .check-list {
  margin-top: 25px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.issue-grid article {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.issue-grid article::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 22px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--orange));
  border-radius: 99px;
}

.issue-grid strong {
  color: var(--navy-950);
  font-size: 1.08rem;
}

.issue-grid p {
  margin: 10px 0 0;
  color: var(--body);
  font-size: .94rem;
}

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

.service-info-card {
  padding: 45px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-info-card h2 {
  margin-top: 8px;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.service-info-card > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--body);
}

.service-info-card .check-list {
  margin-top: 24px;
}

.service-info-card--dark {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-1000), var(--navy-800));
  border-color: rgba(255, 255, 255, .08);
}

.service-info-card--dark h2,
.service-info-card--dark .eyebrow {
  color: #fff;
}

.service-info-card--dark > p:not(.eyebrow) {
  color: #c2d2e7;
}

.text-link--light {
  display: inline-flex;
  margin-top: 24px;
  color: #fff;
}

.text-link--light::after {
  color: var(--orange);
}

.page-service-single .contact-link svg {
  display: none;
}

.page-service-single .contact-link::before {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  content: "";
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.5c.9.4 1.8.6 2.8.7a2 2 0 0 1 1.7 2.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.5c.9.4 1.8.6 2.8.7a2 2 0 0 1 1.7 2.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-narrow {
  max-width: 940px;
}

.related-services {
  padding: 38px 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.related-services h2 {
  margin-bottom: 22px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.related-services > div,
.gallery-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-services a,
.gallery-service-links a {
  padding: 11px 16px;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid #cfe1ff;
  border-radius: 99px;
  font-size: .86rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.related-services a:hover,
.gallery-service-links a:hover {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.gallery-service-links {
  margin: -20px 0 34px;
}

.symptom-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.symptom-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2d405c;
  font-size: .88rem;
  font-weight: 700;
}

.symptom-list li::before {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  content: "✓";
  background: var(--blue-50);
  border: 1px solid #cce0ff;
  border-radius: 50%;
  font-size: .62rem;
}

/* Gallery */
.gallery-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 48px;
}

.gallery-intro > div {
  max-width: 720px;
}

.gallery-intro p:last-child {
  margin: 18px 0 0;
  color: var(--body);
}

.gallery-grid {
  columns: 4 240px;
  column-gap: 18px;
}

.gallery-item {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 0;
  aspect-ratio: 4 / 3;
  background: var(--navy-950);
  border: 0;
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.gallery-item:nth-child(5n + 1),
.gallery-item:nth-child(7n + 4) {
  aspect-ratio: 4 / 5;
}

.gallery-item:nth-child(9n + 3) {
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .65, .25, 1), opacity .3s ease;
}

.gallery-item::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(3, 17, 39, .92) 100%);
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-item::after {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: #fff;
  content: attr(data-caption);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.065);
}

.gallery-item:hover::before,
.gallery-item:hover::after,
.gallery-item:focus-visible::before,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  transform: translateY(0);
}

/* Gallery lightbox */
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: #fff;
  background: rgba(3, 17, 39, .94);
  border: 0;
  backdrop-filter: blur(14px);
}

.lightbox::backdrop {
  background: rgba(3, 17, 39, .94);
}

.lightbox__panel {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: 70px 90px 38px;
}

.lightbox__image-wrap {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 145px);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.lightbox__caption {
  margin: 18px 0 0;
  color: #dbe7f6;
  text-align: center;
}

.lightbox__nav,
.lightbox__close {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox__close {
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 1.75rem;
}

.lightbox__nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 2.2rem;
  transform: translateY(-50%);
}

.lightbox__prev {
  left: 24px;
}

.lightbox__next {
  right: 24px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  align-items: stretch;
  gap: 25px;
}

.contact-card,
.contact-form {
  padding: clamp(34px, 5vw, 55px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-card {
  position: relative;
  overflow: hidden;
  color: #d7e3f2;
  background:
    radial-gradient(circle at 100% 0, rgba(46, 131, 255, .44), transparent 32%),
    linear-gradient(145deg, var(--navy-1000), var(--navy-800));
}

.contact-card::after {
  position: absolute;
  right: -95px;
  bottom: -95px;
  width: 250px;
  height: 250px;
  content: "";
  border: 37px solid rgba(255, 255, 255, .045);
  border-radius: 50%;
}

.contact-card h2,
.contact-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
}

.contact-card p {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: #c4d2e4;
}

.contact-number {
  position: relative;
  z-index: 1;
  display: block;
  margin: 30px 0 20px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}

.contact-card .btn {
  position: relative;
  z-index: 1;
}

.contact-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 35px 0 0;
  padding: 27px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  list-style: none;
}

.contact-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c6d4e6;
  font-size: .93rem;
}

.contact-card__list li::before {
  color: var(--cyan);
  content: "✓";
  font-weight: 900;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
}

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

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: .87rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid #cdd9e7;
  border-radius: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(10, 102, 245, .11);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--blue-700);
  font-weight: 750;
}

/* Footer */
.site-footer {
  padding-top: 135px;
  color: #b8c8dc;
  background:
    radial-gradient(circle at 7% 0, rgba(46, 131, 255, .16), transparent 28%),
    var(--navy-1000);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .78fr .65fr;
  gap: 48px;
  padding: 0 0 58px;
}

.site-footer .brand__text {
  color: #fff;
}

.site-footer .brand__text span {
  color: #81b8ff;
}

.site-footer .brand img {
  width: 335px;
  max-width: 100%;
}

.site-footer__about p {
  max-width: 420px;
  margin: 24px 0 0;
  color: #9fb1c8;
}

.site-footer h3 {
  color: #fff;
}

.footer-heading {
  margin-bottom: 23px;
  font-size: .84rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-heading::after {
  display: block;
  width: 33px;
  height: 3px;
  margin-top: 12px;
  content: "";
  background: var(--orange);
  border-radius: 99px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #a9bad0;
  font-size: .91rem;
  transition: color .2s ease;
}

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

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
}

.site-footer__bottom {
  padding: 21px 24px;
  color: #7187a3;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
}

.mobile-call {
  display: none;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes image-in {
  from { opacity: 0; transform: translateX(24px) scale(.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Tablet */
@media (max-width: 1120px) {
  :root {
    --container: 1000px;
  }

  .site-header__inner {
    gap: 18px;
  }

  .brand img {
    width: 250px;
  }

  .site-nav__links a {
    padding-inline: 10px;
    font-size: .84rem;
  }

  .header-call {
    padding-inline: 16px;
    font-size: .85rem;
  }

  .hero__grid {
    gap: 38px;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 500px;
    height: 500px;
  }

  .trust-item {
    padding-inline: 20px;
  }

  .problems-panel__content {
    padding: 48px 36px;
  }

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

  .cta-band {
    gap: 25px;
    padding-inline: 38px;
  }
}

/* Mobile navigation and stacked layouts */
@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .site-header__inner {
    min-height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    margin: 0;
    padding: 12px;
    visibility: hidden;
    background: rgba(255, 255, 255, .985);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(3, 17, 39, .2);
    opacity: 0;
    transform: translateY(-9px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__links {
    display: grid;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-nav__links a {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: .96rem;
  }

  .header-call {
    display: none;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 78px 118px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 480px;
    height: 480px;
  }

  .trust-wrap {
    margin-top: -50px;
  }

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

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

  .section {
    padding: 90px 0;
  }

  .about-grid,
  .problems-panel,
  .faq-grid,
  .contact-grid,
  .service-overview {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 70px;
  }

  .service-overview {
    gap: 48px;
  }

  .service-overview__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

  .about-grid .image-frame {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 4 / 3;
  }

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

  .problems-panel__image::after {
    background: linear-gradient(180deg, transparent 60%, var(--navy-950));
  }

  .problems-panel__image img {
    min-height: 410px;
  }

  .support-card {
    min-height: 360px;
  }

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

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px 25px;
  }

  .steps::before {
    display: none;
  }

  .cta-band {
    grid-template-columns: 1fr auto;
    margin-bottom: -60px;
  }

  .cta-band__copy {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .site-footer__grid > :last-child {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 28px, 620px);
  }

  .topbar__inner {
    min-height: 38px;
    justify-content: center;
  }

  .topbar p {
    display: none;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .brand {
    max-width: calc(100% - 66px);
  }

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

  .site-footer .brand img {
    width: 285px;
  }

  .brand__text {
    font-size: .79rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero__grid {
    padding-block: 64px 105px;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 360px;
    height: 360px;
  }

  .hero__visual::before {
    top: -11px;
    right: -7px;
    width: 78px;
    height: 78px;
  }

  .hero__visual::after {
    right: 15px;
    bottom: -22px;
    max-width: 165px;
    padding: 14px 16px;
    font-size: .75rem;
  }

  .hero__visual img {
    border-radius: 25px 25px 50px 25px;
  }

  .hero__actions,
  .form-actions,
  .service-actions {
    display: grid;
  }

  .hero__actions .btn,
  .form-actions .btn,
  .service-actions .btn {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

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

  .image-frame::after {
    right: -5px;
    bottom: 18px;
  }

  .service-grid,
  .service-detail-grid,
  .support-grid,
  .benefit-grid,
  .steps,
  .reason-grid,
  .stats-row,
  .form-grid,
  .issue-grid,
  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .service-overview__media {
    aspect-ratio: 4 / 3;
    border-radius: 24px 24px 52px 24px;
  }

  .service-overview__copy {
    padding-block: 0;
  }

  .service-info-card {
    padding: 34px 27px;
  }

  .related-services {
    padding: 32px 25px;
  }

  .service-card {
    min-height: 270px;
  }

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

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

  .problems-panel__content {
    padding: 40px 22px;
  }

  .problems-panel__image img {
    min-height: 320px;
  }

  .support-grid {
    gap: 17px;
  }

  .support-card {
    min-height: 330px;
  }

  .support-card__copy {
    padding: 28px;
  }

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

  .steps {
    gap: 45px;
  }

  .step p {
    max-width: 320px;
  }

  .reason-band {
    padding: 46px 20px 24px;
  }

  .reason-band h2 {
    margin-bottom: 32px;
  }

  .before-call {
    min-height: 440px;
  }

  .faq-grid {
    gap: 52px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: -50px;
    padding: 34px 29px;
    text-align: center;
  }

  .cta-band__copy {
    grid-column: auto;
  }

  .cta-band::before {
    right: 0;
    bottom: auto;
    width: auto;
    height: 6px;
  }

  .page-hero {
    padding: 76px 0 82px;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .gallery-intro {
    display: grid;
    align-items: start;
    gap: 25px;
  }

  .gallery-intro .btn {
    justify-self: start;
  }

  .gallery-grid {
    columns: 2 150px;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .gallery-item::before,
  .gallery-item::after {
    display: none;
  }

  .lightbox__panel {
    padding: 65px 15px 30px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
  }

  .lightbox__prev {
    left: 15px;
  }

  .lightbox__next {
    right: 15px;
  }

  .contact-card,
  .contact-form {
    padding: 34px 25px;
    border-radius: 25px;
  }

  .field--full {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 110px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer__grid > :last-child {
    grid-column: auto;
  }

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

  .mobile-call {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 9px 13px calc(9px + env(safe-area-inset-bottom));
    background: rgba(3, 17, 39, .94);
    border-top: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
  }

  .mobile-call .btn {
    width: 100%;
    min-height: 49px;
  }
}

@media (max-width: 410px) {
  .brand img {
    width: 205px;
  }

  .brand__text {
    max-width: 118px;
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-item {
    aspect-ratio: 4 / 3 !important;
  }

  .problem-grid,
  .footer-links,
  .symptom-list {
    grid-template-columns: 1fr;
  }
}

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