@charset "UTF-8";

:root {
  --navy-950: #041622;
  --navy-900: #071d2e;
  --navy-800: #0b2b41;
  --navy-700: #123f5b;
  --cyan-500: #00a7c7;
  --cyan-400: #24c6dc;
  --cyan-100: #dff8fb;
  --orange-500: #ff6b17;
  --orange-100: #fff0e6;
  --mist: #f1f7f8;
  --cloud: #f8fbfb;
  --white: #ffffff;
  --ink: #102b3b;
  --muted: #526a78;
  --line: #d9e5e8;
  --shadow-sm: 0 10px 30px rgba(5, 29, 45, 0.08);
  --shadow-lg: 0 30px 80px rgba(5, 29, 45, 0.18);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

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

button:active,
.button:active,
.header-call:active,
.mobile-call-cta:active {
  transform: scale(0.97);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--navy-950);
  background: var(--cyan-400);
}

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

.section {
  padding: 86px 0;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(13, 70, 91, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(5, 29, 45, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  width: 180px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--white);
  transition: 180ms var(--ease-out);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.primary-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  display: none;
  padding: 14px 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.primary-nav.is-open {
  display: grid;
}

.primary-nav a {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--navy-800);
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--cyan-500);
  background: var(--mist);
}

.header-call {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  padding: 56px 0 104px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 179, 211, 0.19), transparent 34%),
    linear-gradient(132deg, var(--navy-950) 0%, var(--navy-900) 55%, #0b3448 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  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: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 54px;
  align-items: center;
}

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

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--cyan-500);
  font-family: "Sora", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #75e6f2;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange-500);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.55rem, 10vw, 5.2rem);
  font-weight: 700;
}

h1 em {
  display: block;
  color: #6ee7f2;
  font-style: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 3.7rem);
  font-weight: 700;
}

h3 {
  font-size: 1.28rem;
}

.hero-lede {
  max-width: 625px;
  margin: 0 0 30px;
  color: #d2e4ea;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions,
.conversion-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button svg,
.header-call svg,
.mobile-call-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 14px 30px rgba(255, 107, 23, 0.24);
}

.button-primary:hover {
  background: #e95a08;
  box-shadow: 0 18px 34px rgba(255, 107, 23, 0.32);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--cyan-400);
  background: rgba(255, 255, 255, 0.12);
}

.button-white {
  color: var(--navy-900);
  background: var(--white);
}

.button-white:hover {
  color: var(--cyan-500);
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
  color: #bed4dc;
  font-size: 0.88rem;
}

.hero-proof span {
  position: relative;
  padding-left: 15px;
}

.hero-proof span::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-400);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-500);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-link {
  margin-top: 20px;
  color: #7cebf4;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 620px);
  justify-self: center;
}

.image-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px 34px 84px 34px;
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, transparent 45%, rgba(4, 22, 34, 0.3));
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.weather-card {
  position: relative;
  z-index: 3;
  width: min(90%, 300px);
  display: flex;
  align-items: center;
  gap: 13px;
  margin: -34px 0 0 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  color: var(--navy-900);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.weather-icon {
  width: 49px;
  height: 49px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan-500);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.weather-card strong,
.weather-card small {
  display: block;
}

.weather-card strong {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
}

.weather-card small {
  color: var(--muted);
  font-size: 0.76rem;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(37, 199, 220, 0.25);
  border-radius: 50%;
}

.orbit-one {
  width: 160px;
  height: 160px;
  top: -34px;
  right: -58px;
}

.orbit-two {
  width: 92px;
  height: 92px;
  right: -12px;
  bottom: 20px;
  border-color: rgba(255, 107, 23, 0.34);
}

.hero-curve {
  position: absolute;
  z-index: 1;
  right: -10%;
  bottom: -110px;
  width: 62%;
  height: 220px;
  border-radius: 50% 0 0 0;
  background: rgba(0, 167, 199, 0.11);
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}

.trust-grid {
  display: grid;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-bottom: 0;
}

.trust-grid svg,
.contact-lines svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cyan-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.trust-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.trust-grid strong {
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-section {
  padding-top: 118px;
}

.about-grid {
  display: grid;
  gap: 30px;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.about-note,
.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy-900);
}

.about-note {
  padding: 26px;
}

.about-photo {
  min-height: 360px;
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.about-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 52% center;
}

.about-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  content: "";
  background: linear-gradient(to top, rgba(4, 22, 34, 0.94), transparent);
}

