/* ============================================================
   IPSITA INSURANCE — Luxury Design System
   Palette derived from brand logo: Navy #10407F · Gold #F8D818 · Red #E01820
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --navy: #10407F;
  --navy-2: #0B2F63;
  --navy-dark: #082247;
  --ink: #060F24;
  --ink-2: #0A1B3D;
  --gold: #F8D818;
  --gold-deep: #E3A80C;
  --gold-metal: #C9A24B;
  --red: #E01820;

  /* Neutrals */
  --surface: #F6F7F5;
  --surface-2: #EEF1F6;
  --card: #FFFFFF;
  --text: #10203D;
  --muted: #4E5D77;
  --line: #DCE2EC;

  /* Glass */
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.18);

  /* Elevation — layered luxury shadows */
  --shadow-sm: 0 1px 2px rgba(6, 15, 36, 0.06), 0 2px 8px rgba(6, 15, 36, 0.06);
  --shadow-md: 0 1px 2px rgba(6, 15, 36, 0.05), 0 8px 24px rgba(6, 15, 36, 0.10);
  --shadow-lg: 0 2px 4px rgba(6, 15, 36, 0.05), 0 12px 32px rgba(6, 15, 36, 0.12), 0 32px 80px rgba(6, 15, 36, 0.14);
  --shadow-gold: 0 8px 24px rgba(227, 168, 12, 0.28), 0 2px 8px rgba(227, 168, 12, 0.18);

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z scale */
  --z-nav: 50;
  --z-menu: 60;
  --z-sticky: 40;

  --radius: 18px;
  --radius-lg: 28px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* NOTE: never set overflow-x on <html> — it breaks `position: sticky` on the header.
   Horizontal overflow is contained per-section instead. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }

::selection { background: var(--navy); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--navy), var(--navy-dark)); border-radius: 8px; border: 2px solid var(--surface-2); }
::-webkit-scrollbar-thumb:hover { background: var(--navy-2); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 12px 24px; z-index: 100;
  border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold-deep); outline-offset: 2px; border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, .display { font-family: var(--font-display); line-height: 1.15; color: var(--ink-2); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -0.4px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.08rem; font-weight: 800; color: var(--ink-2); }
p { max-width: 68ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 38px; height: 2px; background: linear-gradient(90deg, var(--gold-metal), var(--gold)); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 38px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-metal)); border-radius: 2px; }

.lead { font-size: 1.14rem; color: var(--muted); }

.text-gold-shimmer {
  background: linear-gradient(110deg, var(--gold-metal) 20%, var(--gold) 40%, #FFF3B0 50%, var(--gold) 60%, var(--gold-metal) 80%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: -220% center; } }

.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 500; }

/* ---------- Layout ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }
.container--wide { width: min(1360px, 94%); margin-inline: auto; }
section { position: relative; }
/* Contains sideways scroll-reveal offsets (e.g. data-reveal="right" starts at
   translateX(52px)) and decorative overhangs. `clip` — not `hidden` — so no
   scroll container is created. Never move this to <html>: it kills sticky. */
.section, .page-hero { overflow-x: clip; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--dark { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: #C7D2E5; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead { color: #93A5C4; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.grid { display: grid; gap: 28px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; min-height: 52px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.3px;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink); box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(227, 168, 12, 0.4), 0 4px 12px rgba(227, 168, 12, 0.25); }

.btn--navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; box-shadow: var(--shadow-md); }
.btn--navy:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.35); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn--ghost-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--ghost-dark:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

/* ripple */
.btn .ripple {
  position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.5);
  transform: scale(0); animation: ripple 0.6s ease-out; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ---------- Top Bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--ink) 0%, var(--navy-dark) 55%, var(--ink) 100%);
  color: #B9C6DE; font-size: 0.82rem; position: relative; z-index: calc(var(--z-nav) + 1);
  border-bottom: 1px solid rgba(200, 162, 75, 0.25);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; padding: 4px 0; }
.topbar__contacts { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; transition: color 0.25s; min-height: 34px; }
.topbar__link:hover { color: var(--gold); }
.topbar__link svg { width: 14px; height: 14px; color: var(--gold-metal); }
.topbar__socials { display: flex; align-items: center; gap: 6px; }
.topbar__socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  color: #B9C6DE; transition: color 0.25s, background-color 0.25s, transform 0.25s var(--ease);
}
.topbar__socials a:hover { color: var(--ink); background: var(--gold); transform: translateY(-2px); }
.topbar__socials svg { width: 15px; height: 15px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(16, 64, 127, 0.08);
  transition: box-shadow 0.35s var(--ease), background-color 0.35s;
}
.header.is-scrolled { background: rgba(255, 255, 255, 0.92); box-shadow: 0 1px 0 rgba(16,64,127,0.06), 0 12px 32px rgba(6, 15, 36, 0.10); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 84px; transition: min-height 0.35s var(--ease); }
.header.is-scrolled .header__inner { min-height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 58px; width: auto; transition: height 0.35s var(--ease); filter: drop-shadow(0 2px 6px rgba(6,15,36,0.18)); }
.header.is-scrolled .brand img { height: 46px; }
.brand__name { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name strong { font-family: var(--font-display); font-size: 1.28rem; color: var(--navy); letter-spacing: 1px; }
.brand__name span { font-size: 0.62rem; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold-deep); font-weight: 800; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 12px 15px; font-weight: 700; font-size: 0.93rem; color: var(--text);
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer; border-radius: 10px;
  transition: color 0.25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); border-radius: 2px;
}
.nav__link:hover, .nav__link.is-active { color: var(--navy); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Mega menu */
.nav__item { position: relative; }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(14px) scale(0.98);
  width: 620px; padding: 26px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(24px) saturate(1.5); -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(16, 64, 127, 0.10); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: var(--z-menu);
}
.mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav__item:hover .mega, .nav__item:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.mega a {
  display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 14px;
  font-weight: 700; font-size: 0.88rem; color: var(--text);
  transition: background-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.mega a:hover { background: linear-gradient(135deg, rgba(16,64,127,0.06), rgba(248,216,24,0.10)); color: var(--navy); transform: translateX(4px); }
.mega a svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; }

