/* ============================================================
   FULL OUT GLOBAL — Performance Without Borders
   Brand: Deep Navy #0B1D3A · Warm Gold #C9A24B · White #FFFFFF
   Design System / Stylesheet
   ============================================================ */

/* ---------- Brand + Semantic Tokens ---------- */
:root {
  /* Brand constants */
  --navy: #0b1d3a;
  --navy-700: #0e2549;
  --navy-600: #143058;
  --navy-900: #06122a;
  --gold: #c9a24b;
  --gold-l: #e6c987;
  --gold-d: #a8823a;
  --white: #ffffff;
  --paper: #f5f6f8;
  --grad-gold: linear-gradient(120deg, #a8823a 0%, #c9a24b 42%, #ecd293 100%);

  /* Type */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Shape & motion */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --container: 1200px;
  --section-pad: clamp(64px, 9vw, 128px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Semantic — LIGHT default */
  --surface: #ffffff;
  --ink: #0b1d3a;
  --ink-soft: #46546c;
  --ink-mute: #8b94a4;
  --card: #ffffff;
  --card-2: #f5f6f8;
  --card-hover: #fbfbfc;
  --line: rgba(11, 29, 58, 0.10);
  --line-strong: rgba(11, 29, 58, 0.20);
  --shadow: 0 26px 60px -30px rgba(11, 29, 58, 0.28);
  --shadow-gold: 0 18px 50px -18px rgba(201, 162, 75, 0.45);
}

/* ---------- DARK section theme ---------- */
.section.dark, .panel-dark {
  --surface: var(--navy);
  --ink: #ffffff;
  --ink-soft: #c4cddc;
  --ink-mute: #8493ab;
  --card: #0f2547;
  --card-2: #0d2143;
  --card-hover: #14305a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
  background: var(--navy);
  color: #ffffff;
}
.section.alt { background: var(--paper); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); position: relative; z-index: 1; }
.section { padding-block: var(--section-pad); position: relative; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-640 { max-width: 640px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
.display { font-size: clamp(2.6rem, 6.2vw, 4.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2.title { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); }
.text-soft { color: var(--ink-soft); }
.text-mute { color: var(--ink-mute); }
.grad-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gold { color: var(--gold); }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-d);
  padding: 7px 15px; border: 1px solid var(--line-strong);
  border-radius: 999px; background: rgba(201, 162, 75, 0.08);
}
.section.dark .eyebrow { color: var(--gold-l); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 15px 28px; border-radius: 999px; transition: all 0.3s var(--ease);
  white-space: nowrap; cursor: pointer; position: relative;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn-primary { background: var(--grad-gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px -16px rgba(201,162,75,0.55); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(201,162,75,0.10); border-color: var(--gold); transform: translateY(-3px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Logo / brand mark ---------- */
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand .logo-mark { width: 44px; height: 44px; flex-shrink: 0; display: block; }
.brand .logo-mark svg { width: 100%; height: 100%; }
.brand .brand-logo { height: 42px; width: auto; display: block; transition: height 0.35s var(--ease); }
.site-header.scrolled .brand .brand-logo { height: 36px; }
.site-footer .brand .brand-logo { height: 48px; }
@media (max-width: 620px) { .brand .brand-logo { height: 34px; } }
.brand .logo-word { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; letter-spacing: 0.04em; line-height: 1; color: #fff; text-transform: uppercase; }
.brand .logo-word em { font-style: normal; color: var(--gold); }
.brand .logo-word small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.58rem; letter-spacing: 0.26em; color: var(--ink-mute); text-transform: uppercase; margin-top: 5px; }
.section.dark .brand .logo-word small, .site-footer .brand .logo-word small { color: #97a4ba; }

/* Globe arc lockup (decorative) */
.lockup { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.lockup .globe { width: clamp(150px, 22vw, 230px); height: auto; margin-bottom: -6px; }
.lockup .word { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 5vw, 3.4rem); letter-spacing: 0.06em; color: var(--ink); line-height: 1; }
.lockup .word em { font-style: normal; }
.lockup .sub { display: flex; align-items: center; gap: 14px; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.42em; font-size: clamp(0.9rem, 2.2vw, 1.4rem); color: var(--gold); text-transform: uppercase; }
.lockup .sub::before, .lockup .sub::after { content: ""; width: clamp(18px, 4vw, 38px); height: 2px; background: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.35s var(--ease); padding: 18px 0; }
.site-header.scrolled { background: rgba(11, 29, 58, 0.88); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-bottom: 1px solid rgba(201,162,75,0.18); padding: 11px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-family: var(--font-head); font-size: 0.92rem; font-weight: 500; color: #c4cddc; padding: 9px 15px; border-radius: 10px; transition: all 0.25s var(--ease); }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { content: ""; display: block; height: 2px; width: 18px; margin: 3px auto 0; background: var(--gold); border-radius: 2px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 11px; border: 1px solid rgba(255,255,255,0.2); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: rgba(6,18,42,0.98); backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 0 32px; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: #fff; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(150px, 18vw, 210px); padding-bottom: var(--section-pad); position: relative; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; z-index: 0; pointer-events: none; }
.hero-glow.a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(201,162,75,0.35), transparent 70%); top: -120px; right: -60px; }
.hero-glow.b { width: 420px; height: 420px; background: radial-gradient(circle, rgba(20,48,90,0.6), transparent 70%); bottom: -160px; left: -120px; }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-logo { width: clamp(240px, 34vw, 380px); height: auto; margin-bottom: 26px; }
.hero h1 { margin: 24px 0; }
.hero .lead { max-width: 620px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 56px; display: flex; flex-wrap: wrap; gap: 14px 38px; align-items: center; color: var(--ink-mute); font-size: 0.9rem; }
.hero-trust strong { color: var(--gold); font-family: var(--font-head); }
.hero-skyline { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; opacity: 0.5; z-index: 1; pointer-events: none; }
.hero-skyline svg { width: 100%; height: auto; display: block; }

/* Globe watermark */
.globe-wm { position: absolute; top: 50%; right: -120px; transform: translateY(-50%); width: 560px; opacity: 0.14; z-index: 0; pointer-events: none; }

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 22px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink-mute); white-space: nowrap; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: all 0.35s var(--ease); position: relative; overflow: hidden; color: var(--ink); box-shadow: var(--shadow); }
.section.dark .card { box-shadow: none; }
.card:hover { background: var(--card-hover); border-color: var(--line-strong); transform: translateY(-5px); }

/* Service card */
.service-card .icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,162,75,0.12); border: 1px solid rgba(201,162,75,0.28); margin-bottom: 22px; transition: all 0.35s var(--ease); }
.service-card .icon svg { width: 28px; height: 28px; stroke: var(--gold-d); }
.section.dark .service-card .icon svg { stroke: var(--gold-l); }
.service-card:hover .icon { background: var(--grad-gold); transform: scale(1.05); }
.service-card:hover .icon svg { stroke: var(--navy); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; }
.service-card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--gold-d); }
.section.dark .service-card .more { color: var(--gold-l); }
.service-card .more svg { width: 16px; height: 16px; transition: transform 0.25s; }
.service-card:hover .more svg { transform: translateX(4px); }
.service-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.service-card:hover::after { transform: scaleX(1); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--card-2); }
.section.dark .stat { background: rgba(255,255,255,0.03); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .label { color: var(--ink-soft); margin-top: 10px; font-size: 0.95rem; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.checklist { display: grid; gap: 14px; margin-top: 28px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); }
.checklist .tick { width: 24px; height: 24px; border-radius: 7px; background: rgba(201,162,75,0.14); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.checklist .tick svg { width: 14px; height: 14px; stroke: var(--gold-d); }
.section.dark .checklist .tick svg { stroke: var(--gold-l); }
.checklist strong { color: var(--ink); font-weight: 600; }

.visual-card { border-radius: var(--radius-lg); border: 1px solid var(--line-strong); background: linear-gradient(160deg, rgba(201,162,75,0.1), rgba(11,29,58,0.04)), var(--card); padding: 40px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.section.dark .visual-card { background: linear-gradient(160deg, rgba(201,162,75,0.14), rgba(255,255,255,0.02)), var(--card); }
.visual-card .glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,0.4), transparent 70%); filter: blur(45px); top: -60px; right: -60px; opacity: 0.6; }