.about-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.about-photo figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan-400);
}

.about-note::after {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(36, 198, 220, 0.18);
  border-radius: 50%;
  content: "";
}

.note-number,
.benefit-index,
.service-num,
.detail-number {
  color: var(--cyan-500);
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-note p {
  position: relative;
  z-index: 1;
  margin: 38px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
}

.why-section {
  background: var(--cloud);
}

.benefit-grid {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.benefit-card {
  min-height: 190px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.benefit-card:hover {
  border-color: rgba(0,167,199,.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.benefit-card.featured {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.benefit-card.featured h3,
.benefit-card.featured p {
  color: var(--white);
}

.benefit-card h3 {
  margin: 28px 0 10px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.services-section {
  color: var(--white);
  background:
    linear-gradient(rgba(7,29,46,.98), rgba(7,29,46,.98)),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.services-intro {
  display: grid;
  gap: 20px;
  align-items: end;
}

.services-intro h2,
.kicker.light {
  color: var(--white);
}

.services-intro > p {
  max-width: 500px;
  margin: 0;
  color: #b9d0d8;
}

.service-grid {
  display: grid;
  gap: 15px;
  margin-top: 44px;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 0 26px 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  transition: transform 220ms var(--ease-out), background-color 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.service-card-photo {
  width: calc(100% + 52px);
  height: 164px;
  margin: 0 -26px 22px;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 420ms var(--ease-out), filter 220ms var(--ease-out);
}

.service-card:nth-child(1) .service-card-photo,
.service-card:nth-child(3) .service-card-photo,
.service-card:nth-child(4) .service-card-photo {
  object-position: center 48%;
}

.service-card:nth-child(2) .service-card-photo,
.service-card:nth-child(5) .service-card-photo,
.service-card:nth-child(6) .service-card-photo {
  object-position: center 28%;
}

.service-card:hover .service-card-photo {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.025);
}

.service-card:hover {
  border-color: rgba(36,198,220,.5);
  background: rgba(255,255,255,.09);
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--cyan-400);
  background: rgba(36,198,220,.12);
}

.service-icon.warm {
  color: #ff9a5f;
  background: rgba(255,107,23,.13);
}

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

.service-num {
  position: absolute;
  top: 186px;
  right: 26px;
  color: rgba(255,255,255,.28);
}

.service-card h3 {
  margin: 28px 0 12px;
  color: var(--white);
  font-size: 1.2rem;
}

.service-card p {
  margin: 0 0 20px;
  color: #b9d0d8;
  font-size: 0.91rem;
}

.service-card a {
  color: #79e5ef;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

.service-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms var(--ease-out);
}

.service-card a:hover span {
  transform: translateX(4px);
}

.service-details {
  background: var(--white);
}

.service-detail {
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail.tinted {
  background: #fff8f3;
}

.detail-grid {
  display: grid;
  gap: 20px;
}

.detail-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--cyan-100);
}

.detail-number.warm {
  background: var(--orange-100);
}

.warm-text {
  color: var(--orange-500) !important;
}

.detail-grid h3,
.detail-panel h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.detail-copy p,
.detail-panel > p {
  margin-top: 0;
  color: var(--muted);
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  margin-top: 22px;
}

.detail-links > a:not(.text-link) {
  color: var(--muted);
  font-size: 0.88rem;
}

.image-detail,
.comfort-detail {
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
}

.detail-image-grid {
  width: 100%;
  display: grid;
}

.detail-image {
  min-height: 340px;
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-panel {
  padding: 54px 24px;
  color: var(--white);
  background: var(--navy-900);
}

.detail-panel h3 {
  margin: 16px 0 20px;
  color: var(--white);
}

.detail-panel > p {
  color: #c4d7de;
}

.detail-panel .detail-links > a:not(.text-link) {
  color: #b6cbd3;
}

.comfort-detail .detail-panel {
  background: #fdf7f2;
}

.comfort-detail .detail-panel h3 {
  color: var(--navy-900);
}

.comfort-detail .detail-panel > p {
  color: var(--muted);
}

.comfort-detail .detail-panel .detail-links > a:not(.text-link) {
  color: var(--muted);
}

.conversion-band {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: var(--white);
  background: var(--cyan-500);
}

.conversion-band::before,
.conversion-band::after {
  position: absolute;
  border: 28px solid rgba(255,255,255,.11);
  border-radius: 50%;
  content: "";
}

.conversion-band::before {
  width: 190px;
  height: 190px;
  top: -120px;
  right: 12%;
}

.conversion-band::after {
  width: 120px;
  height: 120px;
  bottom: -85px;
  left: 8%;
  border-color: rgba(7,29,46,.1);
}

.conversion-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}

.conversion-band h2 {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 6vw, 3rem);
}

.area-section {
  background: var(--cloud);
}

.area-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.area-city {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.area-copy address {
  margin-bottom: 20px;
  color: var(--muted);
  font-style: normal;
}

.area-copy > p:not(.area-city) {
  color: var(--muted);
}

.area-copy > p a {
  color: var(--navy-900);
  font-weight: 700;
}

.map-alternative {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 12px 12px 0;
  background: var(--white);
}

.map-alternative strong {
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
}

.map-alternative p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.map-shell {
  position: relative;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  background: #dce9e8;
  box-shadow: var(--shadow-lg);
}

.map-placeholder,
.map-frame {
  width: 100%;
  min-height: 400px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 30px;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(rgba(241,247,248,.88), rgba(241,247,248,.88)),
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(7,29,46,.07) 24px 26px);
}

.map-placeholder p {
  margin: 0;
}

.map-placeholder strong {
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
}

.map-pin {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 12px 28px rgba(255,107,23,.3);
}

.map-pin svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.map-frame {
  display: block;
  border: 0;
}

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 13px 16px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.74rem;
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
}

.faq-section {
  color: var(--white);
  background: var(--navy-950);
}

.faq-grid {
  display: grid;
  gap: 44px;
}

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

.faq-intro > p:not(.kicker) {
  max-width: 460px;
  color: #b9d0d8;
}

.faq-intro .button {
  margin-top: 16px;
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,.18);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.faq-item button:hover {
  color: #75e6f2;
}

.faq-item button i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--cyan-400);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms var(--ease-out);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 42px 22px 0;
  color: #c3d6dd;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: #7cebf4;
}

.contact-section {
  background:
    radial-gradient(circle at 0 100%, rgba(36,198,220,.12), transparent 30%),
    var(--mist);
}

.contact-grid {
  display: grid;
  gap: 38px;
  align-items: start;
}

.contact-copy > p:not(.kicker) {
  color: var(--muted);
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.contact-lines > a,
.contact-lines > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  text-decoration: none;
}

.contact-lines > a:hover {
  background: var(--white);
}

.contact-lines span {
  width: 48px;
  height: 48px;
  display: grid;
  grid-row: span 2;
  place-items: center;
  border-radius: 14px;
  background: var(--cyan-100);
}

.contact-lines strong,
.contact-lines small {
  display: block;
}

.contact-lines strong {
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}

.contact-lines small {
  color: var(--muted);
}

.contact-accent {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: "Sora", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-accent i {
  width: 120px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan-500), #c8e9eb 48%, var(--orange-500));
}

.service-form {
  padding: 26px;
  border-top: 6px solid var(--cyan-500);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 24px;
}

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

.form-heading span {
  margin-bottom: 6px;
  color: var(--cyan-500);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.form-row {
  display: grid;
  gap: 0;
}

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.field label span {
  color: var(--orange-500);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cbdde1;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfdfd;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background-color 160ms var(--ease-out);
}

.field input {
  height: 50px;
  padding: 0 14px;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,167,199,.13);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #bc391c;
}

.field-error {
  min-height: 1.2em;
  display: block;
  margin-top: 5px;
  color: #a52d16;
  font-size: 0.76rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  padding: 16px;
  border-radius: 10px;
  background: var(--cloud);
}

.consent-field input {
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  accent-color: var(--cyan-500);
}

.consent-field label {
  color: #445c69;
  font-size: 0.76rem;
  line-height: 1.55;
}

.consent-error {
  margin-bottom: 6px;
}

.form-submit {
  width: 100%;
  margin-top: 5px;
  border: 0;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 13px 15px;
  border-radius: 10px;
  color: #74400b;
  background: #fff2d7;
  font-size: 0.86rem;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  padding: 64px 0 calc(96px + env(safe-area-inset-bottom));
  color: #b9cdd5;
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  width: 210px;
}

.footer-brand img {
  width: 100%;
}

.footer-top nav {
  display: grid;
  gap: 10px;
}

.footer-top nav a,
.footer-contact a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-top nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--cyan-400);
}

