/* ================================================================
   HI Growth Marketing — Dark 2026
   Syne display · Space Grotesk labels · DM Sans body
   Brand teal #048C85 · Deep dark · Glassmorphism · Glow
   ================================================================ */

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --bg:      #050A09;
  --bg-2:    #091110;
  --bg-3:    #0D1917;
  --bg-4:    #132220;

  --teal:    #048C85;
  --teal-d:  #036B65;
  --teal-l:  #A1CFC4;
  --teal-xl: rgba(4,140,133,.07);
  --teal-glow: rgba(4,140,133,.18);
  --teal-glow-l: rgba(4,140,133,.08);

  --gold:    #C9963C;
  --gold-l:  rgba(201,150,60,.12);

  --white:   #FFFFFF;
  --off-white: #D4ECEC;
  --gray:    #6A9590;
  --gray-d:  #3D6460;

  --border:  rgba(161,207,196,.1);
  --border-2: rgba(255,255,255,.05);

  --display: 'Syne', 'Space Grotesk', system-ui, sans-serif;
  --grotesk: 'Space Grotesk', system-ui, sans-serif;
  --body:    'DM Sans', system-ui, sans-serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  --header-h: 76px;
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-expo:   cubic-bezier(.87,0,.13,1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--off-white);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
}
@media (hover:none) { body { cursor: auto; } }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; cursor: auto; }

/* ── Custom Cursor ────────────────────────────────────────── */
.cur-dot {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
.cur-ring {
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: .4;
  transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .3s, border-color .25s;
}
body.ch .cur-dot  { width: 12px; height: 12px; background: var(--teal-l); }
body.ch .cur-ring { width: 52px; height: 52px; border-color: var(--teal-l); opacity: .25; }

/* ── Type ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem,6vw,6rem); font-weight: 800; }
h2 { font-size: clamp(2rem,4vw,3.8rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem,2vw,1.5rem); font-weight: 700; }

.label {
  font-family: var(--grotesk);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── Layout ───────────────────────────────────────────────── */
.wrap      { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,3.5rem); }
.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,3.5rem); }
.sec       { padding: clamp(5rem,10vw,9rem) 0; }
.sec-s     { padding: clamp(3rem,6vw,5rem) 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.9rem;
  border-radius: var(--r-pill);
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  cursor: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 24px rgba(4,140,133,.3);
}
.btn-teal:hover { background: var(--teal-d); box-shadow: 0 8px 32px rgba(4,140,133,.45); }

.btn-outline {
  background: transparent;
  color: var(--teal-l);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-xl); }

.btn-outline-w {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(255,255,255,.15);
}
.btn-outline-w:hover { border-color: var(--teal-l); color: var(--teal-l); background: var(--teal-xl); }

.btn-ghost {
  background: var(--bg-3);
  color: var(--teal-l);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-4); border-color: var(--teal); }

.btn-lg { padding: 1rem 2.5rem; font-size: .84rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .7rem; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(5,10,9,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border), 0 4px 32px rgba(0,0,0,.4);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1.25rem,4vw,3.5rem);
  max-width: 1500px;
  margin: 0 auto;
}
.logo-img  { height: 34px; width: auto; }
.logo-link { display: flex; align-items: center; }

.main-nav ul { display: flex; gap: clamp(1.5rem,2.5vw,2.75rem); }
.main-nav a {
  font-family: var(--grotesk);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
  position: relative;
  padding: .2rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: width .3s var(--ease-out);
}
.main-nav a:hover { color: var(--teal-l); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--teal-l); }

.nav-tog {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px;
  cursor: none;
}
.nav-tog span { display: block; height: 1.5px; background: var(--off-white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-tog.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-tog.open span:nth-child(2) { opacity: 0; }
.nav-tog.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed; inset: 0; z-index: 850;
  background: var(--bg-2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu nav ul { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
.mob-menu nav a {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  transition: color .2s;
}
.mob-menu nav a:hover { color: var(--teal); }

/* ── ═══════════════════════════════════════════ HERO ══════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

/* Radial teal glow — no photo */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(4,140,133,.22) 0%,
    rgba(4,140,133,.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}
@keyframes glowPulse {
  from { opacity: .7; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;  transform: translateX(-50%) scale(1.15); }
}

/* Grid overlay texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(161,207,196,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161,207,196,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Center content */
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem,5vw,4rem) 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: var(--r-pill);
  background: var(--teal-xl);
  border: 1px solid var(--border);
  font-family: var(--grotesk);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) .3s forwards;
}
.hero-pill .hp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(4,140,133,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(4,140,133,0); }
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(3.2rem,9vw,9.5rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line-inner {
  display: block;
  transform: translateY(110%);
  animation: slideUp .9s var(--ease-expo) forwards;
}
.hero-headline .line:nth-child(1) .line-inner { animation-delay: .5s; }
.hero-headline .line:nth-child(2) .line-inner { animation-delay: .65s; }
.hero-headline .line:nth-child(3) .line-inner { animation-delay: .8s; }
.hero-headline .hl-teal { color: var(--teal); }

.hero-sub {
  font-size: clamp(.95rem,1.5vw,1.1rem);
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) 1s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) 1.1s forwards;
}

