/* ==========================================================================
   STEROFOREX — Premium design system
   A self-contained stylesheet for the marketing site (index / about / contact).
   Aesthetic: investment-bank gravitas + modern fintech.
   Brand: deep navy ink, #4361EE electric blue, restrained gold.
   ========================================================================== */

/* ---- Fonts: Inter (self-hosted) for body, Fraunces (serif) for display ---- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v12-latin-regular.woff2') format('woff2'),
       url('../fonts/inter-v12-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v12-latin-500.woff2') format('woff2'),
       url('../fonts/inter-v12-latin-500.woff') format('woff');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v12-latin-700.woff2') format('woff2'),
       url('../fonts/inter-v12-latin-700.woff') format('woff');
}

/* ---- Tokens ---- */
:root {
  --navy-900: #070b1e;
  --navy-800: #0b1437;
  --navy-700: #0f1c44;
  --navy-600: #16264f;
  --navy-500: #1e315f;

  --blue:      #4361ee;
  --blue-600:  #3651d4;
  --blue-400:  #6d84f2;
  --blue-tint: #eaeefe;

  --gold:      #c8a24b;
  --gold-soft: #e4c77e;

  --ink:    #0e1428;
  --body:   #3a4256;
  --slate:  #5a6478;
  --muted:  #8b93a7;

  --paper:  #ffffff;
  --mist:   #f6f8fc;
  --cloud:  #eef2f9;
  --line:   #e5e8f0;
  --line-2: #dfe3ee;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(14, 20, 40, .06);
  --shadow-md: 0 18px 44px -20px rgba(14, 20, 40, .28);
  --shadow-lg: 0 40px 90px -34px rgba(11, 20, 55, .45);
  --shadow-blue: 0 20px 44px -18px rgba(67, 97, 238, .5);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1200px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p  { margin: 0 0 1.1rem; }

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.container-wide { max-width: 1360px; }
.container-narrow { max-width: 900px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Eyebrow / kicker ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--blue);
  opacity: .7;
}
.eyebrow.center-line { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold-soft); }

