/* Hastech Global — original design system (logo teal + navy) */
:root {
  --ink: #073042;
  --ink-deep: #041c28;
  --navy: #0a3d52;
  --teal: #1aa3a4;
  --teal-bright: #2ec4c0;
  --teal-deep: #0e7a7c;
  --mark: #00aca6;
  --sand: #e7f4f4;
  --paper: #f6fbfb;
  --muted: #5b7380;
  --line: rgba(26, 163, 164, 0.28);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(4, 28, 40, 0.18);
  --font: "Figtree", system-ui, sans-serif;
  --display: "Figtree", system-ui, sans-serif;
  --arabic: "IBM Plex Sans Arabic", "Noto Naskh Arabic", Tahoma, sans-serif;
  --wrap: min(1180px, calc(100% - 2.4rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--paper);
  background: var(--ink-deep);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }

.wrap { width: var(--wrap); margin: 0 auto; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 1rem; top: 1rem; background: #fff; color: #000; padding: .5rem; z-index: 9; }

.cursor {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.cursor.is-on { opacity: 1; }
.cursor.is-text { opacity: 0; }
.cursor-ring,
.cursor-core {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid #7af0ea;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .32s cubic-bezier(.22,1,.36,1),
              height .32s cubic-bezier(.22,1,.36,1),
              border-radius .32s ease,
              border-color .32s ease,
              background .32s ease,
              transform .32s cubic-bezier(.22,1,.36,1);
}
.cursor-core {
  width: 7px;
  height: 7px;
  background: #7af0ea;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(122,240,234,.85);
  transition: transform .28s cubic-bezier(.22,1,.36,1),
              width .28s ease,
              height .28s ease,
              opacity .2s ease,
              background .32s ease;
}
.cursor.is-light .cursor-ring { border-color: #041c28; }
.cursor.is-light .cursor-core {
  background: #041c28;
  box-shadow: none;
}
.cursor.is-hover .cursor-ring {
  width: 22px;
  height: 22px;
  border-radius: 1px;
  background: rgba(122,240,234,.16);
  transform: translate(-50%, -50%) rotate(45deg);
}
.cursor.is-hover.is-light .cursor-ring { background: rgba(4,28,40,.08); }
.cursor.is-hover .cursor-core {
  width: 5px;
  height: 5px;
  opacity: .9;
}
@media (pointer: fine) {
  body, a, button { cursor: none; }
  input, textarea, select, [contenteditable] { cursor: text; }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor { display: none !important; }
  body, a, button { cursor: auto; }
}

.brand {
  display: flex; align-items: center;
  text-decoration: none; color: #fff;
}
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(280px, 62vw);
  object-fit: contain;
}

.header-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.05rem 0;
  transition: background .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.header-bar.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(4, 28, 40, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(46,196,192,.16);
}
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  width: var(--wrap); margin: 0 auto;
}
.header-actions { display: flex; align-items: center; gap: 0.65rem; }
.desk-links { display: none; gap: 0.15rem; align-items: center; }
.desk-links a {
  color: rgba(246,251,251,.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  position: relative;
}
.desk-links a span { position: relative; }
.desk-links a span::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--teal-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.desk-links a:hover { color: #fff; }
.desk-links a:hover span::after { transform: scaleX(1); }
@media (min-width: 960px) { .desk-links { display: flex; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: 0; text-decoration: none; cursor: pointer;
  font-weight: 700; border-radius: 999px;
  padding: 0.78rem 1.25rem;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-bright); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--paper);
  border: 1px solid rgba(255,255,255,.22);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-bright); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  padding: 0.62rem 1.1rem;
  font-size: 0.88rem;
}
.btn-outline:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.hamburger {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 91;
}
.hamburger span {
  display: block; width: 16px; height: 1.5px; background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}
body.menu-open .header-bar { z-index: 90; }
body.menu-open .desk-links,
body.menu-open .header-actions .btn { opacity: 0; pointer-events: none; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
body.menu-open { overflow: hidden; }

/* Full-width centered GSAP menu */
.fs-menu {
  position: fixed; inset: 0; z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--ink-deep);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.fs-menu.is-on { display: flex; }
.fs-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.fs-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,196,192,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,192,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
}
.fs-orb {
  position: absolute; border-radius: 50%; filter: blur(52px);
}
.fs-orb.a {
  width: min(460px, 70vw); height: min(460px, 70vw);
  left: 50%; top: 38%; transform: translate(-50%, -50%);
  background: rgba(26,163,164,.3);
}
.fs-orb.b {
  width: 240px; height: 240px;
  left: 8%; bottom: 12%;
  background: rgba(77,224,216,.16);
}
.fs-orb.c {
  width: 200px; height: 200px;
  right: 8%; top: 12%;
  background: rgba(18,148,143,.2);
}
.fs-rings {
  position: absolute; left: 50%; top: 48%;
  width: min(720px, 88vw); aspect-ratio: 1;
  transform: translate(-50%, -50%);
}
.fs-rings i {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(46,196,192,.22);
  animation: ringPulse 9s ease-out infinite;
}
.fs-rings i:nth-child(2) { inset: 12%; animation-delay: 3s; border-style: dashed; opacity: .65; }
.fs-rings i:nth-child(3) { inset: 24%; animation-delay: 6s; }
.fs-ghost {
  position: absolute; left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  font-size: clamp(5.5rem, 18vw, 14rem);
  font-weight: 800; font-style: italic;
  letter-spacing: -0.07em; line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46,196,192,.16);
  user-select: none;
}
.fs-center {
  position: relative; z-index: 1;
  width: min(820px, calc(100% - 2.4rem));
  padding: 6.4rem 0 2.2rem;
  max-height: 100%;
  overflow: auto;
}
.fs-main { display: grid; gap: 0.05rem; }
.fs-item {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: clamp(2.4rem, 7.2vw, 4.6rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.fs-line { display: block; overflow: hidden; }
.fs-line span { display: block; }
.fs-item:hover { color: var(--teal-bright); font-style: italic; }
.fs-rule {
  height: 1px;
  width: 100%;
  max-width: 8.5rem;
  margin: 1.5rem auto 1.1rem;
  background: linear-gradient(90deg, transparent, #7af0ea, transparent);
  transform-origin: center;
}
.fs-center > .eyebrow { justify-content: center; margin-bottom: 0.85rem; }
.fs-svc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.15rem;
  max-width: 38rem;
  margin: 0 auto;
}
.fs-svc a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}
.fs-svc a:hover { color: var(--teal-bright); }
.fs-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2.2rem;
}
.fs-meta a:not(.btn) { color: var(--teal-bright); text-decoration: none; font-weight: 700; }

/* HERO — centered stack, animated field */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7.5rem 0 5.8rem;
  text-align: center;
  background: var(--ink-deep);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-floor {
  position: absolute; inset: 28% -10% -18%;
  background-image:
    linear-gradient(rgba(46,196,192,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,192,.11) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(700px) rotateX(64deg);
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 72%, transparent);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(48px);
}
.hero-orb.o1 { width: 420px; height: 420px; left: 50%; top: 28%; transform: translate(-50%, -40%); background: rgba(26,163,164,.32); }
.hero-orb.o2 { width: 240px; height: 240px; left: 12%; bottom: 22%; background: rgba(77,224,216,.16); }
.hero-orb.o3 { width: 180px; height: 180px; right: 10%; top: 18%; background: rgba(18,148,143,.2); }
.hero-rings {
  position: absolute; left: 50%; top: 44%;
  width: min(780px, 92vw); aspect-ratio: 1;
}
.hero-rings span {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(46,196,192,.2);
  animation: ringPulse 9s ease-out infinite;
}
.hero-rings span:nth-child(2) { inset: 11%; animation-delay: 3s; border-style: dashed; opacity: .7; }
.hero-rings span:nth-child(3) { inset: 22%; animation-delay: 6s; }
@keyframes ringPulse {
  0% { transform: scale(.72); opacity: .55; }
  70% { opacity: .12; }
  100% { transform: scale(1.12); opacity: 0; }
}
.hero-beam {
  position: absolute; left: -20%; top: 38%;
  width: 42%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(122,240,234,.55), transparent);
  filter: blur(0.4px);
  animation: beamSweep 7.5s ease-in-out infinite;
}
@keyframes beamSweep {
  0% { transform: translateX(0) rotate(-18deg); opacity: 0; }
  18% { opacity: .85; }
  55% { transform: translateX(220%) rotate(-18deg); opacity: .15; }
  100% { transform: translateX(260%) rotate(-18deg); opacity: 0; }
}

