/* ==========================================================================
   THINKSMITH MENA — brand stylesheet
   ========================================================================== */

:root {
  --gold: #c9971f;
  --gold-light: #e0b64c;
  --gold-dark: #8a5a1f;
  --black: #0a0a0a;
  --dark: #141414;
  --text: #141414;
  --text-muted: #6b6b6b;
  --border: #e3e3e3;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 16px;
  line-height: 1.1;
}
h1 { font-weight: 800; }
p { margin: 0 0 16px; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold); color: #fff;
  padding: 10px 16px; z-index: 10000;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px; font-family: var(--font-head); font-weight: 600;
  font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer; transition: all .25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold-gradient); color: #0a0a0a; box-shadow: var(--shadow); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-ghost:hover { background: #fff; color: var(--black); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--black); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 999; background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: var(--black); border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 20px; }
.logo img { height: 56px; width: auto; }
.main-nav { flex-shrink: 1; min-width: 0; }
.main-nav ul { display: flex; gap: 22px; }
.main-nav li { flex-shrink: 0; }
.main-nav a {
  display: inline-block; white-space: nowrap;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .5px; text-transform: uppercase;
  color: #d8d8d8; padding: 8px 0; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold-gradient); transform: scaleX(0); transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }

/* Mega menu */
.mega-caret { margin-left: 5px; vertical-align: middle; transition: transform .2s ease; color: currentColor; opacity: .7; }
.has-mega.open .mega-caret, .has-mega:focus-within .mega-caret { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
  width: min(1260px, 94vw);
  max-height: calc(100vh - 100px); overflow-x: hidden; overflow-y: auto;
  background: var(--black); border: 1px solid rgba(255,255,255,.08); border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  z-index: 500;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.mega-menu::-webkit-scrollbar { width: 8px; }
.mega-menu::-webkit-scrollbar-track { background: transparent; }
.mega-menu::-webkit-scrollbar-thumb { background: rgba(201,151,31,.4); border-radius: 8px; }
.mega-menu::-webkit-scrollbar-thumb:hover { background: rgba(201,151,31,.6); }
.has-mega.open .mega-menu, .has-mega:focus-within .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}

/* ===== Services (original design) ===== */
.mega-menu-inner { display: flex; padding: 18px 22px; }
.mega-menu-grid { display: flex; gap: 24px; flex: 1; min-width: 0; }
.mega-menu-col { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.mega-menu-col + .mega-menu-col { border-left: 1px solid rgba(255,255,255,.08); padding-left: 24px; }
.mega-cat-mini { display: block; margin-top: auto; padding-top: 16px; }
.mega-cat-mini-media {
  position: relative; display: block; height: 78px; border-radius: 8px;
  background-size: cover; background-position: center;
}
.mega-cat-mini-arrow {
  position: absolute; right: 8px; bottom: -12px; width: 27px; height: 27px; border-radius: 50%;
  background: var(--gold-gradient); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35); transition: transform .2s ease;
}
.mega-cat-mini-arrow svg { width: 13px; height: 13px; }
.mega-cat-mini:hover .mega-cat-mini-arrow { transform: translateX(3px); }
.mega-cat-mini-title {
  display: block; margin-top: 10px; color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 13.5px; line-height: 1.25; white-space: normal;
}
.main-nav .mega-menu-item {
  display: flex; align-items: flex-start; gap: 10px; padding: 6px 8px; border-radius: 8px;
  min-width: 0;
  color: #d8d8d8; transition: background .15s ease; text-transform: none;
  font-size: 14px; letter-spacing: normal;
}
.main-nav .mega-menu-item:hover { background: rgba(255,255,255,.05); }
.main-nav .mega-menu-item::after { display: none; }
.mega-menu-icon {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,151,31,.4);
  display: flex; align-items: center; justify-content: center;
}
.mega-menu-icon svg { width: 14px; height: 14px; stroke: var(--gold-light); fill: none; stroke-width: 1.7; }
.mega-menu-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.mega-menu-label {
  display: block; white-space: normal;
  font-family: var(--font-head); font-weight: 500; font-size: 13.5px; line-height: 1.3; color: #fff;
  position: relative; padding-bottom: 5px;
}
.mega-menu-label::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 16px; height: 2px; background: var(--gold-gradient);
}
.mega-menu-desc {
  display: block; white-space: normal; font-size: 11.5px; line-height: 1.45; color: #8f8f8f;
}
.mega-menu-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 9px 18px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02);
}
.mega-menu-cta { display: flex; align-items: center; gap: 10px; }
.mega-menu-cta-icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,151,31,.12); display: flex; align-items: center; justify-content: center;
}
.mega-menu-cta-icon svg { width: 14px; height: 14px; stroke: var(--gold-light); fill: none; stroke-width: 1.6; }
.mega-menu-cta strong { display: block; color: #fff; font-family: var(--font-head); font-size: 13px; font-weight: 500; }
.mega-menu-cta > div span { display: block; color: #8f8f8f; font-size: 12px; margin-top: 1px; }
.main-nav .mega-menu-viewall {
  display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0;
  border: 1.5px solid rgba(201,151,31,.5); border-radius: 999px; padding: 5px 5px 5px 18px;
  color: #fff; font-family: var(--font-head); font-size: 12px; letter-spacing: .5px; text-transform: uppercase;
  white-space: nowrap; transition: border-color .2s ease;
}
.main-nav .mega-menu-viewall:hover { border-color: rgba(201,151,31,.9); }
.mega-menu-viewall-arrow {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold-gradient); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: transform .2s ease;
}
.mega-menu-viewall:hover .mega-menu-viewall-arrow { transform: translateX(3px); }
@media (max-width: 900px) {
  .mega-menu { display: none; }
}

.header-cta { display: flex; gap: 10px; }
.header-cta .btn { padding: 9px 20px; font-size: 12px; border-width: 1.5px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25); z-index: 998; animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0); }
}

