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

:root {
  --ink-950: #06111f;
  --ink-900: #091a2c;
  --ink-800: #10283c;
  --ink-700: #21445a;
  --slate-600: #4a6678;
  --slate-500: #647d8d;
  --mist-200: #dce8ed;
  --mist-100: #eef5f7;
  --mist-50: #f7fbfc;
  --white: #ffffff;
  --cyan-500: #00c8c8;
  --cyan-400: #19e2dd;
  --cyan-300: #70f6ef;
  --blue-500: #1686ff;
  --lime-400: #b7ef35;
  --lime-500: #9ed520;
  --danger: #b92e42;
  --success: #14795a;
  --notice: #8a5a00;
  --font-display: "Sora", "Avenir Next", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgba(7, 27, 44, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 27, 44, 0.15);
  --shadow-glow: 0 16px 50px rgba(0, 200, 200, 0.2);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --header-height: 76px;
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  border: 0;
}

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

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

h1,
h2,
h3 {
  color: var(--ink-950);
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 7vw, 5.65rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.55rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2.3vw, 1.48rem);
  font-weight: 700;
}

section,
article,
footer {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

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

.narrow {
  width: min(100% - 32px, 840px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 128px) 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #067d7d;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-500);
  content: "";
}

.section-intro {
  color: var(--slate-600);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--ink-950);
  background: var(--lime-400);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--white);
  background: rgba(6, 17, 31, 0.92);
  backdrop-filter: blur(18px);
  transition:
    background-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(6, 17, 31, 0.98);
  box-shadow: 0 8px 32px rgba(3, 12, 22, 0.28);
}

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

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  flex: 0 1 246px;
  align-items: center;
  min-width: 154px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition:
    transform 180ms var(--ease-out),
    opacity 180ms var(--ease-out);
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

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

.primary-navigation {
  position: fixed;
  z-index: 101;
  inset: var(--header-height) 0 0;
  visibility: hidden;
  padding: 26px 16px max(32px, env(safe-area-inset-bottom));
  overflow-y: auto;
  background: rgba(6, 17, 31, 0.99);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 180ms var(--ease-out),
    transform 180ms var(--ease-out),
    visibility 180ms;
}

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

.primary-navigation ul {
  display: grid;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  display: flex;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-navigation .nav-call {
  justify-content: center;
  margin-top: 24px;
  border: 0;
  border-radius: 12px;
  color: var(--ink-950);
  background: var(--lime-400);
}

.primary-navigation a:hover {
  color: var(--cyan-300);
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding: calc(var(--header-height) + 62px) 0 74px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(112, 246, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 246, 239, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to right, black, transparent 72%);
  mask-image: linear-gradient(to right, black, transparent 72%);
  content: "";
}

.hero::after {
  position: absolute;
  top: 18%;
  left: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(0, 200, 200, 0.12);
  filter: blur(80px);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.46;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--ink-950) 5%,
      rgba(6, 17, 31, 0.96) 40%,
      rgba(6, 17, 31, 0.52) 75%,
      rgba(6, 17, 31, 0.38)
    ),
    linear-gradient(0deg, rgba(6, 17, 31, 0.8), transparent 60%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: calc(min(900px, 100svh) - var(--header-height) - 136px);
}

.hero-content {
  max-width: 750px;
}

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

.hero h1 {
  color: var(--white);
}