.hero-copy {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  max-width: 920px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--teal-bright); font-size: 0.78rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700;
}
.eyebrow::before,
.eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--teal);
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.5rem, 6vw, 5.85rem);
  line-height: 1.13;
  letter-spacing: -0.04em;
  margin: 0.85rem 0 1.1rem;
  font-weight: 800;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span { display: block; }
.hero h1 .accent {
  padding-bottom: 0.18em;
}
.hero h1 .accent,
.hero h1 .hero-swap-item {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.hero h1 .line > span.hero-swap {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 100%;
  perspective: 1100px;
  transform-style: preserve-3d;
}
.hero-swap-item {
  grid-area: 1 / 1;
  display: block;
  text-align: center;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}
.hero-swap-item:not(.is-on) {
  opacity: 0;
  pointer-events: none;
}
.hero-swap-item.is-on {
  animation: heroAccentGlow 2.6s ease-in-out infinite;
}
@keyframes heroAccentGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(46, 196, 192, 0); }
  50% { text-shadow: 0 0 18px rgba(122, 240, 234, 0.5), 0 8px 28px rgba(26, 163, 164, 0.28); }
}
.hero h1 .accent .hero-ar {
  font-family: var(--arabic);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.85rem, 4.6vw, 4.05rem);
  letter-spacing: 0;
  line-height: 1.5;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-lead {
  max-width: 34rem;
  color: rgba(246,251,251,.76);
  font-size: 1.08rem;
  margin: 0 auto 1.6rem;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  justify-content: center;
}

.hero-ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  overflow: hidden;
  padding: 1.15rem 0;
  background:
    linear-gradient(90deg, rgba(4,28,40,.15) 0%, rgba(14,122,124,.38) 50%, rgba(4,28,40,.15) 100%),
    rgba(7,48,66,.72);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hero-ticker::before,