/* Hero */
.hero {
  position: relative; color: #fff; background: var(--black);
  margin-top: -81px; padding: 137px 0 64px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero-dubai-burj4.jpg');
  background-size: cover; background-position: center -10px;
  transform: scale(1.025); transition: transform .4s ease-out;
  will-change: transform;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.97) 0%, rgba(10,10,10,.88) 28%, rgba(10,10,10,.5) 62%, rgba(10,10,10,.72) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.12) 0, rgba(0,0,0,.12) 30px, #000 130px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.12) 0, rgba(0,0,0,.12) 30px, #000 130px);
}
.hero-ring {
  position: absolute; top: 50%; right: calc(28% - 200px); transform: translateY(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  z-index: 0; pointer-events: none; transition: transform .3s ease-out;
}
.hero-ring-svg { width: 100%; height: 100%; display: block; animation: hero-ring-spin 36s linear infinite; }
@keyframes hero-ring-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero-ring-svg { animation: none; }
}
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-particles span {
  position: absolute; bottom: -10px; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-light); opacity: 0; box-shadow: 0 0 6px rgba(224,182,76,.8);
  animation: hero-particle-float linear infinite;
}
.hero-particles span:nth-child(1) { left: 12%; animation-delay: 0s; animation-duration: 9s; }
.hero-particles span:nth-child(2) { left: 27%; animation-delay: 2.2s; animation-duration: 11s; }
.hero-particles span:nth-child(3) { left: 45%; animation-delay: 4.1s; animation-duration: 8.5s; }
.hero-particles span:nth-child(4) { left: 63%; animation-delay: 1.1s; animation-duration: 10.5s; }
.hero-particles span:nth-child(5) { left: 78%; animation-delay: 3.4s; animation-duration: 9.5s; }
.hero-particles span:nth-child(6) { left: 90%; animation-delay: 5.5s; animation-duration: 12s; }
@keyframes hero-particle-float {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: .8; }
  85% { opacity: .25; }
  100% { transform: translateY(-460px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-particles span { animation: none; opacity: 0; }
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-block; font-family: var(--font-head); letter-spacing: 3px; font-size: 13px;
  color: var(--gold-light); border: 1px solid rgba(224,182,76,.5); padding: 6px 16px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(30px, 4vw, 48px); color: #fff; margin-bottom: 16px; }
.hero h1 span { color: var(--gold-light); }
.hero p.lead { font-size: 18px; color: #dcdcdc; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.hero-actions .btn { padding: 12px 24px; font-size: 12.5px; }
.hero-actions .btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.hero-stats { display: flex; gap: 36px; margin-top: 32px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 12px; }
.hero-stat-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(201,151,31,.5); display: flex; align-items: center; justify-content: center;
}
.hero-stat-icon svg { width: 17px; height: 17px; stroke: var(--gold-light); fill: none; stroke-width: 1.6; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 22px; color: var(--gold-light); line-height: 1.1; }
.hero-stat span { font-size: 12px; color: #b0b0b0; text-transform: uppercase; letter-spacing: 1px; }

/* Hero services preview */
.hero-preview-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1;
}
.hero-preview-card {
  display: flex; flex-direction: column; gap: 12px; padding: 18px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(201,151,31,.2); border-radius: 14px;
  color: #d8d8d8; transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.hero-preview-card:hover { background: rgba(255,255,255,.06); border-color: rgba(201,151,31,.55); transform: translateY(-3px); }
.hero-preview-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(201,151,31,.5);
  display: flex; align-items: center; justify-content: center;
}
.hero-preview-icon svg { width: 17px; height: 17px; stroke: var(--gold-light); fill: none; stroke-width: 1.6; }
.hero-preview-text { display: flex; flex-direction: column; gap: 4px; }
.hero-preview-text strong { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: #fff; }
.hero-preview-text span { font-size: 12.5px; line-height: 1.5; color: #9a9a9a; }
@media (max-width: 1100px) {
  .hero-preview-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hero-preview-grid { grid-template-columns: 1fr; }
}

/* Ticker marquee */
.ticker-section { background: var(--black); padding: 200px 0; overflow: hidden; position: relative; }
.ticker-band { overflow: hidden; background: #1a1a1a; padding: 16px 0; margin: 42px 0; width: 100%; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.ticker-band.rotate-a { transform: rotate(6deg); z-index: 1; }
.ticker-band.rotate-b { transform: rotate(-6deg); z-index: 3; }
.ticker-track {
  display: flex; align-items: center; width: max-content; gap: 48px;
  animation: ticker-scroll 26s linear infinite;
}
.ticker-band:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 48px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: -0.01em;
  font-size: clamp(22px, 3.4vw, 42px); color: #fff; white-space: nowrap;
}
.ticker-item .sep { color: var(--gold-light); }
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
.ticker-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 480px; height: 480px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid rgba(201,151,31,.6);
  box-shadow: 0 0 0 10px var(--black), 0 30px 70px rgba(0,0,0,.55);
  z-index: 2;
}
.ticker-badge {
  position: absolute; right: 7%; bottom: 10%;
  width: 56px; height: 56px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.5); z-index: 6; transition: transform .2s ease;
}
.ticker-badge svg { width: 22px; height: 22px; stroke: var(--black); fill: none; stroke-width: 1.8; }
.ticker-badge:hover { transform: scale(1.08); }
@media (max-width: 900px) {
  .ticker-section { padding: 190px 0; }
  .ticker-band { margin: 30px 0; }
  .ticker-circle { width: 400px; height: 400px; }
}
@media (max-width: 640px) {
  .ticker-section { padding: 140px 0; }
  .ticker-band { margin: 22px 0; }
  .ticker-band.rotate-a { transform: rotate(4deg); }
  .ticker-band.rotate-b { transform: rotate(-4deg); }
  .ticker-circle { width: 260px; height: 260px; border-width: 2px; box-shadow: 0 0 0 6px var(--black), 0 20px 50px rgba(0,0,0,.55); }
  .ticker-badge { width: 42px; height: 42px; right: 4%; }
  .ticker-badge svg { width: 18px; height: 18px; }
}

/* Who We Are — creative section */
.who-we-are-creative { background: var(--black); padding: 100px 0; text-align: center; }
.who-we-are-creative .eyebrow { color: var(--gold-light); }
.wwa-heading {
  color: #fff; max-width: 780px; margin: 0 auto 50px;
  font-size: clamp(28px, 4vw, 46px);
}
.lead-copy {
  color: #999999; font-size: clamp(15px, 1.7vw, 19px); line-height: 1.8;
  max-width: 980px; margin: 0 auto 34px; text-align: left;
}
.hl {
  display: inline-block; background: #242424; color: #fff; font-weight: 600;
  padding: 3px 10px; border-radius: 6px; margin: 3px 0;
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s ease, transform .5s ease;
}
.hl.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .hl { opacity: 1; transform: none; transition: none; }
}

/* Page header (inner pages) */
.page-hero {
  position: relative; background: var(--black);
  color: #fff; margin-top: -81px; padding: 171px 0 60px; text-align: left; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.8) 35%, rgba(10,10,10,.6) 100%),
    url('../images/hero-dubai.jpg');
  background-size: cover; background-position: center right;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 12% 20%, rgba(201,151,31,.22), transparent 40%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.breadcrumb { font-size: 13px; color: var(--gold-light); letter-spacing: 1px; text-transform: uppercase; }
.breadcrumb a { color: #d4d4d4; }
.breadcrumb a:hover { color: #fff; }

/* Contact hero — creative "Let's talk!" treatment */
.ct-hero {
  position: relative; background: var(--black); color: #fff;
  margin-top: -81px; padding: 155px 0 50px; overflow: hidden;
}
.ct-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 82% 25%, rgba(201,151,31,.16), transparent 55%);
}
.ct-hero .container { position: relative; z-index: 1; }
.ct-hero .breadcrumb { margin-bottom: 16px; display: block; }
.ct-hero-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ct-heading {
  position: relative; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(52px, 8.6vw, 118px); line-height: .96; color: #fff; margin: 0;
}
.ct-heading::before {
  content: attr(data-text); position: absolute; top: -0.12em; left: 0.07em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.2); z-index: -1;
  white-space: nowrap; pointer-events: none;
}
.ct-badge {
  position: relative; width: 200px; height: 200px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ct-badge-ring { width: 100%; height: 100%; animation: ct-spin 20s linear infinite; }
.ct-badge-ring text {
  font-family: var(--font-head); font-size: 12px; letter-spacing: 2px; font-weight: 600;
  fill: var(--gold-light); text-transform: uppercase;
}
.ct-badge-icon {
  position: absolute; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,151,31,.12); border: 1.5px solid rgba(201,151,31,.55);
  display: flex; align-items: center; justify-content: center;
}
.ct-badge-icon svg { width: 26px; height: 26px; stroke: var(--gold-light); fill: none; stroke-width: 1.6; }
@keyframes ct-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ct-badge-ring { animation: none; } }
@media (max-width: 640px) {
  .ct-hero { padding: 130px 0 40px; }
  .ct-hero-row { justify-content: center; text-align: center; }
  .ct-badge { width: 150px; height: 150px; }
  .ct-badge-icon { width: 48px; height: 48px; }
  .ct-badge-icon svg { width: 20px; height: 20px; }
}