.header__cta { flex: none; }
.header__cta .btn { padding: 13px 26px; min-height: 46px; font-size: 0.88rem; }

/* --- Click-to-call pill: slides in once the top bar scrolls away --- */
.header__phone {
  flex: none; display: flex; align-items: center; gap: 11px;
  padding: 7px 18px 7px 7px; border-radius: 999px; white-space: nowrap;
  border: 1px solid var(--line); background: rgba(16, 64, 127, 0.04);
  /* collapsed until scrolled */
  max-width: 0; opacity: 0; transform: translateX(16px);
  pointer-events: none; overflow: hidden; padding-inline: 0; border-color: transparent;
  transition: max-width 0.55s var(--ease), opacity 0.4s var(--ease), transform 0.5s var(--ease),
              padding 0.5s var(--ease), border-color 0.4s, background-color 0.3s;
}
.header.is-scrolled .header__phone {
  max-width: 280px; opacity: 1; transform: none; pointer-events: auto;
  padding: 7px 18px 7px 7px; border-color: var(--line);
}
.header__phone:hover { background: rgba(248, 216, 24, 0.10); border-color: var(--gold-deep); }
.header__phone-icon {
  position: relative; flex: none;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: var(--shadow-gold);
}
.header__phone-icon svg { width: 16px; height: 16px; color: var(--ink); }
.header__phone-icon::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 2px solid var(--gold-deep); opacity: 0;
  animation: phonePulse 2.6s ease-out infinite;
}
@keyframes phonePulse {
  0% { transform: scale(1); opacity: 0.65; }
  70% { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
.header__phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.header__phone-text small {
  font-size: 0.6rem; letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--muted); font-weight: 800;
}
.header__phone-text strong { font-size: 0.92rem; color: var(--navy); font-weight: 800; }

/* Burger */
.burger { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 48px; height: 48px; padding: 10px; border-radius: 12px; z-index: calc(var(--z-menu) + 2); position: relative; }
.burger span { display: block; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s, background-color 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: calc(var(--z-menu) + 1);
  background: linear-gradient(160deg, rgba(6, 15, 36, 0.97), rgba(11, 47, 99, 0.97));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column; padding: 100px 8% 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a { color: #E7EDF7; font-family: var(--font-display); font-size: 1.5rem; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; opacity: 0; transform: translateY(24px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a svg { width: 17px; height: 17px; flex: none; opacity: 0.45; }
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu a.mobile-menu__sub { font-family: var(--font-body); font-size: 1rem; padding-left: 20px; color: #9DB0CE; font-weight: 600; }
.mobile-menu__socials { display: flex; gap: 12px; margin-top: 30px; opacity: 0; transition: opacity 0.6s var(--ease) 0.4s; }
.mobile-menu.is-open .mobile-menu__socials { opacity: 1; }
.mobile-menu__socials a { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; padding: 0; }
.mobile-menu__socials svg { width: 19px; height: 19px; }

/* ---------- HERO (home) ---------- */
.hero {
  position: relative; min-height: min(92vh, 940px); display: flex; align-items: center;
  background: radial-gradient(120% 130% at 78% -10%, #1B5CB0 0%, var(--navy-2) 34%, var(--ink) 78%);
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero::after { /* grain */
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 30%; opacity: 0.85;
  animation: kenburns 26s var(--ease) infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.02) translate(0, 0); } to { transform: scale(1.14) translate(-1.5%, -2%); } }
/* readable gradient: dark on the left behind text, photo shows through on the right */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,15,36,0.96) 20%, rgba(8,34,71,0.80) 46%, rgba(6,15,36,0.32) 78%, rgba(6,15,36,0.12) 100%),
    linear-gradient(0deg, rgba(6,15,36,0.55) 0%, transparent 34%, transparent 72%, rgba(6,15,36,0.42) 100%);
}

.hero__orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 1; pointer-events: none; }
.hero__orb--gold { width: 420px; height: 420px; right: -100px; top: -120px; background: radial-gradient(circle, rgba(248,216,24,0.22), transparent 65%); animation: float1 11s ease-in-out infinite; }
.hero__orb--blue { width: 520px; height: 520px; left: -180px; bottom: -200px; background: radial-gradient(circle, rgba(27,92,176,0.5), transparent 65%); animation: float2 14s ease-in-out infinite; }
@keyframes float1 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-34px, 30px); } }
@keyframes float2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(38px, -26px); } }

