:root {
  --ink: #0f172a;
  --muted: #526175;
  --line: #d8e3ee;
  --paper: #ffffff;
  --paper-soft: #f7fbff;
  --cyan: #0ea5e9;
  --cyan-dark: #075985;
  --magenta: #d946ef;
  --yellow: #facc15;
  --orange: #f97316;
  --green: #16a34a;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.11);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--ink));
  z-index: 50;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.section {
  padding: 88px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.9);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 227, 238, 0.86);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.25);
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-links a {
  padding: 10px 12px;
  color: #334155;
}

.nav-links a:hover {
  color: var(--cyan-dark);
  background: #e0f2fe;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.25);
  background: #f0fdf4;
}

.nav-cta svg,
.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  padding-top: 92px;
  background:
    radial-gradient(circle at 15% 20%, rgba(250, 204, 21, 0.18), transparent 32%),
    linear-gradient(180deg, #f0f9ff 0%, rgba(255, 255, 255, 0.94) 75%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Outfit", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 5.9rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  font-weight: 800;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  padding: 13px 18px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button:hover,
.nav-cta:hover,
.contact-row:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.26);
}

.button-primary:hover {
  background: #ea580c;
}

.button-secondary {
  color: var(--cyan-dark);
  border-color: rgba(14, 165, 233, 0.28);
  background: #fff;
}

.button-secondary:hover {
  background: #e0f2fe;
}

.contact-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px dashed rgba(14, 165, 233, 0.45);
  border-radius: var(--radius);
  color: var(--cyan-dark);
  background: rgba(255, 255, 255, 0.78);
}

.contact-chip span,
.contact-chip em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 5% 8% auto;
  width: 76%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(217, 70, 239, 0.16));
  border-radius: 28px;
  transform: rotate(-5deg);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(15, 23, 42, 0.18));
}

.highlights {
  padding-top: 52px;
  background: #fff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card,
.service-card,
.step-card,
.benefit-list article,
.contact-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.highlight-card {
  padding: 24px;
}

.highlight-card p,
.service-card p,
.step-card p,
.benefit-panel p,
.benefit-list p,
.contact p,
.location-header p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.icon-badge.cyan {
  color: var(--cyan-dark);
  background: #e0f2fe;
}

.icon-badge.magenta {
  color: #86198f;
  background: #fae8ff;
}

.icon-badge.yellow {
  color: #854d0e;
  background: #fef9c3;
}

.services {
  background: var(--paper-soft);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

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

.service-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
}

.service-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--cyan-dark);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: 42px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
}

.step-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
  background: var(--cyan-dark);
}

.benefits {
  background:
    linear-gradient(135deg, rgba(7, 89, 133, 0.95), rgba(15, 23, 42, 0.95)),
    var(--cyan-dark);
  color: #fff;
}

.benefits .eyebrow,
.benefits p {
  color: rgba(255, 255, 255, 0.78);
}

.benefits article p {
  color: var(--ink);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.benefit-panel {
  padding-right: 24px;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  padding: 22px;
  color: var(--ink);
}

.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-row:hover {
  border-color: rgba(14, 165, 233, 0.42);
  box-shadow: var(--shadow);
}

.contact-row.primary {
  border-color: rgba(22, 163, 74, 0.34);
  background: #f0fdf4;
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: var(--cyan-dark);
  background: #e0f2fe;
}

.contact-row.primary .contact-icon {
  color: var(--green);
  background: #dcfce7;
}

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

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

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

.placeholder-notice {
  width: min(100% - 32px, var(--container));
  min-height: 24px;
  margin: 18px auto 0;
  color: var(--cyan-dark);
  font-weight: 700;
}

.location {
  background: var(--paper-soft);
}

.location-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.location-header > div {
  max-width: 720px;
}

.map-frame {
  position: relative;
  height: min(62vh, 480px);
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dbeafe;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 32px 0;
  color: #dceeff;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 0;
  color: #a9bed3;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.1rem;
}

.audio-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.audio-toggle {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(216, 227, 238, 0.95);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.audio-toggle:hover {
  border-color: rgba(14, 165, 233, 0.48);
  color: var(--cyan-dark);
  background: #f7fbff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
}

.audio-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  color: #fff;
  background: var(--orange);
}

.audio-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke-width: 1.7;
}

.audio-copy {
  display: grid;
  gap: 1px;
  min-width: 76px;
  text-align: left;
}

.audio-label,
.audio-status {
  display: block;
  line-height: 1.1;
}

.audio-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.audio-status {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.audio-icon-pause,
.audio-toggle.is-playing .audio-icon-play {
  display: none;
}

.audio-toggle.is-playing .audio-icon-pause {
  display: grid;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .process-grid,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-visual {
    max-width: 660px;
    margin-inline: auto;
  }

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

  .benefit-panel {
    padding-right: 0;
  }

  .location-header {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    min-height: auto;
    padding: 14px 0;
    align-items: stretch;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand-subtitle {
    display: none;
  }

  .nav-cta {
    padding: 10px;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .service-card {
    min-height: auto;
  }

  .step-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 16px;
  }

  .map-frame {
    height: 360px;
    min-height: 300px;
  }

  .audio-dock {
    right: 12px;
    bottom: 12px;
  }

  .audio-toggle {
    min-height: 50px;
    padding-right: 10px;
  }

  .audio-copy {
    min-width: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
