:root {
  --blue-950: #004b81;
  --blue-900: #005f9f;
  --blue-800: #006eaf;
  --blue: #0789cc;
  --sky: #25a8dd;
  --sky-soft: #dff4fd;
  --mist: #eff9fd;
  --ice: #f8fcfe;
  --ink: #111827;
  --muted: #5c6673;
  --line: #d7e8f0;
  --silver: #a6a6a6;
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(11, 76, 117, 0.08);
  --shadow-md: 0 22px 60px rgba(10, 72, 109, 0.15);
  --radius-lg: 30px;
  --radius-md: 20px;
  --font-sans: "Manrope", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

.section {
  position: relative;
  padding: 128px 0;
  scroll-margin-top: 90px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.announcement {
  position: relative;
  z-index: 20;
  color: #e7f8ff;
  background: var(--blue-950);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  gap: 20px;
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.announcement a {
  color: var(--white);
  transition: color 0.2s ease;
}

.announcement a:hover {
  color: #aee8ff;
}

.announcement__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77d9ff;
  box-shadow: 0 0 0 4px rgba(119, 217, 255, 0.12);
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(13, 114, 173, 0.1);
  box-shadow: 0 8px 24px rgba(12, 76, 111, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 90px;
  gap: 34px;
}

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

.brand__logo {
  display: block;
  width: auto;
  height: 72px;
  max-width: 84px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.25vw, 34px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: #4a5360;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1.5px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

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

.nav-contact {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(115deg, var(--blue-900), var(--blue));
  box-shadow: 0 13px 22px rgba(1, 120, 190, 0.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
  box-shadow: 0 17px 29px rgba(1, 120, 190, 0.29);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.faq-item__question:focus-visible {
  outline: 3px solid rgba(37, 168, 221, 0.38);
  outline-offset: 4px;
}

.button--small {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 11px;
}

.button--light {
  color: var(--blue-900);
  background: var(--white);
  box-shadow: none;
}

.button--light:hover {
  box-shadow: 0 12px 20px rgba(0, 46, 82, 0.15);
}

.button--outline {
  color: var(--blue-800);
  border-color: rgba(0, 110, 175, 0.26);
  background: transparent;
  box-shadow: none;
}

.button--outline:hover {
  color: var(--white);
  background: var(--blue-800);
  box-shadow: 0 12px 22px rgba(0, 96, 159, 0.17);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: var(--blue-900);
  background: var(--mist);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 20px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue-800);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow__spark {
  color: var(--sky);
  font-size: 17px;
  line-height: 0;
}

.eyebrow--blue {
  color: var(--blue-800);
}

.eyebrow--light {
  color: #aee8ff;
}

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

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 670px;
  margin-bottom: 25px;
  color: #111923;
  font-size: clamp(43px, 5.1vw, 72px);
  font-weight: 800;
  line-height: 1.05;
}

h1 em,
h2 em {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.055em;
}

h2 {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(35px, 4vw, 53px);
  font-weight: 800;
  line-height: 1.12;
}

h3 {
  letter-spacing: -0.03em;
}

.hero {
  isolation: isolate;
  min-height: 666px;
  padding: 90px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(96deg, #fff 0%, #fff 50%, rgba(237, 249, 254, 0.82) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -150px;
  bottom: -190px;
  width: 660px;
  height: 660px;
  content: "";
  border: 1px solid rgba(37, 168, 221, 0.22);
  border-radius: 50%;
}

.hero__wash {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(5px);
}

.hero__wash--one {
  top: -210px;
  right: -70px;
  width: 550px;
  height: 470px;
  background: rgba(59, 181, 228, 0.11);
  transform: rotate(-18deg);
}

.hero__wash--two {
  right: 32%;
  bottom: -250px;
  width: 460px;
  height: 260px;
  border: 1px solid rgba(25, 154, 211, 0.14);
  transform: rotate(32deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(46px, 6vw, 100px);
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 31px;
  color: #596673;
  font-size: 16px;
  line-height: 1.74;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #34414c;
  font-size: 12px;
  font-weight: 800;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link:hover {
  gap: 13px;
  color: var(--blue-800);
}

.text-link--blue {
  color: var(--blue-800);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 43px;
}

.avatar-stack {
  display: flex;
  padding-left: 4px;
}

.avatar-stack span {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: -5px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-800);
  font-size: 9px;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) {
  background: var(--sky);
}

.avatar-stack span:nth-child(3) {
  color: var(--blue-900);
  background: #d9f4ff;
}

.hero__proof p {
  margin: 0;
  color: #697480;
  font-size: 10px;
  line-height: 1.52;
}

.hero__proof strong {
  color: #29333d;
  font-size: 11px;
}

.hero__visual {
  position: relative;
  min-height: 470px;
}

.hero__arc {
  position: absolute;
  z-index: -1;
  top: 28px;
  right: -43px;
  width: 414px;
  height: 414px;
  border: 19px solid var(--sky);
  border-right-color: transparent;
  border-bottom-color: rgba(37, 168, 221, 0.18);
  border-radius: 50%;
  opacity: 0.9;
  transform: rotate(18deg);
}

.hero-photo {
  position: absolute;
  top: 22px;
  right: 23px;
  width: min(100%, 423px);
  height: 408px;
  margin: 0;
  overflow: hidden;
  border: 12px solid var(--white);
  border-radius: 145px 25px 100px 25px;
  background: #b8dbe8;
  box-shadow: var(--shadow-md);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(165deg, rgba(0, 105, 173, 0.08), transparent 42%, rgba(0, 93, 157, 0.16));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 21px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 7px;
  color: var(--white);
  background: rgba(0, 57, 89, 0.35);
  backdrop-filter: blur(7px);
  font-size: 9px;
  font-weight: 700;
}

.hero__spark {
  position: absolute;
  z-index: 2;
  color: var(--blue);
  font-size: 29px;
  line-height: 1;
}

.hero__spark--a {
  top: 11px;
  right: 76px;
  color: var(--sky);
  font-size: 24px;
}

.hero__spark--b {
  bottom: 35px;
  left: 13px;
  color: var(--blue-900);
  font-size: 33px;
}

.hero__spark--c {
  top: 165px;
  left: 29px;
  color: #8ed8f5;
  font-size: 16px;
}

.quality-card,
.schedule-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.quality-card {
  bottom: 11px;
  left: 0;
  gap: 11px;
  padding: 13px 16px 13px 13px;
  border: 1px solid rgba(0, 96, 159, 0.1);
  border-radius: 12px;
  background: var(--white);
}

.quality-card__icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--blue);
}

.quality-card__icon svg {
  width: 17px;
  height: 17px;
}

.quality-card small {
  display: block;
  margin-bottom: 1px;
  color: var(--blue-800);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.quality-card strong {
  display: block;
  color: #26333e;
  font-size: 11px;
}

.schedule-card {
  top: 107px;
  left: -7px;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(7px);
}

.schedule-card > span {
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.schedule-card p {
  margin: 0;
  color: #687480;
  font-size: 8px;
  line-height: 1.45;
}

.schedule-card strong {
  color: #26333e;
  font-size: 10px;
}

.benefits {
  position: relative;
  z-index: 4;
  border-top: 1px solid #e0eef4;
  border-bottom: 1px solid #e0eef4;
  background: var(--white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  display: flex;
  align-items: center;
  min-height: 99px;
  gap: 13px;
  padding: 16px 25px;
  border-right: 1px solid #e3eef3;
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit__icon {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-800);
  background: var(--mist);
  font-size: 17px;
  font-weight: 800;
}

.benefit p {
  margin: 0;
  color: #6c7781;
  font-size: 10px;
  line-height: 1.5;
}

.benefit strong {
  color: #26333e;
  font-size: 11px;
}

.services {
  background: var(--ice);
}

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

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  align-items: end;
  gap: 50px;
}

.section-heading--split > p {
  max-width: 375px;
  margin: 0 0 4px auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 278px;
  padding: 25px 25px 23px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2edf2;
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(3, 133, 202, 0.18);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card--featured {
  color: var(--white);
  border-color: var(--blue-800);
  background: linear-gradient(142deg, var(--blue-900), var(--blue));
}

.service-card--featured:hover {
  border-color: var(--blue-800);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__number {
  color: #99b3c3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.68);
}

.service-card__icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  color: var(--blue-800);
  background: var(--mist);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card--featured .service-card__icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.17);
}

.service-card h3 {
  margin: 28px 0 9px;
  color: #1c2730;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.service-card--featured h3 {
  color: var(--white);
}

.service-card p:not(.service-card__kicker) {
  max-width: 280px;
  margin-bottom: 18px;
  color: #66717c;
  font-size: 11px;
  line-height: 1.7;
}

.service-card--featured p:not(.service-card__kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-800);
  font-size: 10px;
  font-weight: 800;
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 12px;
}

.service-card--featured .card-link {
  color: var(--white);
}

.service-card__orb {
  position: absolute;
  right: -50px;
  bottom: -90px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.service-card--contact {
  justify-content: center;
  color: var(--white);
  border: 0;
  background: #123f5c;
}

.service-card--contact::before {
  position: absolute;
  top: -80px;
  right: -10px;
  width: 180px;
  height: 180px;
  content: "";
  border: 17px solid rgba(83, 196, 238, 0.18);
  border-radius: 50%;
}

.service-card__spark {
  position: absolute;
  top: 19px;
  right: 21px;
  color: #8be0ff;
  font-size: 27px;
}

.service-card__kicker {
  margin-bottom: 8px;
  color: #9edfff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card--contact h3 {
  position: relative;
  max-width: 210px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: 25px;
}

.service-card--contact .button {
  align-self: flex-start;
  min-height: 42px;
  padding: 0 17px;
  font-size: 10px;
}

.quality {
  overflow: hidden;
  background: var(--white);
}

.quality::before {
  position: absolute;
  top: 0;
  left: -170px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid #e1f1f7;
  border-radius: 50%;
}

.quality__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(70px, 10vw, 130px);
}

.quality__visual {
  position: relative;
  min-height: 466px;
}

.quality__panel {
  position: absolute;
  border-radius: 28px;
}

.quality__panel--back {
  top: 48px;
  left: 34px;
  width: min(90%, 355px);
  height: 370px;
  background: var(--sky-soft);
  transform: rotate(-7deg);
}

.quality__panel--front {
  top: 16px;
  left: 16px;
  width: min(93%, 383px);
  height: 397px;
  overflow: hidden;
  background: linear-gradient(160deg, #0c8dca, #0064a4);
  box-shadow: var(--shadow-md);
}

.quality__panel--front::before {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 270px;
  height: 270px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.quality__panel--front::after {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  content: "";
  border: 17px solid rgba(172, 231, 253, 0.21);
  border-radius: 50%;
}

.quality__room {
  position: absolute;
  top: 74px;
  left: 72px;
  display: grid;
  width: 230px;
  height: 160px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 12px;
  border: 6px solid rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  transform: skewY(-8deg);
}

.quality__room span {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(177, 230, 250, 0.02));
}

.quality__shine {
  position: absolute;
  z-index: 2;
  top: 45px;
  left: 44px;
  color: var(--white);
  font-size: 33px;
}

.quality__caption {
  position: absolute;
  z-index: 1;
  right: 27px;
  bottom: 27px;
  left: 27px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.quality__caption span {
  color: #a5e6ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.quality__caption p {
  margin: 3px 0 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
}

.quality__tag {
  position: absolute;
  z-index: 3;
  right: -29px;
  bottom: 37px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  border-radius: 10px;
  color: #31424f;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 800;
}

.quality__tag span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
}

.quality__content > p {
  max-width: 555px;
  margin: 25px 0 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.check-list > div {
  display: flex;
  gap: 12px;
}

.check-list > div > span {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  place-items: center;
  border-radius: 7px;
  color: var(--blue-800);
  background: var(--mist);
  font-size: 12px;
  font-weight: 800;
}

.check-list p {
  margin: 0;
  color: #6d7781;
  font-size: 11px;
  line-height: 1.65;
}

.check-list strong {
  color: #26313b;
  font-size: 12px;
}

.process {
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #0b4e7e;
}

.process::before {
  position: absolute;
  z-index: -1;
  top: -230px;
  right: -140px;
  width: 650px;
  height: 650px;
  content: "";
  border: 1px solid rgba(159, 225, 250, 0.25);
  border-radius: 50%;
}

.process::after {
  position: absolute;
  z-index: -1;
  bottom: -325px;
  left: -218px;
  width: 700px;
  height: 700px;
  content: "";
  border: 24px solid rgba(35, 168, 221, 0.18);
  border-radius: 50%;
}

.process__wash {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(175, 233, 253, 0.54), transparent);
}

.section-heading--center {
  max-width: 660px;
  margin: 0 auto 61px;
  text-align: center;
}

.section-heading--center h2 {
  margin: 0 auto;
  color: var(--white);
}

.section-heading--center h2 em {
  color: #a6eaff;
}

.section-heading--center > p {
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.75;
}

.process__steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
}

.process__steps li {
  position: relative;
}

.process__steps li:first-child::before {
  position: absolute;
  top: 23px;
  left: -32px;
  width: calc(100% - 26px);
  height: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(174, 232, 255, 0.5) 50%, transparent 50%);
  background-size: 7px 1px;
}

.process__steps li:not(:last-child)::after {
  position: absolute;
  top: 23px;
  left: calc(100% - 2px);
  width: calc(100% - 26px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(174, 232, 255, 0.5) 50%, transparent 50%);
  background-size: 7px 1px;
}

.process__number {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(171, 230, 252, 0.53);
  border-radius: 50%;
  color: #abe8ff;
  background: rgba(0, 33, 62, 0.22);
  font-size: 11px;
  font-weight: 800;
}

.process__steps h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.process__steps p {
  max-width: 210px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.7;
}

.spaces {
  padding: 108px 0;
  background: var(--mist);
}

.spaces__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.spaces__content > p {
  max-width: 620px;
  margin: 22px 0 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.spaces__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.spaces__pills span {
  padding: 8px 11px;
  border: 1px solid #cce8f3;
  border-radius: 7px;
  color: #416071;
  background: rgba(255, 255, 255, 0.59);
  font-size: 10px;
  font-weight: 700;
}

.spaces__quote {
  position: relative;
  padding: 43px 44px 37px;
  overflow: hidden;
  border-radius: 21px;
  color: var(--white);
  background: linear-gradient(145deg, #007cbe, #005e9e);
  box-shadow: var(--shadow-sm);
}

.spaces__quote::after {
  position: absolute;
  right: -68px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  content: "";
  border: 19px solid rgba(157, 229, 253, 0.2);
  border-radius: 50%;
}

.spaces__quote-mark {
  position: absolute;
  top: 14px;
  left: 29px;
  color: #86dcfb;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
}

.spaces__quote p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 25px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.spaces__quote-line {
  width: 35px;
  height: 2px;
  margin-bottom: 11px;
  background: #8fe1ff;
}

.spaces__quote small {
  color: #b7ecff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq {
  padding-bottom: 135px;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(420px, 1.25fr);
  align-items: start;
  gap: clamp(60px, 11vw, 150px);
}

.faq__intro > p {
  max-width: 360px;
  margin: 22px 0 27px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq__items {
  border-top: 1px solid #dbe9ef;
}

.faq-item {
  border-bottom: 1px solid #dbe9ef;
}

.faq-item__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 1px;
  border: 0;
  color: #24323d;
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
}

.faq-item__plus {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 1px solid #bedeea;
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item__plus::before,
.faq-item__plus::after {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 9px;
  height: 1.4px;
  content: "";
  background: var(--blue-800);
  transition: transform 0.2s ease;
}

.faq-item__plus::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__plus {
  border-color: var(--blue);
  background: var(--sky-soft);
}

.faq-item.is-open .faq-item__plus::after {
  transform: rotate(0deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.25s ease;
}

.faq-item__answer > p {
  min-height: 0;
  margin: 0;
  color: #64717c;
  font-size: 12px;
  line-height: 1.75;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__answer > p {
  padding: 0 44px 21px 0;
}

.contact {
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #00588f, #007fbd);
}

.contact__glow {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(181, 237, 255, 0.3);
  border-radius: 50%;
}

.contact__glow--one {
  top: -315px;
  left: -225px;
  width: 690px;
  height: 690px;
}

.contact__glow--two {
  right: -185px;
  bottom: -300px;
  width: 620px;
  height: 620px;
  border-width: 25px;
  border-color: rgba(149, 225, 255, 0.12);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr);
  align-items: center;
  gap: clamp(55px, 9vw, 125px);
}

.contact h2 {
  color: var(--white);
}

.contact h2 em {
  color: #b1ebff;
}

.contact__intro > p {
  max-width: 420px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 14px;
  line-height: 1.75;
}

.contact__notes {
  display: grid;
  gap: 12px;
}

.contact__notes p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 11px;
  font-weight: 700;
}

.contact__notes span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(206, 242, 255, 0.5);
  border-radius: 50%;
  color: #b9edff;
  font-size: 8px;
}

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 25px;
  margin-top: 25px;
  padding-top: 21px;
  border-top: 1px solid rgba(194, 237, 255, 0.3);
}

.contact__details a {
  display: grid;
  gap: 2px;
  color: var(--white);
}

.contact__details span {
  color: #b8edff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__details strong {
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact__details a:hover strong {
  color: #b7edff;
}

.contact-form {
  position: relative;
  padding: clamp(25px, 3.2vw, 39px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 70px rgba(0, 43, 75, 0.22);
}

.contact-form__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.contact-form__spark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-800);
  background: var(--mist);
  font-size: 19px;
}

.contact-form__heading p {
  margin: 0;
  color: #24313a;
  font-size: 14px;
  font-weight: 800;
}

.contact-form__heading small {
  color: #77818b;
  font-size: 10px;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: #53606b;
  font-size: 10px;
  font-weight: 800;
}

.form-grid label span {
  color: #94a0aa;
  font-weight: 600;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #dce9ee;
  border-radius: 8px;
  outline: none;
  color: #22303a;
  background: #fbfdfe;
  font-size: 11px;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid input,
.form-grid select {
  height: 40px;
  padding: 0 11px;
}

.form-grid select {
  color: #76818b;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #3981a4 50%), linear-gradient(135deg, #3981a4 50%, transparent 50%);
  background-position: calc(100% - 15px) 17px, calc(100% - 10px) 17px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-grid textarea {
  min-height: 72px;
  padding: 10px 11px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #a5afb7;
  opacity: 1;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 168, 221, 0.13);
}

.form-grid input.is-invalid,
.form-grid select.is-invalid {
  border-color: #d65757;
}

.consent.is-invalid span {
  color: #ba3e3e;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0;
  color: #6d7781;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.55;
}

.consent input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--blue);
}

.button--form {
  width: 100%;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.thank-you-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 0%, rgba(52, 164, 217, 0.22), transparent 28rem),
    linear-gradient(135deg, #f6fbfe 0%, #eef6fa 100%);
}

.thank-you {
  width: min(100% - 2rem, 780px);
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 3rem 0;
}

.thank-you__brand img {
  width: min(255px, 74vw);
  height: auto;
}

.thank-you__card {
  width: 100%;
  padding: clamp(2rem, 7vw, 4.5rem);
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 102, 159, 0.13);
  box-shadow: 0 1.75rem 5rem rgba(0, 65, 100, 0.13);
}

.thank-you__card h1 {
  max-width: 11ch;
  margin: 0.7rem auto 1rem;
  font-size: clamp(2.35rem, 8vw, 4.7rem);
  line-height: 1.03;
}

.thank-you__card > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}

.form-message {
  min-height: 17px;
  margin: 12px 0 0;
  color: var(--blue-800);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.form-message.is-error {
  color: #ba3e3e;
}

.site-footer {
  border-top: 1px solid #e5edf0;
  background: linear-gradient(180deg, var(--white) 0%, #f8fcfe 100%);
}

.site-footer__top {
  display: grid;
  align-items: center;
  grid-template-columns: 140px minmax(300px, 1fr) minmax(235px, 0.72fr);
  gap: clamp(28px, 4vw, 64px);
  min-height: 190px;
  padding: 24px 0;
}

.footer-brand {
  display: block;
  width: 140px;
  height: 135px;
}

.footer-brand img {
  width: 140px;
  height: 135px;
  object-fit: contain;
}

.site-footer__contact {
  display: grid;
  gap: 11px;
  padding: 8px 0 8px clamp(24px, 3vw, 44px);
  border-left: 1px solid #dceaf0;
}

.site-footer__label {
  margin: 0;
  color: var(--blue-800);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px clamp(24px, 3vw, 40px);
}

.site-footer__contact a {
  display: grid;
  gap: 2px;
  color: #24333d;
}

.site-footer__contact a span {
  color: #788792;
  font-size: 9px;
  font-weight: 700;
}

.site-footer__contact a strong {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.site-footer__contact a:hover strong,
.site-footer__contact a:focus-visible strong {
  color: var(--blue);
}

.site-footer__cta {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-footer__cta p {
  max-width: 280px;
  margin: 0;
  color: #52616c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  gap: 20px;
  border-top: 1px solid #e5edf0;
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  color: #84919a;
  font-size: 9px;
  font-weight: 600;
}

.site-footer__bottom div {
  display: flex;
  gap: 20px;
}

.site-footer__bottom a:hover {
  color: var(--blue);
}

body.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

body.has-js .reveal--delay {
  transition-delay: 0.12s;
}

body.has-js .reveal--delay-2 {
  transition-delay: 0.24s;
}

body.has-js .reveal--delay-3 {
  transition-delay: 0.36s;
}

@media (max-width: 1020px) {
  .nav-wrap {
    gap: 18px;
  }

  .site-nav {
    gap: 17px;
  }

  .nav-cta {
    display: none;
  }

  .nav-contact {
    display: block;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 45px;
  }

  .hero-photo {
    right: 0;
    width: min(100%, 370px);
    height: 370px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__arc {
    right: -62px;
    width: 380px;
    height: 380px;
  }

  .schedule-card {
    left: -20px;
  }

  .benefit {
    padding-right: 15px;
    padding-left: 15px;
  }

  .section-heading--split,
  .quality__grid,
  .spaces__grid,
  .faq__grid,
  .contact__grid {
    gap: 60px;
  }

  .quality__tag {
    right: -5px;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(410px, 1.3fr);
  }

  .site-footer__top {
    grid-template-areas:
      "brand contact"
      "cta cta";
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 24px 36px;
    min-height: 0;
    padding: 32px 0;
  }

  .footer-brand {
    grid-area: brand;
  }

  .site-footer__contact {
    grid-area: contact;
  }

  .site-footer__cta {
    grid-area: cta;
    padding-top: 20px;
    border-top: 1px solid #dceaf0;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .announcement {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 9px 18px 15px;
    border-bottom: 1px solid #d8e9f0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 25px rgba(2, 71, 110, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid #edf4f7;
    font-size: 13px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 65px;
  }

  .hero__grid,
  .section-heading--split,
  .quality__grid,
  .spaces__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 54px;
  }

  h1 {
    max-width: 610px;
    font-size: clamp(40px, 10.5vw, 62px);
  }

  h2 {
    font-size: clamp(32px, 8.2vw, 47px);
  }

  .hero__lead {
    max-width: 570px;
  }

  .hero__visual {
    width: min(100%, 500px);
    min-height: 410px;
    margin: 0 auto;
  }

  .hero-photo {
    right: 0;
    width: min(90%, 390px);
    height: 380px;
  }

  .hero__arc {
    right: -17px;
  }

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

  .benefit {
    min-height: 83px;
    padding: 13px !important;
    border-right: 1px solid #e3eef3 !important;
    border-bottom: 1px solid #e3eef3;
  }

  .benefit:nth-child(2n) {
    border-right: 0 !important;
  }

  .benefit:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .section-heading--split > p {
    max-width: 560px;
    margin: 0;
  }

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

  .quality__grid,
  .spaces__grid,
  .faq__grid,
  .contact__grid {
    gap: 49px;
  }

  .quality__visual {
    width: min(100%, 450px);
    min-height: 439px;
    margin: 0 auto;
  }

  .quality__panel--front {
    left: 20px;
  }

  .quality__tag {
    right: -8px;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

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

  .process__steps li:first-child::before {
    display: none;
  }

  .process__steps p {
    max-width: 290px;
  }

  .section-heading--center {
    margin-bottom: 47px;
  }

  .spaces__quote {
    max-width: 500px;
  }

  .faq {
    padding-bottom: 88px;
  }

  .faq__intro > p {
    max-width: 560px;
  }

  .contact__intro > p {
    max-width: 550px;
  }

  .site-footer__top {
    grid-template-areas:
      "brand contact"
      "cta cta";
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 24px 36px;
    min-height: 0;
    padding: 32px 0;
  }

  .footer-brand {
    grid-area: brand;
  }

  .site-footer__contact {
    grid-area: contact;
  }

  .site-footer__cta {
    grid-area: cta;
    padding-top: 20px;
    border-top: 1px solid #dceaf0;
  }
}

@media (max-width: 530px) {
  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 68px 0;
  }

  .brand__logo {
    height: 52px;
    max-width: 65px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero__visual {
    min-height: 354px;
  }

  .hero-photo {
    width: 86%;
    height: 326px;
    border-width: 8px;
    border-radius: 105px 20px 83px 20px;
  }

  .hero__arc {
    top: 23px;
    right: 0;
    width: 313px;
    height: 313px;
    border-width: 15px;
  }

  .hero__spark--a {
    top: 4px;
    right: 29px;
  }

  .hero__spark--b {
    bottom: 26px;
    left: 6px;
  }

  .schedule-card {
    top: 89px;
    left: -1px;
  }

  .quality-card {
    bottom: 1px;
    left: 3px;
  }

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

  .benefit,
  .benefit:nth-child(2n) {
    min-height: 70px;
    border-right: 0 !important;
    border-bottom: 1px solid #e3eef3 !important;
  }

  .benefit:last-child {
    border-bottom: 0 !important;
  }

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

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

  .quality__visual {
    min-height: 363px;
  }

  .quality__panel--back {
    top: 38px;
    left: 20px;
    height: 302px;
  }

  .quality__panel--front {
    top: 10px;
    left: 11px;
    width: 92%;
    height: 327px;
  }

  .quality__room {
    top: 60px;
    left: 52px;
    width: 190px;
    height: 132px;
  }

  .quality__tag {
    right: 0;
    bottom: 15px;
    padding: 10px 11px;
    font-size: 9px;
  }

  .quality__caption {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .quality__caption p {
    font-size: 18px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .process__number {
    margin-bottom: 11px;
  }

  .spaces__quote {
    padding: 38px 30px 31px;
  }

  .spaces__quote p {
    font-size: 23px;
  }

  .contact-form {
    padding: 23px 18px;
  }

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

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

  .site-footer__top {
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    padding: 35px 0;
    grid-template-areas:
      "brand"
      "contact"
      "cta";
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer__contact {
    width: 100%;
    padding: 18px 0;
    border-top: 1px solid #dceaf0;
    border-bottom: 1px solid #dceaf0;
    border-left: 0;
  }

  .site-footer__contact-links {
    display: grid;
    gap: 10px;
  }

  .site-footer__cta {
    padding-top: 0;
    border-top: 0;
  }

  .site-footer__cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    padding: 16px 0;
    flex-direction: column;
    gap: 8px;
  }
}

@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;
  }
}