.hero-ticker::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, #7af0ea 22%, #2ec4c0 50%, #7af0ea 78%, transparent 100%);
  box-shadow: 0 0 12px rgba(46,196,192,.55);
}
.hero-ticker::before { top: 0; }
.hero-ticker::after { bottom: 0; }
.ticker-shine {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, rgba(122,240,234,.16) 50%, transparent 80%);
  width: 42%;
  animation: tickerShine 4.8s ease-in-out infinite;
}
@keyframes tickerShine {
  0% { transform: translateX(-80%); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translateX(320%); opacity: 0; }
}
.hero-ticker-track {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 1.35rem; width: max-content;
  animation: ticker 22s linear infinite;
  font-family: var(--font);
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
  color: #fff;
}
.hero-ticker-track span { white-space: nowrap; text-shadow: 0 0 18px rgba(46,196,192,.25); }
.hero-ticker-track span.is-accent {
  font-style: italic;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--teal-bright);
  text-shadow: 0 0 18px rgba(46,196,192,.55);
}
.hero-ticker-track i {
  width: 6px; height: 6px; flex: 0 0 6px;
  background: var(--teal-bright);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--teal-bright);
  opacity: .9;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 4.6rem; z-index: 3;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  color: rgba(255,255,255,.7); text-decoration: none; font-size: 0.7rem;
  letter-spacing: .16em; text-transform: uppercase;
}
.hero-scroll i {
  width: 1px; height: 42px; background: rgba(255,255,255,.2); position: relative; overflow: hidden;
}
.hero-scroll i::after {
  content: ""; position: absolute; left: 0; right: 0; height: 14px;
  background: var(--teal-bright);
  animation: scrollDrop 1.6s ease infinite;
}
@keyframes scrollDrop {
  0% { top: -14px; }
  100% { top: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-canvas, .hero-rings, .hero-beam { display: none; }
  .hero-ticker-track, .tools-track { animation: none; }
}

.hero-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding: 8.6rem 0 4.2rem;
  text-align: center;
  background: var(--ink-deep);
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, #7af0ea 22%, #2ec4c0 50%, #7af0ea 78%, transparent 100%);
  box-shadow: 0 0 12px rgba(46,196,192,.45);
}
.page-hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(46,196,192,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,192,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 18% 88%, #000 0%, transparent 72%);
}
.page-hero-orb {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(520px, 75vw); height: 280px;
  left: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(26,163,164,.28) 0%, transparent 70%);
}
.page-hero .hero-center { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  line-height: 1.08;
  font-weight: 750;
  margin: .55rem 0 .85rem;
  letter-spacing: -0.04em;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.page-hero .hero-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
}
.page-hero .hero-cta { justify-content: center; }

/* PROOF — dark metrics, same language as banner */
.proof {
  position: relative;
  background: var(--ink-deep);
  padding: 3.6rem 0 4.4rem;
}
.proof .eyebrow {
  justify-content: center;
  margin: 0 auto 2.2rem;
}
.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .proof-row { grid-template-columns: repeat(4, 1fr); }
}
.proof-item {
  text-align: center;
  padding: 1.4rem 1.1rem 1.2rem;
  position: relative;
}
@media (min-width: 900px) {
  .proof-item:not(:last-child)::after {
    content: "";
    position: absolute; right: 0; top: 18%; bottom: 18%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(46,196,192,.35), transparent);
  }
}
.proof-item small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.proof-item strong {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.08em;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #fff;
}
.proof-item strong em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
  font-size: 0.55em;
  margin-top: 0.12em;
}
.proof-item > span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(246,251,251,.62);
  font-size: 0.92rem;
  font-weight: 500;
}
.proof-item::before {
  content: "";
  position: absolute; left: 18%; right: 18%; bottom: 0.35rem;
  height: 1px;
  background: var(--teal-bright);
  transform: scaleX(0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.proof-item:hover::before { transform: scaleX(1); }

/* ABOUT — cream panel cutting into dark */
.about {
  background: var(--paper);
  color: var(--ink);
  padding: 5rem 0;
  clip-path: polygon(0 3rem, 100% 0, 100% 100%, 0 100%);
  margin-top: -1px;
}
.about-grid {
  display: grid; gap: 2rem;
  padding-top: 2rem;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.7fr 1.3fr; gap: 4rem; }
}
.kicker { color: var(--teal-deep); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .75rem; }
.about h2, .block-title {
  font-family: var(--font);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.25;
  margin: 0.5rem 0 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.about p { color: #35515c; font-size: 1.05rem; }
.capability {
  display: grid; gap: 0.8rem; margin-top: 1.6rem;
}
.capability div {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 1rem; align-items: start;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(7,48,66,.12);
}
.capability b { font-family: var(--display); color: var(--teal-deep); }

/* SERVICES — stage + giant number, not a list */
.services {
  position: relative;
  padding: 5.8rem 0 5.4rem;
}
.services-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 0.4rem;
  position: relative;
  z-index: 2;
}
.services-head .eyebrow { justify-content: center; }
.services-head .block-title {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
}
.services-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.svc-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  margin-bottom: 1.8rem;
}
.svc-ghost-hold {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.svc-ghost {
  font-size: clamp(13rem, 36vw, 26rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.72;
  color: transparent;
  -webkit-text-stroke: 2px rgba(46,196,192,.32);
  font-style: italic;
  user-select: none;
  opacity: 0.4 !important;
}
.svc-feature {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 3.2rem 1rem 1.8rem;
}
.svc-kicker {
  margin: 0 0 0.55rem;
  color: var(--teal-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.svc-feature h3 {
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-style: italic;
  color: #fff;
}
.svc-feature p[data-svc-copy] {
  margin: 1rem auto 1.6rem;
  color: rgba(246,251,251,.74);
  font-size: 1.18rem;
  max-width: 34rem;
}
.svc-picks {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.svc-picks a {
  position: relative;
  isolation: isolate;
  min-width: 112px;
  padding: 0.9rem 1.05rem 1rem;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(46,196,192,.28);
  background: rgba(4,28,40,.45);
  border-radius: 1.1rem;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc-picks a b {
  display: block;
  font-size: 0.78rem;
  letter-spacing: .16em;
  color: var(--teal-bright);
}
.svc-picks a span {
  display: block;
  margin-top: 0.2rem;
  font-weight: 750;
  font-size: 0.98rem;
  color: #fff;
}
.svc-picks a:hover,
.svc-picks a.is-on {
  background: rgba(26,163,164,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,163,164,.18);
  border-color: var(--teal-bright);
}
.svc-picks a.is-on span { color: var(--teal-bright); font-style: italic; }
.svc-loader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  z-index: 2;
}
.svc-picks a.is-on .svc-loader { opacity: 1; }

/* WHY — three cards, ghost numbers like services */
.why {
  position: relative;
  padding: 5.2rem 0 5.6rem;
}
.why-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.4rem;
  position: relative;
  z-index: 1;
}
.why-head .eyebrow { justify-content: center; }
.why-head .block-title { margin-bottom: 0; }
.why-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}
.why-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid rgba(46,196,192,.28);
  background: rgba(4,28,40,.45);
  border-radius: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.why-card:hover {
  border-color: var(--teal-bright);
  background: rgba(26,163,164,.16);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,163,164,.16);
}
.why-ghost {
  position: absolute;
  right: 0.4rem;
  top: 0.2rem;
  font-size: clamp(5.5rem, 10vw, 8.5rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46,196,192,.28);
  pointer-events: none;
}
.why-card small {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--teal-bright);
}
.why-card h3 {
  position: relative;
  z-index: 1;
  margin: 0.55rem 0 0.6rem;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  font-style: italic;
  line-height: 1.15;
}
.why-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(246,251,251,.68);
  font-size: 0.98rem;
}

/* WORK — full-width GSAP marquee */
.work {
  position: relative;
  background: var(--ink-deep);
  padding: 5.2rem 0 4.8rem;
  overflow: hidden;
}
.work-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.2rem;
  position: relative;
  z-index: 1;
}
.work-head .eyebrow { justify-content: center; }
.work-head .block-title { margin-bottom: 0; }
.work-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.work-marquee {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0 1.8rem;
}
.work-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4.5vw;
  z-index: 2;
  pointer-events: none;
}
.work-fade-l {
  left: 0;
  background: linear-gradient(90deg, var(--ink-deep) 0%, rgba(4,28,40,0) 100%);
}
.work-fade-r {
  right: 0;
  background: linear-gradient(270deg, var(--ink-deep) 0%, rgba(4,28,40,0) 100%);
}
.work-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.work-seq {
  --work-gap: 1.15rem;
  display: flex;
  gap: var(--work-gap);
  padding-right: var(--work-gap);
}
.work-card {
  position: relative;
  flex: 0 0 auto;
  width: calc((100vw - 1.3 * var(--work-gap, 1.15rem)) / 2.3);
  aspect-ratio: 16 / 11;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(46,196,192,.28);
  background: #03151d;
  cursor: pointer;
  transform-origin: center center;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.work-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, rgba(4,28,40,0) 28%, rgba(4,28,40,.88) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}