/* Floating stat chips */
.hero-chips {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) 1.3s forwards;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  background: rgba(13,25,23,.8);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hc-val {
  font-family: var(--grotesk);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-l);
  line-height: 1;
}
.hc-label { font-size: .65rem; color: var(--gray); margin-top: .1rem; font-family: var(--grotesk); letter-spacing: .04em; }
.hc-icon { font-size: 1.1rem; }

/* Scroll line */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) 1.6s forwards;
}
.hero-scroll span {
  font-family: var(--grotesk);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-d);
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes slideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: .85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.m-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.75rem;
  white-space: nowrap;
  font-family: var(--grotesk);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-d);
}
.m-item strong { color: var(--teal-l); }
.m-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); opacity: .35; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ══════════════════════ SERVICES — INTERACTIVE LIST ════ */
.svc-sec { background: var(--bg); border-top: 1px solid var(--border-2); }

.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(3rem,6vw,5rem);
}
.svc-head p { color: var(--gray); font-size: 1rem; max-width: 340px; line-height: 1.75; }

/* Interactive rows */
.svc-list { border-top: 1px solid var(--border-2); }

.svc-row {
  border-bottom: 1px solid var(--border-2);
  transition: background .3s;
  cursor: none;
}
.svc-row:hover { background: var(--teal-xl); }

.svc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 3.5rem 1fr auto 2.5rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: none;
  text-align: left;
}

.svc-n {
  font-family: var(--grotesk);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--teal);
  opacity: .6;
}
.svc-name {
  font-family: var(--display);
  font-size: clamp(1.1rem,2vw,1.5rem);
  font-weight: 700;
  color: var(--white);
  transition: color .2s;
}
.svc-row:hover .svc-name { color: var(--teal-l); }

.svc-tags-wrap {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.svc-tag {
  font-family: var(--grotesk);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: .25rem .65rem;
  transition: background .2s, color .2s, border-color .2s;
}
.svc-row:hover .svc-tag { background: var(--teal-xl); color: var(--teal-l); border-color: var(--border); }

.svc-icon-wrap {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .4s var(--ease-spring);
}
.svc-icon-wrap svg { width: 14px; height: 14px; color: var(--teal-l); transition: transform .35s var(--ease-spring); }
.svc-row:hover .svc-icon-wrap { background: var(--teal); border-color: var(--teal); }
.svc-row:hover .svc-icon-wrap svg { color: #fff; }
.svc-row.open .svc-icon-wrap svg { transform: rotate(45deg); }

/* Expandable body */
.svc-body {
  display: none;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
}
.svc-body-inner {
  grid-column: 2;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.svc-desc { font-size: .9rem; color: var(--gray); line-height: 1.75; max-width: 520px; }

/* ── ═════════════════════════════════════════ STATS ═══════ */
.stats-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: clamp(3rem,6vw,5rem) 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border-2);
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--teal-xl); }

.stat-n {
  font-family: var(--display);
  font-size: clamp(2.5rem,5vw,4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .05em;
}
.stat-suf { font-size: .55em; color: var(--teal); }
.stat-l {
  font-family: var(--grotesk);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── ════════════════════════════ WORK — GRID ═════════════ */
.work-sec { background: var(--bg); border-top: 1px solid var(--border-2); }

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem,5vw,4rem);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.work-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: none;
  background: var(--bg-3);
}
.work-card:nth-child(1) { aspect-ratio: 16/10; grid-column: span 2; }
.work-card:nth-child(4) { aspect-ratio: 16/10; grid-column: span 2; }

.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out), filter .5s;
  filter: brightness(.7) saturate(1.1);
}
.work-card:hover img { transform: scale(1.05); filter: brightness(.5) saturate(1.2); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,10,9,.95) 0%,
    rgba(5,10,9,.5) 40%,
    transparent 70%
  );
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background .4s;
}
.work-card:hover .work-overlay {
  background: linear-gradient(
    to top,
    rgba(4,140,133,.2) 0%,
    rgba(5,10,9,.7) 40%,
    transparent 70%
  );
}

