/* =========================================================
   Backtas Global Logistics — Premium Design System
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ink-950: #060B17;
  --ink-900: #0A1628;
  --ink-800: #14233D;
  --ink-700: #1F3357;
  --ink-600: #334466;
  --ink-500: #475569;
  --ink-400: #64748B;
  --ink-300: #94A3B8;
  --ink-200: #CBD5E1;
  --ink-100: #E2E8F0;
  --ink-50:  #F1F5F9;

  --brand-900: #001233;
  --brand-800: #001A66;
  --brand-700: #0033CC;
  --brand-600: #0052FF;
  --brand-500: #2872FF;
  --brand-400: #5C94FF;
  --brand-300: #8FB6FF;
  --brand-200: #C2D8FF;
  --brand-100: #E5EFFF;
  --brand-50:  #F2F6FF;

  --gold-700: #B45309;
  --gold-600: #D97706;
  --gold-500: #F59E0B;
  --gold-400: #FBBF24;
  --gold-100: #FEF3C7;

  --emerald-600: #059669;
  --emerald-500: #10B981;
  --emerald-100: #D1FAE5;

  --rose-600: #E11D48;
  --rose-500: #F43F5E;
  --rose-100: #FFE4E6;

  --white: #FFFFFF;
  --ivory: #FBFAF7;
  --paper: #F8FAFC;

  /* Typography */
  --font-display: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --max: 1240px;
  --gutter: clamp(16px, 4vw, 32px);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10,22,40,0.05);
  --shadow-sm: 0 2px 6px rgba(10,22,40,0.06), 0 1px 2px rgba(10,22,40,0.04);
  --shadow-md: 0 12px 28px -10px rgba(10,22,40,0.16), 0 4px 12px rgba(10,22,40,0.06);
  --shadow-lg: 0 32px 64px -20px rgba(10,22,40,0.22), 0 8px 24px rgba(10,22,40,0.08);
  --shadow-xl: 0 48px 96px -28px rgba(10,22,40,0.28);
  --shadow-brand: 0 20px 48px -16px rgba(0,82,255,0.45);
  --shadow-gold: 0 14px 32px -10px rgba(245,158,11,0.45);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Header */
  --header-h: 80px;
  --topbar-h: 42px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 3px solid var(--brand-300); outline-offset: 2px; border-radius: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 0.5em;
  line-height: 1.1;
}
h1 { font-weight: 800; letter-spacing: -0.035em; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--brand-600), var(--gold-500));
  border-radius: 2px;
}
.lede { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-500); line-height: 1.65; max-width: 62ch; }