.work-card-hover small {
  color: var(--teal-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.work-card-hover h3 {
  margin: 0.25rem 0 0.8rem;
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.work-card:hover,
.work-card:focus-within,
.work-card.is-hover {
  border-color: rgba(46,196,192,.7);
  box-shadow: 0 18px 40px rgba(4,28,40,.45), 0 0 0 1px rgba(46,196,192,.25);
  z-index: 3;
}
.work-card:hover img,
.work-card:focus-within img,
.work-card.is-hover img {
  transform: scale(1.08);
}
.work-card:hover .work-card-hover,
.work-card:focus-within .work-card-hover,
.work-card.is-hover .work-card-hover {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 700px) {
  .work-card { width: calc((100vw - 0.15 * var(--work-gap, 1.15rem)) / 1.15); }
  .work-fade { width: 28px; }
}

/* PROCESS — cream break, four equal cards */
.process {
  position: relative;
  z-index: 3;
  background: var(--paper);
  color: var(--ink);
  padding: 6.8rem 0 7rem;
  overflow: hidden;
}
.process::before,
.process::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120%;
  height: 88px;
  background: var(--ink-deep);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.process::before { top: -44px; }
.process::after { bottom: -44px; }
.process-head,
.process-track { position: relative; z-index: 1; }
.process-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.4rem;
}
.process-head .eyebrow {
  justify-content: center;
  color: var(--teal-deep);
}
.process-head .eyebrow::before,
.process-head .eyebrow::after { background: var(--teal); }
.process-head .block-title { margin-bottom: 0; color: var(--ink); }
.process-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-deep);
}
.process-track {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .process-track { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
  .process-track::before {
    content: "";
    position: absolute;
    top: 2.35rem;
    left: 7%;
    right: 7%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14,122,124,.28), transparent);
  }
}
.process-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(7,48,66,.08);
  border-radius: 1.3rem;
  padding: 1.5rem 1.3rem 1.45rem;
  min-height: 100%;
  box-shadow: 0 10px 30px rgba(4,28,40,.04);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,163,164,.4);
  box-shadow: 0 18px 40px rgba(4,28,40,.1);
}
.process-card b {
  display: block;
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.process-card p {
  margin: 0;
  color: #4a6670;
  font-size: 0.95rem;
}

/* TOOLS — marquee, same language as banner ticker */
.tools { padding: 2.4rem 0 4.2rem; overflow: hidden; }
.tools-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.tools-head .eyebrow { justify-content: center; }
.tools-head .block-title { margin-bottom: 0; }
.tools-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.tools-band {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0;
  background:
    linear-gradient(90deg, rgba(4,28,40,.15) 0%, rgba(14,122,124,.38) 50%, rgba(4,28,40,.15) 100%),
    rgba(7,48,66,.55);
}
.tools-band::before,
.tools-band::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, #7af0ea 22%, #2ec4c0 50%, #7af0ea 78%, transparent 100%);
  box-shadow: 0 0 12px rgba(46,196,192,.55);
}
.tools-band::before { top: 0; }
.tools-band::after { bottom: 0; }
.tools-shine {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, transparent 20%, rgba(122,240,234,.16) 50%, transparent 80%);
  width: 42%;
  animation: tickerShine 4.8s ease-in-out infinite;
}
.tools-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tools-track {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
  color: #fff;
}
.tools-marquee:hover .tools-track { animation-play-state: paused; }
.tools-track span { white-space: nowrap; text-shadow: 0 0 18px rgba(46,196,192,.25); }
.tools-track span.is-accent {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(46,196,192,.55);
}
.tools-track i {
  width: 6px; height: 6px; flex: 0 0 6px;
  background: var(--teal-bright);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--teal-bright);
}