.footer-contact address {
  max-width: 330px;
  margin-top: 8px;
  font-style: normal;
}

.footer-disclaimer {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-disclaimer p {
  margin: 0;
  color: #91aab4;
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer-disclaimer strong {
  color: #b9cdd5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
  color: #91aab4;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
}

.mobile-call-cta {
  position: fixed;
  z-index: 95;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 14px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 15px;
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 16px 36px rgba(5,29,45,.28);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms;
}

.contact-in-view .mobile-call-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 600px) {
  .shell {
    width: min(1180px, calc(100% - 56px));
  }

  .hero-actions,
  .conversion-actions {
    flex-direction: row;
    align-items: center;
  }

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

  .trust-grid > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trust-grid > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

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

  .service-form {
    padding: 36px;
  }

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

  .map-legend,
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }

  .map-legend {
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 88px;
  }

  .section {
    padding: 120px 0;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    width: 190px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 8px 8px;
    font-size: 0.76rem;
  }

  .header-call {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 11px;
    color: var(--white);
    background: var(--orange-500);
    font-size: 0.75rem;
    text-decoration: none;
    transition: transform 160ms var(--ease-out), background-color 180ms var(--ease-out);
  }

  .header-call:hover {
    background: #e95a08;
  }

  .header-call span,
  .header-call strong {
    display: inline;
  }

  .hero {
    min-height: 770px;
    display: flex;
    align-items: center;
    padding: 76px 0 126px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: 50px;
  }

  h1 {
    font-size: clamp(3.6rem, 5.2vw, 5.2rem);
  }

  .trust-strip {
    margin-top: -42px;
  }

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

  .trust-grid > div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-grid > div:last-child {
    border-right: 0;
  }

  .about-section {
    padding-top: 150px;
  }

  .about-grid {
    grid-template-columns: 1.05fr 1.25fr .65fr;
    gap: 58px;
    align-items: start;
  }

  .about-note,
  .about-photo {
    margin-top: 72px;
  }

  .about-photo,
  .about-photo img {
    min-height: 430px;
    height: 430px;
  }

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

  .benefit-card.featured {
    transform: translateY(-12px);
  }

  .benefit-card.featured:hover {
    transform: translateY(-17px);
  }

  .services-intro {
    grid-template-columns: 1.35fr .65fr;
    gap: 80px;
  }

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

  .detail-grid {
    grid-template-columns: 72px minmax(230px, .75fr) minmax(0, 1.25fr);
    gap: 34px;
    align-items: start;
  }

  .detail-image-grid {
    width: min(1180px, calc(100% - 56px));
    min-height: 540px;
    grid-template-columns: 1.08fr .92fr;
    margin-inline: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .detail-image-grid.reverse .detail-image {
    order: 2;
  }

  .detail-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
  }

  .conversion-grid {
    grid-template-columns: 1fr auto;
    gap: 60px;
  }

  .area-grid {
    grid-template-columns: .82fr 1.18fr;
    gap: 80px;
  }

  .faq-grid {
    grid-template-columns: .72fr 1.28fr;
    gap: 100px;
    align-items: start;
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 44px);
  }

  .contact-grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
  }

  .footer-top {
    grid-template-columns: .9fr .6fr .9fr;
    gap: 60px;
  }

  .site-footer {
    padding-bottom: 46px;
  }

  .mobile-call-cta {
    display: none;
  }
}

@media (min-width: 1120px) {
  .primary-nav {
    gap: 4px;
  }

  .primary-nav a {
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .header-call {
    padding: 11px 16px;
    font-size: 0.79rem;
  }
}

@media (max-width: 374px) {
  .shell {
    width: min(1180px, calc(100% - 24px));
  }

  .brand {
    width: 160px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .button,
  .mobile-call-cta {
    font-size: 0.78rem;
  }

  .service-form {
    padding: 22px 18px;
  }
}

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

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

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