.hero__inner { position: relative; z-index: 4; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding: 90px 0 130px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(248,216,24,0.35);
  backdrop-filter: blur(8px); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 26px;
}
.hero__badge svg { width: 15px; height: 15px; }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .word > span { display: inline-block; transform: translateY(110%); animation: wordUp 0.9s var(--ease) forwards; }
@keyframes wordUp { to { transform: translateY(0); } }
.hero__sub { font-size: 1.14rem; color: #AEBDD8; max-width: 54ch; margin-bottom: 38px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* floating glass stat cards */
.hero__cards { position: relative; height: 460px; perspective: 1000px; }
.glass-stat {
  position: absolute; padding: 24px 28px; border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.16), 0 24px 60px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.22);
  animation: cardFloat 7s ease-in-out infinite;
  min-width: 190px;
}
.glass-stat strong { display: block; font-family: var(--font-display); font-size: 2.1rem; color: #fff; line-height: 1.1; }
.glass-stat strong em { font-style: normal; color: var(--gold); }
.glass-stat strong span, .stat strong span { font: inherit; color: inherit; letter-spacing: inherit; }
.glass-stat span { font-size: 0.82rem; color: #A9BAD8; font-weight: 600; letter-spacing: 0.6px; }
.glass-stat--1 { top: 4%; right: 8%; animation-delay: 0s; }
.glass-stat--2 { top: 38%; left: 0; animation-delay: -2.4s; }
.glass-stat--3 { bottom: 5%; right: 3%; animation-delay: -4.8s; }
@keyframes cardFloat { 0%, 100% { transform: translateY(0) rotate(-0.4deg); } 50% { transform: translateY(-18px) rotate(0.5deg); } }
.glass-stat__icon { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); box-shadow: var(--shadow-gold); }
.glass-stat__icon svg { width: 22px; height: 22px; color: var(--ink); }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: #8FA3C6; font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
}
.hero__scroll::after { content: ""; width: 1.5px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2s var(--ease) infinite; }
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Inner page hero */
.page-hero {
  position: relative; padding: clamp(84px, 10vw, 130px) 0 clamp(60px, 7vw, 96px);
  background: radial-gradient(110% 160% at 82% -30%, #1B5CB0 0%, var(--navy-2) 36%, var(--ink) 80%);
  color: #fff; overflow: hidden; isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; width: 560px; height: 560px; right: -160px; top: -180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(248,216,24,0.16), transparent 62%); filter: blur(60px); animation: float1 12s ease-in-out infinite;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.45; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero .lead { color: #AEBDD8; margin-top: 18px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.6px; color: #8FA3C6; margin-bottom: 26px; }
.breadcrumb a { color: var(--gold); transition: color 0.25s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.6; }

/* ---------- Partner marquee — glass tiles, dual opposing rows ---------- */
.partners {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 0;
  /* deeper than --surface so the white tiles actually read */
  background: linear-gradient(180deg, #E9EEF6 0%, #DFE6F1 52%, #E9EEF6 100%);
  border-block: 1px solid var(--line);
}
/* soft brand glow behind the rows */
.partners::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background:
    radial-gradient(70% 60% at 50% 42%, rgba(16, 64, 127, 0.10), transparent 70%),
    radial-gradient(38% 46% at 88% 60%, rgba(248, 216, 24, 0.14), transparent 70%);
}
.partners__head { margin-bottom: clamp(34px, 4vw, 52px); }
.partners__rows { display: flex; flex-direction: column; gap: 18px; }

.marquee {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; align-items: center; gap: 18px; padding-right: 18px; flex: none;
  animation: marquee 46s linear infinite;
}
.marquee--reverse .marquee__track { animation-duration: 58s; animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }

.partner-tile {
  flex: none; width: 176px; height: 96px;
  display: flex; align-items: center; justify-content: center; padding: 18px;
  border-radius: 18px; background: #fff;
  border: 1px solid rgba(16, 64, 127, 0.12);
  box-shadow: 0 1px 2px rgba(6, 15, 36, 0.05), 0 10px 24px rgba(6, 15, 36, 0.09);
  will-change: transform; backface-visibility: hidden;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s, background-color 0.4s;
}
/* full colour — these logos are the trust signal, don't wash them out */
.partner-tile img {
  max-height: 52px; width: auto; max-width: 100%; object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.partner-tile:hover {
  border-color: var(--gold-deep);
  box-shadow: 0 2px 6px rgba(6, 15, 36, 0.07), 0 16px 40px rgba(6, 15, 36, 0.16);
}
.partner-tile:hover img { transform: scale(1.07); }

/* facts row under the logos */
.partners__facts {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 48px;
  margin-top: clamp(34px, 4vw, 52px);
}
.partners__facts li { display: flex; align-items: center; gap: 12px; }
.partners__facts svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }
.partners__facts strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink-2); }
.partners__facts span { font-size: 0.86rem; color: var(--muted); font-weight: 700; }