/* QUOTES — editorial, giant mark */
.quotes { padding: 2rem 0 5rem; }
.quotes-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.4rem;
}
.quotes-head .eyebrow { justify-content: center; }
.quotes-head .block-title { margin-bottom: 0; }
.quotes-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.quotes-layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .quotes-layout { grid-template-columns: 1.35fr 0.85fr; align-items: stretch; }
}
.quote-main,
.quote-side {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  padding: 2rem 1.6rem 1.6rem;
  margin: 0;
  border: 1px solid rgba(46,196,192,.22);
}
.quote-main {
  background: rgba(26,163,164,.12);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.quote-side {
  background: rgba(4,28,40,.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.quote-ghost {
  position: absolute;
  left: 0.4rem;
  top: -0.6rem;
  font-size: clamp(7rem, 16vw, 12rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.7;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46,196,192,.28);
  pointer-events: none;
}
.quote-main p,
.quote-side p {
  position: relative;
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 650;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.quote-side p { font-size: 1.2rem; }
.quote-side .quote-ghost { font-size: clamp(5rem, 10vw, 8rem); top: 0; }
.quote-main cite,
.quote-side cite {
  font-style: normal;
  color: var(--teal-bright);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* INDUSTRIES — one board, 12 cells */
.industries { padding: 0 0 5.4rem; }
.industries-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}
.industries-head .eyebrow { justify-content: center; }
.industries-head .block-title { margin-bottom: 0; }
.industries-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(46,196,192,.2);
  border: 1px solid rgba(46,196,192,.24);
  border-radius: 1.45rem;
  overflow: hidden;
}
@media (min-width: 720px) {
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1020px) {
  .sector-grid { grid-template-columns: repeat(4, 1fr); }
}
.sector {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  min-height: 5.6rem;
  padding: 1.05rem 1.1rem;
  background: #062433;
  border: 0;
  border-radius: 0;
  font-weight: 750;
  letter-spacing: -0.02em;
  transition: background .25s ease;
}
.sector-ico {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  color: var(--teal-bright);
  background: rgba(26,163,164,.12);
  border: 1px solid rgba(46,196,192,.26);
  flex-shrink: 0;
  transition: background .25s ease, border-color .25s ease;
}
.sector-ico svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
.sector-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.sector-copy b {
  font-size: 0.68rem;
  letter-spacing: .14em;
  color: var(--teal-bright);
  font-style: italic;
  font-weight: 800;
}
.sector-copy span {
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 750;
}
.sector:hover {
  background: rgba(26,163,164,.16);
}
.sector:hover .sector-ico {
  background: rgba(26,163,164,.24);
  border-color: var(--teal-bright);
}

/* FAQ — cream break, split panel */
.faq {
  position: relative;
  z-index: 3;
  background: var(--paper);
  color: var(--ink);
  padding: 6.4rem 0 6.6rem;
  overflow: hidden;
}
.faq::before,
.faq::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120%;
  height: 88px;
  background: var(--ink-deep);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.faq::before { top: -44px; }
.faq::after { bottom: -44px; }
.faq-head,
.faq-grid { position: relative; z-index: 1; }
.faq-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.2rem;
}
.faq-head .eyebrow {
  justify-content: center;
  color: var(--teal-deep);
}
.faq-head .eyebrow::before,
.faq-head .eyebrow::after { background: var(--teal); }
.faq-head .block-title { margin-bottom: 0; color: var(--ink); }
.faq-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-deep);
}
.faq-grid { display: grid; gap: 1.4rem; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: 1fr 1.05fr; align-items: start; } }
.faq-item {
  width: 100%; text-align: left; cursor: pointer;
  background: transparent; border: 0; border-bottom: 1px solid rgba(7,48,66,.12);
  padding: 1rem 0; color: var(--ink);
  font-family: var(--font); font-size: 1.08rem; font-weight: 700;
  display: flex; gap: 0.85rem; align-items: baseline;
}
.faq-item b {
  font-style: italic;
  color: var(--teal-deep);
  font-size: 0.85rem;
  letter-spacing: .08em;
}
.faq-item.is-on { color: var(--teal-deep); font-style: italic; }
.faq-answer {
  background: #fff;
  border-radius: 1.3rem;
  padding: 1.7rem 1.5rem 1.5rem;
  min-height: 220px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #35515c;
  border: 1px solid rgba(7,48,66,.08);
  box-shadow: 0 10px 30px rgba(4,28,40,.05);
}
.faq-no {
  display: block;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--teal-deep);
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}
.faq-answer p { margin: 0; }