.hero h1 span {
  color: var(--cyan-300);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d9e8ed;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button svg {
  width: 19px;
  height: 19px;
  flex: none;
}

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

.button:active {
  transform: scale(0.97);
}

.button-primary {
  color: var(--ink-950);
  background: var(--lime-400);
  box-shadow: 0 14px 32px rgba(183, 239, 53, 0.18);
}

.button-primary:hover {
  background: #c7fa50;
  box-shadow: 0 18px 42px rgba(183, 239, 53, 0.25);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: var(--cyan-300);
  background: rgba(112, 246, 239, 0.1);
}

.button-dark {
  color: var(--white);
  background: var(--ink-950);
}

.button-dark:hover {
  background: var(--ink-800);
  box-shadow: var(--shadow-sm);
}

.button-outline {
  border-color: var(--mist-200);
  color: var(--ink-900);
  background: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 0;
  gap: 12px 26px;
  list-style: none;
}

.hero-meta li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d9e8ed;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-meta svg {
  width: 18px;
  height: 18px;
  color: var(--cyan-300);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #067d7d;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms var(--ease-out);
}

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

.hero-link {
  margin-top: 32px;
  color: var(--cyan-300);
}

.benefit-strip {
  position: relative;
  z-index: 5;
  margin-top: -2px;
  color: var(--white);
  background: var(--ink-900);
  border-top: 1px solid rgba(112, 246, 239, 0.18);
}

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

.benefit {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  min-height: 98px;
  gap: 12px;
  padding: 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit svg {
  width: 28px;
  height: 28px;
  color: var(--cyan-300);
}

.benefit strong,
.benefit span {
  display: block;
}

.benefit strong {
  font-family: var(--font-display);
  font-size: 0.86rem;
}

.benefit span {
  color: #9eb7c4;
  font-size: 0.73rem;
  line-height: 1.35;
}

.about {
  background: var(--mist-50);
}

.about-layout {
  display: grid;
  gap: 48px;
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-image {
  width: calc(100% - 34px);
  height: 100%;
  min-height: 390px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: min(220px, 55%);
  padding: 22px;
  border: 1px solid rgba(0, 200, 200, 0.28);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--ink-900);
  box-shadow: var(--shadow-glow);
}

.about-badge svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--cyan-300);
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.about-badge span {
  color: #b9cbd4;
  font-size: 0.86rem;
}

.about-copy p {
  color: var(--slate-600);
}

.about-points {
  display: grid;
  margin: 28px 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-800);
  font-weight: 600;
}

.about-points svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  color: #0d9292;
}

.why-us {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-950);
}

.why-us::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(0, 200, 200, 0.18),
      transparent 31%
    ),
    radial-gradient(circle at 6% 85%, rgba(22, 134, 255, 0.13), transparent 27%);
  content: "";
}

.why-us .container {
  position: relative;
}

.why-us h2,
.why-us h3 {
  color: var(--white);
}

.why-us .section-intro {
  color: #b7c9d2;
}

.why-grid {
  display: grid;
  gap: 14px;
}

.why-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.why-card:hover {
  border-color: rgba(112, 246, 239, 0.42);
  background: rgba(112, 246, 239, 0.07);
  transform: translateY(-4px);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 13px;
  color: var(--ink-950);
  background: var(--cyan-300);
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.why-card p {
  margin-bottom: 0;
  color: #a9bec9;
  font-size: 0.94rem;
}

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

.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--white), var(--mist-50));
  box-shadow: 0 0 0 rgba(7, 27, 44, 0);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(0, 200, 200, 0.14);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(0, 200, 200, 0.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(0, 200, 200, 0.28);
  border-radius: 15px;
  color: #057e7e;
  background: #e9fbfa;
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--slate-600);
  font-size: 0.93rem;
}

.service-card .text-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.91rem;
}

.service-detail-section {
  background: var(--mist-100);
}

.service-detail-list {
  display: grid;
  gap: 24px;
}

.service-detail {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(16, 40, 60, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-detail-media {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background: var(--ink-900);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.service-detail:hover .service-detail-media img {
  transform: scale(1.025);
}

.service-number {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(6, 17, 31, 0.78);
  backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-weight: 700;
}

.service-detail-copy {
  padding: clamp(28px, 5vw, 50px);
}

.service-detail-copy > p {
  color: var(--slate-600);
}

.issue-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 24px 0 28px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.issue-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-800);
  font-size: 0.93rem;
  font-weight: 600;
}

.issue-list li::before {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(0, 200, 200, 0.1);
  content: "";
}

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

.process-grid {
  display: grid;
  counter-reset: steps;
  gap: 16px;
}

.process-step {
  position: relative;
  padding: 28px;
  border-top: 3px solid var(--cyan-500);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--mist-50);
  counter-increment: steps;
}