/* Sections — black theme is the site-wide default */
.section, .section-tight { padding: 90px 0; background: var(--black); color: #e0e0e0; }
.section-tight { padding: 60px 0; }
.section h2, .section h3, .section h4,
.section-alt h2, .section-alt h3, .section-alt h4,
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: 13px; letter-spacing: 3px;
  color: var(--gold-light); margin-bottom: 12px; text-transform: uppercase;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { color: #b0b0b0; font-size: 17px; }

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

/* Cards */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.icon-badge {
  width: 56px; height: 56px; border-radius: 14px; background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  color: #0a0a0a;
}
.icon-badge svg { width: 26px; height: 26px; stroke: #0a0a0a; fill: none; stroke-width: 1.8; }
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; margin-bottom: 0; }

/* Way we work steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step { position: relative; padding: 30px 22px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); text-align: center; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold-gradient); color: #0a0a0a;
  font-family: var(--font-head); font-size: 18px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }
.step-connector { display: none; }

/* Way We Work — connected timeline */
.text-gold { color: var(--gold-light); }
.eyebrow-lined { display: inline-flex; align-items: center; gap: 14px; }
.eyebrow-lined::before, .eyebrow-lined::after { content: ""; width: 30px; height: 1px; background: rgba(224,182,76,.4); }

.wow-creative { position: relative; overflow: hidden; }
.wow-particles {
  position: absolute; right: -6%; bottom: -12%; width: 480px; height: 380px;
  background-image: radial-gradient(circle, var(--gold-light) 1.2px, transparent 1.6px);
  background-size: 16px 16px;
  transform: rotate(-32deg);
  -webkit-mask-image: linear-gradient(135deg, transparent 22%, black 62%, black 100%);
  mask-image: linear-gradient(135deg, transparent 22%, black 62%, black 100%);
  opacity: .55; pointer-events: none;
}

.wow-path { position: relative; margin-top: 60px; }
.wow-path::before {
  content: ""; position: absolute; left: 50%; top: 6px; bottom: 6px; width: 2px; transform: translateX(-50%);
  background: repeating-linear-gradient(var(--gold-light) 0 8px, transparent 8px 18px);
  filter: drop-shadow(0 0 6px rgba(201,151,31,.45));
  z-index: 0;
}
.wow-row {
  display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center;
  gap: 0 32px; margin-bottom: 64px; position: relative; z-index: 1;
}
.wow-row:last-child { margin-bottom: 0; }
.wow-row-node {
  grid-column: 2; grid-row: 1; width: 18px; height: 18px; border-radius: 50%; background: var(--gold-gradient);
  justify-self: center;
  box-shadow: 0 0 0 8px var(--black), 0 0 0 11px rgba(201,151,31,.3), 0 0 26px rgba(201,151,31,.7);
}
.wow-row-text {
  grid-row: 1;
  background: rgba(255,255,255,.03); border: 1px solid rgba(201,151,31,.25); border-radius: var(--radius);
  padding: 26px 30px 28px; transition: border-color .25s ease, transform .25s ease;
  position: relative;
}
.wow-row-text:hover { border-color: rgba(201,151,31,.55); transform: translateY(-3px); }
.wow-row-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 1.5px;
  color: var(--gold-light); text-transform: uppercase;
}
.wow-row-badge::before { content: ""; width: 22px; height: 1px; background: var(--gold-gradient); flex-shrink: 0; }
.wow-row-left .wow-row-badge { flex-direction: row-reverse; }
.wow-row-text h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.wow-row-text p { color: #9a9a9a; font-size: 13.5px; margin-bottom: 0; }
.wow-row-visual {
  width: 108px; height: 108px; border-radius: 50%; flex-shrink: 0; position: relative;
  border: 1.5px solid rgba(201,151,31,.5);
  background: radial-gradient(circle at 50% 38%, rgba(201,151,31,.14), rgba(255,255,255,.02) 72%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(201,151,31,.06), 0 14px 32px rgba(0,0,0,.45);
  transition: transform .3s ease, border-color .3s ease;
}
.wow-row-visual::before {
  content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1px dashed rgba(201,151,31,.28);
}
.wow-row:hover .wow-row-visual { transform: scale(1.06); border-color: rgba(201,151,31,.85); }
.wow-row-visual svg { width: 38px; height: 38px; stroke: var(--gold-light); fill: none; stroke-width: 1.4; }
.wow-row-left { grid-template-columns: 1fr 60px 1fr; }
.wow-row-left .wow-row-text { grid-column: 1; text-align: right; }
.wow-row-left .wow-row-visual { grid-column: 3; justify-self: start; }
.wow-row-right .wow-row-text { grid-column: 3; text-align: left; }
.wow-row-right .wow-row-visual { grid-column: 1; justify-self: end; }

.wow-footer-bar {
  margin-top: 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 22px 30px;
}
.wow-footer-left { display: flex; align-items: center; gap: 16px; }
.wow-footer-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(201,151,31,.5); display: flex; align-items: center; justify-content: center;
}
.wow-footer-icon svg { width: 20px; height: 20px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.wow-footer-left strong { display: block; color: #fff; font-family: var(--font-head); font-size: 16px; font-weight: 500; }
.wow-footer-left span { display: block; color: #9a9a9a; font-size: 13px; margin-top: 2px; }
.wow-footer-cta {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(201,151,31,.4); padding: 13px 24px; border-radius: 999px;
  transition: background .2s ease, gap .2s ease;
}
.wow-footer-cta:hover { background: rgba(201,151,31,.12); gap: 14px; }

@media (max-width: 760px) {
  .wow-path::before { left: 26px; }
  .wow-row, .wow-row-left, .wow-row-right {
    grid-template-columns: 52px 1fr; gap: 16px 20px; margin-bottom: 40px;
  }
  .wow-row-node { grid-column: 1; grid-row: 1; justify-self: start; margin-left: 19px; }
  .wow-row-left .wow-row-text, .wow-row-right .wow-row-text { grid-column: 2; grid-row: 1; text-align: left; }
  .wow-row-left .wow-row-visual, .wow-row-right .wow-row-visual {
    grid-column: 2; grid-row: 2; justify-self: start; width: 80px; height: 80px; margin-top: 12px;
  }
  .wow-row-visual svg { width: 30px; height: 30px; }
  .wow-footer-bar { justify-content: center; text-align: center; }
  .wow-footer-left { flex-direction: column; text-align: center; }
}

/* What We Do — numbered cards */
.wwd-creative { position: relative; overflow: hidden; }
.wwd-particles {
  right: auto; left: -6%; bottom: -12%;
  transform: rotate(32deg);
  -webkit-mask-image: linear-gradient(225deg, transparent 22%, black 62%, black 100%);
  mask-image: linear-gradient(225deg, transparent 22%, black 62%, black 100%);
}
.wwd-card {
  position: relative; background: rgba(255,255,255,.03); border: 1px solid rgba(201,151,31,.25);
  border-radius: var(--radius); padding: 28px 24px; transition: transform .25s ease, border-color .25s ease;
}
.wwd-card:hover { transform: translateY(-6px); border-color: rgba(201,151,31,.55); }
.wwd-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.wwd-num { font-family: var(--font-head); font-size: 30px; font-weight: 600; color: var(--gold-light); line-height: 1; }
.wwd-icon {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(201,151,31,.5); display: flex; align-items: center; justify-content: center;
}
.wwd-icon svg { width: 22px; height: 22px; stroke: var(--gold-light); fill: none; stroke-width: 1.6; }
.wwd-card h3 { color: #fff; font-size: 17px; margin-bottom: 12px; position: relative; padding-bottom: 10px; }
.wwd-card h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--gold-gradient); }
.wwd-card p { color: #9a9a9a; font-size: 13.5px; margin-bottom: 0; }
.wwd-cta-wrap { margin-top: 44px; }
.wwd-cta {
  display: inline-flex; align-items: center; gap: 16px;
  border: 1.5px solid rgba(201,151,31,.5); border-radius: 999px; padding: 8px 8px 8px 28px;
  font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: #fff;
  transition: border-color .2s ease;
}
.wwd-cta:hover { border-color: rgba(201,151,31,.9); }
.wwd-cta-arrow {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gold-gradient); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: transform .2s ease;
}
.wwd-cta:hover .wwd-cta-arrow { transform: translateX(3px); }

/* Countries */
.country-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.country-chip {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); padding: 10px 18px; border-radius: 999px;
  font-family: var(--font-head); font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: #fff;
}

/* Portfolio */
.portfolio-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); padding: 9px 20px; border-radius: 999px;
  font-family: var(--font-head); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; color: #fff;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold-gradient); border-color: transparent; color: #0a0a0a; }
.portfolio-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: #fff; position: relative;
}
.portfolio-card-media {
  height: 140px; background: var(--gold-gradient); display: flex; align-items: center; justify-content: center;
  color: rgba(10,10,10,.75); font-family: var(--font-head); font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
}
.portfolio-card-body { padding: 22px; }
.portfolio-tag {
  display: inline-block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-dark); font-family: var(--font-head); margin-bottom: 8px;
}
.portfolio-card h3 { font-size: 16px; margin-bottom: 4px; }
.portfolio-card .client { font-size: 13px; color: var(--text-muted); }