.faq .quotes-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.faq .quotes-head .eyebrow {
  justify-content: center;
  color: var(--teal-deep);
}
.faq .quotes-head .eyebrow::before,
.faq .quotes-head .eyebrow::after { background: var(--teal); }
.faq .quotes-head .block-title { margin-bottom: 0; color: var(--ink); }
.faq .quotes-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-deep);
}
.faq .quotes-layout { margin-bottom: 3.4rem; }
.faq .quote-main,
.faq .quote-side {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(7,48,66,.08);
  box-shadow: 0 10px 30px rgba(4,28,40,.05);
}
.faq .quote-main { background: #fff; min-height: 240px; }
.faq .quote-side { background: var(--sand); }
.faq .quote-main p,
.faq .quote-side p { color: var(--ink); }
.faq .quote-main cite,
.faq .quote-side cite { color: var(--teal-deep); }
.faq .quote-ghost { -webkit-text-stroke-color: rgba(26,163,164,.28); }

/* CTA — banner language */
.cta {
  position: relative;
  padding: 5.6rem 0;
}
.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .cta-layout { grid-template-columns: 0.95fr 1.05fr; gap: 3rem; align-items: start; }
}
.cta-copy .eyebrow { justify-content: flex-start; }
.cta-copy .eyebrow::after { display: none; }
.cta h2 {
  font-family: var(--font);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin: 0.55rem 0 0.9rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.cta h2 em {
  font-style: italic;
  color: var(--teal-bright);
  font-weight: 650;
}
.cta-copy p { color: rgba(246,251,251,.72); max-width: 32rem; }
.cta-links a { color: var(--teal-bright); text-decoration: none; font-weight: 700; }
.cta-form {
  background: rgba(4,28,40,.45);
  border: 1px solid rgba(46,196,192,.22);
  border-radius: 1.4rem;
  padding: 1.4rem;
  box-shadow: 0 24px 60px rgba(4,28,40,.35);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: 0;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(46,196,192,.18);
}
.form-grid { display: grid; gap: 0.7rem; }
@media (min-width: 600px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.form-input, .form-select, .form-textarea, .quote-form-input, .quote-form-select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 0.8rem;
  padding: 0.85rem 0.9rem;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.48); }
