@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap");

:root {
  --blue-950: #03142f;
  --blue-900: #06204b;
  --blue-800: #073b8f;
  --blue-700: #0758d6;
  --blue-600: #0876ee;
  --blue-500: #00a7f5;
  --cyan: #00d8f2;
  --green-700: #118f4a;
  --green-600: #18ad5b;
  --green-500: #21c96b;
  --green-100: #e6f9ed;
  --white: #ffffff;
  --ice: #f3f8ff;
  --slate-50: #f7f9fc;
  --slate-100: #e9eef5;
  --slate-300: #b7c3d4;
  --slate-500: #66758b;
  --slate-700: #34445b;
  --slate-900: #152235;
  --danger: #bf2b3b;
  --shadow-sm: 0 10px 30px rgba(5, 36, 83, .09);
  --shadow-md: 0 22px 60px rgba(5, 36, 83, .14);
  --shadow-lg: 0 32px 90px rgba(1, 16, 40, .25);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 800;
}

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

.announcement {
  position: relative;
  z-index: 101;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-800), var(--blue-600) 55%, var(--green-600));
  font-size: 13px;
}

.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.announcement a {
  font-weight: 800;
  white-space: nowrap;
}

.announcement a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(7, 59, 143, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(3, 20, 47, .09); }

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { width: 178px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
  transition: right .2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after { right: 0; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--ice);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--blue-900);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(0, 216, 242, .35); outline-offset: 3px; }

.button--small { min-height: 43px; padding: 0 19px; font-size: 14px; }
.button--green { color: var(--white); background: linear-gradient(135deg, var(--green-600), var(--green-500)); box-shadow: 0 12px 28px rgba(24, 173, 91, .25); }
.button--green:hover { box-shadow: 0 17px 35px rgba(24, 173, 91, .33); }
.button--blue { color: var(--white); background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); box-shadow: 0 12px 28px rgba(7, 88, 214, .23); }
.button--outline { color: var(--white); border-color: rgba(255, 255, 255, .48); background: rgba(255, 255, 255, .07); }
.button--outline:hover { border-color: var(--white); background: rgba(255, 255, 255, .13); }
.button--outline-dark { color: var(--blue-800); border-color: var(--slate-300); background: transparent; }
.button--outline-dark:hover { border-color: var(--blue-600); }
.button--white { color: var(--blue-900); background: var(--white); box-shadow: 0 15px 35px rgba(2, 19, 43, .17); }
.button--full { width: 100%; }

.hero {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 25%, rgba(0, 216, 242, .12), transparent 26%),
    linear-gradient(126deg, #020b1b 0%, #05235a 51%, #06439c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero__glow--one {
  width: 460px; height: 460px;
  top: -210px; right: -100px;
  background: rgba(0, 216, 242, .15);
}

.hero__glow--two {
  width: 420px; height: 420px;
  bottom: -250px; left: -100px;
  background: rgba(33, 201, 107, .14);
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 75px;
  padding-top: 70px;
  padding-bottom: 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow--light { color: #82f4bf; }

.hero h1,
.section-heading h2,
.process h2,
.why-us h2,
.booking h2,
.final-cta h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 6vw, 83px);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #fff 8%, #73eaff 55%, #62eb9d 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 650px;
  margin: 25px 0 31px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 27px;
  margin-top: 32px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
}

.hero__highlights div { display: flex; align-items: center; gap: 8px; }
.hero__highlights svg { width: 18px; fill: none; stroke: #6ef0a7; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero__visual { position: relative; }
.hero-logo-panel {
  position: relative;
  min-height: 306px;
  display: grid;
  place-items: center;
  padding: 48px 45px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(1, 7, 18, .9), rgba(2, 17, 44, .72));
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-logo-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--radius-lg) - 1px);
  background:
    radial-gradient(circle at 80% 20%, rgba(0,216,242,.18), transparent 30%),
    radial-gradient(circle at 25% 90%, rgba(33,201,107,.12), transparent 28%);
}

.hero-logo-panel__shine {
  position: absolute;
  top: -90px; left: -140px;
  width: 220px; height: 500px;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

.hero-logo-panel img {
  width: min(100%, 490px);
  filter: drop-shadow(0 12px 28px rgba(0, 148, 255, .2));
}

.hero-logo-panel p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}