/* Clients marquee */
.clients-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.client-pill {
  padding: 12px 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-family: var(--font-head);
  font-size: 14px; letter-spacing: .5px; color: #fff; background: rgba(255,255,255,.06);
}

/* Testimonials */
.testimonial-wrap { max-width: 780px; margin: 0 auto; position: relative; }
.testimonial-slide { display: none; text-align: center; }
.testimonial-slide.active { display: block; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }
.testimonial-quote { font-size: 20px; font-style: italic; color: #f2f2f2; margin-bottom: 22px; }
.testimonial-author { font-family: var(--font-head); color: var(--gold-light); letter-spacing: .5px; }
.testimonial-role { font-size: 13px; color: #9a9a9a; }
.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; cursor: pointer; }
.testimonial-dot.active { background: var(--gold-light); }

/* CTA banner */
.cta-banner { background: var(--gold-gradient); color: #0a0a0a; padding: 50px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { color: #0a0a0a; font-size: clamp(22px, 3vw, 30px); margin-bottom: 6px; }
.cta-banner p { margin-bottom: 0; color: #2b2b2b; }
.cta-banner .btn-gold { background: #0a0a0a; color: #fff; }
.cta-banner .btn-gold:hover { background: #000; }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-family: var(--font-head); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.form-input-wrap { position: relative; }
.form-input-icon {
  position: absolute; left: 15px; top: 15px; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  pointer-events: none; transition: color .2s ease;
}
.form-input-icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.form-input-wrap-textarea .form-input-icon { top: 16px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-body);
  font-size: 15px; background: #fafafa; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-input-wrap input, .form-input-wrap textarea { padding-left: 44px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(201,151,31,.13);
}
.form-input-wrap:focus-within .form-input-icon { color: var(--gold); }
.form-group input.field-invalid, .form-group textarea.field-invalid {
  border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,.1);
}
.form-field-error { display: block; font-size: 12.5px; color: #c0392b; margin-top: 6px; }
.form-group.file-group input { padding: 10px; }
.form-hint { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
#contactSubmitBtn, #registerSubmitBtn { position: relative; }
.btn.is-loading .btn-label { visibility: hidden; }
.btn.is-loading::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px;
  border: 2.5px solid rgba(10,10,10,.25); border-top-color: #0a0a0a; border-radius: 50%;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
.alert { padding: 16px 20px; border-radius: 8px; margin-bottom: 24px; font-size: 15px; }
.alert-success { background: #eaf6ea; color: #266a26; border: 1px solid #b9e0b9; }
.alert-error { background: #fbeaea; color: #9a2b2b; border: 1px solid #f0bcbc; }

/* Contact info card */
.info-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); color: #e0e0e0; border-radius: var(--radius); padding: 40px; }
.info-card h3 { color: #fff; }
.info-list li { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-list .ico { color: var(--gold-light); font-size: 18px; }
.info-list a { color: #e0e0e0; }
.info-list a:hover { color: var(--gold-light); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 24px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--black); color: #d4d4d4; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 50px; margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: #9a9a9a; }
.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-family: var(--font-head);
}
.footer-social a:hover { background: var(--gold-gradient); color: #0a0a0a; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { color: #9a9a9a; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: block; }
.footer-countries { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 13px; }
.footer-countries .container { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-countries > .container > span:first-child { font-family: var(--font-head); letter-spacing: 1px; color: var(--gold-light); margin-right: 6px; }
.footer-countries .country-chip { padding: 6px 14px; font-size: 12px; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: #d4d4d4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 13px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
#backToTop { background: none; border: 1px solid rgba(255,255,255,.2); color: #d4d4d4; padding: 8px 16px; border-radius: 999px; cursor: pointer; font-family: var(--font-head); font-size: 12px; letter-spacing: 1px; }
#backToTop:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-cta .btn-ghost { display: none; }
  .main-nav ul { gap: 16px; }
  .main-nav a { font-size: 12px; }
}
@media (max-width: 900px) {
  .main-nav { position: fixed; top: 0; right: -100%; width: 78%; max-width: 340px; height: 100vh;
    background: var(--black); box-shadow: -10px 0 40px rgba(0,0,0,.45); transition: right .3s ease; padding: 100px 30px 30px; }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ring { display: none; }
  .hero-bg { background-position: center 30%; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .hero { padding: 80px 0 90px; }
  .section { padding: 60px 0; }
}
@media (max-width: 520px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .form-card, .info-card { padding: 26px; }
}

/* ===== Launch popup ===== */
.launch-popup {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
}
.launch-popup.open { opacity: 1; visibility: visible; }
.launch-popup-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(6px); }
.launch-popup-card {
  position: relative; z-index: 1; width: 100%; max-width: 540px; overflow: hidden;
  background: #0d0d0d; border: 1px solid rgba(201,151,31,.25); border-radius: 20px;
  padding: 46px 40px 38px; text-align: center;
  transform: scale(.92) translateY(14px); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
}
.launch-popup.open .launch-popup-card { transform: scale(1) translateY(0); opacity: 1; }
.launch-popup-glow {
  position: absolute; top: 50%; left: 50%; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,31,.35), transparent 70%); filter: blur(20px);
  transform: translate(-50%, -50%); transition: left .2s ease-out, top .2s ease-out;
  pointer-events: none; z-index: 0;
}
.launch-popup-card > * { position: relative; z-index: 1; }
.launch-popup-close {
  position: absolute; top: 16px; right: 16px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.03);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.launch-popup-close:hover { border-color: rgba(201,151,31,.5); background: rgba(255,255,255,.08); }
.launch-popup-close svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 1.8; }
.launch-popup-heading { color: #fff; font-size: clamp(22px, 3vw, 28px); line-height: 1.25; margin-bottom: 14px; }
.launch-popup-desc { color: #b0b0b0; font-size: 15px; line-height: 1.7; margin-bottom: 30px; }
.launch-popup-stats { display: flex; justify-content: center; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.launch-popup-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.launch-popup-stat-icon {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(201,151,31,.5);
  display: flex; align-items: center; justify-content: center;
}
.launch-popup-stat-icon svg { width: 17px; height: 17px; stroke: var(--gold-light); fill: none; stroke-width: 1.6; }
.launch-popup-stat b { display: block; font-family: var(--font-head); font-size: 22px; color: var(--gold-light); line-height: 1.1; }
.launch-popup-stat span { font-size: 11.5px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 520px) {
  .launch-popup-card { padding: 38px 24px 30px; }
  .launch-popup-stats { gap: 18px; }
}