.form-input::placeholder, .form-select, .form-textarea::placeholder {
  color: rgba(255,255,255,.48);
}
.form-error, .quote-form-error { color: #ffb4b4; font-size: .8rem; display: none; }
.quote-phone-wrapper { display: flex; gap: 0.4rem; }
.country-code-select-wrapper { position: relative; min-width: 92px; }
.country-code-flag-wrapper {
  display: flex; align-items: center; gap: 0.3rem;
  height: 100%; padding: 0 0.5rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0.8rem; background: rgba(255,255,255,.06);
}
.country-flag-icon { width: 18px; height: auto; }
.quote-country-select { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.form-success-message, .quote-modal-success { text-align: center; padding: 1.5rem; }

/* PACKAGES — glass cards like Why */
.packages-section {
  position: relative;
  padding: 5.2rem 0 4.4rem;
}
.packages-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.4rem;
}
.packages-head .eyebrow { justify-content: center; }
.packages-head .block-title { margin-bottom: 0.7rem; }
.packages-head em {
  font-style: italic;
  font-weight: 650;
  color: var(--teal-bright);
}
.packages-head p { color: rgba(246,251,251,.68); }
.package-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 900px) {
  .package-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.package-card {
  position: relative;
  overflow: hidden;
  background: rgba(4,28,40,.45);
  color: #fff;
  border: 1px solid rgba(46,196,192,.28);
  border-radius: 1.3rem;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-bright);
  background: rgba(26,163,164,.14);
}
.package-card.featured {
  background: rgba(26,163,164,.16);
  border-color: var(--teal-bright);
}
.package-ghost {
  position: absolute;
  right: 0.35rem;
  top: 0.1rem;
  font-size: 5.4rem;
  font-weight: 800;
  font-style: italic;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46,196,192,.28);
  pointer-events: none;
}
.package-card small {
  position: relative;
  z-index: 1;
  font-style: italic;
  letter-spacing: .14em;
  color: var(--teal-bright);
  font-weight: 800;
  font-size: 0.72rem;
}
.package-card h3 {
  position: relative;
  z-index: 1;
  margin: 0.55rem 0 0.4rem;
  font-size: 1.55rem;
  font-weight: 750;
  font-style: italic;
  letter-spacing: -0.03em;
}
.package-card > p {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: rgba(246,251,251,.68);
}
.package-features {
  list-style: none; padding: 0; margin: 0 0 1.2rem; flex: 1;
  position: relative; z-index: 1;
}
.package-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(46,196,192,.16);
  font-size: 0.92rem;
}
.package-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; position: relative; z-index: 1; }
.pkg-btn {
  text-align: center; text-decoration: none; font-weight: 800;
  border-radius: 999px; padding: 0.7rem .45rem; font-size: .8rem;
  white-space: nowrap;
}
.pkg-btn-wa { background: var(--teal); color: #fff; }
.pkg-btn-mail { border: 1px solid rgba(255,255,255,.35); color: #fff; }

.svc-more {
  padding: 3.8rem 0 4.6rem;
  text-align: center;
}
.svc-more .eyebrow { justify-content: center; }
.svc-more-picks a {
  background: rgba(4,28,40,.45);
  border-color: rgba(46,196,192,.22);
  color: #fff;
}
.svc-more-picks a b { color: var(--teal-bright); }
.svc-more-picks a:hover { color: var(--teal-bright); }

/* SERVICE PAGE — cream offer, process language */
.offer {
  background: var(--paper);
  color: var(--ink);
  padding: 5.4rem 0 5.6rem;
}
.offer-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.4rem;
}
.offer-head .eyebrow {
  justify-content: center;
  color: var(--teal-deep);
}
.offer-head .eyebrow::before,
.offer-head .eyebrow::after { background: var(--teal); }
.offer-head .block-title { margin-bottom: 0.8rem; color: var(--ink); }
.offer-lead { color: #35515c; font-size: 1.05rem; }
.offer-lead p { margin: 0 0 0.9rem; }
.offer-lead p:last-child { margin-bottom: 0; }
.offer-note { color: var(--muted); font-size: 0.95rem; margin-top: 0.85rem; }
.offer-track {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .offer-track { grid-template-columns: repeat(3, 1fr); }
}
.offer-card {
  background: #fff;
  border: 1px solid rgba(7,48,66,.08);
  border-radius: 1.3rem;
  padding: 1.4rem 1.25rem 1.3rem;
  box-shadow: 0 10px 30px rgba(4,28,40,.04);
  transition: transform .35s ease, border-color .35s ease;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,163,164,.4);
}
.offer-card b {
  display: block;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 750;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.offer-card p { margin: 0; color: #4a6670; font-size: 0.95rem; }

.legal { background: var(--paper); color: var(--ink); padding: 5rem 0 5.6rem; }
.legal .wrap { max-width: 50rem; }
.legal-head {
  text-align: center;
  margin: 0 auto 2.2rem;
}
.legal-head .eyebrow {
  justify-content: center;
  color: var(--teal-deep);
}
.legal-head .eyebrow::before,
.legal-head .eyebrow::after { background: var(--teal); }
.legal-head .block-title { margin-bottom: 0; color: var(--ink); }
.legal-updated {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.legal-block {
  background: #fff;
  border-radius: 1.3rem;
  padding: 1.5rem 1.4rem 1.35rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(7,48,66,.08);
}
.legal-block b {
  font-style: italic;
  color: var(--teal-deep);
  letter-spacing: .08em;
}
.legal-block h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.25rem;
  font-style: italic;
}
.legal-block h4 {
  margin: 0.95rem 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 750;
  font-style: normal;
  color: var(--ink);
}
.legal-block p { margin: 0; color: #35515c; }
.legal-block p + p,
.legal-block p + ul,
.legal-block ul + p { margin-top: 0.7rem; }
.legal-block ul {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
  color: #35515c;
}
.legal-block li { margin: 0.28rem 0; }
.legal-block a { color: var(--teal-deep); font-weight: 700; }
.reach {
  background: var(--paper);
  color: var(--ink);
  padding: 5.4rem 0 5.6rem;
}
.reach-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.4rem;
}
.reach-head .eyebrow {
  justify-content: center;
  color: var(--teal-deep);
}
.reach-head .eyebrow::before,
.reach-head .eyebrow::after { background: var(--teal); }
.reach-head .block-title { margin-bottom: 0; color: var(--ink); }
.reach-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .reach-grid { grid-template-columns: repeat(3, 1fr); }
}
.reach-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 1.6rem 1.4rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(7,48,66,.08);
  border-radius: 1.3rem;
  box-shadow: 0 10px 30px rgba(4,28,40,.05);
  transition: transform .3s ease, border-color .3s ease;
}
.reach-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
}
.reach-ghost {
  position: absolute;
  right: 0.4rem;
  top: 0.2rem;
  font-size: 5.2rem;
  font-weight: 800;
  font-style: italic;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(26,163,164,.22);
  pointer-events: none;
}
.reach-card small {
  font-style: italic;
  letter-spacing: .14em;
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 0.72rem;
}
.reach-card h3 {
  margin: 0.7rem 0 0.45rem;
  font-size: 1.7rem;
  font-weight: 750;
  font-style: italic;
  letter-spacing: -0.03em;
}
.reach-card p {
  margin: 0 0 1.2rem;
  color: #35515c;
  flex: 1;
}
.reach-go {
  font-weight: 750;
  color: var(--teal-deep);
  font-size: 0.92rem;
  word-break: break-word;
}
.reach-svcs { margin-top: 3rem; text-align: center; }
.reach-svcs .eyebrow {
  justify-content: center;
  color: var(--teal-deep);
}
.reach-svcs .eyebrow::before,
.reach-svcs .eyebrow::after { background: var(--teal); }
.reach-picks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}
.reach-picks a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  background: #fff;
  border: 1px solid rgba(7,48,66,.08);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  transition: border-color .25s ease, color .25s ease;
}
.reach-picks a b {
  font-style: italic;
  color: var(--teal-deep);
  font-size: 0.7rem;
  letter-spacing: .08em;
}
.reach-picks a:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  padding: 4.2rem 0 1.5rem;
}
.site-footer::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, #7af0ea 22%, #2ec4c0 50%, #7af0ea 78%, transparent 100%);
  box-shadow: 0 0 12px rgba(46,196,192,.45);
}
.foot-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(46,196,192,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,192,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 18% 85%, #000 0%, transparent 70%);
}
.foot-orb {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(480px, 70vw); height: 240px;
  left: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(26,163,164,.28) 0%, transparent 70%);
}
.foot-ghost {
  position: absolute;
  right: 1%;
  bottom: -0.6rem;
  z-index: 0;
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46,196,192,.18);
  pointer-events: none;
  user-select: none;
}
.foot-inner,
.foot-bottom { position: relative; z-index: 1; }
.foot-inner {
  display: grid;
  gap: 2.2rem;
}
@media (min-width: 900px) {
  .foot-inner {
    grid-template-columns: 1.15fr 0.9fr 1fr;
    gap: 2.4rem;
    align-items: start;
  }
}
.foot-brand .btn { margin-top: 1.15rem; }
.foot-blurb {
  margin: 1.05rem 0 0.9rem;
  color: rgba(255,255,255,.62);
  max-width: 22rem;
}
.foot-blurb em {
  font-style: italic;
  color: var(--teal-bright);
  font-weight: 650;
}
.foot-markets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.foot-markets i {
  width: 5px; height: 5px; flex: 0 0 5px;
  background: var(--teal-bright);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--teal-bright);
}
.foot-nav {
  min-width: 0;
}
.foot-nav ul {
  display: grid;
  gap: 0.55rem;
}
.foot-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
}
.foot-nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-bright);
  background: transparent;
  box-shadow: 0 0 8px rgba(46,196,192,.35);
  transition: background .25s ease, box-shadow .25s ease;
}
.foot-nav a:hover::before {
  background: var(--teal-bright);
  box-shadow: 0 0 10px var(--teal-bright);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a:not(.btn) { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:not(.btn):hover { color: var(--teal-bright); }
.site-footer h4 {
  margin: 0 0 .85rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-style: italic;
}
.foot-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem 1.1rem 1.05rem;
  border: 1px solid rgba(46,196,192,.22);
  border-radius: 1.2rem;
  background: rgba(7,48,66,.45);
  backdrop-filter: blur(10px);
}
.foot-card a,
.foot-card .foot-loc {
  display: grid;
  gap: 0.12rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.8rem;
  background: rgba(4,28,40,.35);
  border: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.foot-card a:hover {
  border-color: rgba(46,196,192,.35);
  background: rgba(26,163,164,.12);
  color: #fff;
}
.foot-card small {
  font-style: italic;
  font-size: 0.68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-bright);
}
.foot-card span { font-weight: 700; font-size: 0.92rem; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .7rem 1.2rem;
  margin-top: 2.4rem; padding-top: 1.05rem;
  border-top: 1px solid rgba(46,196,192,.16);
  color: rgba(255,255,255,.5); font-size: .85rem;
}
.foot-explore {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  font-weight: 650;
}
.foot-legal { display: flex; gap: 1rem; }

.wa-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-panel {
  width: min(22.5rem, calc(100vw - 2rem));
  background: #062433;
  border: 1px solid rgba(46,196,192,.32);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(4,28,40,.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .28s ease, transform .28s ease;
}
.wa-widget.is-open .wa-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.wa-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem 0.9rem;
  background: linear-gradient(135deg, #1aa3a4 0%, #0e7a7c 100%);
  color: #fff;
}
.wa-head-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.wa-head-copy strong {
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.wa-head-copy span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  opacity: 0.92;
}
.wa-head-copy i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dffa8;
  box-shadow: 0 0 8px #7dffa8;
  flex-shrink: 0;
}
.wa-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wa-body { padding: 0.95rem 0.95rem 1.05rem; }
.wa-bubble {
  margin: 0 0 0.9rem;
  padding: 0.8rem 0.9rem;
  background: rgba(4,28,40,.55);
  border: 1px solid rgba(46,196,192,.22);
  border-radius: 0.95rem 0.95rem 0.95rem 0.35rem;
  color: rgba(246,251,251,.92);
  font-size: 0.92rem;
  line-height: 1.5;
}
.wa-form { display: grid; gap: 0.55rem; }
.wa-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(4,28,40,.7);
  color: #fff;
  border: 1px solid rgba(46,196,192,.28);
  border-radius: 0.75rem;
  padding: 0.72rem 0.85rem;
  font-size: 0.92rem;
}
.wa-input:focus {
  outline: 0;
  border-color: var(--teal-bright);
}
.wa-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232ec4c0' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2rem;
}
.wa-select option { background: #062433; color: #fff; }
.wa-error {
  margin: 0;
  color: #ffb4b4;
  font-size: 0.8rem;
}
.wa-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border: 0;
  border-radius: 0.8rem;
  padding: 0.82rem 0.9rem;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
}
.wa-submit:hover { background: #1fbe5a; }
.wa-float {
  position: relative;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; border: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,.35);
  cursor: pointer;
}
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}
.wa-widget.is-open .wa-pulse { display: none; }
@keyframes waPulse {
  0% { transform: scale(.92); opacity: .8; }
  100% { transform: scale(1.22); opacity: 0; }
}

