/* ============================================================
   MaChahine Group — machahine.com
   Palette: Brand Guide v1.0
   ============================================================ */

:root {
  --obsidian: #0B0E12;
  --charcoal: #151A22;
  --charcoal-2: #1B222D;
  --graphite: #4B515A;
  --silver: #9BA3AD;
  --blue: #00A8FF;
  --blue-deep: #0077C2;
  --ice: #F1F5FA;
  --text: #DDE4EC;
  --muted: #98A2AF;
  --line: rgba(155, 163, 173, 0.14);
  --card-grad: linear-gradient(160deg, rgba(155,163,173,.28), rgba(155,163,173,.07) 34%, rgba(0,168,255,.10) 100%);
  --font-display: 'Orbitron', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1160px;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film-grain overlay for depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: rgba(0, 168, 255, 0.35); color: #fff; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

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

[data-mark] { display: block; }
[data-mark] svg { width: 100%; height: auto; }

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

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--blue); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 34px; height: 2px; background: var(--blue); border-radius: 2px; }

h1, h2, h3 { color: var(--ice); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: 20px; letter-spacing: -0.01em; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 18px; }
.accent { color: var(--blue); }

section { padding: 112px 0; position: relative; }

/* ---------- Reveal on scroll (only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track .chip:nth-child(n+9) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(180deg, #1FB4FF, #009BEB);
  color: #04121D;
  box-shadow: 0 6px 24px -6px rgba(0, 168, 255, 0.55), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px -6px rgba(0, 168, 255, 0.7), inset 0 1px 0 rgba(255,255,255,.35); }

.btn--ghost {
  color: var(--ice);
  border: 1px solid rgba(155, 163, 173, 0.35);
  background: rgba(21, 26, 34, 0.5);
}
.btn--ghost:hover { border-color: var(--blue); color: #fff; background: rgba(0, 168, 255, 0.08); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 14, 18, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,.6);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__brand { display: flex; align-items: center; gap: 13px; }
.nav__mark { width: 42px; height: 42px; flex-shrink: 0; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; letter-spacing: 0.18em; color: var(--ice); }
.nav__group { font-family: var(--font-display); font-weight: 500; font-size: 8.5px; letter-spacing: 0.62em; color: var(--blue); margin-top: 5px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a:not(.btn) { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .2s ease; position: relative; }
.nav__links a:not(.btn):hover { color: var(--ice); }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--blue); border-radius: 2px; transition: width .25s ease;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__links .btn { padding: 11px 22px; font-size: 14.5px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ice); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 44% at 76% 42%, rgba(0, 168, 255, 0.13), transparent 70%),
    radial-gradient(38% 34% at 12% 84%, rgba(0, 119, 194, 0.09), transparent 70%);
}
.hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(155,163,173,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,163,173,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 62% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 62% at 50% 40%, #000 30%, transparent 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); letter-spacing: -0.025em; }
.hero__sub { margin-top: 24px; font-size: 19px; color: var(--muted); max-width: 540px; }
.hero__ctas { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__assurances { margin-top: 44px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero__assurances li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--silver); }
.hero__assurances svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

.hero__art { position: relative; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hero__mark { width: min(480px, 82%); position: relative; z-index: 2; animation: heroFloat 7s ease-in-out infinite; filter: drop-shadow(0 30px 60px rgba(0,0,0,.55)); }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero__rings { position: absolute; width: 125%; aspect-ratio: 1; z-index: 1; }
.hero__rings circle { fill: none; stroke: rgba(0, 168, 255, 0.16); stroke-width: 1; }
.hero__rings .ring-spin { stroke: rgba(0, 168, 255, 0.34); stroke-dasharray: 60 700; stroke-linecap: round; transform-origin: center; animation: ringSpin 14s linear infinite; }
.hero__rings .ring-spin--slow { stroke-dasharray: 30 900; animation-duration: 22s; animation-direction: reverse; stroke: rgba(155,163,173,0.3); }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.hero__platform {
  position: absolute; bottom: 4%; left: 50%; transform: translateX(-50%);
  width: 76%; height: 60px; z-index: 0;
  background: radial-gradient(50% 100% at 50% 100%, rgba(0,168,255,.4), transparent 72%);
  filter: blur(10px);
}
.hero__scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--silver); animation: cueBob 2.2s ease-in-out infinite;
}
.hero__scroll-cue svg { width: 20px; height: 20px; }
@keyframes cueBob { 0%,100% { transform: translate(-50%, 0); opacity: .7; } 50% { transform: translate(-50%, 7px); opacity: 1; } }

/* ---------- Problem ---------- */
.problem { background: linear-gradient(180deg, transparent, rgba(21, 26, 34, 0.55) 18%, rgba(21, 26, 34, 0.55) 82%, transparent); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card {
  position: relative;
  background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box, var(--card-grad) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0,168,255,.18); }