.quick-card {
  position: relative;
  width: calc(100% - 50px);
  margin: -40px auto 0;
  padding: 25px;
  color: var(--slate-900);
  border: 1px solid rgba(7,59,143,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-md);
}

.quick-card__label {
  margin: 0 0 15px;
  color: var(--blue-900);
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.quick-card__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.quick-card__options a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 5px;
  border-radius: 12px;
  background: var(--ice);
  color: var(--slate-700);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.quick-card__options a:hover {
  transform: translateY(-3px);
  color: var(--blue-700);
  background: #e4f4ff;
}

.quick-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  color: var(--blue-700);
}

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

.hero__wave {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: -1px;
  height: 92px;
}

.hero__wave svg { width: 100%; height: 100%; }
.hero__wave path { fill: var(--white); }

.section { padding: 108px 0; }
.section-heading { max-width: 770px; margin: 0 auto 52px; text-align: center; }
.section-heading h2,
.process h2,
.why-us h2,
.booking h2 { font-size: clamp(38px, 4.2vw, 58px); }
.section-heading p:not(.eyebrow) { max-width: 690px; margin: 20px auto 0; color: var(--slate-500); }

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #cbe4ff;
  box-shadow: var(--shadow-md);
}

.service-card--accent {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue-800), var(--blue-600));
}

.service-card--accent p { color: rgba(255,255,255,.72) !important; }
.service-card--accent a { color: #8af4bd !important; }
.service-card--accent .service-card__number { color: rgba(255,255,255,.25); }
.service-card--accent .service-icon--large { color: var(--white); background: rgba(255,255,255,.12); }

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 29px;
}

.service-icon--large {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: linear-gradient(145deg, #ecf7ff, #e8fff1);
}

.service-icon--large svg { width: 31px; height: 31px; }
.service-card__number { color: #d8e3f1; font-family: "Outfit", sans-serif; font-size: 19px; font-weight: 800; }
.service-card h3 { margin: 0; font-family: "Outfit", sans-serif; font-size: 23px; }
.service-card p { margin: 13px 0 22px; color: var(--slate-500); font-size: 14px; }
.service-card a { display: inline-flex; gap: 7px; margin-top: auto; color: var(--blue-700); font-size: 13px; font-weight: 800; }

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 10%, rgba(0,216,242,.15), transparent 28%),
    linear-gradient(120deg, var(--blue-950), var(--blue-800));
}

.process .container {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.process__intro > p:not(.eyebrow) { margin: 21px 0 29px; color: rgba(255,255,255,.68); }
.process__steps { display: grid; gap: 14px; }

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}

.process-step > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--blue-950);
  border-radius: 15px;
  background: linear-gradient(145deg, #7feeb1, #40d781);
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.process-step h3 { margin: 0; font-family: "Outfit", sans-serif; font-size: 21px; }
.process-step p { margin: 6px 0 0; color: rgba(255,255,255,.64); font-size: 14px; }

.why-us { overflow: hidden; background: var(--slate-50); }
.why-us__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-us__visual { min-height: 580px; display: grid; place-items: center; }

.device-stack {
  position: relative;
  width: min(100%, 520px);
  height: 500px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0,167,245,.13), rgba(33,201,107,.05) 45%, transparent 68%);
}