/* ---------- Cards / Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; padding: 36px 30px; border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  cursor: pointer; transform-style: preserve-3d; will-change: transform;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s;
  display: flex; flex-direction: column; gap: 14px; overflow: hidden;
}
.service-card::before { /* gradient border glow on hover */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--navy));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(16,64,127,0.09), rgba(248,216,24,0.14));
  border: 1px solid rgba(16, 64, 127, 0.12);
  transition: transform 0.4s var(--ease-bounce), background 0.4s;
  transform: translateZ(30px);
}
.service-card:hover .service-card__icon { transform: translateZ(40px) scale(1.08) rotate(-4deg); }
.service-card__icon svg { width: 28px; height: 28px; color: var(--navy); }
.service-card h3 { transform: translateZ(24px); }
.service-card p { font-size: 0.94rem; color: var(--muted); transform: translateZ(16px); }
.service-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.9rem; color: var(--navy); transform: translateZ(20px); }
.service-card__link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(5px); }
.service-card--tall { grid-row: span 2; justify-content: flex-end; min-height: 420px; color: #fff; }
.service-card--featured {
  background: linear-gradient(150deg, var(--navy) 0%, var(--ink) 100%); border-color: transparent; color: #C7D2E5;
}
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: #A9BAD8; }
.service-card--featured .service-card__link { color: var(--gold); }
.service-card--featured .service-card__icon { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); border-color: transparent; }
.service-card--featured .service-card__icon svg { color: var(--ink); }

/* generic glass panel (light sections) */
.panel {
  background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 64, 127, 0.1); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 44px);
}
.panel--dark {
  background: rgba(255, 255, 255, 0.06); border-color: rgba(255,255,255,0.13);
  box-shadow: 0 4px 12px rgba(0,0,0,0.14), 0 24px 64px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.14);
}

/* ---------- Numbered features (Why choose us) ---------- */
.feature-row {
  display: grid; grid-template-columns: 130px 1fr auto; gap: clamp(18px, 4vw, 48px); align-items: center;
  padding: clamp(26px, 3.4vw, 40px) 10px; border-bottom: 1px solid var(--line);
  transition: background-color 0.35s, padding-left 0.35s var(--ease);
  cursor: default;
}
.feature-row:first-of-type { border-top: 1px solid var(--line); }
.feature-row:hover { background: linear-gradient(90deg, rgba(16,64,127,0.035), transparent 70%); padding-left: 26px; }
.feature-row__num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(16, 64, 127, 0.28);
  transition: color 0.4s var(--ease), -webkit-text-stroke-color 0.4s;
}
.feature-row:hover .feature-row__num { color: var(--gold-deep); -webkit-text-stroke-color: transparent; }
.feature-row h3 { margin-bottom: 6px; }
.feature-row p { color: var(--muted); font-size: 0.97rem; }
.feature-row__arrow { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; transition: background-color 0.35s, border-color 0.35s, transform 0.35s var(--ease); }
.feature-row__arrow svg { width: 20px; height: 20px; color: var(--navy); transition: color 0.35s; }
.feature-row:hover .feature-row__arrow { background: var(--navy); border-color: var(--navy); transform: rotate(-45deg); }
.feature-row:hover .feature-row__arrow svg { color: var(--gold); }

/* ---------- Stats band ---------- */
.stats-band { position: relative; overflow: hidden; }
.stats-band__bg { position: absolute; inset: -18% 0; background-size: cover; background-position: center; will-change: transform; }
.stats-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(6,15,36,0.94), rgba(11,47,99,0.86)); }
.stats-band__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); color: #fff; line-height: 1.05; }
.stat strong em { font-style: normal; color: var(--gold); }
.stat span { color: #93A5C4; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.5px; }
.stat { position: relative; padding: 14px 8px; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -15px; top: 50%; transform: translateY(-50%); height: 62%; width: 1px; background: linear-gradient(transparent, rgba(201,162,75,0.5), transparent); }

/* ---------- Reviews ---------- */
.reviews__meta { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.reviews__score { display: flex; align-items: center; gap: 14px; padding: 14px 26px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.reviews__score strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink-2); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; color: var(--gold-deep); fill: var(--gold); }
.reviews__gbadge { font-size: 0.85rem; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.reviews__gbadge svg { width: 18px; height: 18px; }

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.chip {
  padding: 11px 22px; min-height: 44px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--card);
  font-weight: 700; font-size: 0.86rem; color: var(--muted); cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.chip:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.chip.is-active { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }

.reviews__track-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); padding: 10px 0 26px; }
.reviews__track { display: flex; gap: 24px; cursor: grab; will-change: transform; }
.reviews__track.is-dragging { cursor: grabbing; }
.review-card {
  flex: 0 0 min(390px, 86vw); padding: 30px; border-radius: var(--radius-lg); background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), opacity 0.4s;
  user-select: none;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.review-card__head { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; color: #fff;
  background: linear-gradient(135deg, var(--navy), #1B5CB0);
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.2);
}
.review-card__who strong { display: block; font-size: 0.97rem; color: var(--ink-2); }
.review-card__who span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.review-card p { font-size: 0.94rem; color: var(--muted); flex: 1; }
.review-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px dashed var(--line); padding-top: 14px; }
.review-card__tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); background: rgba(16,64,127,0.08); padding: 5px 12px; border-radius: 999px; }
.review-card__g { display: inline-flex; align-items: center; gap: 7px; font-size: 0.75rem; font-weight: 700; color: var(--muted); }
.review-card__g svg { width: 15px; height: 15px; }
.reviews__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ---------- About preview / split ---------- */
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.split__media { position: relative; perspective: 900px; }
.split__media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  transform-style: preserve-3d; will-change: transform; transition: transform 0.5s var(--ease);
}
.split__media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.6; }
.split__media::before {
  content: ""; position: absolute; inset: 26px -26px -26px 26px; border-radius: var(--radius-lg);
  border: 1.5px solid var(--gold-metal); opacity: 0.55; z-index: -1;
  transition: transform 0.5s var(--ease);
}
.split__media:hover::before { transform: translate(8px, 8px); }
.split__media-badge {
  position: absolute; bottom: 26px; left: -30px; z-index: 2;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px);
  padding: 18px 26px; border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid rgba(16,64,127,0.1);
  animation: cardFloat 8s ease-in-out infinite;
}
.split__media-badge strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--navy); display: block; line-height: 1.1; }
.split__media-badge span { font-size: 0.78rem; color: var(--muted); font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--gold-deep); margin-top: 26px; }
.signature small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.8rem; color: var(--muted); font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; margin-top: 4px; }

