:root {
  --white: #ffffff;
  --ink: #092d3d;
  --muted: #627985;
  --navy: #041f2f;
  --deep: #02131e;
  --blue: #007a9d;
  --ocean: #06a6b4;
  --teal: #18b6a7;
  --mist: #eaf7f7;
  --cloud: #f5f9f9;
  --sand: #f6f0e6;
  --coral: #ee7c4f;
  --line: rgba(9, 45, 61, 0.14);
  --line-strong: rgba(9, 45, 61, 0.24);
  --shadow: 0 26px 70px rgba(4, 31, 47, 0.18);
  --soft-shadow: 0 14px 34px rgba(4, 31, 47, 0.11);
  --radius: 8px;
  --header-h: 80px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cloud);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

svg * {
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(6, 166, 180, 0.45);
  outline-offset: 3px;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section-pad {
  padding: 112px 0;
}

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

h1,
h2 {
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 880px;
  color: var(--white);
  font-size: 4.65rem;
}

h2 {
  color: var(--navy);
  font-size: 3.55rem;
}

h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.skip-link {
  position: fixed;
  z-index: 120;
  top: -5rem;
  left: 1rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--ocean), var(--teal), var(--coral));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(4, 31, 47, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  width: min(1240px, calc(100% - 34px));
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.brand span {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  color: currentColor;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0.78;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  padding: 0.45rem 0;
  opacity: 0.84;
  transition: opacity 180ms ease;
}

.nav-menu a::after {
  display: none;
  content: none;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  opacity: 1;
}

.nav-cta,
.btn,
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  min-height: 50px;
  padding: 0 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  text-decoration: none;
}

.site-header.is-scrolled .nav-cta,
.site-header.is-menu-open .nav-cta {
  border-color: transparent;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(0, 122, 157, 0.23);
}

.btn.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 32px rgba(238, 124, 79, 0.26);
}

.btn.secondary {
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.88);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn svg,
.nav-cta svg,
.store-btn svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-cta:hover,
.btn:hover,
.store-btn:hover:not(:disabled) {
  transform: translateY(-2px);
}

.btn.primary:hover {
  background: #e66f3d;
  box-shadow: 0 20px 38px rgba(238, 124, 79, 0.32);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-menu-open .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.95rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
  content: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-fallback,
.hero-video {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  min-height: 100%;
  transform: scale(1.035);
  transform-origin: center;
  will-change: transform;
}

.hero-fallback {
  z-index: 0;
  background: var(--deep);
}

.hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 780ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-video.is-fading {
  opacity: 1;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 19, 30, 0.86), rgba(2, 19, 30, 0.62) 42%, rgba(2, 19, 30, 0.18)),
    linear-gradient(180deg, rgba(2, 19, 30, 0.72), rgba(2, 19, 30, 0.2) 34%, rgba(2, 19, 30, 0.88)),
    radial-gradient(circle at 78% 24%, rgba(6, 166, 180, 0.28), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 36px;
  min-height: 100svh;
  padding: 132px 0 26px;
}

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

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-lead {
  max-width: 790px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-note {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 2rem;
}

.hero-signal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.hero-signal span {
  display: grid;
  gap: 0.22rem;
  min-height: 68px;
  padding: 0.82rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.hero-signal strong {
  color: var(--white);
  font-size: 0.9rem;
}

.split-grid,
.provider-layout,
.zones-layout,
.experience-layout,
.safety-layout,
.app-layout,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: 4.2rem;
}

.hero-content > *,
.split-grid > *,
.provider-layout > *,
.zones-layout > *,
.experience-layout > *,
.safety-layout > *,
.app-layout > *,
.faq-layout > *,
.contact-layout > * {
  min-width: 0;
}

.section-copy > p:not(.eyebrow),
.section-head > p {
  max-width: 700px;
  margin-top: 1rem;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 2.7rem;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::before {
  display: none;
}

.feature-list,
.filter-row,
.experience-list,
.provider-features,
.app-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1.45rem;
}

.feature-list span,
.filter-row span,
.experience-list span,
.provider-features span,
.app-feature-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.6rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 780;
}

.feature-list svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.42rem;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.intro {
  background: linear-gradient(180deg, var(--cloud), var(--white));
}