.device {
  position: absolute;
  z-index: 2;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(145deg, #142845, #020915);
  box-shadow: var(--shadow-lg);
}

.device__screen {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(0,216,242,.25), transparent 28%),
    linear-gradient(145deg, #03162f, #0758d6);
}

.device__screen span {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(0,216,242,.55);
}

.device__screen small {
  position: absolute;
  bottom: 20px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.device--phone {
  top: 48px;
  left: 58px;
  width: 205px;
  height: 407px;
  border-radius: 38px;
  transform: rotate(-7deg);
}

.device--phone .device__screen { height: 100%; border-radius: 30px; }
.device--phone .device__screen span { font-size: 98px; }
.device__speaker {
  position: absolute;
  z-index: 3;
  top: 18px; left: 50%;
  width: 56px; height: 8px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: #020915;
}

.device--laptop {
  right: -10px;
  bottom: 44px;
  width: 330px;
  height: 217px;
  border-radius: 18px 18px 8px 8px;
  transform: rotate(5deg);
}

.device--laptop .device__screen { height: 100%; border-radius: 10px; }
.device--laptop .device__screen span { color: #77efad; font-size: 75px; }
.device--laptop .device__base {
  position: absolute;
  left: -24px; right: -24px; bottom: -20px;
  height: 20px;
  border-radius: 3px 3px 18px 18px;
  background: linear-gradient(#dbe5ef, #8d9cac);
  box-shadow: 0 10px 20px rgba(2,9,21,.18);
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(7,88,214,.19);
  border-radius: 50%;
}

.orbit--one { inset: 25px; animation: spin 26s linear infinite; }
.orbit--two { inset: 80px; border-color: rgba(33,201,107,.22); animation: spin 19s linear reverse infinite; }

.orbit::before {
  content: "";
  position: absolute;
  top: 50%; left: -7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 22px rgba(33,201,107,.7);
}

@keyframes spin { to { transform: rotate(360deg); } }

.why-us__lead { margin: 21px 0 30px; color: var(--slate-500); }
.feature-list { display: grid; gap: 17px; }
.feature { display: grid; grid-template-columns: 48px 1fr; gap: 16px; }
.feature > span {
  width: 47px; height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-700);
  background: var(--green-100);
}
.feature svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin: 1px 0 3px; font-family: "Outfit", sans-serif; font-size: 18px; }
.feature p { margin: 0; color: var(--slate-500); font-size: 14px; }

.booking {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(126deg, var(--blue-900), var(--blue-700));
}

.booking__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.booking__shape--one { width: 500px; height: 500px; top: -260px; right: -120px; background: rgba(0,216,242,.11); }
.booking__shape--two { width: 450px; height: 450px; left: -280px; bottom: -260px; background: rgba(33,201,107,.12); }

.booking__grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.booking__intro { position: sticky; top: 140px; padding-top: 30px; }
.booking__intro > p:not(.eyebrow) { margin: 22px 0 32px; color: rgba(255,255,255,.72); }

.booking__location {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}

.booking__location > span {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  color: #80f2b3;
  border-radius: 15px;
  background: rgba(33,201,107,.13);
}
.booking__location svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.booking__location strong { display: block; margin-bottom: 5px; font-family: "Outfit", sans-serif; font-size: 18px; }
.booking__location address { color: rgba(255,255,255,.67); font-size: 14px; }

.form-card {
  padding: 36px;
  color: var(--slate-900);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-100);
}
.form-card__header span { font-family: "Outfit", sans-serif; font-size: 25px; font-weight: 800; }
.form-card__header small { color: var(--slate-500); font-size: 11px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: var(--slate-700); font-size: 12px; font-weight: 800; }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8e0eb;
  border-radius: 12px;
  color: var(--slate-900);
  background: #fbfcfe;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input,
.field select { min-height: 50px; padding: 0 14px; }

.field textarea { min-height: 135px; padding: 13px 14px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(8,118,238,.11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(191,43,59,.09);
}

.field-error {
  min-height: 16px;
  display: block;
  padding-top: 4px;
  color: var(--danger);
  font-size: 10px;
  font-weight: 700;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 21px;
  color: var(--slate-500);
  font-size: 11px;
}
.consent input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--green-600); }
.honeypot { position: absolute !important; left: -5000px !important; opacity: 0 !important; }

.form-note { margin: 12px 0 0; color: var(--slate-500); font-size: 10px; text-align: center; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 11px; font-size: 12px; font-weight: 700; }
.form-status.is-success { display: block; color: #086c36; background: #e7faef; }
.form-status.is-error { display: block; color: #9a2030; background: #fff0f2; }

.button-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

button.is-loading .button-loader { display: block; }
button.is-loading .button-text { opacity: .65; }

.location { background: var(--white); }
.location__grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; }
.map-card { min-height: 500px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.map-card iframe { width: 100%; height: 100%; min-height: 500px; border: 0; filter: saturate(.85) contrast(1.02); }

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--slate-50), var(--white));
  box-shadow: var(--shadow-sm);
}
.location-card img { width: 230px; margin-bottom: 30px; padding: 16px; border-radius: 15px; background: var(--blue-950); }
.location-card h3 { margin: 0 0 10px; font-family: "Outfit", sans-serif; font-size: 25px; }
.location-card address { margin-bottom: 25px; color: var(--slate-500); }
.location-card .button + .button { margin-top: 10px; }
.location-card__note { margin: 18px 0 0; color: var(--slate-500); font-size: 11px; text-align: center; }