.ticks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin: 26px 0; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: 0.95rem; }
.ticks svg { width: 21px; height: 21px; flex: none; color: var(--gold-deep); margin-top: 2px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; }
.team-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/3.8; box-shadow: var(--shadow-sm); cursor: pointer; }
.team-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s var(--ease); }
.team-card:hover img { transform: scale(1.06); }
.team-card__overlay {
  position: absolute; inset: auto 0 0 0; padding: 44px 20px 18px;
  background: linear-gradient(transparent, rgba(6,15,36,0.55) 30%, rgba(6,15,36,0.92));
  color: #fff; transform: translateY(8px); transition: transform 0.45s var(--ease);
}
.team-card:hover .team-card__overlay { transform: translateY(0); }
.team-card__overlay strong { font-family: var(--font-display); font-size: 1.15rem; display: block; }
.team-card__overlay span { font-size: 0.78rem; color: var(--gold); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }

/* ---------- Blog / editorial cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; cursor: pointer;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.post-card__media { overflow: hidden; aspect-ratio: 16/9.4; position: relative; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.07); }
.post-card__chip { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); padding: 6px 14px; border-radius: 999px; font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); }
.post-card__body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card__body time { font-size: 0.78rem; color: var(--muted); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.post-card__body h3 { font-size: 1.22rem; }
.post-card__body p { font-size: 0.93rem; color: var(--muted); }
.post-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.88rem; color: var(--navy); }
.post-card__more svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.post-card:hover .post-card__more svg { transform: translateX(5px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 80px); background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 55%, var(--ink) 100%); color: #fff; text-align: center; isolation: isolate; box-shadow: var(--shadow-lg); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); z-index: -1; }
.cta-band::before { width: 380px; height: 380px; top: -160px; right: -80px; background: rgba(248,216,24,0.16); animation: float1 10s ease-in-out infinite; }
.cta-band::after { width: 300px; height: 300px; bottom: -140px; left: -60px; background: rgba(27,92,176,0.5); animation: float2 13s ease-in-out infinite; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: #A9BAD8; margin: 16px auto 34px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; padding: 22px 18px 10px; border-radius: 14px; border: 1.5px solid var(--line);
  background: var(--card); font-size: 0.96rem; font-weight: 600; color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s; appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field label {
  position: absolute; left: 18px; top: 16px; font-size: 0.94rem; color: var(--muted); font-weight: 600;
  pointer-events: none; transition: transform 0.25s var(--ease), font-size 0.25s, color 0.25s;
  transform-origin: left top; background: transparent;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy); outline: none; box-shadow: 0 0 0 4px rgba(16, 64, 127, 0.12);
}
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label, .field.is-filled label {
  transform: translateY(-9px); font-size: 0.7rem; color: var(--navy); letter-spacing: 0.8px; text-transform: uppercase; font-weight: 800;
}
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field__error { display: none; font-size: 0.78rem; color: var(--red); font-weight: 700; margin-top: 6px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field.has-error .field__error { display: block; }
.field select { color: var(--muted); }
.field select:focus, .field.is-filled select { color: var(--text); }
.field__chev { position: absolute; right: 18px; top: 22px; width: 16px; height: 16px; color: var(--muted); pointer-events: none; }

.form-success {
  display: none; text-align: center; padding: 44px 20px;
}
.form-success.is-visible { display: block; animation: successIn 0.6s var(--ease-bounce); }
@keyframes successIn { from { opacity: 0; transform: scale(0.9) translateY(14px); } to { opacity: 1; transform: none; } }
.form-success__icon { width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); }
.form-success__icon svg { width: 34px; height: 34px; color: var(--ink); }

/* contact info side */
.contact-side { display: flex; flex-direction: column; gap: 18px; }
.contact-tile { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: var(--radius); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); transition: transform 0.35s var(--ease), border-color 0.35s, background-color 0.35s; }
.contact-tile:hover { transform: translateX(6px); border-color: rgba(248,216,24,0.4); background: rgba(255,255,255,0.09); }
.contact-tile__icon { width: 48px; height: 48px; flex: none; border-radius: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); }
.contact-tile__icon svg { width: 22px; height: 22px; color: var(--ink); }
.contact-tile strong { color: #fff; display: block; margin-bottom: 3px; font-size: 0.98rem; }
.contact-tile a, .contact-tile p { color: #A9BAD8; font-size: 0.92rem; font-weight: 600; transition: color 0.25s; }
.contact-tile a:hover { color: var(--gold); }

/* ---------- FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); overflow: hidden; transition: box-shadow 0.35s var(--ease), border-color 0.35s; }
.faq__item.is-open { box-shadow: var(--shadow-md); border-color: rgba(16,64,127,0.25); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; text-align: left;
  padding: 22px 26px; font-weight: 800; font-size: 1.02rem; color: var(--ink-2); cursor: pointer; min-height: 44px;
}
.faq__q .faq__icon { width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; transition: transform 0.4s var(--ease), background-color 0.3s, border-color 0.3s; }
.faq__icon svg { width: 15px; height: 15px; color: var(--navy); transition: color 0.3s; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--navy); border-color: var(--navy); }
.faq__item.is-open .faq__icon svg { color: var(--gold); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__a p { padding: 0 26px 24px; color: var(--muted); font-size: 0.96rem; }

/* ---------- Timeline (how it works / history) ---------- */
.timeline { position: relative; display: grid; gap: 34px; max-width: 760px; margin-inline: auto; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold-metal), var(--navy)); border-radius: 2px; }
.timeline__item { position: relative; }
.timeline__item::before {
  content: ""; position: absolute; left: -32.5px; top: 7px; width: 15px; height: 15px; border-radius: 50%;
  background: var(--card); border: 3px solid var(--gold-deep); box-shadow: 0 0 0 5px rgba(227,168,12,0.14);
}
.timeline__item strong.timeline__step { font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); font-weight: 800; }
.timeline__item h3 { margin: 4px 0 8px; }
.timeline__item p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Coverage two-col ---------- */
.coverage { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.coverage__col { border-radius: var(--radius-lg); padding: 34px; border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-sm); }
.coverage__col--yes { border-top: 4px solid var(--gold-deep); }
.coverage__col--no { border-top: 4px solid var(--red); }
.coverage__col h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.coverage__col h3 svg { width: 24px; height: 24px; }
.coverage__col--yes h3 svg { color: var(--gold-deep); }
.coverage__col--no h3 svg { color: var(--red); }
.coverage__col li { display: flex; gap: 12px; padding: 10px 0; font-size: 0.96rem; color: var(--muted); font-weight: 600; border-bottom: 1px dashed var(--line); }
.coverage__col li:last-child { border-bottom: none; }
.coverage__col li svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.coverage__col--yes li svg { color: var(--gold-deep); }
.coverage__col--no li svg { color: var(--red); }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, var(--ink) 0%, #040A18 100%); color: #93A5C4; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-metal), transparent); }
.footer__main { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr; gap: clamp(32px, 4vw, 60px); padding: clamp(56px, 7vw, 88px) 0 48px; }
.footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold-deep); border-radius: 2px; }
.footer__brand img { height: 84px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 0.92rem; max-width: 34ch; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex; align-items: center; justify-content: center; color: #93A5C4;
  transition: background-color 0.3s, color 0.3s, transform 0.3s var(--ease), border-color 0.3s;
}
.footer__socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-4px); }
.footer__socials svg { width: 17px; height: 17px; }
.footer__links li { margin-bottom: 4px; }
.footer__links a { font-size: 0.92rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; padding: 5px 0; transition: color 0.25s, transform 0.25s var(--ease); }
.footer__links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-deep); opacity: 0; transition: opacity 0.25s; }
.footer__links a:hover { color: var(--gold); transform: translateX(4px); }
.footer__links a:hover::before { opacity: 1; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; font-weight: 600; }
.footer__contact svg { width: 17px; height: 17px; flex: none; color: var(--gold-deep); margin-top: 4px; }
.footer__contact a:hover { color: var(--gold); }