.gradient-text {
  background: linear-gradient(120deg, var(--brand-600) 0%, var(--brand-400) 50%, var(--gold-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gold-accent { color: var(--gold-500); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { position: relative; }
.section-pad { padding: clamp(64px, 10vw, 120px) 0; }
.section-pad-sm { padding: clamp(48px, 8vw, 88px) 0; }
.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 52px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn .arrow {
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-600) 100%);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 56px -16px rgba(0,82,255,0.55); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--white);
  color: var(--ink-900);
  border: 1.5px solid var(--ink-100);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { border-color: var(--ink-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--ink-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(245,158,11,0.55); }

.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ---------- Top Bar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--ink-950);
  color: var(--ink-200);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.topbar.is-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.topbar a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-200);
  transition: color 0.2s;
}
.topbar a:hover { color: var(--white); }
.topbar .topbar-left, .topbar .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar svg { width: 14px; height: 14px; opacity: 0.85; }
.live-dot {
  width: 8px; height: 8px;
  background: var(--emerald-500);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
@media (max-width: 720px) {
  .topbar .topbar-left { display: none; }
  .topbar .topbar-right { width: 100%; justify-content: space-between; gap: 12px; }
  .topbar { font-size: 12px; }
  .topbar .topbar-right a span { display: none; }
  .topbar .topbar-right a {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 6px 10px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--r-full);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .topbar .topbar-right a svg { width: 16px; height: 16px; }
  .topbar .topbar-right a::after {
    content: attr(aria-label);
    margin-left: 8px;
    font-size: 12px;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 100;
  transition: top 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), backdrop-filter 0.35s;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.is-scrolled { top: 0; }
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(10,22,40,0.06), 0 8px 32px rgba(10,22,40,0.06);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-logo img.logo-light { height: 48px; width: auto; }
.brand-logo img.logo-dark { height: 48px; width: auto; display: none; }
.site-header.is-scrolled .brand-logo img.logo-light { display: none; }
.site-header.is-scrolled .brand-logo img.logo-dark { display: block; }

.main-nav {
  display: flex; align-items: center; gap: 36px;
}
.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--gold-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.main-nav a:hover::after { transform: scaleX(1); }
.site-header.is-scrolled .main-nav a { color: var(--ink-800); }
.site-header.is-scrolled .main-nav a:hover { color: var(--brand-700); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn-primary { padding: 12px 22px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.site-header.is-scrolled .menu-toggle {
  color: var(--ink-900);
  background: var(--paper);
  border-color: var(--ink-100);
}

@media (max-width: 1024px) {
  .main-nav { gap: 24px; }
  .main-nav a { font-size: 14px; }
  .header-cta .btn-primary { padding: 10px 18px; font-size: 13px; }
}
@media (max-width: 880px) {
  .main-nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink-950);
  color: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex; flex-direction: column;
  padding: 24px var(--gutter) 32px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer .drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.mobile-drawer .drawer-top img { height: 44px; }
.mobile-drawer .drawer-close {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--white);
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-drawer nav a {
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-drawer nav a:hover { color: var(--brand-300); }
.mobile-drawer .drawer-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-drawer .drawer-meta {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 14px;
  color: var(--ink-300);
  font-size: 14px;
}
.mobile-drawer .drawer-meta a { color: var(--ink-200); display: inline-flex; gap: 10px; align-items: center; }
.mobile-drawer .drawer-meta svg { width: 18px; height: 18px; color: var(--brand-400); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(680px, 96vh, 920px);
  padding-top: calc(var(--header-h) + var(--topbar-h) + 16px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img, .hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 30%, rgba(0,82,255,0.35), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.18), transparent 50%),
    linear-gradient(120deg, rgba(6,11,23,0.92) 0%, rgba(6,11,23,0.65) 45%, rgba(6,11,23,0.35) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
  opacity: 0.7;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding-top: 40px; padding-bottom: 40px;
}
.hero-copy {
  max-width: 640px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-tag-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--ink-900);
  font-size: 12px;
}
.hero-title {
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .accent {
  background: linear-gradient(120deg, #C2D8FF 0%, #FBBF24 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 560px;
}
.hero-trust > div {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-trust .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-trust .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Hero showcase card (right column) */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 520px;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--r-2xl);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  color: var(--white);
}
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.hero-card-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px; border-radius: var(--r-full);
  background: rgba(16,185,129,0.18);
  border: 1px solid rgba(16,185,129,0.4);
  color: #6EE7B7;
  font-size: 12px; font-weight: 600;
}
.hero-card-status .live-dot { background: #6EE7B7; }
.hero-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.hero-route .point .label { font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; margin-bottom: 4px; }
.hero-route .point .city { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--white); }
.hero-route .point .country { font-size: 12px; color: rgba(255,255,255,0.6); }
.hero-route .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,82,255,0.45);
}
.hero-progress {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  margin-bottom: 8px;
  overflow: hidden;
}
.hero-progress-fill {
  position: absolute; inset: 0;
  width: 72%;
  background: linear-gradient(90deg, var(--brand-500), var(--gold-500));
  border-radius: var(--r-full);
  animation: progress-shimmer 3s ease-in-out infinite;
}
@keyframes progress-shimmer {
  0%, 100% { width: 72%; }
  50% { width: 86%; }
}
.hero-progress-meta {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.hero-card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-card-stats div { text-align: center; }
.hero-card-stats .v { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.hero-card-stats .l { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.hero-badge-wob {
  position: absolute;
  top: -22px; right: -18px;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  animation: wob-spin 24s linear infinite;
}
.hero-badge-wob img { width: 100%; height: 100%; object-fit: contain; }
@keyframes wob-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.hero-floating-tile {
  position: absolute;
  bottom: -24px; left: -28px;
  background: var(--white);
  color: var(--ink-900);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.hero-floating-tile .ico {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--emerald-100);
  color: var(--emerald-600);
  display: flex; align-items: center; justify-content: center;
}
.hero-floating-tile .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}
.hero-floating-tile .l {
  font-size: 12px; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { min-height: 0; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero-trust { grid-template-columns: repeat(3, 1fr); gap: 8px 16px; }
  .hero-trust .num { font-size: 20px; }
  .hero-trust .lbl { font-size: 10px; }
  .hero-floating-tile { left: 8px; }
  .hero-badge-wob { width: 70px; height: 70px; right: 8px; top: -16px; }
}

/* ---------- Logo Marquee / Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex; align-items: center; gap: 32px;
}
.trust-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  white-space: nowrap;
  border-right: 1px solid var(--ink-100);
  padding-right: 32px;
}
.marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track img {
  height: 36px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s, transform 0.3s;
}
.marquee-track img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .trust-strip-inner { flex-direction: column; gap: 18px; align-items: flex-start; }
  .trust-label { border-right: none; padding-right: 0; }
  .marquee { width: 100%; }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--ivory);
  padding: clamp(56px, 8vw, 88px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}
.stat-card .ico {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.stat-card .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  color: var(--ink-900);
  letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-card .v .suffix { font-size: 0.55em; color: var(--brand-700); font-weight: 700; }
.stat-card .l {
  font-size: 14px; color: var(--ink-500);
  margin-top: 6px;
  font-weight: 500;
}
.stat-card .bar {
  margin-top: 16px;
  height: 4px;
  background: var(--ink-100);
  border-radius: var(--r-full);
  overflow: hidden;
}
.stat-card .bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
  border-radius: var(--r-full);
  width: 0;
  transition: width 1.4s var(--ease-out);
}
.stat-card.is-visible .bar > span { width: var(--w, 90%); }
.stat-card .deco {
  position: absolute;
  right: -40px; top: -40px;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--brand-100), transparent);
  border-radius: 50%;
  opacity: 0.6;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.services-hero h2 { font-size: clamp(34px, 4.5vw, 56px); margin-bottom: 16px; }
.services-hero .lede { margin-bottom: 24px; }
.services-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.services-hero-imagery {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.services-hero-imagery img { width: 100%; height: 100%; object-fit: cover; }
.services-hero-imagery::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(220deg, transparent 50%, rgba(10,22,40,0.4));
}
.services-hero-imagery .floater {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.services-hero-imagery .floater .dot { width: 8px; height: 8px; background: var(--emerald-500); border-radius: 50%; box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brand-50), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card .row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
}
.service-card .ico-wrap {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-bounce);
}
.service-card:hover .ico-wrap { transform: rotate(-6deg) scale(1.05); }
.service-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-300);
  letter-spacing: 0.04em;
}
.service-card h3 {
  font-size: 26px;
  margin: 24px 0 8px;
}
.service-card .desc { color: var(--ink-500); margin: 0 0 20px; font-size: 15px; }
.service-card ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.service-card ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-700);
  font-weight: 500;
}
.service-card ul li svg { color: var(--brand-600); width: 16px; height: 16px; flex-shrink: 0; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  color: var(--brand-700);
  transition: gap 0.2s;
}
.service-card .more:hover { gap: 10px; }
@media (max-width: 880px) { .services-grid, .services-hero { grid-template-columns: 1fr; } .services-hero { gap: 32px; } }
@media (max-width: 520px) { .service-card ul { grid-template-columns: 1fr; } }

/* ---------- Coverage / Locations ---------- */
.coverage {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,82,255,0.08), transparent 70%);
  border-radius: 50%;
}
.coverage-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.coverage-map {
  position: relative;
  background: var(--white);
  padding: 24px;
  border-radius: var(--r-2xl);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-md);
}
.coverage-map img { width: 100%; height: auto; border-radius: var(--r-lg); }
.coverage-map-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.coverage-stat {
  text-align: center;
  padding: 14px 8px;
  background: var(--paper);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-100);
}
.coverage-stat .v {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink-900);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.coverage-stat .l { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.offices { display: flex; flex-direction: column; gap: 16px; }
.office-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.office-card:hover { transform: translateX(4px); border-color: var(--brand-300); box-shadow: var(--shadow-md); }
.office-card .flag {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}
.office-card .info h4 { font-size: 18px; margin: 0 0 2px; }
.office-card .info p { margin: 0; color: var(--ink-500); font-size: 13px; }
.office-card .info .addr { display: block; margin-top: 6px; font-size: 13px; color: var(--ink-700); font-weight: 500; }
.office-card .info .num { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-700); font-weight: 600; font-size: 13px; margin-top: 6px; }
.office-card .arr { color: var(--ink-300); transition: color 0.2s, transform 0.2s; }
.office-card:hover .arr { color: var(--brand-600); transform: translateX(2px); }

@media (max-width: 880px) { .coverage-wrap { grid-template-columns: 1fr; } }

/* ---------- Why Choose ---------- */
.why { background: var(--ink-950); color: var(--white); position: relative; overflow: hidden; }
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,82,255,0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(245,158,11,0.10), transparent 40%);
  pointer-events: none;
}
.why .section-head h2 { color: var(--white); }
.why .section-head .lede { color: var(--ink-300); }
.why .section-head .eyebrow { color: var(--gold-400); }
.why .section-head .eyebrow::before { background: linear-gradient(90deg, var(--gold-400), var(--brand-400)); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,82,255,0.4);
}
.why-card .ico-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--brand-600), var(--brand-400));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: var(--shadow-brand);
}
.why-card h4 { color: var(--white); font-size: 18px; margin: 0 0 6px; }
.why-card p { color: var(--ink-300); font-size: 14px; margin: 0; line-height: 1.6; }
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Values ---------- */
.values { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  isolation: isolate;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.value-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease-out);
}
.value-card:hover video { transform: scale(1.06); }
.value-card .gradient {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.95) 100%);
}
.value-card .top {
  position: absolute; top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.value-card .body {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  color: var(--white);
}
.value-card h3 {
  color: var(--white);
  font-size: 26px;
  margin: 0 0 8px;
}
.value-card p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.value-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease-out);
}
.value-card:hover .icon-circle { transform: scale(1.08); }