.final-cta {
  padding: 65px 0;
  color: var(--white);
  background: linear-gradient(110deg, var(--green-700), var(--green-500));
}
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta h2 { font-size: clamp(34px, 4vw, 51px); }
.final-cta .eyebrow { margin-bottom: 8px; color: rgba(255,255,255,.72); }

.site-footer { color: rgba(255,255,255,.68); background: #020b1b; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .65fr .8fr;
  gap: 80px;
  padding-top: 75px;
  padding-bottom: 55px;
}
.footer__brand img { width: 260px; margin-bottom: 23px; }
.footer__brand p { max-width: 470px; }
.site-footer h2 { margin: 0 0 17px; color: var(--white); font-family: "Outfit", sans-serif; font-size: 16px; }
.site-footer a { display: block; width: fit-content; margin: 8px 0; font-size: 13px; }
.site-footer a:hover { color: #7aefae; }
.site-footer address { font-size: 13px; }
.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1050px) {
  .main-nav { gap: 20px; }
  .hero__grid { gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { gap: 50px; }
  .booking__grid { gap: 45px; }
  .location__grid { grid-template-columns: 1.1fr .9fr; }
}

@media (max-width: 860px) {
  .announcement__inner { min-height: 42px; justify-content: center; }
  .announcement__inner > span { display: none; }

  .menu-button { display: block; }
  .main-nav {
    position: fixed;
    top: 122px;
    left: 20px;
    right: 20px;
    max-height: calc(100vh - 145px);
    overflow-y: auto;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--slate-100);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav > a:not(.button) { padding: 14px; border-bottom: 1px solid var(--slate-100); }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 15px; }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

  .hero__grid,
  .process .container,
  .why-us__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid { padding-top: 65px; gap: 58px; }
  .hero__content { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions,
  .hero__highlights { justify-content: center; }
  .hero__visual { max-width: 650px; width: 100%; margin-inline: auto; }

  .process .container { gap: 45px; }
  .process__intro { max-width: 650px; }

  .why-us__visual { order: 2; min-height: 510px; }
  .why-us__content { order: 1; }

  .booking__intro { position: static; padding-top: 0; }
  .location__grid { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 420px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 154px; }
  .main-nav { top: 112px; left: 14px; right: 14px; }

  .hero { min-height: auto; }
  .hero__grid { padding-top: 58px; padding-bottom: 100px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__highlights { display: grid; justify-content: center; text-align: left; }
  .hero-logo-panel { min-height: 230px; padding: 34px 25px; border-radius: 25px; }
  .quick-card { width: calc(100% - 22px); padding: 19px; }
  .quick-card__options { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 35px; text-align: left; }
  .section-heading p:not(.eyebrow) { margin-left: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; padding: 25px; }
  .process-step { grid-template-columns: 48px 1fr; padding: 20px; }
  .process-step > span { width: 44px; height: 44px; }

  .why-us__visual { min-height: 395px; }
  .device-stack { height: 390px; transform: scale(.78); }
  .device--phone { left: 10px; }
  .device--laptop { right: -70px; }

  .form-card { padding: 24px 19px; border-radius: 24px; }
  .form-card__header { display: block; }
  .form-card__header small { display: block; margin-top: 4px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .location-card { padding: 29px 24px; }
  .map-card, .map-card iframe { min-height: 350px; }
  .final-cta__inner { display: grid; }
  .final-cta .button { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 38px; padding-top: 55px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { display: block; padding: 20px 0; text-align: center; }
}


.business-hours {
  margin: 0 0 25px;
  padding: 18px;
  border: 1px solid var(--slate-100);
  border-radius: 15px;
  background: var(--white);
}

.business-hours h4 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
}

.business-hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-top: 1px solid var(--slate-100);
  color: var(--slate-500);
  font-size: 12px;
}

.business-hours div:first-of-type {
  border-top: 0;
}

.business-hours strong {
  color: var(--slate-900);
  text-align: right;
}

.footer-hours {
  margin: 12px 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

@media (max-width: 420px) {
  .business-hours div {
    display: block;
  }

  .business-hours strong {
    display: block;
    margin-top: 2px;
    text-align: left;
  }
}