.wk-cat {
  font-family: var(--grotesk);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-bottom: .4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.wk-title {
  font-family: var(--display);
  font-size: clamp(1rem,2vw,1.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.15;
}
.wk-metrics {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease-out) .05s, transform .4s var(--ease-out) .05s;
}
.work-card:hover .wk-cat,
.work-card:hover .wk-metrics { opacity: 1; transform: translateY(0); }

.wk-m-val {
  font-family: var(--grotesk);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-l);
  line-height: 1;
}
.wk-m-lbl { font-size: .62rem; color: var(--gray); margin-top: .1rem; font-family: var(--grotesk); letter-spacing: .05em; text-transform: uppercase; }

.work-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(4,140,133,.15);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-l);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .4s var(--ease-spring), background .2s;
}
.work-arrow svg { width: 14px; height: 14px; }
.work-card:hover .work-arrow { opacity: 1; transform: scale(1); background: var(--teal); border-color: var(--teal); color: #fff; }

/* ── ════════════════════════════ ABOUT ══════════════════════ */
.about-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  position: relative;
  overflow: hidden;
}
.about-sec::before {
  content: '';
  position: absolute;
  top: 50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,140,133,.1) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,7vw,8rem);
  align-items: center;
}

.about-statement {
  font-family: var(--display);
  font-size: clamp(1.6rem,3.5vw,3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.about-statement .as-teal { color: var(--teal); }

.about-body { font-size: .95rem; color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }

.about-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.about-pill {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 1rem;
  transition: border-color .25s, transform .3s var(--ease-spring);
}
.about-pill:hover { border-color: var(--border); transform: translateY(-2px); }
.ap-icon { font-size: 1.25rem; margin-bottom: .45rem; }
.about-pill strong { display: block; font-family: var(--grotesk); font-size: .78rem; font-weight: 700; color: var(--off-white); margin-bottom: .15rem; }
.about-pill span   { font-size: .76rem; color: var(--gray); line-height: 1.45; }

.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
  filter: saturate(1.05) brightness(.9);
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(9,17,16,.85);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.aib-icon { font-size: 1.3rem; }
.aib-val  { font-family: var(--grotesk); font-weight: 800; font-size: .82rem; color: var(--off-white); line-height: 1; }
.aib-sub  { font-size: .65rem; color: var(--gray); margin-top: .1rem; }

/* ── ══════════════════════════ PROCESS ══════════════════════ */
.process-sec { background: var(--bg); border-top: 1px solid var(--border-2); }
.process-head { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }
.process-head h2 { color: var(--white); }
.process-head p { color: var(--gray); font-size: 1rem; max-width: 440px; margin: 1rem auto 0; line-height: 1.75; }

.process-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), var(--teal), transparent);
  opacity: .2;
  pointer-events: none;
}

.proc-step {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: background .3s, border-color .3s, transform .4s var(--ease-spring);
}
.proc-step:hover { background: var(--bg-3); border-color: var(--border); transform: translateY(-4px); }

.proc-n {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  opacity: .15;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: opacity .3s;
}
.proc-step:hover .proc-n { opacity: .4; }

.proc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 12px var(--teal-glow);
}

.proc-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .55rem;
  letter-spacing: -.02em;
}
.proc-desc { font-size: .82rem; color: var(--gray); line-height: 1.65; }

/* ── ══════════════════════ TESTIMONIALS ═════════════════════ */
.testi-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
}
.testi-head { text-align: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.testi-head h2 { color: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}

.t-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: border-color .3s, transform .4s var(--ease-spring), box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.t-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--display);
  font-size: 6rem;
  line-height: 1;
  color: var(--teal);
  opacity: .06;
  pointer-events: none;
}
.t-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.t-card.featured {
  background: linear-gradient(135deg, var(--teal-d) 0%, var(--teal) 100%);
  border-color: var(--teal);
}
.t-card.featured .t-quote { color: rgba(255,255,255,.85); }
.t-card.featured .t-name  { color: #fff; }
.t-card.featured .t-biz   { color: rgba(255,255,255,.5); }
.t-card.featured::before  { color: rgba(255,255,255,.08); }

.t-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 1.1rem; }
.t-stars svg { width: 13px; height: 13px; }

.t-quote {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-author { display: flex; align-items: center; gap: .7rem; }
.t-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-d), var(--teal-l));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--grotesk);
  font-weight: 800; font-size: .78rem;
  color: var(--bg);
  flex-shrink: 0;
}
.t-name { font-family: var(--grotesk); font-weight: 700; font-size: .82rem; color: var(--off-white); }
.t-biz  { font-size: .7rem; color: var(--gray); margin-top: .08rem; }