.lead { font-size: 1.18rem; color: var(--slate); line-height: 1.75; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* Accent inside serif headings */
.accent { color: var(--blue); font-style: italic; }
.accent-gold { color: var(--gold); font-style: italic; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: .005em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 26px 50px -16px rgba(67,97,238,.6); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(0,0,0,.4); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #2a2205; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -18px rgba(200,162,75,.6); }
.btn-lg { padding: 18px 38px; font-size: 1.03rem; }
.btn-block { display: flex; width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--blue);
}
.text-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ---- Ticker bar (top) ---- */
.market-strip {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.market-strip .tradingview-widget-container { max-width: 100%; }
.tradingview-widget-container { max-width: 100%; overflow-x: hidden; }
.tradingview-widget-container iframe { max-width: 100% !important; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px -22px rgba(14,20,40,.5);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px;
  transition: height .35s var(--ease);
}
.is-scrolled .nav { height: 70px; }
.nav-logo img { width: 172px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a {
  font-weight: 500; font-size: 0.97rem; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--blue);
  transition: width .3s var(--ease);
}
.nav-menu a:hover { color: var(--blue); }
.nav-menu a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 11px 24px; font-size: 0.92rem; }
.nav-login { font-weight: 600; color: var(--ink); }
.nav-login:hover { color: var(--blue); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-2);
  border-radius: 12px; background: #fff; padding: 0; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--ink); transform: translate(-50%, -50%); transition: .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

/* Mobile panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; visibility: hidden;
}
.mobile-nav__backdrop {
  position: absolute; inset: 0; background: rgba(7,11,30,.55);
  opacity: 0; transition: opacity .35s var(--ease);
}
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: var(--navy-800); color: #fff; padding: 28px 26px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.is-open { visibility: visible; }
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-nav__close { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); border: none; color: #fff; font-size: 22px; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__links a {
  font-family: var(--font-display); font-size: 1.5rem; color: #fff;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav__links a:hover { color: var(--gold-soft); }
.mobile-nav__cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--navy-900);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transform: scale(1.06); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,30,.72) 0%, rgba(7,11,30,.55) 40%, rgba(7,11,30,.9) 100%),
    linear-gradient(90deg, rgba(7,11,30,.85) 0%, rgba(7,11,30,.2) 60%, rgba(7,11,30,.4) 100%);
}
.hero__grid-lines {
  position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 30% 30%, #000, transparent 78%);
  mask-image: radial-gradient(circle at 30% 30%, #000, transparent 78%);
}
.hero__inner { position: relative; z-index: 2; padding-top: clamp(80px, 13vw, 168px); padding-bottom: clamp(70px, 10vw, 120px); }
.hero__content { max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #cdd6f5;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 0 4px rgba(228,199,126,.18); }
.hero h1 { color: #fff; font-weight: 400; font-size: clamp(2.7rem, 6.6vw, 5rem); line-height: 1.04; }
.hero h1 .accent { color: var(--gold-soft); }
.hero__sub { font-size: 1.24rem; color: #d6ddf2; max-width: 600px; margin: 26px 0 38px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 30px 46px; margin-top: 54px;
  padding-top: 34px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust .num { font-family: var(--font-display); font-size: 2rem; color: #fff; line-height: 1; }
.hero__trust .lbl { font-size: 0.82rem; color: #aeb8d6; letter-spacing: .04em; margin-top: 6px; }

/* ==========================================================================
   Trust / logo strip
   ========================================================================== */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trustbar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  padding: 40px 0;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-item .ic {
  flex: none; width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; color: var(--blue);
  background: var(--blue-tint);
}
.trust-item .ic svg { width: 24px; height: 24px; }
.trust-item .num { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.trust-item .lbl { font-size: 0.82rem; color: var(--slate); margin-top: 4px; }

/* ==========================================================================
   Feature / service cards
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.markets-grid { grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px 34px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-400));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card__ic {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  color: #fff; margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.card__ic svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--slate); margin-bottom: 0; font-size: 1rem; }
.card--gold .card__ic { background: linear-gradient(140deg, var(--gold), var(--gold-soft)); color: #2a2205; }
.card--gold::after { background: linear-gradient(90deg, var(--gold), var(--gold-soft)); }

/* Split feature block (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split__media .frame-tag {
  position: absolute; bottom: 22px; left: 22px; background: rgba(11,20,55,.82);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; padding: 14px 20px; border-radius: 14px; display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.12);
}
.split__media .frame-tag .num { font-family: var(--font-display); font-size: 1.4rem; }
.split__media .frame-tag .lbl { font-size: .78rem; color: #c7cfe8; }

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: var(--blue-tint); color: var(--blue);
  margin-top: 2px;
}
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin: 0 0 3px; }
.feature-list p { margin: 0; color: var(--slate); font-size: .98rem; }

/* ==========================================================================
   Dark sections (crypto retriever, CTA, global band)
   ========================================================================== */
.dark { background: var(--navy-800); color: #cdd5ec; position: relative; overflow: hidden; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lead { color: #b7c0dc; }
.dark .eyebrow { color: var(--gold-soft); }
.dark .eyebrow::before { background: var(--gold-soft); }
.dark-texture::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 80% 10%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 80% 10%, #000, transparent 70%);
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; z-index: 0;
  pointer-events: none;
}
.glow-blue { background: rgba(67,97,238,.5); }
.glow-gold { background: rgba(200,162,75,.28); }

/* Crypto retriever badge/step cards on dark */
.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 28px 26px; position: relative;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.step-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: rgba(228,199,126,.4); }
.step-card .step-n {
  font-family: var(--font-display); font-size: 1rem; color: var(--gold-soft);
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(228,199,126,.4);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step-card h4 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 1.08rem; margin-bottom: 8px; }
.step-card p { color: #aab4d4; font-size: .95rem; margin: 0; }

.pill-list { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px;
  border-radius: 999px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); font-size: .9rem; color: #d5ddf2; font-weight: 500;
}
.pill svg { width: 15px; height: 15px; color: var(--gold-soft); }

/* ==========================================================================
   How it works timeline
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.step {
  position: relative; padding-top: 8px;
}
.step__n {
  font-family: var(--font-display); font-size: 1.1rem; color: #fff;
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue);
  display: grid; place-items: center; margin-bottom: 22px; box-shadow: var(--shadow-blue);
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--slate); margin: 0; }
.steps--line .step:not(:last-child)::before {
  content: ""; position: absolute; top: 28px; left: 68px; right: -18px; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

/* ==========================================================================
   Pricing plans
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 34px; display: flex; flex-direction: column; position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan--featured {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-700));
  border-color: transparent; color: #cdd5ec; box-shadow: var(--shadow-lg);
}
.plan--featured h3, .plan--featured .plan__price { color: #fff; }
.plan__badge {
  position: absolute; top: 26px; right: 26px; font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #2a2205;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold)); padding: 6px 14px; border-radius: 999px;
}
.plan__ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--blue-tint); }
.plan--featured .plan__ic { background: rgba(255,255,255,.1); }
.plan__ic img { width: 28px; height: 28px; }
.plan__name { font-size: 1.4rem; margin-bottom: 4px; }
.plan__tag { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 22px; }
.plan--featured .plan__tag { color: var(--gold-soft); }
.plan__price { font-family: var(--font-display); font-size: 2.3rem; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.plan__price small { font-size: .95rem; font-family: var(--font-body); color: var(--slate); font-weight: 500; }
.plan__range { font-size: .9rem; color: var(--slate); margin-bottom: 26px; }
.plan--featured .plan__range { color: #aab4d4; }
.plan__feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; flex: 1; }
.plan__feats li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; }
.plan__feats .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; margin-top: 1px; }
.plan--featured .plan__feats .tick { background: rgba(228,199,126,.16); color: var(--gold-soft); }
.plan__feats .tick svg { width: 12px; height: 12px; }

/* ==========================================================================
   Stats band (on image)
   ========================================================================== */
.stat-band { position: relative; color: #fff; overflow: hidden; background: var(--navy-900); }
.stat-band__bg { position: absolute; inset: 0; }
.stat-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.stat-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,11,30,.86), rgba(11,20,55,.6)); }
.stat-band__inner { position: relative; z-index: 2; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; padding: 10px; }
.stat .n { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.4rem); color: #fff; line-height: 1; }
.stat .n .accent { color: var(--gold-soft); font-style: normal; }
.stat .l { font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; color: #b3bcd9; margin-top: 10px; }
.stat-divider .stat { border-right: 1px solid rgba(255,255,255,.12); }
.stat-divider .stat:last-child { border-right: none; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tst { position: relative; overflow: hidden; }
.tst__track { display: flex; transition: transform .6s var(--ease); }
.tst__slide { flex: 0 0 100%; max-width: 100%; padding: 4px; }
.tst__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 58px); box-shadow: var(--shadow-sm); max-width: 860px; margin: 0 auto;
}
.tst__quote { font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.4; color: var(--ink); font-weight: 400; margin-bottom: 30px; }
.tst__quote::before { content: "\201C"; color: var(--blue); font-size: 1.4em; line-height: 0; vertical-align: -0.35em; margin-right: 6px; }
.tst__author { display: flex; align-items: center; gap: 16px; }
.tst__avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(140deg, var(--blue), var(--navy-700)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; }
.tst__name { font-weight: 700; color: var(--ink); }
.tst__role { font-size: .88rem; color: var(--slate); }
.tst__stars { color: var(--gold); margin-bottom: 20px; display: flex; gap: 3px; }
.tst__stars svg { width: 18px; height: 18px; }
.tst__dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.tst__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); border: none; padding: 0; transition: .3s var(--ease); }
.tst__dot.is-active { background: var(--blue); width: 28px; border-radius: 999px; }