/* Modal */
.quote-modal-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(4,28,40,.72);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.quote-modal-overlay.active { display: flex; }
.quote-modal-container {
  width: min(760px, 100%);
  background: var(--paper); color: var(--ink);
  border-radius: 1.4rem;
  padding: 1.4rem;
  position: relative;
  max-height: 90vh; overflow: auto;
}
.quote-modal-close {
  position: absolute; top: .8rem; right: .8rem;
  border: 0; background: var(--sand); border-radius: 50%;
  width: 38px; height: 38px; cursor: pointer;
}
.quote-modal-title {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: 0;
  word-spacing: 0.06em;
  line-height: 1.25;
  margin: 0 0 .4rem;
}
.quote-modal-lead { color: var(--muted); margin-bottom: 1rem; letter-spacing: 0; }
.quote-modal-container.is-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.4rem 1.6rem 2.2rem;
}
.quote-modal-container.is-success .quote-modal-title,
.quote-modal-container.is-success .quote-modal-lead { display: none; }
.quote-modal-success {
  text-align: center;
  padding: 0.4rem 0 0.2rem;
  width: 100%;
}
.quote-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.15rem;
  color: var(--teal);
}
.quote-success-icon svg {
  width: 72px;
  height: 72px;
  display: block;
}
.quote-success-title {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: 0;
  word-spacing: 0.08em;
  line-height: 1.35;
  margin: 0 0 0.45rem;
  color: var(--ink);
}
.quote-success-text {
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0;
  word-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
}
.quote-form-row { display: grid; gap: .7rem; margin-bottom: .7rem; }
@media (min-width: 700px) { .quote-form-row { grid-template-columns: 1fr 1fr 1fr; } }
.quote-form-input, .quote-form-select {
  background: #fff; color: var(--ink); border: 1px solid rgba(7,48,66,.16);
}
.quote-form-privacy { font-size: .82rem; color: var(--muted); }
.quote-form-submit-wrapper { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-top: 1rem; }
.quote-form-submit-btn {
  background: var(--teal); color: #fff; border: 0;
  border-radius: 999px; padding: .8rem 1.2rem; font-weight: 800; cursor: pointer;
}
.discuss-btn {
  color: var(--teal-deep); font-weight: 800; text-decoration: none;
}

.reveal { opacity: 0; transform: translateY(28px); }
@media (max-width:767px)
{
  a.brand {
    width: 40%;
}

a.brand img {
    width: 100%;
}
}