.process-step::before {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-950);
  background: var(--lime-400);
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-step p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.93rem;
}

.process-cta {
  display: grid;
  margin-top: 42px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--ink-900);
}

.process-cta-image {
  width: 100%;
  height: 100%;
  min-height: 230px;
  max-height: 310px;
  object-fit: cover;
  object-position: center 58%;
}

.process-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
  gap: 22px;
}

.process-cta p {
  max-width: 690px;
  margin: 0;
  color: #d2e2e8;
}

.service-area {
  color: var(--white);
  background: var(--ink-950);
}

.service-area h2,
.service-area h3 {
  color: var(--white);
}

.service-area .section-intro {
  color: #b7c9d2;
}

.area-layout {
  display: grid;
  gap: 34px;
}

.address-card {
  padding: 28px;
  border: 1px solid rgba(112, 246, 239, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.address-line {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
}

.address-line svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 3px;
  color: var(--cyan-300);
}

.address-line p {
  margin: 0;
  color: #d0e0e6;
}

.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.neighborhoods li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #d9e8ed;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.81rem;
  font-weight: 600;
}

.availability-note {
  color: #9eb7c4;
  font-size: 0.9rem;
}

.map-shell {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: #10283c;
  box-shadow: var(--shadow-md);
}

.map-shell iframe {
  width: 100%;
  min-height: 440px;
  border: 0;
  opacity: 0;
  transition: opacity 250ms var(--ease-out);
}

.map-shell.map-loaded iframe {
  opacity: 1;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #b7c9d2;
  background-image:
    linear-gradient(rgba(112, 246, 239, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 246, 239, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  text-align: center;
}

.map-loading svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: var(--cyan-300);
}

.map-fallback {
  margin-top: 12px;
  color: #9eb7c4;
  font-size: 0.78rem;
}

.map-fallback a {
  color: var(--cyan-300);
}

.faqs {
  background: var(--mist-50);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--mist-200);
  border-radius: 14px;
  background: var(--white);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 70px;
  grid-template-columns: 1fr 28px;
  align-items: center;
  padding: 18px 20px;
  gap: 16px;
  color: var(--ink-950);
  background: transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.faq-question:hover {
  background: var(--mist-50);
}

.faq-toggle-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #067d7d;
  background: #e8fafa;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms var(--ease-out);
}

.faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

.faq-answer {
  padding: 0 20px 22px;
  color: var(--slate-600);
}

.faq-answer p {
  margin: 0;
}

.faq-cta {
  margin-top: 34px;
  text-align: center;
}

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

.contact::before {
  position: absolute;
  right: -170px;
  bottom: -170px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(0, 200, 200, 0.08);
  filter: blur(20px);
  content: "";
}

.contact-layout {
  position: relative;
  display: grid;
  gap: 34px;
}

.contact-panel {
  position: relative;
  padding: clamp(30px, 5vw, 50px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink-950);
}

.contact-panel::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(112, 246, 239, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(112, 246, 239, 0.035),
    0 0 0 60px rgba(112, 246, 239, 0.025);
  content: "";
}

.contact-panel-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  object-position: center 38%;
}

.contact-panel > :not(.contact-panel-image) {
  position: relative;
  z-index: 1;
}

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

.contact-panel > p {
  color: #b7c9d2;
}

.contact-details {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.contact-details li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
}

.contact-details .detail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  color: var(--cyan-300);
  background: rgba(112, 246, 239, 0.09);
}

.contact-details svg {
  width: 20px;
  height: 20px;
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  color: #8faab8;
  font-size: 0.78rem;
}

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

.form-card {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-lg);
  background: var(--mist-50);
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.form-intro {
  color: var(--slate-600);
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-field label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--ink-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbdbe2;
  border-radius: 10px;
  color: var(--ink-950);
  background: var(--white);
  outline: none;
  transition:
    border-color 150ms var(--ease-out),
    box-shadow 150ms var(--ease-out);
}

.form-field input {
  min-height: 49px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 132px;
  padding: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #048d8d;
  box-shadow: 0 0 0 4px rgba(0, 200, 200, 0.12);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(185, 46, 66, 0.11);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 0.78rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: start;
  margin: 4px 0 20px;
  gap: 11px;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: #058d8d;
}