@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Promise / Testimonial ---------- */
.promise {
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 50%, var(--ink-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245,158,11,0.18), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 35%);
  pointer-events: none;
}
.promise .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.promise .quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.8;
  color: var(--gold-400);
  margin-bottom: 16px;
  font-weight: 800;
}
.promise blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.32;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.promise .quote-author {
  display: flex; align-items: center; gap: 14px;
}
.promise .quote-author .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink-900);
  font-size: 18px;
}
.promise .quote-author .name { font-weight: 700; color: var(--white); }
.promise .quote-author .role { font-size: 13px; color: rgba(255,255,255,0.7); }

.promise-rating {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-2xl);
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.promise-rating .big-rating {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  display: flex; align-items: baseline; gap: 8px;
}
.promise-rating .big-rating .out { font-size: 24px; color: rgba(255,255,255,0.6); font-weight: 600; }
.promise-rating .stars {
  display: flex; gap: 4px;
  color: var(--gold-400);
  margin: 12px 0 16px;
}
.promise-rating p { color: rgba(255,255,255,0.85); margin: 0 0 24px; max-width: 38ch; }
.promise-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.promise-pillar {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
}
.promise-pillar svg { color: var(--gold-400); width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.promise-pillar div .t { font-weight: 600; color: var(--white); font-size: 14px; }
.promise-pillar div .d { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
@media (max-width: 880px) { .promise .container { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: var(--brand-300); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--brand-600); color: var(--white); }
.faq-item .a { padding: 0 24px 22px; color: var(--ink-500); font-size: 15px; line-height: 1.7; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--ink-950);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,82,255,0.32), transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(245,158,11,0.18), transparent 45%);
}
.cta-banner .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 16px;
}
.cta-banner h2 .accent {
  background: linear-gradient(120deg, var(--brand-300), var(--gold-400));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-banner p { color: rgba(255,255,255,0.8); margin: 0 0 28px; font-size: 17px; max-width: 56ch; }
.cta-banner .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .meta {
  margin-top: 28px;
  display: flex; gap: 24px; flex-wrap: wrap;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.cta-banner .meta span { display: inline-flex; align-items: center; gap: 8px; }
.cta-banner .meta svg { color: var(--gold-400); width: 18px; height: 18px; }

.quote-form {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.quote-form .ribbon {
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-gold);
}
.quote-form h3 { font-size: 22px; margin-bottom: 8px; }
.quote-form .sub { color: var(--ink-500); font-size: 14px; margin: 0 0 20px; }
.field-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.field { margin-bottom: 12px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  background: var(--paper);
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,82,255,0.10);
}
.quote-form .submit { width: 100%; margin-top: 6px; }
.quote-form .legal {
  font-size: 12px; color: var(--ink-400);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}
.form-success.is-active { display: block; }
.form-success .check {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-600);
  display: flex; align-items: center; justify-content: center;
}
.form-success h4 { font-size: 22px; margin: 0 0 6px; }
.form-success p { color: var(--ink-500); margin: 0; }