.quote-card__mark { font-family: var(--font-display); font-size: 34px; font-weight: 900; color: var(--blue); line-height: 1; opacity: .85; }
.quote-card p { margin-top: 10px; font-size: 16.5px; color: var(--text); font-style: italic; }
.problem__pivot { margin-top: 52px; text-align: center; max-width: 640px; margin-inline: auto; font-size: 19px; color: var(--silver); }
.problem__pivot strong { color: var(--ice); font-weight: 600; }

/* ---------- Solution ---------- */
.solution__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.solution__copy p + p { margin-top: 18px; }
.solution__copy p { color: var(--muted); font-size: 17.5px; }
.solution__copy .lead { color: var(--text); font-size: 19px; }
.solution__note {
  margin-top: 28px;
  border-left: 3px solid var(--blue);
  background: rgba(0, 168, 255, 0.06);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  font-size: 16px;
  color: var(--silver);
}
.solution__note strong { color: var(--ice); }
.outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.outcome {
  display: flex; align-items: center; gap: 13px;
  background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box, var(--card-grad) border-box;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 17px 19px;
  font-weight: 600; font-size: 15.5px; color: var(--ice);
  transition: transform .3s ease, box-shadow .3s ease;
}
.outcome:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(0,0,0,.7); }
.outcome__icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(0,168,255,.22), rgba(0,168,255,.05));
  border: 1px solid rgba(0,168,255,.3);
  color: var(--blue);
}
.outcome__icon svg { width: 19px; height: 19px; }
.solution__tagline {
  margin-top: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: .08em; color: var(--ice); text-align: center;
  padding: 18px 10px;
  border: 1px dashed rgba(0,168,255,.35); border-radius: 13px;
  background: rgba(0,168,255,.04);
}
.solution__tagline .accent { color: var(--blue); }

/* ---------- Industries marquee ---------- */
.industries { padding: 72px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(21,26,34,.35); }
.industries .section-head { margin-bottom: 36px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 80px, #000 calc(100% - 80px), transparent); mask-image: linear-gradient(to right, transparent, #000 80px, #000 calc(100% - 80px), transparent); }
.marquee + .marquee { margin-top: 14px; }
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee__track .chip { margin-right: 14px; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.chip {
  white-space: nowrap;
  font-size: 15px; font-weight: 500; color: var(--silver);
  padding: 11px 22px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--charcoal);
  display: flex; align-items: center; gap: 9px;
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: .8; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: auto; } }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box, var(--card-grad) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,168,255,.55), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px -20px rgba(0,0,0,.75), 0 0 0 1px rgba(0,168,255,.16); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(0,168,255,.2), rgba(0,168,255,.04));
  border: 1px solid rgba(0,168,255,.28);
  color: var(--blue);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 15.5px; color: var(--muted); }