.newsletter { display: flex; margin-top: 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.05); padding: 5px; }
.newsletter input { flex: 1; background: transparent; border: none; padding: 10px 18px; color: #fff; font-size: 0.9rem; min-width: 0; }
.newsletter input:focus { outline: none; }
.newsletter input::placeholder { color: #6E82A6; }
.newsletter button {
  flex: none; padding: 10px 22px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink); font-weight: 800; font-size: 0.85rem; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.newsletter button:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.82rem; }
.footer__bottom a { color: var(--gold-metal); font-weight: 700; transition: color 0.25s; }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Sticky mobile bar & floats ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: none; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 24px rgba(6,15,36,0.18);
}
.sticky-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 10px; font-weight: 800; font-size: 0.95rem; color: #fff; min-height: 56px; }
.sticky-bar svg { width: 20px; height: 20px; }
.sticky-bar__call { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.sticky-bar__wa { background: linear-gradient(135deg, #2BB741, #1E9E34); position: relative; overflow: hidden; }
.sticky-bar__wa::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.25); border-radius: 50%; transform: scale(0); animation: waPulse 2.6s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(0); opacity: 1; } 70% { transform: scale(2.2); opacity: 0; } 100% { opacity: 0; } }

.float-wa {
  position: fixed; right: 26px; bottom: 26px; z-index: var(--z-sticky);
  width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #2BB741, #1E9E34);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 6px 18px rgba(30, 158, 52, 0.45), 0 2px 6px rgba(30,158,52,0.3);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 28px rgba(30, 158, 52, 0.55); }
.float-wa svg { width: 27px; height: 27px; }
.float-wa::before {
  content: attr(data-tip); position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 8px 14px; border-radius: 10px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s var(--ease);
}
.float-wa:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Back-to-top with progress ring */
.to-top {
  position: fixed; right: 26px; bottom: 98px; z-index: var(--z-sticky);
  width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity 0.35s, transform 0.35s var(--ease), visibility 0.35s;
  box-shadow: var(--shadow-md); cursor: pointer;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg.chev { width: 17px; height: 17px; color: var(--navy); position: relative; z-index: 2; }
.to-top .ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.to-top .ring circle { fill: none; stroke: var(--gold-deep); stroke-width: 3; stroke-dasharray: 138; stroke-dashoffset: 138; }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(42px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); will-change: transform, opacity; }
[data-reveal="left"] { transform: translateX(-52px); }
[data-reveal="right"] { transform: translateX(52px); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
[data-stagger].is-in > * { opacity: 1; transform: none; }

/* gold divider ornament */
.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 20px; color: var(--gold-metal); }
.ornament::before, .ornament::after { content: ""; height: 1px; width: 70px; background: linear-gradient(90deg, transparent, var(--gold-metal)); }
.ornament::after { background: linear-gradient(90deg, var(--gold-metal), transparent); }
.ornament svg { width: 18px; height: 18px; }

/* ---------- Trust badges strip ---------- */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 30px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16,64,127,0.1); box-shadow: var(--shadow-md);
}
.trust-item { display: flex; align-items: center; gap: 16px; padding: 8px 6px; position: relative; }
.trust-item:not(:last-child)::after { content: ""; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); height: 54%; width: 1px; background: var(--line); }
.trust-item__icon {
  width: 52px; height: 52px; flex: none; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(16,64,127,0.09), rgba(248,216,24,0.16)); border: 1px solid rgba(16,64,127,0.12);
  transition: transform 0.4s var(--ease-bounce);
}
.trust-item:hover .trust-item__icon { transform: scale(1.08) rotate(-4deg); }
.trust-item__icon svg { width: 26px; height: 26px; color: var(--navy); }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-2); line-height: 1.1; }
.trust-item span { font-size: 0.82rem; color: var(--muted); font-weight: 700; letter-spacing: 0.4px; }