.video-panel,
.provider-card,
.zone-visual,
.contact-form,
.accordion-list,
.phone-showcase {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.video-panel {
  padding: 0.72rem;
  backdrop-filter: blur(16px);
}

.video-panel video,
.video-panel img {
  width: 100%;
  height: 520px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--navy);
}

figcaption {
  padding: 0.8rem 0.28rem 0.12rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.users,
.how {
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.benefit-card,
.document-card,
.step-panel {
  min-height: 212px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(4, 31, 47, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-card:hover,
.document-card:hover,
.step-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 166, 180, 0.36);
  box-shadow: 0 22px 48px rgba(4, 31, 47, 0.12);
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.9rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 122, 157, 0.12));
}

.benefit-card p,
.document-card p,
.step-panel p {
  margin-top: 0.58rem;
  font-size: 0.94rem;
}

.provider-benefits {
  background: linear-gradient(180deg, var(--white), var(--mist));
}

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

.icon-card svg {
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 0.95rem;
  padding: 0.58rem;
  border-radius: 999px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  background: rgba(6, 166, 180, 0.1);
}

.providers {
  background:
    linear-gradient(180deg, rgba(234, 247, 247, 0.92), rgba(255, 255, 255, 0.96)),
    url("assets/gallery/about-muelle-zihuatanejo.jpg");
  background-position: center;
  background-size: cover;
}

.provider-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.provider-features {
  padding: 1rem;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.86);
}

.section-copy .btn {
  margin-top: 1.55rem;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 31, 47, 0.04), rgba(4, 31, 47, 0.34) 42%, rgba(4, 31, 47, 0.86)),
    linear-gradient(90deg, rgba(6, 166, 180, 0.18), transparent 52%);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms ease;
}

.service-card div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.05rem;
}

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

.service-card p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(4, 31, 47, 0.17);
}

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

.zones {
  background: linear-gradient(180deg, var(--mist), var(--sand));
}

.zone-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.filter-row span {
  border-color: rgba(0, 122, 157, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.experiences {
  background: linear-gradient(180deg, var(--sand), var(--white));
}

.experience-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.04fr);
}

.experience-list span {
  background: rgba(234, 247, 247, 0.86);
}

.video-panel.cinematic video,
.video-panel.cinematic img {
  height: 500px;
}

.safety {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(2, 19, 30, 0.96), rgba(0, 122, 157, 0.78)),
    url("assets/gallery/gallery-pesca-barco.jpg");
  background-position: center;
  background-size: cover;
}

.safety h2,
.safety h3,
.safety p,
.safety .eyebrow {
  color: var(--white);
}

.safety .section-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.safety-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.notice-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  min-height: 126px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.notice-grid svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
}

.notice-grid p {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.notice-grid strong {
  color: var(--white);
  font-weight: 900;
}

.official-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.official-links a {
  min-height: 42px;
  padding: 0.58rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 850;
}

.validation,
.faq {
  background: var(--white);
}

.validation-layout {
  display: grid;
  gap: 1.2rem;
}

.status-grid,
.document-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.status-grid article {
  min-height: 142px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(234, 247, 247, 0.92), rgba(255, 255, 255, 0.9));
  box-shadow: 0 12px 28px rgba(4, 31, 47, 0.07);
}

.status-grid span {
  color: var(--blue);
  font-weight: 900;
}

.status-grid p {
  margin-top: 0.55rem;
  font-size: 0.93rem;
}

.document-card {
  min-height: 154px;
}

.how {
  padding-top: 80px;
}

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