/* ==========================================================================
   Awards / marquee
   ========================================================================== */
.awards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.award {
  text-align: center; padding: 34px 22px; border: 1px solid var(--line);
  border-radius: var(--radius); background: #fff; transition: .4s var(--ease);
}
.award:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.award .medal { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--gold); }
.award h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--ink); margin: 0 0 4px; }
.award span { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
}
.cta__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta h2 { color: #fff; }
.cta p { color: #c3cce6; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: #aab4d4; }
.footer-top { padding: 78px 0 56px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand img { width: 180px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: .96rem; color: #97a1c2; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #cdd5ec;
  transition: .3s var(--ease);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { font-family: var(--font-body); color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { color: #97a1c2; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-offices { display: flex; flex-direction: column; gap: 16px; }
.footer-office { font-size: .92rem; color: #97a1c2; }
.footer-office strong { color: #dfe4f2; display: block; font-weight: 600; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .86rem; color: #7f89ab;
}
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { padding: 0 0 40px; }
.footer-disclaimer p { font-size: .78rem; color: #6b7599; line-height: 1.6; max-width: 100%; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { position: relative; color: #fff; overflow: hidden; background: var(--navy-900); }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,30,.8), rgba(7,11,30,.7)); }
.page-hero__inner { position: relative; z-index: 2; padding-top: clamp(90px, 12vw, 150px); padding-bottom: clamp(70px, 9vw, 110px); max-width: 780px; }
.page-hero h1 { color: #fff; font-weight: 400; }
.page-hero p { font-size: 1.2rem; color: #d3daf0; margin-bottom: 0; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .84rem; color: #9aa4c6; margin-bottom: 26px; letter-spacing: .04em; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* ==========================================================================
   About-specific
   ========================================================================== */
.value-card { padding: 32px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .4s var(--ease); height: 100%; }
.value-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.value-card .vc-ic { width: 52px; height: 52px; border-radius: 13px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.value-card .vc-ic svg { width: 24px; height: 24px; }
.value-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.12rem; color: var(--ink); margin-bottom: 8px; }
.value-card p { color: var(--slate); font-size: .96rem; margin: 0; }

.prose p { color: var(--body); font-size: 1.08rem; line-height: 1.85; }
.prose .lead { font-size: 1.3rem; color: var(--ink); font-family: var(--font-display); line-height: 1.5; margin-bottom: 28px; }

/* ==========================================================================
   Contact-specific
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 46px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--mist);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(67,97,238,.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.contact-side { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .3s var(--ease); }
.contact-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.contact-item .ci-ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--navy-800); color: #fff; display: grid; place-items: center; }
.contact-item .ci-ic svg { width: 22px; height: 22px; }
.contact-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin: 0 0 4px; color: var(--ink); }
.contact-item p { margin: 0; color: var(--slate); font-size: .95rem; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* To-top button */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 48px; height: 48px; border-radius: 14px; background: var(--ink); color: #fff;
  display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: .35s var(--ease); box-shadow: var(--shadow-md); border: none;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue); }
.to-top svg { width: 20px; height: 20px; }

/* Section label divider */
.divider-label { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.divider-label span { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.divider-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .plans, .steps, .step-cards, .stat-grid, .awards { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: 0; }
  .markets-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps--line .step:not(:last-child)::before { display: none; }
  .stat-divider .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 24px; }
  .stat-divider .stat:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .plans, .steps, .step-cards, .stat-grid, .awards, .grid-2, .form-row { grid-template-columns: 1fr; }
  .hero__trust { gap: 22px 34px; }
  .hero__trust .num { font-size: 1.6rem; }
  .card, .plan { padding: 30px 26px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .to-top { right: 16px; bottom: 16px; }
}