/* Steps */
.steps { display: grid; gap: 20px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); transition: all 0.35s var(--ease); box-shadow: var(--shadow); }
.section.dark .step { box-shadow: none; }
.step:hover { border-color: var(--gold); transform: translateX(6px); }
.step .n { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,162,75,0.1); border: 1px solid rgba(201,162,75,0.25); color: var(--gold-d); }
.section.dark .step .n { color: var(--gold-l); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* Testimonials */
.tcard { display: flex; flex-direction: column; height: 100%; }
.tcard .quote { font-size: 1.02rem; color: var(--ink); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.tcard .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 0.95rem; }
.tcard .who { display: flex; align-items: center; gap: 13px; }
.tcard .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: var(--navy); flex-shrink: 0; }
.tcard .who strong { display: block; font-family: var(--font-head); font-size: 0.96rem; color: var(--ink); }
.tcard .who span { font-size: 0.85rem; color: var(--ink-mute); }

/* Pills */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(201,162,75,0.06); font-size: 0.85rem; color: var(--ink-soft); font-family: var(--font-head); font-weight: 500; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Blog cards */
.post-card { display: flex; flex-direction: column; }
.post-card .thumb { aspect-ratio: 16/10; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 20px; position: relative; background: linear-gradient(135deg, var(--navy), var(--navy-600)); border: 1px solid var(--line); display: grid; place-items: center; }
.post-card .thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120px 80px at 80% 20%, rgba(201,162,75,0.3), transparent 70%); }
.post-card .thumb .badge { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-l); position: relative; z-index: 1; }
.post-card .meta { display: flex; gap: 14px; font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 12px; }
.post-card h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.3; }
.post-card p { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.post-card .more { margin-top: 16px; color: var(--gold-d); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; display: inline-flex; gap: 7px; align-items: center; }
.section.dark .post-card .more { color: var(--gold-l); }

/* Case study card */
.case-card { padding: 0; overflow: hidden; }
.case-card .body { padding: 32px; }
.case-card .topbar { padding: 22px 32px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.case-card .tag { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-d); font-family: var(--font-head); font-weight: 600; }
.section.dark .case-card .tag { color: var(--gold-l); }
.case-card .kpi-row { display: flex; gap: 28px; margin: 22px 0 4px; flex-wrap: wrap; }
.case-card .kpi .v { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-card .kpi .l { font-size: 0.8rem; color: var(--ink-mute); }

/* CTA band (always navy, premium) */
.cta-band { border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 78px); background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%); border: 1px solid rgba(201,162,75,0.25); position: relative; overflow: hidden; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #c4cddc; }
.cta-band .eyebrow { color: var(--gold-l); border-color: rgba(201,162,75,0.3); }
.cta-band .glow { position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(201,162,75,0.3), transparent 70%); opacity: 0.55; }
.cta-band .cta-skyline { position: absolute; bottom: 0; left: 0; right: 0; opacity: 0.4; pointer-events: none; }
.cta-band .cta-skyline svg { width: 100%; height: auto; }
.cta-band > *:not(.glow):not(.cta-skyline) { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lead { margin: 0 auto 32px; max-width: 560px; }

/* Forms */
.form-grid { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--card-2); border: 1px solid var(--line); color: var(--ink); font-family: var(--font-body); font-size: 0.96rem; transition: border-color 0.25s, box-shadow 0.25s; }
.section.dark .field input, .section.dark .field textarea, .section.dark .field select { background: rgba(255,255,255,0.04); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.18); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-pill { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--card-2); cursor: pointer; transition: all 0.2s; font-size: 0.9rem; }
.section.dark .checkbox-pill { background: rgba(255,255,255,0.04); }
.checkbox-pill:hover { border-color: var(--line-strong); }
.checkbox-pill input { accent-color: var(--gold); width: 16px; height: 16px; }
.checkbox-pill.checked { border-color: var(--gold); background: rgba(201,162,75,0.1); }
.form-note { font-size: 0.85rem; color: var(--ink-mute); }
.form-success { display: none; padding: 16px 20px; border-radius: var(--radius-sm); background: rgba(201,162,75,0.12); border: 1px solid rgba(201,162,75,0.35); color: var(--gold-d); font-size: 0.95rem; }
.section.dark .form-success { color: var(--gold-l); }
.form-success.show { display: block; }
.form-error { display: none; padding: 16px 20px; border-radius: var(--radius-sm); background: rgba(220,68,68,0.10); border: 1px solid rgba(220,68,68,0.35); color: #c0392b; font-size: 0.95rem; }
.section.dark .form-error { color: #ff8a8a; background: rgba(255,90,90,0.08); }
.form-error.show { display: block; }
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
button.is-loading { opacity: 0.65; cursor: progress; }

/* Contact info */
.contact-info { display: grid; gap: 16px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--card); transition: all 0.3s var(--ease); box-shadow: var(--shadow); }
.section.dark .info-row { box-shadow: none; }
.info-row:hover { border-color: var(--gold); transform: translateY(-3px); }
.info-row .ico { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: rgba(201,162,75,0.12); border: 1px solid rgba(201,162,75,0.28); }
.info-row .ico svg { width: 22px; height: 22px; stroke: var(--gold-d); }
.section.dark .info-row .ico svg { stroke: var(--gold-l); }
.info-row h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); margin-bottom: 5px; font-weight: 600; }
.info-row p, .info-row a { color: var(--ink); font-size: 1rem; }
.info-row a:hover { color: var(--gold-d); }
.section.dark .info-row a:hover { color: var(--gold-l); }

