/* ============================================================
   GAMA ADVISORY SERVICES — Design System v2.0
   Dark luxury · Liquid glass · Fraunces + Manrope
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --ink-950: #050f14;
  --ink-900: #07161d;
  --ink-800: #0b2029;
  --ink-700: #10303c;
  --teal-600: #145f76;
  --teal-400: #2a93b4;
  --teal-300: #55b9d6;
  --orange-500: #f58b39;
  --orange-400: #ff9d4f;
  --orange-300: #ffb377;
  --amber-200: #ffd9a0;
  --text-100: #eaf3f5;
  --text-300: #c3d4d9;
  --muted: #8fa8b1;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.045);
  --glass-hover: rgba(255, 255, 255, 0.08);
  --grad-brand: linear-gradient(96deg, var(--orange-500), var(--amber-200));
  --grad-sea: linear-gradient(135deg, var(--teal-600), var(--teal-300));

  /* type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --fs-hero: clamp(2.75rem, 7.2vw, 6.25rem);
  --fs-h1: clamp(2.4rem, 5.4vw, 4.5rem);
  --fs-h2: clamp(1.9rem, 3.8vw, 3.25rem);
  --fs-h3: clamp(1.35rem, 2.2vw, 1.8rem);
  --fs-body: clamp(1rem, 1.05vw, 1.125rem);

  /* rhythm */
  --space-section: clamp(5.5rem, 11vw, 10rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxe: cubic-bezier(0.65, 0, 0.05, 1);
  --dur: 0.5s;

  /* z scale */
  --z-bg: 0; --z-content: 10; --z-nav: 100; --z-overlay: 900; --z-cursor: 1000;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink-950);
  color: var(--text-100);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--orange-500); color: var(--ink-950); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

:focus-visible {
  outline: 2px solid var(--orange-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: calc(var(--z-cursor) + 1);
  background: var(--orange-500); color: var(--ink-950);
  padding: 10px 18px; border-radius: 8px; font-weight: 700;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ---------- Background FX layer ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: var(--z-bg);
  overflow: hidden; pointer-events: none;
}
.bg-fx canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.aurora {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.5;
  will-change: transform;
}
.aurora.a1 {
  width: 55vw; height: 55vw; top: -22vw; right: -12vw;
  background: radial-gradient(circle at 30% 30%, rgba(20, 95, 118, 0.85), transparent 65%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.aurora.a2 {
  width: 42vw; height: 42vw; bottom: -18vw; left: -14vw;
  background: radial-gradient(circle at 60% 40%, rgba(245, 139, 57, 0.32), transparent 68%);
  animation: drift2 32s ease-in-out infinite alternate;
}
.aurora.a3 {
  width: 34vw; height: 34vw; top: 38%; left: 42%;
  background: radial-gradient(circle, rgba(42, 147, 180, 0.28), transparent 70%);
  animation: drift3 38s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-9vw, 11vw) scale(1.15); } }
@keyframes drift2 { to { transform: translate(10vw, -9vw) scale(1.2); } }
@keyframes drift3 { to { transform: translate(-12vw, -7vw) scale(0.85); } }

.grain {
  position: absolute; inset: -100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); } 25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); } 75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--ink-950);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.7s var(--ease-luxe), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-word {
  display: flex; gap: 0.04em;
  font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.28em; text-indent: 0.28em;
}
.preloader-word span {
  display: inline-block; opacity: 0; transform: translateY(0.6em) rotate(4deg);
  animation: pre-letter 0.8s var(--ease-out) forwards;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.preloader-word span:nth-child(2) { animation-delay: 0.07s; }
.preloader-word span:nth-child(3) { animation-delay: 0.14s; }
.preloader-word span:nth-child(4) { animation-delay: 0.21s; }
.preloader-word span:nth-child(5) { animation-delay: 0.32s; }
@keyframes pre-letter { to { opacity: 1; transform: none; } }
.preloader-bar {
  width: min(240px, 55vw); height: 2px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.12); overflow: hidden;
}
.preloader-bar i {
  display: block; height: 100%; width: 0;
  background: var(--grad-brand);
  transition: width 0.35s var(--ease-out);
}
.preloader-tag { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.32em; text-transform: uppercase; text-indent: 0.32em; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: var(--z-cursor);
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}
.cursor-dot { width: 7px; height: 7px; background: var(--orange-400); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(245, 139, 57, 0.55);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
    border-color 0.3s, background-color 0.3s;
}
body.cursor-grow .cursor-ring {
  width: 68px; height: 68px;
  background: rgba(245, 139, 57, 0.12);
  border-color: rgba(245, 139, 57, 0.9);
}