/* ---------- Process ---------- */
.process { background: linear-gradient(180deg, transparent, rgba(21, 26, 34, 0.5) 20%, rgba(21, 26, 34, 0.5) 80%, transparent); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-steps::before {
  content: ""; position: absolute; top: 33px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,168,255,.45) 12%, rgba(0,168,255,.45) 88%, transparent);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.step__num {
  font-family: var(--font-display); font-weight: 900; font-size: 19px;
  width: 66px; height: 66px; margin: 0 auto 20px;
  display: grid; place-items: center; border-radius: 50%;
  color: var(--blue);
  background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid rgba(0,168,255,.4);
  box-shadow: 0 0 0 5px #10141a, 0 0 26px -4px rgba(0,168,255,.45);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- Packages ---------- */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.package {
  display: flex; flex-direction: column;
  background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box, var(--card-grad) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 34px 30px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.package:hover { transform: translateY(-5px); box-shadow: 0 24px 52px -22px rgba(0,0,0,.8); }
.package--featured {
  background: linear-gradient(180deg, #182029, #141B24) padding-box,
    linear-gradient(160deg, rgba(0,168,255,.75), rgba(0,168,255,.14) 45%, rgba(0,168,255,.55)) border-box;
  box-shadow: 0 26px 60px -24px rgba(0, 90, 160, 0.55);
}
.package__badge {
  position: absolute; top: -13px; left: 30px;
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .22em;
  color: #04121D;
  background: linear-gradient(180deg, #1FB4FF, #009BEB);
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 4px 14px -2px rgba(0,168,255,.5);
}
.package__badge--neutral { background: linear-gradient(180deg, #3A424D, #262D37); color: var(--ice); box-shadow: none; border: 1px solid rgba(155,163,173,.3); }
.package__stage { font-family: var(--font-display); font-size: 11px; font-weight: 500; letter-spacing: .3em; color: var(--blue); margin-bottom: 12px; }
.package h3 { font-size: 25px; }
.package__kind { margin-top: 6px; color: var(--muted); font-size: 15px; }
.package__desc { margin-top: 16px; color: var(--silver); font-size: 15.5px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.package ul { margin: 22px 0 30px; display: grid; gap: 12px; flex: 1; align-content: start; }
.package li { display: flex; gap: 11px; font-size: 15px; color: var(--text); }
.package li svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.package .btn { justify-content: center; width: 100%; }

/* ---------- CTA ---------- */
.cta { padding: 140px 0; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(56% 60% at 50% 54%, rgba(0, 168, 255, 0.14), transparent 72%);
}
.cta__mark { width: 92px; margin: 0 auto 30px; filter: drop-shadow(0 12px 26px rgba(0,0,0,.5)); }
.cta__inner { position: relative; text-align: center; max-width: 700px; margin-inline: auto; }
.cta h2 { font-size: clamp(32px, 4.6vw, 52px); }
.cta p { margin-top: 20px; font-size: 18.5px; color: var(--muted); }
.cta__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta__email { margin-top: 26px; font-size: 15px; color: var(--muted); }
.cta__email a { color: var(--silver); border-bottom: 1px solid rgba(155,163,173,.3); transition: color .2s ease, border-color .2s ease; }
.cta__email a:hover { color: var(--blue); border-color: var(--blue); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 54px 0 40px; background: rgba(11, 14, 18, 0.6); }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 13px; }
.footer__tagline { margin-top: 14px; color: var(--muted); font-size: 14.5px; max-width: 300px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer__links a { white-space: nowrap; }
.footer__links a { font-size: 14.5px; color: var(--muted); transition: color .2s ease; }
.footer__links a:hover { color: var(--ice); }
.footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}

/* ---------- Booking chooser modal ---------- */
.booking-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.booking-modal[hidden] { display: none; }
.booking-modal__backdrop { position: absolute; inset: 0; background: rgba(5, 7, 10, 0.78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.booking-modal__card {
  position: relative; width: min(520px, 100%);
  background: linear-gradient(180deg, #182029, #12171f) padding-box, var(--card-grad) border-box;
  border: 1px solid transparent; border-radius: 20px;
  padding: 34px 30px 28px; text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.85);
  animation: modalIn .3s cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.booking-modal__close {
  position: absolute; top: 14px; right: 16px;
  font-size: 26px; line-height: 1; color: var(--muted); padding: 6px;
  transition: color .2s ease;
}
.booking-modal__close:hover { color: var(--ice); }
.booking-modal__mark { width: 54px; margin: 0 auto 14px; }
.booking-modal__card h3 { font-size: 22px; }
.booking-modal__people { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.person-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--charcoal); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 14px 18px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.person-card:hover { transform: translateY(-3px); border-color: rgba(0,168,255,.5); box-shadow: 0 14px 34px -16px rgba(0,0,0,.8); }
.person-card__avatar {
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--blue);
  background: linear-gradient(160deg, rgba(0,168,255,.2), rgba(0,168,255,.04));
  border: 1px solid rgba(0,168,255,.35);
}
.person-card__name { font-weight: 600; color: var(--ice); font-size: 15.5px; }
.person-card__role { font-size: 13px; color: var(--muted); }
.person-card__go { margin-top: 10px; font-size: 13.5px; font-weight: 600; color: var(--blue); }
.booking-modal__hint { margin-top: 20px; font-size: 13.5px; color: var(--muted); }
@media (max-width: 480px) { .booking-modal__people { grid-template-columns: 1fr; } }

/* ---------- SVG mark shared animations ---------- */
.mark-animated #eye-left, .mark-animated #eye-right { transform-origin: center; animation: blink 6.5s ease-in-out infinite; }
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 95%, 97% { transform: scaleY(0.12); } }
.mark-animated #visor rect, .mark-animated #visor { animation: visorPulse 3.8s ease-in-out infinite; }
@keyframes visorPulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero { min-height: auto; }
  .hero__mark { width: min(300px, 60%); }
  .hero__sub { margin-inline: auto; }
  .hero__ctas, .hero__assurances { justify-content: center; }
  .solution__inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .quotes { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .process-steps::before { display: none; }
  .packages-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11, 14, 18, 0.97);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 24px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav__links .btn { margin-top: 16px; justify-content: center; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  section { padding: 84px 0; }
  .services-grid, .quotes, .outcomes { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero__assurances { flex-direction: column; align-items: center; gap: 12px; }
}