.consent-field label {
  color: var(--slate-600);
  font-size: 0.77rem;
  line-height: 1.5;
}

.consent-field .field-error {
  grid-column: 2;
  margin: -6px 0 0;
}

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

.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-status {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.form-status.error {
  color: var(--danger);
}
.form-status.success {
  color: var(--success);
}
.form-status.notice {
  color: var(--notice);
}

.site-footer {
  padding: 66px 0 calc(100px + env(safe-area-inset-bottom));
  color: #a9bec9;
  background: #04101c;
}

.footer-main {
  display: grid;
  gap: 42px;
}

.footer-wordmark {
  display: inline-block;
  max-width: 330px;
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.footer-wordmark:hover {
  color: var(--cyan-300);
}

.footer-brand p {
  max-width: 430px;
  color: #8faab8;
}

.footer-title {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a {
  color: #c4d4dc;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cyan-300);
}

.footer-disclaimer {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7793a2;
  font-size: 0.72rem;
  line-height: 1.65;
}

.mobile-call {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  color: var(--ink-950);
  background: var(--lime-400);
  box-shadow: 0 14px 40px rgba(3, 12, 22, 0.32);
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
}

.mobile-call svg {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

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

:focus-visible {
  outline: 3px solid var(--lime-400);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 48px, 1180px);
  }

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

  .benefit {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0;
  }

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

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

  .service-grid .service-card:first-child {
    grid-row: span 2;
    min-height: 556px;
  }

  .service-grid .service-card:first-child .service-icon {
    width: 66px;
    height: 66px;
  }

  .service-grid .service-card:first-child h3 {
    font-size: 1.85rem;
  }

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

  .process-cta {
    grid-template-columns: minmax(200px, 0.62fr) minmax(0, 1.38fr);
  }

  .process-cta-image {
    max-height: none;
  }

  .process-cta-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

@media (min-width: 800px) {
  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

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

  .service-detail {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .service-detail:nth-child(even) .service-detail-media {
    order: 2;
  }

  .area-layout {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
  }

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

  .mobile-call {
    display: none;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 86px;
  }

  .brand {
    flex-basis: 270px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-navigation {
    position: static;
    display: block;
    visibility: visible;
    padding: 0;
    overflow: visible;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .primary-navigation ul {
    display: flex;
    max-width: none;
    align-items: center;
    gap: 3px;
  }

  .primary-navigation a {
    min-height: 44px;
    padding: 0 10px;
    border: 0;
    font-size: 0.78rem;
  }

  .primary-navigation .nav-call {
    margin: 0 0 0 7px;
    padding: 0 15px;
    color: var(--ink-950);
  }

  .hero {
    padding-top: calc(var(--header-height) + 78px);
  }

  .hero-media img {
    object-position: 76% center;
    opacity: 0.73;
  }

  .hero-media::after {
    background:
      linear-gradient(
        90deg,
        var(--ink-950) 5%,
        rgba(6, 17, 31, 0.98) 39%,
        rgba(6, 17, 31, 0.66) 57%,
        rgba(6, 17, 31, 0.08) 88%
      ),
      linear-gradient(0deg, rgba(6, 17, 31, 0.58), transparent 55%);
  }

  .hero-content {
    width: 59%;
  }

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

  .service-grid .service-card:first-child {
    grid-column: span 1;
  }

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

  .process-step:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 49px;
    right: -23px;
    width: 30px;
    border-top: 1px dashed var(--cyan-500);
    content: "";
  }
}

@media (min-width: 1180px) {
  .primary-navigation a {
    padding-inline: 12px;
    font-size: 0.82rem;
  }

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

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

@media print {
  .site-header,
  .mobile-call,
  .menu-toggle,
  .hero-actions,
  .map-shell,
  .form-card {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    color: var(--ink-950);
    background: var(--white);
  }

  .hero h1,
  .hero-copy,
  .hero-meta li {
    color: var(--ink-950);
  }

  .section {
    padding: 32px 0;
  }
}