/* ---------- Page transition veil ---------- */
.veil {
  position: fixed; inset: 0; z-index: calc(var(--z-overlay) - 1);
  background: linear-gradient(120deg, var(--ink-900), var(--ink-700));
  transform: scaleY(0); transform-origin: top;
  pointer-events: none;
}
.veil.animate-in { animation: veil-in 0.55s var(--ease-luxe) forwards; }
@keyframes veil-in { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  transition: transform 0.45s var(--ease-out), background-color 0.45s, backdrop-filter 0.45s,
    padding 0.45s var(--ease-out), border-color 0.45s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding-top: 10px; padding-bottom: 10px;
  background: rgba(5, 15, 20, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav.hidden { transform: translateY(-110%); }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 44px; width: 44px; object-fit: contain; }
.nav-brand b {
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
  letter-spacing: 0.02em; line-height: 1.1;
}
.nav-brand small { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; color: var(--text-300);
  background: transparent; border: 0;
  transition: color 0.25s, background-color 0.25s;
}
.nav-links a:hover, .nav-links button.nav-drop-btn:hover { color: var(--text-100); background: var(--glass-hover); }
.nav-links a.active { color: var(--orange-400); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange-400); transform: translateX(-50%);
}
.nav-drop-btn svg { transition: transform 0.3s var(--ease-out); }
.nav-drop.open .nav-drop-btn svg { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px; padding: 8px;
  background: rgba(10, 26, 34, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.nav-drop.open .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a {
  display: flex; width: 100%; padding: 12px 14px; border-radius: 10px;
  font-size: 0.9rem; gap: 10px; align-items: center;
}
.nav-drop-menu a small { margin-left: auto; color: var(--muted); font-size: 0.7rem; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

/* hamburger */
.burger {
  display: none; position: relative; z-index: calc(var(--z-nav) + 2);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--glass);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger i {
  display: block; width: 18px; height: 1.8px; background: var(--text-100);
  border-radius: 2px; transition: transform 0.35s var(--ease-out), opacity 0.25s, width 0.3s;
}
.burger.open i:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; width: 0; }
.burger.open i:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: calc(var(--z-nav) - 1);
  background: rgba(5, 15, 20, 0.9);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px var(--gutter) 40px;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  visibility: hidden;
  transition: clip-path 0.65s var(--ease-luxe), visibility 0.65s;
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 44px) 44px); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(1.9rem, 7.5vw, 2.8rem);
  padding: 0.35em 0; color: var(--text-100); display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--orange-400); }
.mobile-menu a sup { font-family: var(--font-body); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.2em; }
.mobile-menu .mm-foot { margin-top: 40px; color: var(--muted); font-size: 0.85rem; opacity: 0; transition: opacity 0.5s 0.4s; }
.mobile-menu.open .mm-foot { opacity: 1; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  border: 0; overflow: hidden; isolation: isolate;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn .arr { transition: transform 0.35s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }

.btn-primary { background: var(--grad-brand); color: #2b1503; box-shadow: 0 10px 34px rgba(245, 139, 57, 0.32); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(96deg, var(--amber-200), var(--orange-500));
  opacity: 0; transition: opacity 0.4s;
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(245, 139, 57, 0.5); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: var(--glass); color: var(--text-100);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--glass-hover); border-color: rgba(255, 255, 255, 0.3); }

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

/* link with animated underline */
.link-line {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--orange-400); padding-bottom: 3px;
}
.link-line::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-luxe);
}
.link-line:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Layout primitives ---------- */
main { position: relative; z-index: var(--z-content); }
.container { width: min(1240px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--space-section); position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--grad-brand); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head h2 { font-size: var(--fs-h2); margin-bottom: 18px; }
.section-head p { color: var(--muted); max-width: 60ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Glass card ---------- */
.glass {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform var(--dur) var(--ease-out), border-color 0.4s, background-color 0.4s, box-shadow var(--dur);
}
.glass::before {
  /* top sheen */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  border-radius: inherit;
}
.glass:hover { background: var(--glass-hover); border-color: var(--line-strong); }

/* spotlight — JS sets --mx/--my */
.spotlight::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(245, 139, 57, 0.14), transparent 45%);
  opacity: 0; transition: opacity 0.4s;
}
.spotlight:hover::after { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 110px; padding-bottom: 40px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 20px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-300); margin-bottom: 34px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 0 0 rgba(245, 139, 57, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 139, 57, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(245, 139, 57, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 139, 57, 0); }
}