/* ---------- Capability grid ("How We Serve You") ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cap-card {
  position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s;
}
.cap-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(var(--gold), var(--gold-deep));
  transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease);
}
.cap-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(16,64,127,0.18); }
.cap-card:hover::after { transform: scaleY(1); }
.cap-card__icon {
  width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(16,64,127,0.08), rgba(248,216,24,0.14)); border: 1px solid rgba(16,64,127,0.1);
  transition: transform 0.4s var(--ease-bounce), background 0.4s;
}
.cap-card:hover .cap-card__icon { transform: scale(1.06) rotate(-4deg); background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.cap-card__icon svg { width: 26px; height: 26px; color: var(--navy); transition: color 0.4s; }
.cap-card:hover .cap-card__icon svg { color: var(--ink); }
.cap-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.cap-card p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Claims process band ---------- */
.claims-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.claims-steps::before {
  content: ""; position: absolute; top: 44px; left: 16%; right: 16%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-metal) 0 8px, transparent 8px 16px); opacity: 0.5; z-index: 0;
}
.claim-step { position: relative; z-index: 1; text-align: center; padding: 12px; }
.claim-step__badge {
  width: 88px; height: 88px; margin: 0 auto 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.14);
  transition: transform 0.4s var(--ease-bounce), border-color 0.4s;
}
.claim-step:hover .claim-step__badge { transform: translateY(-6px); border-color: rgba(248,216,24,0.5); }
.claim-step__badge svg { width: 36px; height: 36px; color: var(--gold); }
.claim-step__num {
  position: absolute; top: -6px; right: -6px; width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
}
.claim-step h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.claim-step p { color: #A9BAD8; font-size: 0.95rem; margin-inline: auto; max-width: 34ch; }

/* map embed */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* legal pages */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 24px; }

/* 404 */
.notfound { min-height: 70vh; display: flex; align-items: center; text-align: center; }
.notfound__code { font-family: var(--font-display); font-size: clamp(6rem, 18vw, 12rem); line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(16,64,127,0.3); position: relative; }
.notfound__code span { position: absolute; inset: 0; color: var(--navy); clip-path: inset(0 0 52% 0); animation: glitch404 4s var(--ease) infinite; -webkit-text-stroke: 0; }
@keyframes glitch404 { 0%, 88%, 100% { clip-path: inset(0 0 52% 0); } 92% { clip-path: inset(30% 0 20% 0); } 96% { clip-path: inset(10% 0 65% 0); } }

/* ============================================================
   3D SYSTEM — tilt, glare, depth entrances, showpieces
   ============================================================ */

/* --- Tilt base --- */
[data-tilt] {
  position: relative; transform-style: preserve-3d; will-change: transform;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.4s var(--ease);
}
[data-tilt]:hover { transition: transform 0.12s linear, box-shadow 0.4s var(--ease); }