/* ── ══════════════════════════════ CTA ══════════════════════ */
.cta-sec {
  background: var(--bg);
  border-top: 1px solid var(--border-2);
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(4,140,133,.2) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: var(--gray); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--teal-l);
  padding: .85rem 1.9rem;
  transition: color .2s;
}
.cta-phone:hover { color: var(--white); }
.cta-phone svg { width: 16px; height: 16px; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-sec { background: var(--bg-2); border-top: 1px solid var(--border-2); }
.contact-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-inner h2 { margin-bottom: .75rem; color: var(--white); }
.contact-inner > p { color: var(--gray); font-size: 1rem; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; }

.contact-details-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-2);
}
.cd-item { text-align: center; }
.cd-item strong {
  display: block;
  font-family: var(--grotesk);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-d);
  margin-bottom: .35rem;
}
.cd-item a, .cd-item span {
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: .9rem;
  color: var(--teal-l);
}
.cd-item a:hover { color: var(--teal); }

.contact-form { text-align: left; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-family: var(--grotesk);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .4rem;
}
input, textarea, select {
  width: 100%;
  padding: .8rem 1.1rem;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--off-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  cursor: auto;
}
input::placeholder, textarea::placeholder { color: var(--gray-d); }
input:focus, textarea:focus, select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(4,140,133,.1);
}
textarea { resize: vertical; min-height: 110px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A9590' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  color: var(--gray);
}
.form-submit { width: 100%; justify-content: center; margin-top: 1.5rem; }
.form-message { display: none; padding: .85rem 1rem; border-radius: var(--r-sm); margin-bottom: 1rem; font-size: .875rem; font-weight: 500; text-align: left; }
.form-message--success { background: rgba(4,140,133,.1); color: var(--teal-l); border: 1px solid var(--border); }
.form-message--error   { background: rgba(220,50,50,.08); color: #ff8080; border: 1px solid rgba(220,50,50,.2); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border-2); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding: clamp(3.5rem,7vw,6rem) 0 3rem;
  border-bottom: 1px solid var(--border-2);
}
.footer-logo-img { height: 30px; width: auto; opacity: .65; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: var(--gray); line-height: 1.75; max-width: 260px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .5rem; }
.soc-btn {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-d);
  transition: background .2s, color .2s, border-color .2s;
  cursor: none;
}
.soc-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.soc-btn svg { width: 13px; height: 13px; }

.footer-col h5 {
  font-family: var(--grotesk);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-d);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .85rem; color: var(--gray); transition: color .2s; }
.footer-col a:hover { color: var(--teal-l); }
.footer-islands li { font-size: .78rem; color: var(--gray-d); line-height: 1.65; }
.footer-contacts { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }
.footer-contacts a { font-size: .85rem; color: var(--teal-l); font-weight: 500; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: .75rem; color: var(--gray-d); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .75rem; color: var(--gray-d); transition: color .2s; }
.footer-legal a:hover { color: var(--teal-l); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-2);
  padding: calc(var(--header-h) + clamp(3rem,7vw,6rem)) 0 clamp(3rem,6vw,5rem);
}
.page-hero h1 { margin-top: .75rem; max-width: 820px; color: var(--white); }
.page-hero p  { color: var(--gray); font-size: 1.05rem; max-width: 520px; margin-top: 1.25rem; line-height: 1.75; }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal   { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-l { opacity: 0; transform: translateX(-24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-r { opacity: 0; transform: translateX(24px);  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s;} .d2{transition-delay:.2s;} .d3{transition-delay:.3s;} .d4{transition-delay:.4s;} .d5{transition-delay:.5s;}

/* ── Scroll Top ───────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s, transform .3s; cursor: none;
  box-shadow: 0 4px 20px rgba(4,140,133,.35);
}
.scroll-top.vis { opacity: 1; transform: none; pointer-events: all; }
.scroll-top:hover { background: var(--teal-d); transform: translateY(-3px); }
.scroll-top svg { width: 17px; height: 17px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-head { flex-direction: column; align-items: flex-start; }
  .work-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .main-nav, .site-header .btn { display: none; }
  .nav-tog { display: flex; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-2); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-2); }
  .work-grid { grid-template-columns: 1fr; }
  .work-card:nth-child(1),
  .work-card:nth-child(4) { grid-column: span 1; aspect-ratio: 4/3; }
  .process-row { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .process-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .svc-trigger { grid-template-columns: 2.5rem 1fr 2.5rem; }
  .svc-tags-wrap { display: none; }
  .hero-chips { gap: .6rem; }
  .hero-chip { padding: .6rem .9rem; }
  body { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
}

@media (max-width: 480px) {
  .process-row { grid-template-columns: 1fr; }
  .about-pills { grid-template-columns: 1fr; }
  .testi-grid { max-width: 100%; }
}