.hero h1 { font-size: var(--fs-hero); max-width: 15ch; }
.hero h1 em { font-style: italic; font-weight: 400; }

.hero-rotator {
  display: inline-grid; text-align: left; vertical-align: bottom;
  overflow: hidden; height: 1.12em;
}
.hero-rotator span {
  grid-area: 1 / 1; white-space: nowrap;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transform: translateY(110%);
}

.hero-sub { max-width: 56ch; color: var(--muted); margin-top: 30px; font-size: clamp(1.02rem, 1.25vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 44px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-block: 1px solid var(--line);
  margin-top: clamp(3rem, 7vh, 5.5rem);
}
.hero-stats > div { background: var(--ink-950); padding: 26px 22px; }
.hero-stats b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.9rem); font-weight: 500; line-height: 1;
}
.hero-stats b .plus { color: var(--orange-400); }
.hero-stats small { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* hero two-column layout (desktop) */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero-visual { position: relative; height: 540px; display: none; pointer-events: none; }
@media (min-width: 1081px) {
  .hero-grid { grid-template-columns: 1.12fr 0.88fr; }
  .hero-visual { display: block; }
}

.hero-ring {
  position: absolute; inset: 0; margin: auto;
  width: min(430px, 92%); aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.13);
}
.hero-ring::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 78%, rgba(245, 139, 57, 0.65) 90%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: ring-spin 14s linear infinite;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.hero-emblem {
  position: absolute; inset: 0; margin: auto;
  width: 148px; height: 148px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: radial-gradient(circle at 35% 30%, rgba(245, 139, 57, 0.2), rgba(10, 26, 34, 0.9) 65%);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  text-align: center;
}
.hero-emblem b { font-family: var(--font-display); font-size: 2.3rem; font-weight: 500; line-height: 1; }
.hero-emblem b i { font-style: normal; color: var(--orange-400); }
.hero-emblem small { color: var(--muted); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; }

.hero-chip {
  position: absolute; display: flex; gap: 14px; align-items: center;
  padding: 15px 20px; border-radius: var(--radius-md);
  background: rgba(10, 26, 34, 0.72);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  animation: chip-float 6.5s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
  white-space: nowrap;
}
.hero-chip .ci {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(245, 139, 57, 0.13); color: var(--orange-400);
  border: 1px solid rgba(245, 139, 57, 0.28);
}
.hero-chip b { display: block; font-size: 0.92rem; line-height: 1.25; }
.hero-chip small { color: var(--muted); font-size: 0.76rem; }
/* Chips live in the top (0–30%) and bottom (70–100%) bands only —
   the centre emblem occupies ~36–64%, so they can never overlap it. */
.hero-chip.c1 { top: 2%; right: 0; }
.hero-chip.c2 { top: 20%; left: -2%; --fd: -2.2s; }
.hero-chip.c3 { bottom: 5%; right: 8%; --fd: -4.4s; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-hint i {
  width: 1.5px; height: 44px; overflow: hidden; position: relative;
  background: rgba(255, 255, 255, 0.12);
}
.scroll-hint i::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--orange-400);
  animation: scroll-drop 1.8s var(--ease-luxe) infinite;
}
@keyframes scroll-drop { 0% { top: -50%; } 100% { top: 110%; } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--line);
  padding: 22px 0; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: inline-flex; gap: 3.2rem; will-change: transform; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 3.2rem;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--text-300);
}
.marquee-track span::after { content: "✦"; color: var(--orange-400); font-size: 0.85em; }