/* Page hero */
.page-hero { padding-top: clamp(150px, 16vw, 200px); padding-bottom: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.page-hero .hero-glow.a { width: 440px; height: 440px; top: -140px; right: -60px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--ink-mute); font-size: 0.85rem; margin-bottom: 22px; font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--gold-d); }
.section.dark .breadcrumb a:hover { color: var(--gold-l); }

/* Values */
.value-line { display: flex; flex-wrap: wrap; gap: 12px 14px; margin-top: 8px; }
.value-line .v { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--ink); }
.value-line .v.dim { color: var(--ink-mute); }

/* Service detail */
.svc-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.svc-detail:nth-child(even) .svc-visual { order: -1; }
.svc-detail .num-tag { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--gold-d); letter-spacing: 0.1em; }
.section.dark .svc-detail .num-tag { color: var(--gold-l); }
.svc-detail h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 12px 0 16px; }
.svc-visual { border-radius: var(--radius-lg); border: 1px solid var(--line-strong); aspect-ratio: 4/3; background: linear-gradient(150deg, rgba(201,162,75,0.12), rgba(11,29,58,0.05)), var(--card); display: grid; place-items: center; position: relative; overflow: hidden; }
.svc-visual svg { width: 38%; height: 38%; }
.svc-visual .glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,0.4), transparent 70%); filter: blur(50px); }