/* --- Cursor glare (brand-tinted sheen) --- */
.tilt-glare {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 5;
  background: radial-gradient(340px circle at var(--gx, 50%) var(--gy, 50%),
              rgba(255, 255, 255, 0.55) 0%, rgba(248, 216, 24, 0.16) 34%, transparent 62%);
  opacity: 0; transition: opacity 0.45s var(--ease); mix-blend-mode: overlay;
}
[data-tilt]:hover .tilt-glare { opacity: 1; }
/* stronger sheen on dark surfaces */
.service-card--featured .tilt-glare { mix-blend-mode: soft-light; opacity: 0; }
.service-card--featured:hover .tilt-glare { opacity: 1; }
/* softer over photos so overlay text stays crisp */
.team-card .tilt-glare, .split__media-frame .tilt-glare, .post-card .tilt-glare {
  background: radial-gradient(300px circle at var(--gx, 50%) var(--gy, 50%),
              rgba(255, 255, 255, 0.34) 0%, rgba(248, 216, 24, 0.10) 38%, transparent 66%);
  mix-blend-mode: soft-light;
}
.review-card { position: relative; overflow: hidden; }

/* --- 3D scroll entrances --- */
[data-reveal="3d"] { opacity: 0; transform: perspective(1200px) rotateX(-16deg) translateY(44px); }
[data-reveal="3d"].is-in { opacity: 1; transform: perspective(1200px) rotateX(0deg) translateY(0); }
[data-stagger="3d"] > * {
  opacity: 0; transform: perspective(1200px) rotateX(-18deg) translateY(38px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-stagger="3d"].is-in > * { opacity: 1; transform: perspective(1200px) rotateX(0deg) translateY(0); }

/* --- Showpiece: claims badges flip in 3D --- */
[data-stagger="flip"] > * { opacity: 0; transform: translateY(30px); }
[data-stagger="flip"].is-in > * { opacity: 1; transform: translateY(0); }
[data-stagger="flip"] .claim-step__badge {
  transform: perspective(900px) rotateY(-105deg); transform-style: preserve-3d;
  transition: transform 1s var(--ease) 0.18s, border-color 0.4s;
}
[data-stagger="flip"].is-in .claim-step__badge { transform: perspective(900px) rotateY(0deg); }
[data-stagger="flip"].is-in .claim-step:hover .claim-step__badge {
  transform: perspective(900px) rotateY(0deg) translateY(-6px) scale(1.05);
}
.claim-step__num { transform: translateZ(24px); }

/* --- Showpiece: partner tile coverflow --- */
.marquee[data-coverflow] { perspective: 1100px; }
.marquee[data-coverflow] .marquee__track { transform-style: preserve-3d; }

/* --- Hero: JS-driven cursor depth (disables CSS float loops) --- */
.hero__cards { transform-style: preserve-3d; }
.hero.is-3d .glass-stat { animation: none; will-change: transform; }
.hero.is-3d .hero__orb { animation: none; will-change: transform; }
.hero.is-3d .hero__inner > div:first-child { will-change: transform; }

/* --- Showpiece: stats band depth --- */
.stats-band__grid { perspective: 1000px; }
.stat { transition: transform 0.45s var(--ease); transform-style: preserve-3d; }
.stat:hover { transform: translateZ(30px) translateY(-4px); }

@media (hover: none) {
  .tilt-glare { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* nav still present but space is tight -> compact icon-only call button */
@media (max-width: 1280px) and (min-width: 1081px) {
  .header__phone-text { display: none; }
  .header.is-scrolled .header__phone { max-width: 54px; padding: 6px; }
}

@media (max-width: 1080px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; padding: 70px 0 120px; }
  .hero__cards { height: 320px; max-width: 520px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  /* no room beside the logo + burger -> icon-only call button */
  .header__phone-text { display: none; }
  .header.is-scrolled .header__phone { max-width: 52px; padding: 6px; }
  .topbar__contacts .topbar__link span { display: none; }
  .topbar__link svg { width: 16px; height: 16px; }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 440px; }
  .split__media-badge { left: 10px; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; gap: 38px 16px; }
  .stat:nth-child(2)::after { display: none; }
  .coverage { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 64px 1fr; }
  .feature-row__arrow { display: none; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .trust-item:nth-child(2)::after { display: none; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .claims-steps { grid-template-columns: 1fr; gap: 34px; }
  .claims-steps::before { display: none; }
  .sticky-bar { display: grid; }
  .float-wa { display: none; }
  .to-top { bottom: 86px; right: 18px; }
  body { padding-bottom: 56px; } /* room for sticky bar */
  .footer { padding-bottom: 10px; }
  .ticks { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .partner-tile { width: 142px; height: 82px; padding: 14px; border-radius: 15px; }
  .partner-tile img { max-height: 42px; }
  .partners__facts { gap: 16px 28px; }
  .partners__facts strong { font-size: 1.15rem; }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .hero__cards { height: 300px; }
  .glass-stat { padding: 18px 20px; min-width: 150px; }
  .glass-stat strong { font-size: 1.6rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .review-card { flex-basis: 84vw; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item::after { display: none !important; }
  .cap-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
  .hero h1 .word > span { transform: none; animation: none; }
}