/* ---------- Services cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.svc-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: 480px;
}
.svc-media { position: relative; height: 240px; overflow: hidden; }
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 1s var(--ease-out), filter 1s;
  filter: saturate(0.85) brightness(0.86);
}
.svc-card:hover .svc-media img { transform: scale(1.14) rotate(0.6deg); filter: saturate(1.05) brightness(1); }
.svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 15, 20, 0.92));
}
.svc-num {
  position: absolute; top: 18px; left: 20px; z-index: 2;
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: var(--amber-200);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(5, 15, 20, 0.55); border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.svc-body { display: flex; flex-direction: column; flex: 1; gap: 14px; padding: 26px 28px 30px; }
.svc-body h3 { font-size: var(--fs-h3); }
.svc-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tags span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-300); padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(85, 185, 214, 0.28); background: rgba(42, 147, 180, 0.09);
}

/* ---------- Why / principles ---------- */
.princi-list { display: flex; flex-direction: column; }
.princi-row {
  display: grid; grid-template-columns: 110px 1fr 2fr; gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease-out), background 0.5s;
}
.princi-row:first-child { border-top: 1px solid var(--line); }
.princi-row:hover { padding-left: 18px; }
.princi-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: transparent;
  -webkit-text-stroke: 1px rgba(245, 139, 57, 0.75);
}
.princi-row h3 { font-size: var(--fs-h3); }
.princi-row p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Process timeline ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.8rem); counter-reset: step; }
.process-step { padding: 30px 26px; border-radius: var(--radius-md); position: relative; }
.process-step::after {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-style: italic; font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.06); line-height: 1;
}
.process-step .p-ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(245, 139, 57, 0.12); color: var(--orange-400);
  border: 1px solid rgba(245, 139, 57, 0.25);
}
.process-step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Global presence ---------- */
.globe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.globe-card { padding: 34px 30px; border-radius: var(--radius-lg); text-align: left; }
.globe-card .flag { font-size: 1.6rem; line-height: 1; }
.globe-card h3 { font-size: 1.5rem; margin: 14px 0 4px; }
.globe-card .city { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.globe-card time {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  display: block; letter-spacing: 0.04em;
}
.globe-card time small { font-family: var(--font-body); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.2em; margin-left: 8px; }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.testi-track { display: flex; transition: transform 0.75s var(--ease-luxe); }
.testi {
  min-width: 100%; padding: clamp(2.4rem, 6vw, 4.5rem);
  display: flex; flex-direction: column; gap: 26px;
}
.testi q {
  quotes: none; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem); line-height: 1.45;
  max-width: 26em;
}
.testi q::before { content: "“"; color: var(--orange-400); }
.testi q::after { content: "”"; color: var(--orange-400); }
.testi-who { display: flex; align-items: center; gap: 16px; }
.testi-who .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-sea); font-weight: 800; color: #fff; font-size: 1.05rem;
}
.testi-who b { display: block; }
.testi-who small { color: var(--muted); }
.testi-nav { display: flex; gap: 10px; margin-top: 26px; }
.testi-nav button {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--glass); color: var(--text-100);
  display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.testi-nav button:hover { background: var(--orange-500); border-color: var(--orange-500); color: #2b1503; transform: scale(1.07); }
.testi-dots { display: flex; gap: 8px; align-items: center; margin-left: 14px; }
.testi-dots i {
  width: 7px; height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.2);
  transition: width 0.35s var(--ease-out), background 0.35s; cursor: pointer;
}
.testi-dots i.on { width: 26px; background: var(--orange-400); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.8rem, 6vw, 5rem);
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(245, 139, 57, 0.32), transparent 60%),
    radial-gradient(700px 420px at 10% 110%, rgba(42, 147, 180, 0.35), transparent 60%),
    var(--ink-800);
  border: 1px solid var(--line-strong);
  text-align: center;
}
.cta-band h2 { font-size: var(--fs-h1); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--text-300); margin: 22px auto 36px; max-width: 52ch; }
.cta-band .orbit {
  position: absolute; inset: auto -10% -55% -10%; height: 90%;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding-top: clamp(9rem, 18vh, 13rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  position: relative;
}
.page-hero h1 { font-size: var(--fs-h1); max-width: 16ch; }
.page-hero .lede { color: var(--muted); max-width: 58ch; margin-top: 26px; font-size: clamp(1.02rem, 1.25vw, 1.2rem); }
.crumbs { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 26px; }
.crumbs a:hover { color: var(--orange-400); }
.crumbs span { opacity: 0.5; }

/* ---------- Rich content (service pages) ---------- */
.prose { max-width: 70ch; }
.prose h2 { font-size: var(--fs-h2); margin: 2.6em 0 0.7em; }
.prose h3 { font-size: 1.3rem; margin: 2em 0 0.6em; color: var(--amber-200); }
.prose p { color: var(--text-300); margin-bottom: 1.2em; }
.prose ul { list-style: none; margin: 1.4em 0; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { position: relative; padding-left: 34px; color: var(--text-300); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.52em;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f58b39' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.callout {
  margin: 2.2em 0; padding: 26px 30px;
  border-left: 3px solid var(--orange-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(245, 139, 57, 0.07);
}
.callout b { color: var(--amber-200); }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 2.4em 0; }
.feature-grid .f {
  padding: 22px 24px; border-radius: var(--radius-md);
  display: flex; gap: 16px; align-items: flex-start;
}
.feature-grid .f svg { flex-shrink: 0; color: var(--orange-400); margin-top: 3px; }
.feature-grid .f b { display: block; margin-bottom: 4px; }
.feature-grid .f span { color: var(--muted); font-size: 0.9rem; }

/* sticky sidebar layout */
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.svc-aside { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 20px; }
.aside-card { padding: 28px; border-radius: var(--radius-md); }
.aside-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.aside-card nav { display: flex; flex-direction: column; }
.aside-card nav a {
  padding: 10px 0; color: var(--muted); font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s, padding-left 0.3s var(--ease-out);
}
.aside-card nav a:hover, .aside-card nav a.on { color: var(--orange-400); padding-left: 8px; }

/* ---------- Stats band (about) ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.stats-band > div { background: rgba(7, 22, 29, 0.75); backdrop-filter: blur(10px); padding: clamp(1.6rem, 3.5vw, 3rem); text-align: center; }
.stats-band b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 500; }
.stats-band small { color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.75rem; }

/* big quote */
.big-quote {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.4;
  text-align: center; max-width: 26em; margin-inline: auto;
}
.big-quote mark { background: none; color: var(--orange-400); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 20px; align-items: center; padding: 24px 26px; border-radius: var(--radius-md); }
.contact-card .ic {
  width: 54px; height: 54px; border-radius: 16px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(245, 139, 57, 0.12); color: var(--orange-400);
  border: 1px solid rgba(245, 139, 57, 0.25);
}
.contact-card small { display: block; color: var(--muted); font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 4px; }
.contact-card b { font-size: 1.02rem; font-weight: 600; word-break: break-word; }

.form-card { padding: clamp(1.8rem, 4vw, 3rem); border-radius: var(--radius-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-300); }
.field label i { color: var(--orange-400); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text-100); font-family: inherit; font-size: 1rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238fa8b1' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select option { background: var(--ink-800); }
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(143, 168, 177, 0.6); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange-400);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(245, 139, 57, 0.14);
}
.field.error input, .field.error select, .field.error textarea { border-color: #ff6b6b; }
.field .err { color: #ff8f8f; font-size: 0.8rem; display: none; }
.field.error .err { display: block; }

.form-status { display: none; align-items: flex-start; gap: 16px; padding: 22px 24px; border-radius: var(--radius-md); margin-top: 24px; }
.form-status.show { display: flex; }
.form-status.ok { background: rgba(46, 196, 134, 0.1); border: 1px solid rgba(46, 196, 134, 0.4); }
.form-status.bad { background: rgba(255, 107, 107, 0.08); border: 1px solid rgba(255, 107, 107, 0.35); }
.form-status b { display: block; margin-bottom: 2px; }
.form-status span { color: var(--muted); font-size: 0.92rem; }

.btn .spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(43, 21, 3, 0.25); border-top-color: #2b1503;
  animation: spin 0.7s linear infinite; display: none;
}
.btn.loading .spinner { display: block; }
.btn.loading .arr { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Blog ---------- */
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.chip {
  padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: 0.85rem;
  border: 1px solid var(--line-strong); background: var(--glass); color: var(--text-300);
  transition: all 0.3s var(--ease-out);
}
.chip:hover { border-color: var(--orange-400); color: var(--text-100); }
.chip.on { background: var(--grad-brand); color: #2b1503; border-color: transparent; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.post-card { border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; cursor: pointer; }
.post-media { height: 210px; overflow: hidden; position: relative; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); filter: saturate(0.9) brightness(0.88); }
.post-card:hover .post-media img { transform: scale(1.09); }
.post-cat {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(5, 15, 20, 0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong); color: var(--amber-200);
}
.post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-body h3 { font-size: 1.28rem; line-height: 1.3; }
.post-body p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.post-meta { display: flex; gap: 14px; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.08em; }

/* article modal */
.article-modal {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  display: grid; place-items: center; padding: 20px;
  visibility: hidden; opacity: 0;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.article-modal.open { visibility: visible; opacity: 1; }
.article-modal .scrim { position: absolute; inset: 0; background: rgba(3, 8, 11, 0.75); backdrop-filter: blur(12px); }
.article-panel {
  position: relative; width: min(760px, 100%); max-height: 86dvh; overflow-y: auto;
  background: var(--ink-900); border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 5vw, 3.5rem);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.45s var(--ease-luxe);
}
.article-modal.open .article-panel { transform: none; }
.article-panel h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 14px 0 20px; }
.article-panel .prose { max-width: none; }
.article-close {
  position: sticky; top: 0; float: right;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-hover); border: 1px solid var(--line-strong); color: var(--text-100);
  display: grid; place-items: center; z-index: 2;
}
.article-close:hover { background: var(--orange-500); color: #2b1503; }

/* ---------- Footer ---------- */
footer { position: relative; z-index: var(--z-content); border-top: 1px solid var(--line); margin-top: var(--space-section); background: rgba(4, 11, 15, 0.6); backdrop-filter: blur(14px); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
}
.footer-brand p { color: var(--muted); font-size: 0.94rem; max-width: 34ch; margin-top: 18px; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--amber-200); margin-bottom: 22px; font-family: var(--font-body); font-weight: 800; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 0.94rem; transition: color 0.25s, padding-left 0.3s var(--ease-out); }
.footer-col a:hover { color: var(--orange-400); padding-left: 6px; }
.footer-col li.plain { color: var(--muted); font-size: 0.94rem; }