@media (max-width: 880px) { .cta-banner .container { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-950);
  color: var(--ink-300);
  padding-top: 80px;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer h5 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: var(--ink-300); font-size: 14px; transition: color 0.2s; }
.site-footer ul a:hover { color: var(--brand-400); }
.site-footer .ft-brand img { height: 56px; margin-bottom: 18px; }
.site-footer .ft-brand p { color: var(--ink-300); font-size: 14px; line-height: 1.65; max-width: 38ch; margin: 0 0 24px; }
.site-footer .ft-contact { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.site-footer .ft-contact a, .site-footer .ft-contact span {
  color: var(--ink-200); display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.site-footer .ft-contact svg { color: var(--brand-400); width: 18px; height: 18px; flex-shrink: 0; }

.site-footer .badges {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
}
.site-footer .badges img { height: 56px; width: 56px; object-fit: contain; }
.site-footer .badges .b-text .t { color: var(--white); font-weight: 700; font-size: 14px; }
.site-footer .badges .b-text .d { color: var(--ink-400); font-size: 12px; }

.site-footer .footer-bottom {
  padding: 24px 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: var(--ink-400);
}
.site-footer .footer-bottom .legal-links { display: flex; gap: 20px; }
.site-footer .footer-bottom a { color: var(--ink-400); transition: color 0.2s; }
.site-footer .footer-bottom a:hover { color: var(--white); }
.site-footer .socials { display: flex; gap: 8px; }
.site-footer .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-300);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.site-footer .socials a:hover { background: var(--brand-600); color: var(--white); transform: translateY(-2px); border-color: var(--brand-600); }
.site-footer .socials svg { width: 16px; height: 16px; }
@media (max-width: 1024px) { .site-footer .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Floating mobile CTA ---------- */
.mobile-fab {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 80;
  display: none;
  background: var(--brand-600);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-brand);
  text-align: center;
  align-items: center; justify-content: center; gap: 10px;
}
@media (max-width: 720px) { .mobile-fab { display: inline-flex; } body { padding-bottom: 76px; } }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- 404 page ---------- */
.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px var(--gutter);
  background:
    radial-gradient(circle at 30% 30%, rgba(0,82,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.1), transparent 50%),
    var(--ink-950);
  color: var(--white);
  text-align: center;
}
.not-found .code {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 240px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(120deg, var(--brand-400) 0%, var(--gold-400) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 16px;
}
.not-found h1 { color: var(--white); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 12px; }
.not-found p { color: var(--ink-300); max-width: 50ch; margin: 0 auto 28px; }
.not-found .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