/* ---------- Footer (always navy) ---------- */
.site-footer { background: var(--navy-900); color: #fff; border-top: 1px solid rgba(201,162,75,0.2); padding-top: clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
.site-footer .footer-skyline { position: absolute; bottom: 0; right: 0; width: min(620px, 70%); opacity: 0.22; pointer-events: none; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; position: relative; z-index: 1; }
.footer-brand .tagline { color: var(--gold); font-family: var(--font-head); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.78rem; margin: 18px 0 14px; }
.footer-brand p { color: #aab4c6; margin-bottom: 22px; max-width: 320px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--grad-gold); border-color: transparent; transform: translateY(-3px); }
.footer-social a:hover svg { stroke: var(--navy); }
.footer-social svg { width: 18px; height: 18px; stroke: #c4cddc; }
.footer-contact { margin-top: 22px; font-size: 0.9rem; color: #aab4c6; line-height: 1.6; }
.footer-contact p { margin-bottom: 6px; max-width: 300px; }
.footer-contact a { color: var(--gold); font-family: var(--font-head); font-weight: 600; }
.footer-contact a:hover { color: var(--gold-l); }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: #aab4c6; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-l); }
.footer-news p { color: #aab4c6; font-size: 0.92rem; margin-bottom: 14px; }
.footer-news form { display: flex; gap: 8px; }
.footer-news input { flex: 1; min-width: 0; padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); color: #fff; font-family: inherit; }
.footer-news input::placeholder { color: #7c889c; }
.footer-news input:focus { outline: none; border-color: var(--gold); }
.footer-news button { padding: 12px 18px; border-radius: var(--radius-sm); background: var(--grad-gold); color: var(--navy); font-family: var(--font-head); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 26px 0; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; color: #8c97aa; font-size: 0.86rem; position: relative; z-index: 1; }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-bottom a:hover { color: var(--gold-l); }

/* ---------- Prose (legal + articles) ---------- */
.prose { max-width: 760px; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.8; }
.prose.center-col { margin-inline: auto; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--ink); margin-top: 2.2em; margin-bottom: 0.2em; scroll-margin-top: 100px; }
.prose h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }
.prose a { color: var(--gold-d); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: 0.5em; }
.prose li { color: var(--ink-soft); }
.prose li::marker { color: var(--gold-d); }
.prose blockquote { border-left: 3px solid var(--gold); padding: 6px 0 6px 22px; margin: 1.6em 0; color: var(--ink); font-size: 1.1rem; font-style: italic; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.2em 0; }
.prose .lead-in { font-size: 1.15rem; color: var(--ink); }

/* Article meta + layout */
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; color: var(--ink-mute); font-size: 0.9rem; font-family: var(--font-head); margin-top: 18px; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.article-tag { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-l); padding: 6px 14px; border: 1px solid rgba(201,162,75,0.3); border-radius: 999px; }
.article-share { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
.article-share span { font-size: 0.85rem; color: var(--ink-mute); font-family: var(--font-head); }
.article-share a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line); display: grid; place-items: center; transition: all 0.25s var(--ease); }
.article-share a:hover { background: var(--grad-gold); border-color: transparent; }
.article-share svg { width: 16px; height: 16px; stroke: var(--ink-soft); }
.article-share a:hover svg { stroke: var(--navy); }
.legal-note { margin-top: 2em; padding: 18px 22px; border-radius: var(--radius-sm); background: rgba(201,162,75,0.08); border: 1px solid rgba(201,162,75,0.25); font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Case study extras ---------- */
.case-logo { display: inline-flex; align-items: center; justify-content: center; width: fit-content; max-width: 100%; min-height: 76px; padding: 16px 22px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); margin-bottom: 24px; }
.case-logo img { display: block; width: auto; max-width: min(280px, 72vw); max-height: 58px; object-fit: contain; }
.case-logo.dark-logo { background: linear-gradient(135deg, var(--navy), var(--navy-600)); border-color: rgba(201,162,75,0.28); box-shadow: none; }
.case-logo.compact { min-height: 54px; padding: 10px 14px; margin-bottom: 18px; box-shadow: none; }
.case-logo.compact img { max-width: 180px; max-height: 38px; }
.panel-dark .case-logo:not(.dark-logo), .section.dark .case-logo:not(.dark-logo) { border-color: rgba(255,255,255,0.18); box-shadow: none; }
.featured-case .case-logo { position: relative; z-index: 1; margin-bottom: 18px; }
.metric-hero { text-align: center; }
.metric-hero .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(3.4rem, 9vw, 6rem); line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric-hero .big small { display: block; font-size: clamp(0.95rem, 1.6vw, 1.1rem); letter-spacing: 0.06em; color: var(--ink-soft); -webkit-text-fill-color: var(--ink-soft); margin-top: 8px; font-weight: 600; }
.metric-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 48px; margin-top: 30px; }
.metric-row .m { text-align: center; }
.metric-row .m b { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--gold); display: block; }
.metric-row .m span { font-size: 0.85rem; color: var(--ink-mute); }

.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 0.95rem; }
.compare-table th, .compare-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table thead th { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); background: var(--card-2); }
.section.dark .compare-table thead th { background: rgba(255,255,255,0.04); }
.compare-table thead th:last-child { color: var(--gold-d); }
.section.dark .compare-table thead th:last-child { color: var(--gold-l); }
.compare-table td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.compare-table td:last-child { background: rgba(201,162,75,0.07); color: var(--ink); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.pos { color: var(--gold-d); font-weight: 700; }
.section.dark .pos { color: var(--gold-l); }
.neg { color: var(--ink-mute); }

.featured-case { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; padding: 0; }
.featured-case .fc-side { background: linear-gradient(150deg, var(--navy), var(--navy-600)); padding: clamp(32px,4vw,48px); display: flex; flex-direction: column; justify-content: center; position: relative; }
.featured-case .fc-side .glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,0.35), transparent 70%); filter: blur(45px); bottom: -40px; left: -20px; }
.featured-case .fc-tag { color: var(--gold-l); font-family: var(--font-head); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; position: relative; z-index: 1; }
.featured-case .fc-side .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem,7vw,4.6rem); line-height: 1; color: #fff; margin: 14px 0 4px; position: relative; z-index: 1; }
.featured-case .fc-side .big span { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.featured-case .fc-side .fc-sub { color: #c4cddc; font-size: 0.95rem; position: relative; z-index: 1; }
.featured-case .fc-body { padding: clamp(32px,4vw,48px); }
.featured-case .fc-body .meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 14px; font-family: var(--font-head); }
.featured-case .fc-body h3 { font-size: clamp(1.3rem,2.4vw,1.8rem); margin-bottom: 12px; }
.featured-case .fc-mini { display: flex; gap: 28px; flex-wrap: wrap; margin: 20px 0; }
.featured-case .fc-mini .v { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.featured-case .fc-mini .l { font-size: 0.78rem; color: var(--ink-mute); }
@media (max-width: 820px) { .featured-case { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .marquee-track { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .svc-detail { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) .svc-visual { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .globe-wm { display: none; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .step { grid-template-columns: 1fr; }
  .step .n { width: 48px; height: 48px; }
  .brand .logo-word { font-size: 1rem; }
}