.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--glass);
  display: grid; place-items: center; color: var(--text-300);
  transition: all 0.3s var(--ease-out);
}
.socials a:hover { background: var(--orange-500); border-color: var(--orange-500); color: #2b1503; transform: translateY(-4px); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  padding: 22px 0 90px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.82rem;
}
.footer-giant {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.4rem, 12vw, 11rem); line-height: 0.9;
  text-align: center; padding: clamp(1rem, 4vw, 3rem) 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none; pointer-events: none;
}

/* call float (bottom right) */
.call-float {
  position: fixed; right: 22px; bottom: 22px; z-index: var(--z-nav);
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #06301b;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.call-float:hover { transform: scale(1.1) rotate(6deg); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55); }
.call-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.65);
  animation: call-pulse 2.4s ease-out infinite;
}
@keyframes call-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* go-to-top (bottom left) */
.to-top {
  position: fixed; left: 22px; bottom: 22px; z-index: var(--z-nav);
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(10, 26, 34, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--text-100);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out),
    visibility 0.4s, background 0.3s, color 0.3s, border-color 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--orange-500); color: #2b1503; border-color: var(--orange-500); }
.to-top svg { transition: transform 0.3s var(--ease-out); }
.to-top:hover svg { transform: translateY(-3px); }

/* ---------- Reveal system (JS adds .in) ---------- */
.rv { opacity: 0; transform: translateY(46px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--rv-d, 0s); will-change: transform, opacity; }
.rv.in { opacity: 1; transform: none; }
.rv-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--rv-d, 0s); }
.rv-scale.in { opacity: 1; transform: none; }
.rv-left { opacity: 0; transform: translateX(-56px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--rv-d, 0s); }
.rv-left.in { opacity: 1; transform: none; }
.rv-right { opacity: 0; transform: translateX(56px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); transition-delay: var(--rv-d, 0s); }
.rv-right.in { opacity: 1; transform: none; }

/* word-split reveal target */
.split-words .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-words .w > i { display: inline-block; font-style: inherit; transform: translateY(115%); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: inline-flex; }
  .svc-grid, .globe-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .globe-grid, .blog-grid, .process, .form-grid, .feature-grid { grid-template-columns: 1fr; }
  .princi-row { grid-template-columns: 1fr; gap: 10px; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
  .form-grid { gap: 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rv, .rv-scale, .rv-left, .rv-right { opacity: 1; transform: none; }
  .split-words .w > i { transform: none; }
  html { scroll-behavior: auto; }
  .aurora { animation: none; }
  .grain { animation: none; }
}