.provider-steps-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.how-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.audience-note {
  min-height: 124px;
  padding: 1.15rem;
  border: 1px solid rgba(0, 122, 157, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(4, 31, 47, 0.07);
}

.audience-note strong {
  color: var(--blue);
  font-weight: 900;
}

.audience-note p {
  margin-top: 0.45rem;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.experience-media {
  max-width: 820px;
  margin: 1.2rem auto 0;
}

.mobile-app {
  background:
    linear-gradient(90deg, rgba(4, 31, 47, 0.96), rgba(0, 122, 157, 0.72)),
    url("assets/gallery/zone-playa-linda.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.mobile-app h2,
.mobile-app p,
.mobile-app .eyebrow {
  color: var(--white);
}

.mobile-app .section-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.app-feature-grid span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.app-layout {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
}

.phone-showcase {
  position: relative;
  justify-self: center;
  width: min(390px, 100%);
  padding: 0.95rem;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(4, 31, 47, 0.5), rgba(4, 31, 47, 0.12));
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.phone-showcase::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 12%, rgba(6, 166, 180, 0.34), transparent 58%);
  filter: blur(18px);
  opacity: 0.72;
}

.phone-showcase img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 690px;
  border-radius: 24px;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.34));
  animation: phoneFloat 7s ease-in-out infinite;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.store-btn {
  min-height: 64px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  text-decoration: none;
}

.store-btn:disabled,
.store-btn--soon {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.store-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.faq-layout,
.contact-layout {
  align-items: start;
}

.accordion-list {
  display: grid;
  gap: 0.72rem;
  padding: 0.9rem;
  background: rgba(245, 249, 249, 0.82);
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--navy);
  font-weight: 850;
}

details p {
  padding: 0 1rem 1rem;
  font-size: 0.94rem;
}

.contact {
  background: linear-gradient(180deg, var(--cloud), var(--mist));
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: 1.7rem;
}

.contact-channels a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.72rem;
  align-items: center;
  min-height: 78px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-channels a:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 166, 180, 0.36);
  background: var(--white);
}

.contact-channels svg {
  grid-row: 1 / span 2;
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.contact-channels span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-channels strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 0.92rem;
  padding: 1.1rem;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.88rem 0.96rem;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
}

.contact-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
}

.site-footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) 0.62fr 0.62fr 0.8fr;
  gap: 2rem;
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-grid p {
  max-width: 430px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

@media (min-width: 1440px) {
  h1 {
    font-size: 5.3rem;
  }

  h2 {
    font-size: 3.85rem;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  .nav-menu {
    gap: 0.7rem;
    font-size: 0.84rem;
  }

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

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

  .split-grid,
  .provider-layout,
  .zones-layout,
  .experience-layout,
  .safety-layout,
  .app-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    justify-self: center;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 74px;
  }

  .section-pad {
    padding: 86px 0;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.62rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-h) + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - var(--header-h) - 28px);
    padding: 0.75rem;
    overflow: auto;
    color: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
    backdrop-filter: blur(18px);
  }

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

  .nav-menu a {
    padding: 0.86rem;
    border-radius: 6px;
  }

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

  .nav-menu a:hover,
  .nav-menu a.is-active {
    background: var(--mist);
  }

  .hero-content {
    gap: 34px;
    padding-top: 124px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 19, 30, 0.88), rgba(2, 19, 30, 0.58)),
      linear-gradient(180deg, rgba(2, 19, 30, 0.78), rgba(2, 19, 30, 0.26) 40%, rgba(2, 19, 30, 0.9));
  }

  .hero-signal {
    grid-template-columns: 1fr;
  }

  .video-panel video,
  .video-panel img,
  .zone-visual img {
    height: 430px;
  }

  .notice-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    width: min(100% - 28px, 1240px);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1.26rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .hero-content {
    padding: 102px 0 28px;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero-actions,
  .store-actions {
    display: grid;
    width: 100%;
  }

  .btn,
  .store-btn {
    width: 100%;
  }

  .hero-signal {
    display: none;
  }

  .benefit-grid,
  .service-grid,
  .status-grid,
  .document-grid,
  .contact-channels {
    grid-template-columns: 1fr;
  }

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

  .video-panel video,
  .video-panel img,
  .video-panel.cinematic video,
  .video-panel.cinematic img,
  .zone-visual img {
    height: 320px;
  }

  .how-audience {
    grid-template-columns: 1fr;
  }

  .provider-card img {
    height: 320px;
  }

  .phone-showcase {
    width: min(330px, 100%);
    padding: 0.72rem;
    border-radius: 22px;
  }

  .phone-showcase img {
    max-height: 620px;
    border-radius: 18px;
  }

  .contact-form {
    padding: 0.95rem;
  }
}

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

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

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