/* ============================================================
   BRANDMMERCE — MAIN STYLESHEET  (Premium v4)
   Dark luxury gold design system
   ============================================================ */

:root {
  --dark:        #080808;
  --dark-2:      #111111;
  --dark-3:      #1a1a1a;
  --dark-4:      #222222;
  --gold:        #c79329;
  --gold-light:  #e0a93a;
  --gold-dark:   #a07820;
  --gold-border: rgba(199,147,41,0.25);
  --gold-muted:  rgba(199,147,41,0.10);
  --white:       #ffffff;
  --gray:        #888888;
  --gray-light:  #b0b0b0;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --nav-h:       80px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --transition:  0.3s ease;
  --shadow-gold: 0 8px 40px rgba(199,147,41,0.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* { min-width: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--gray-light); line-height: 1.8; }

.gold       { color: var(--gold); }
.text-center{ text-align: center; }
.text-white { color: var(--white) !important; }

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section    { padding: 120px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 150px 0; }
section, .section { overflow-x: hidden; max-width: 100vw; }

/* ── Section labels / titles ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.section-desc  { font-size: 1.05rem; color: var(--gray); max-width: 580px; line-height: 1.8; }

/* ── Gold divider ── */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 20px 0;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ── Text overflow prevention ── */
.card, .market-card, .office-card, .blog-card,
.banner-card, .service-item, .industry-item,
.market-detail-card, .tilt-card {
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.card *, .market-card *, .office-card *,
.blog-card *, .service-item *, .industry-item * {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #c79329, #e0a93a);
  color: #080808;
  box-shadow: 0 4px 20px rgba(199,147,41,0.2);
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 200%; }
.btn-gold:hover {
  color: #080808;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199,147,41,0.4);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(199,147,41,0.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(199,147,41,0.05);
}
.btn-dark {
  background: var(--dark-2);
  border: 1.5px solid var(--dark-3);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.72rem; }
.btn-lg { padding: 18px 28px; font-size: 0.88rem; }
.btn-xl { padding: 20px 56px; font-size: 0.92rem; border-radius: var(--radius-md); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199,147,41,0.15);
  height: 68px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-logo .site-logo-img  { height: 44px; width: auto; object-fit: contain; transition: height 0.3s ease; }
.nav-logo .site-logo-text { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--gold); letter-spacing: -0.03em; }
.logo-sm .site-logo-img   { height: 32px; }
.logo-md .site-logo-img   { height: 44px; }
.logo-lg .site-logo-img   { height: 58px; }
.logo-xl .site-logo-img   { height: 72px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10002;
  padding: 8px;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
  background: var(--white);
}
.hamburger span:nth-child(1) { width: 26px; height: 2px; }
.hamburger span:nth-child(2) { width: 18px; height: 2px; margin-left: auto; }
.hamburger span:nth-child(3) { width: 26px; height: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ══════════════════════════════════════════
   MOBILE MENU — Full-Screen Slide-Up
   CRITICAL: mob-nav uses display:block so
   items CANNOT flow horizontally
══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: #080808;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}
.mob-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 24px 40px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(199,147,41,0.2);
  flex-shrink: 0;
}
.mob-logo-link { display: flex; align-items: center; text-decoration: none; }
.mob-close-btn {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(199,147,41,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  background: transparent; cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.mob-close-btn:hover { background: rgba(199,147,41,0.12); transform: rotate(90deg); }

/* CRITICAL: display:block prevents horizontal flow */
.mob-nav {
  display: block;
  width: 100%;
  padding: 8px 0;
  flex: 1;
}

/* Each link = full block row */
.mob-link {
  display: block !important;
  width: 100% !important;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: color var(--transition);
  box-sizing: border-box;
}
.mob-link:hover, .mob-link.active { color: var(--gold); }

/* Flex INSIDE the link (number + text + arrow) */
.mob-link-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: padding-left var(--transition);
}
.mob-link:hover .mob-link-inner { padding-left: 8px; }

.mob-num {
  font-family: var(--font-head);
  font-size: 0.6rem; font-weight: 700;
  color: var(--gold); opacity: 0.75;
  min-width: 24px; flex-shrink: 0;
  letter-spacing: 0.08em;
}
.mob-text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  flex: 1; line-height: 1.1;
}
.mob-arrow {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.mob-link:hover .mob-arrow { opacity: 1; transform: translateX(0); }

.mob-footer {
  padding: 24px 0 0;
  border-top: 1px solid rgba(199,147,41,0.15);
  flex-shrink: 0;
}
.mob-socials { display: flex; gap: 10px; margin-top: 16px; }
.mob-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(199,147,41,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}
.mob-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(199,147,41,0.08); }
.mob-accent-line { display: none; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#three-canvas {
  position: absolute;
  inset: 0; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.5) 55%, rgba(8,8,8,0.8) 100%);
  z-index: 1;
}
/* Hero — centred layout (beats admin panel overrides) */
#hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center !important;
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
/* Force every child to centre */
#hero .hero-title    { text-align: center !important; }
#hero .hero-subtitle { text-align: center !important; margin-left: auto !important; margin-right: auto !important; max-width: 640px; }
#hero .hero-tag      { margin-left: auto !important; margin-right: auto !important; display: inline-flex !important; }

/* Buttons — equal size, centred row */
#hero .hero-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#hero .hero-actions .btn {
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
  justify-content: center !important;
  text-align: center !important;
  flex-shrink: 0 !important;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(199,147,41,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseGold 1.5s infinite;
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.2s ease both;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeInUp 1s 0.4s ease both;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.6s ease both;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  animation: fadeInUp 1s 0.8s ease both;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  justify-content: center;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 6px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 1.2s ease both;
}
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); }
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--gold-border);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 3px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: float 1.6s ease-in-out infinite;
}

/* ── Marquee ── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
  padding: 16px 0;
  background: var(--dark-2);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 34s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.marquee-item .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all 0.4s ease;
  overflow: hidden;
  word-wrap: break-word;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(199,147,41,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after  { opacity: 1; }

.card-icon {
  width: 54px; height: 54px;
  background: rgba(199,147,41,0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold); font-size: 1.3rem;
  transition: all var(--transition);
}
.card:hover .card-icon { background: var(--gold); color: var(--dark); }
.card-title { font-size: 1.1rem; margin-bottom: 12px; color: var(--white); }
.card-desc  { font-size: 0.9rem; color: var(--gray); line-height: 1.75; }

/* ── Tilt card ── */
.tilt-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.tilt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(199,147,41,0.25);
  border-color: var(--gold-border);
}

/* ── Pillars grid ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Stats band ── */
.stats-band {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
  padding: 70px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 24px 48px;
  border-right: 1px solid var(--dark-3);
  text-align: center;
  transition: background var(--transition);
  cursor: default;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3.2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.stat-item:hover .stat-number { color: var(--gold-light); }
.stat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.12em; }

/* ── Markets ── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.markets-grid .market-card:nth-child(-n+3) { grid-column: span 2; }
.markets-grid .market-card:nth-child(4) { grid-column: 2 / span 2; }
.markets-grid .market-card:nth-child(5) { grid-column: 4 / span 2; }

.market-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.market-card:hover { transform: scale(1.02); box-shadow: 0 24px 48px rgba(0,0,0,0.5); }
.market-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.market-card:hover .market-bg { transform: scale(1.08); }
.market-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.3) 55%, transparent 100%); }
.market-content { position: relative; z-index: 2; padding: 36px; }
.market-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.market-title { font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
.market-desc { font-size: 0.88rem; color: var(--gray-light); margin-bottom: 18px; line-height: 1.65; }
.market-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Chips ── */
.chip {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(199,147,41,0.1); border: 1px solid rgba(199,147,41,0.3);
  border-radius: 100px; padding: 4px 12px;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  background: var(--dark-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.service-item {
  background: var(--dark);
  padding: 52px;
  transition: background var(--transition), border-left-color var(--transition), padding-left var(--transition);
  border-left: 3px solid transparent;
}
.service-item:hover {
  background: var(--dark-3);
  border-left-color: var(--gold);
  padding-left: 56px;
}
.service-num  { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; color: var(--dark-3); line-height: 1; margin-bottom: 16px; transition: color var(--transition); }
.service-item:hover .service-num { color: rgba(199,147,41,0.15); }
.service-name { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.service-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.75; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

/* Services page pillars grid */
.svc-pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--dark-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.industry-item {
  background: var(--dark);
  padding: 44px 28px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.industry-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition);
}
.industry-item:hover::after { transform: scaleX(1); }
.industry-item:hover { background: var(--dark-2); transform: translateY(-4px); }
.industry-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(199,147,41,0.1); border: 1px solid rgba(199,147,41,0.3);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: all var(--transition);
}
.industry-icon-wrap i { color: var(--gold); font-size: 1.4rem; }
.industry-item:hover .industry-icon-wrap { background: rgba(199,147,41,0.2); border-color: var(--gold); }
.industry-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.industry-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

/* ── Offices ── */
.offices-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.office-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 32px;
  background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.office-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.office-flag { font-size: 2.4rem; flex-shrink: 0; animation: float 6s ease-in-out infinite; }
.office-country { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.office-city { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.office-role { font-size: 0.85rem; color: var(--gray); }

/* ── Blog grid ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--dark-2); border: 1px solid var(--dark-3);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.blog-card:hover { border-color: var(--gold-border); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(199,147,41,0.2); }
.blog-thumb { width: 100%; height: 220px; object-fit: cover; background: var(--dark-3); }
.blog-thumb-placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, var(--dark-3), var(--dark-2)); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 2rem; }
.blog-body { padding: 28px; }
.blog-cat { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.4; transition: color var(--transition); }
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.65; margin-bottom: 18px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--gray); border-top: 1px solid var(--dark-3); padding-top: 16px; }
.blog-read-more { color: var(--gold); font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.blog-card:hover .blog-read-more { gap: 10px; }
.blog-read-more::after { content: '→'; }

/* ── Quote section ── */
.quote-section {
  padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.quote-section::before {
  content: '"';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  font-size: 22rem; font-family: var(--font-head);
  color: rgba(199,147,41,0.03); line-height: 1; pointer-events: none;
}
.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.3vw, 1.65rem);
  font-weight: 500; font-style: italic;
  color: var(--white); max-width: 900px;
  margin: 0 auto 32px; line-height: 1.55;
}
.quote-author { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
  padding: 120px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(199,147,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 20px; }
.cta-desc  { color: var(--gray); font-size: 1.05rem; margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Banner section ── */
.banner-section {
  position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: center;
  background-size: cover; background-position: center;
  padding: 80px 0;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.6) 100%);
}
.banners-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.banner-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  background-size: cover; background-position: center;
}
.banner-card:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.banner-card[style*="background-image"]::before { content:''; position:absolute;inset:0;background:linear-gradient(to top,rgba(5,5,5,0.96) 0%,rgba(5,5,5,0.5) 60%,rgba(5,5,5,0.2) 100%); }
.banner-card-inner { position: relative; z-index: 2; padding: 28px; }
.banner-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.banner-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.banner-sub   { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  padding-top: 160px; padding-bottom: 80px;
  border-bottom: 1px solid var(--dark-3);
  background: linear-gradient(180deg, #121212 0%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 15% 50%, rgba(199,147,41,0.06), transparent 70%);
  pointer-events: none; z-index: 0;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(199,147,41,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(199,147,41,0.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.hero-inner { position: relative; z-index: 2; }
.page-content { padding: 80px 0; }
.page-content h2 { font-size: 2rem; margin: 48px 0 18px; color: var(--white); }
.page-content h3 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--white); }
.page-content p  { margin-bottom: 20px; color: var(--gray-light); max-width: 740px; }
.page-content ul { padding-left: 0; margin-bottom: 20px; }
.page-content ul li { color: var(--gray-light); margin-bottom: 10px; padding-left: 20px; position: relative; }
.page-content ul li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; position: absolute; left: 0; top: 9px; }
.page-content img { border-radius: var(--radius-xl); margin: 32px 0; }

/* ── Market nav tabs ── */
.market-flag-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(199,147,41,0.1); border: 1px solid var(--gold-border); border-radius: 30px; padding: 8px 18px; font-size: 1.1rem; font-weight: 600; color: var(--gold); }
.market-flag-badge span { font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.market-detail-card { background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius-lg); padding: 32px; }
.market-nav-tab { padding: 20px 28px; font-weight: 600; font-size: 0.9rem; color: var(--gray); border-bottom: 3px solid transparent; white-space: nowrap; transition: all var(--transition); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.market-nav-tab:hover, .market-nav-tab.active { color: var(--gold) !important; border-bottom-color: var(--gold) !important; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-info-icon { width: 46px; height: 46px; background: rgba(199,147,41,0.1); border: 1px solid var(--gold-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--white); line-height: 1.6; }
.contact-form-card { background: var(--dark-2); border: 1px solid var(--dark-3); border-radius: var(--radius-xl); padding: 44px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm);
  padding: 14px 18px; font-family: var(--font-body); font-size: 0.9rem; color: var(--white); width: 100%;
  transition: all var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--dark-2);
  box-shadow: 0 0 0 3px rgba(199,147,41,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--dark-2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }
.map-embed { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--dark-3); margin-top: 48px; }
.map-embed iframe { width: 100%; height: 400px; display: block; filter: grayscale(100%) invert(92%) contrast(83%); }
.office-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.office-tab { padding: 8px 20px; border: 1px solid var(--dark-3); border-radius: 100px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); background: var(--dark-2); cursor: pointer; transition: all var(--transition); }
.office-tab:hover, .office-tab.active { border-color: var(--gold); color: var(--gold); background: rgba(199,147,41,0.08); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--dark-2); border-top: 1px solid var(--dark-3); padding: 90px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid var(--dark-3); margin-bottom: 36px; }
.footer-brand .site-logo-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--gold); display: block; margin-bottom: 16px; }
.footer-brand .site-logo-img  { height: 40px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border: 1px solid var(--dark-3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 0.9rem; transition: all var(--transition); }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(199,147,41,0.08); box-shadow: 0 0 12px rgba(199,147,41,0.3); transform: translateY(-2px); }
.footer-col h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--gray); transition: color var(--transition), padding-left var(--transition); padding-left: 0; }
.footer-col ul li a:hover { color: var(--white); padding-left: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: var(--gray); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: var(--gray); }
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   MISC UI
══════════════════════════════════════════ */
#back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--gold); color: var(--dark);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; cursor: pointer; z-index: 100;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--transition);
}
#back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-top:hover { background: var(--gold-light); transform: translateY(-4px); box-shadow: 0 0 20px rgba(199,147,41,0.5); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 60px; }
.page-btn { width: 44px; height: 44px; border: 1px solid var(--dark-3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 0.88rem; font-weight: 600; background: var(--dark-2); cursor: pointer; transition: all var(--transition); text-decoration: none; }
.page-btn:hover, .page-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(199,147,41,0.08); }

.toast { position: fixed; bottom: 80px; right: 32px; background: var(--dark-2); border: 1px solid var(--gold-border); border-radius: var(--radius-sm); padding: 16px 24px; color: var(--white); font-size: 0.88rem; z-index: 9999; animation: fadeInUp 0.3s ease; max-width: 320px; box-shadow: var(--shadow-gold); }
.toast.success { border-color: #22c55e; }
.toast.error   { border-color: #ef4444; }

/* ── World map / pins ── */
.world-pin {
  width: 14px; height: 14px;
  background: var(--gold); border-radius: 50%;
  position: relative; cursor: pointer;
  animation: pulseGold 2s infinite;
}
.world-pin-ring {
  position: absolute; inset: -6px;
  border-radius: 50%; border: 1px solid rgba(199,147,41,0.4);
  animation: pinRipple 2s ease-out infinite;
}
.world-pin-label {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  background: var(--dark-2); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); padding: 4px 10px;
  font-size: 0.68rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}

/* ── Dynamic text-align helpers (admin) ── */
.align-desktop-left   { text-align: left; }
.align-desktop-center { text-align: center; }
.align-desktop-right  { text-align: right; }
.align-desktop-center .hero-subtitle,
.align-desktop-center .section-desc { margin-left: auto; margin-right: auto; }
@media (max-width: 1024px) {
  .align-tablet-left   { text-align: left !important; }
  .align-tablet-center { text-align: center !important; }
  .align-tablet-right  { text-align: right !important; }
}
@media (max-width: 768px) {
  .align-mobile-left   { text-align: left !important; }
  .align-mobile-center { text-align: center !important; }
  .align-mobile-right  { text-align: right !important; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 1200px
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .container { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .markets-grid { grid-template-columns: 1fr 1fr !important; }
  .markets-grid .market-card { grid-column: span 1 !important; }
  .markets-grid .market-card:nth-child(5) { grid-column: 1 / span 2 !important; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .banners-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(3,1fr); }
}

/* ── 900px — Tablet ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .hero-content { padding-top: 20px; max-width: 100%; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.2rem) !important; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .offices-grid  { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: repeat(2,1fr) !important; }
  .svc-pillars-grid { grid-template-columns: repeat(2,1fr) !important; }
  .page-hero { padding-top: 110px; padding-bottom: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  [style*="gap:80px"], [style*="gap: 80px"] { grid-template-columns: 1fr !important; gap: 48px !important; }
  [style*="gap:48px"], [style*="gap: 48px"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ══════════════════════════════════════════
   MOBILE — 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }

  /* ── Non-carousel grids collapse ── */
  .services-grid,
  .banners-grid,
  .form-row,
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .footer-grid  { gap: 24px !important; }
  .stats-grid   { grid-template-columns: 1fr 1fr !important; }

  /* ── Hero ── */
  .hero-content { padding-top: 50px; }
  .hero-title   { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .hero-subtitle{ font-size: 0.9rem !important; max-width: 100% !important; }
  .hero-tag     { font-size: 0.6rem; padding: 5px 14px; }
  .hero-stats   { flex-direction: column; gap: 0; margin-top: 40px; padding-top: 28px; }
  .hero-stat-num{ font-size: 1.6rem; }
  .hero-scroll  { display: none; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── CTA ── */
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn { justify-content: center; }

  /* ── Stats bar ── */
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--dark-3); padding: 20px 0; }
  .stat-item:last-child { border-bottom: none; }

  /* ── Page hero ── */
  .page-hero { padding-top: 100px; padding-bottom: 40px; }

  /* ── Contact ── */
  .contact-form-card { padding: 24px 18px; }

  /* ── Service items ── */
  .service-item { padding: 28px 20px !important; }
  .service-num  { font-size: 2.2rem !important; }
  .service-item:hover { padding-left: 20px !important; }

  /* ── Footer bottom ── */
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* ── Misc ── */
  #back-top { bottom: 20px; right: 16px; }
  .custom-cursor, .cursor-follower { display: none; }

  /* ── Override ALL inline grid styles ── */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  [style*="gap:80px"], [style*="gap: 80px"] { gap: 32px !important; }
  [style*="gap:48px"], [style*="gap: 48px"] { gap: 28px !important; }

  /* ══════════════════════════════════════
     MOBILE CAROUSELS — horizontal scroll
     (markets, offices, pillars, blog, etc.)
  ══════════════════════════════════════ */
  .markets-grid,
  .offices-grid,
  .svc-pillars-grid,
  .pillars-grid,
  .blog-grid,
  .industries-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 14px !important;
    padding-bottom: 12px !important;
    grid-template-columns: unset !important;
  }
  .markets-grid::-webkit-scrollbar,
  .offices-grid::-webkit-scrollbar,
  .svc-pillars-grid::-webkit-scrollbar,
  .pillars-grid::-webkit-scrollbar,
  .blog-grid::-webkit-scrollbar,
  .industries-grid::-webkit-scrollbar { display: none !important; }

  .markets-grid > *,
  .offices-grid > *,
  .svc-pillars-grid > *,
  .pillars-grid > *,
  .blog-grid > *,
  .industries-grid > * {
    flex: 0 0 82vw !important;
    max-width: 82vw !important;
    min-width: 0 !important;
    width: 82vw !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }
  .markets-grid > .market-card { min-height: 320px !important; }

  /* Services stays single-column — NOT a carousel */
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow-x: hidden !important;
    flex-direction: unset !important;
    scroll-snap-type: unset !important;
  }
  .services-grid > * {
    flex: unset !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ── Carousel Dots ── */
.carousel-dots { display: none; }
@media (max-width: 768px) {
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 4px 0 8px;
  }
  .carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0; flex-shrink: 0;
  }
  .carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 24px; border-radius: 4px;
    box-shadow: 0 0 8px rgba(199,147,41,0.5);
  }
}

/* ── 480px — Small phones ── */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr !important; }
  .hero-title  { font-size: clamp(1.6rem, 8vw, 2rem) !important; }
  .mob-text    { font-size: 1.6rem; }
}

/* ============================================================
   SERVICES & OFFICES — Component styles
   ============================================================ */

/* ── Section header centred block ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── Two-column layout ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Service / office numbered badge ── */
.service-badge {
  display: inline-block;
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-head);
  margin-bottom: 8px;
}

/* ── Icon badge ── */
.icon-badge {
  width: 48px; height: 48px;
  background: rgba(199,147,41,0.10);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.card:hover .icon-badge,
.tilt-card:hover .icon-badge {
  background: rgba(199,147,41,0.18);
  border-color: var(--gold);
}

/* ── Pillar number ── */
.pillar-num {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  font-family: var(--font-head);
}

/* ── Card inner (full-height flex column) ── */
.card-inner {
  display: flex;
  flex-direction: column;
}

/* ── Feature list (icon + text rows) ── */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.feature-title { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.feature-desc  { font-size: 0.79rem; color: var(--gray); margin-top: 2px; line-height: 1.55; }

/* ── Checklist ── */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── Platform tags ── */
.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.platform-tag {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.77rem;
  color: var(--gray);
  transition: border-color var(--transition), color var(--transition);
}
.platform-tag:hover { border-color: var(--gold-border); color: var(--gold-light); }

/* ── Stat highlight ── */
.stat-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(199,147,41,0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.stat-highlight-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-head);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Result row (digital commerce) ── */
.result-row { display: flex; align-items: center; gap: 16px; }
.result-num  { font-size: 1.8rem; font-weight: 800; color: var(--gold); font-family: var(--font-head); min-width: 60px; flex-shrink: 0; }

/* ── Phase item (GTM framework) ── */
.phase-item { display: flex; gap: 16px; }
.phase-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(199,147,41,0.12);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
}

/* ── Market code badge (compliance) ── */
.market-code-badge {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(199,147,41,0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: var(--gold);
  letter-spacing: 0.5px; font-family: var(--font-head);
}

/* ── Process steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-line {
  position: absolute;
  top: 27px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-circle {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 0.85rem; font-weight: 700; color: var(--dark);
  font-family: var(--font-head);
  box-shadow: 0 4px 20px rgba(199,147,41,0.25);
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-line  { display: none; }
  .process-step  { text-align: left; display: flex; align-items: flex-start; gap: 16px; padding: 0; }
  .process-circle { flex-shrink: 0; margin: 0; }
}

/* ── Office badge (pill) ── */
.office-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(199,147,41,0.10);
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Office location line ── */
.office-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ── World map wrapper ── */
.world-map-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 32px;
}

/* ── Map pins overlay ── */
.map-pins {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.map-pin-wrap {
  position: absolute;
  transform: translate(-50%, -50%);
}

/* ── World pin pulsing dot ── */
.world-pin {
  position: relative;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(199,147,41,0.6);
  animation: pulseGold 2s infinite;
}
.world-pin-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border: 1px solid rgba(199,147,41,0.5);
  border-radius: 50%;
  animation: pinRipple 2s infinite;
}
.world-pin-label {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-light);
  font-family: var(--font-head);
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 2px 8px;
  pointer-events: none;
}

/* ── Map legend ── */
.map-legend {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
}
.map-legend-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(199,147,41,0.5);
  animation: pulseGold 2s infinite;
}

/* ============================================================
   BLOG SINGLE — Article page
   ============================================================ */

/* ── Hero banner ── */
.blog-single-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 48px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.blog-single-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(199,147,41,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.blog-single-hero .container {
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

/* Hero inner: constrain title/meta to the article column width */
.blog-single-hero-inner {
  max-width: 760px;
}

/* Category chip above title */
.blog-single-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(199,147,41,0.10);
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Article title */
.blog-single-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

/* Meta row: date + category */
.blog-single-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray);
}
.blog-single-meta i { color: var(--gold); margin-right: 6px; }

/* Divider line below meta */
.blog-single-hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 28px;
  border-radius: 2px;
}

/* ── Featured image ── */
.blog-single-image {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.blog-single-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--dark-3);
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .blog-single-image { padding: 0 18px; }
}

/* ── Article body ── */
.blog-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* Prose typography inside .blog-content */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 48px;
  margin-bottom: 16px;
}
.blog-content h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.blog-content h2 { font-size: clamp(1.35rem, 2.8vw, 1.75rem); padding-bottom: 12px; border-bottom: 1px solid var(--dark-3); }
.blog-content h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--gold-light); }
.blog-content h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }

.blog-content p {
  font-size: 1.025rem;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 24px;
}

.blog-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-content a:hover { color: var(--gold-light); }

.blog-content strong, .blog-content b { color: var(--white); font-weight: 700; }
.blog-content em, .blog-content i { color: var(--gray-light); font-style: italic; }

.blog-content ul,
.blog-content ol {
  padding-left: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-content ul li,
.blog-content ol li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.75;
}
.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.blog-content ol { counter-reset: list-num; }
.blog-content ol li { counter-increment: list-num; }
.blog-content ol li::before {
  content: counter(list-num) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-head);
}

.blog-content blockquote {
  margin: 36px 0;
  padding: 24px 32px;
  background: rgba(199,147,41,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
}
.blog-content blockquote p { color: var(--white); margin: 0; font-size: inherit; }

.blog-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 32px 0;
  border: 1px solid var(--dark-3);
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.9rem;
}
.blog-content table th {
  background: rgba(199,147,41,0.10);
  color: var(--gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-content table td {
  padding: 12px 16px;
  color: var(--gray-light);
  border-bottom: 1px solid var(--dark-3);
  line-height: 1.6;
}
.blog-content table tr:last-child td { border-bottom: none; }
.blog-content table tr:hover td { background: rgba(255,255,255,0.02); }

.blog-content hr {
  border: none;
  height: 1px;
  background: var(--dark-3);
  margin: 48px 0;
}

.blog-content code {
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  background: var(--dark-3);
  color: var(--gold-light);
  padding: 2px 8px;
  border-radius: 4px;
}
.blog-content pre {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-md);
  padding: 24px;
  overflow-x: auto;
  margin: 28px 0;
}
.blog-content pre code {
  background: none;
  padding: 0;
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ── Share bar ── */
.blog-share {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 32px;
  margin-top: 48px;
  border-top: 1px solid var(--dark-3);
}
.blog-share-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-right: 4px;
}
.blog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--dark-2);
  text-decoration: none;
  transition: all var(--transition);
}
.blog-share-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: rgba(199,147,41,0.06);
}

/* ── Back link ── */
.blog-back { margin-top: 36px; }

/* ── Related posts ── */
.blog-related {
  padding: 80px 0;
  border-top: 1px solid var(--dark-3);
  background: var(--dark-2);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Hero */
  .blog-single-hero         { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 24px; }
  .blog-single-hero-inner   { max-width: 100%; }
  .blog-single-cat          { font-size: 0.6rem; padding: 4px 12px; margin-bottom: 14px; }
  .blog-single-title        { font-size: 1.35rem !important; line-height: 1.3; margin-bottom: 16px; letter-spacing: -0.01em; }
  .blog-single-meta         { font-size: 0.75rem; gap: 14px; }
  .blog-single-hero-divider { margin-top: 18px; }

  /* Featured image — edge to edge on mobile */
  .blog-single-image        { padding: 0; }
  .blog-single-image img    { border-radius: 0; max-height: 240px; border-left: none; border-right: none; }

  /* Article body */
  .blog-content             { padding: 28px 18px 48px; }
  .blog-content p           { font-size: 0.95rem; line-height: 1.8; margin-bottom: 18px; }
  .blog-content h1          { font-size: 1.25rem; margin-top: 32px; }
  .blog-content h2          { font-size: 1.15rem; margin-top: 28px; padding-bottom: 10px; }
  .blog-content h3          { font-size: 1.05rem; margin-top: 24px; }
  .blog-content h4          { font-size: 0.9rem; }
  .blog-content blockquote  { padding: 16px 18px; font-size: 0.95rem; margin: 24px 0; }
  .blog-content ul li,
  .blog-content ol li       { font-size: 0.95rem; }
  .blog-content table       { font-size: 0.78rem; }
  .blog-content table th,
  .blog-content table td    { padding: 9px 10px; }

  /* Share bar */
  .blog-share               { gap: 10px; margin-top: 32px; padding-top: 24px; }
  .blog-share-btn           { font-size: 0.76rem; padding: 8px 14px; }

  /* Sidebar — simple list, no sticky */
  .blog-sidebar             { padding: 0 0 32px; }
  .sidebar-widget           { border-radius: var(--radius-md); }
  .sidebar-post             { padding: 14px 16px; gap: 12px; }
  .sidebar-post-thumb       { width: 58px; height: 46px; }
  .sidebar-post-title       { font-size: 0.8rem; }
  .sidebar-post-date        { font-size: 0.68rem; }
  .sidebar-all-link         { padding: 12px 16px; font-size: 0.76rem; }
}

/* ============================================================
   BLOG SINGLE — Sidebar layout
   ============================================================ */

/* Outer wrapper — gives the layout a background + padding */
.blog-single-wrap {
  background: var(--dark);
  padding: 0 0 40px;
}

/* Two-column grid: article (wide) + sidebar (fixed) */
.blog-single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  padding-top: 0;
}

/* Article column — remove old auto-margins (sidebar handles width) */
.blog-single-layout .blog-content {
  max-width: 100%;
  margin: 0;
  padding: 48px 0 64px;
}

/* ── Sidebar ── */
.blog-sidebar {
  padding-top: 48px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

/* Widget box */
.sidebar-widget {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* Widget heading */
.sidebar-widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--dark-3);
}
.sidebar-widget-title i { font-size: 0.75rem; }

/* Post list */
.sidebar-post-list {
  display: flex;
  flex-direction: column;
}

/* Individual post row */
.sidebar-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 22px;
  border-bottom: 1px solid var(--dark-3);
  text-decoration: none;
  transition: background var(--transition);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { background: rgba(199,147,41,0.04); }

/* Thumbnail */
.sidebar-post-thumb {
  flex-shrink: 0;
  width: 66px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark-3);
}
.sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sidebar-post:hover .sidebar-post-thumb img { transform: scale(1.07); }
.sidebar-post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

/* Post info column */
.sidebar-post-info {
  flex: 1;
  min-width: 0;
}
.sidebar-post-cat {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.sidebar-post-title {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}
.sidebar-post:hover .sidebar-post-title { color: var(--gold-light); }
.sidebar-post-date {
  font-size: 0.72rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sidebar-post-date i { font-size: 0.65rem; }

/* View all link */
.sidebar-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-top: 1px solid var(--dark-3);
  text-decoration: none;
  transition: background var(--transition), gap var(--transition);
}
.sidebar-all-link:hover { background: rgba(199,147,41,0.06); gap: 12px; color: var(--gold-light); }
.sidebar-all-link i { font-size: 0.75rem; }

/* ── Sidebar responsive ── */
@media (max-width: 1100px) {
  .blog-single-layout { grid-template-columns: 1fr 300px; gap: 36px; }
}
@media (max-width: 900px) {
  /* Stack: sidebar moves below article */
  .blog-single-layout { grid-template-columns: 1fr; gap: 0; }
  .blog-sidebar {
    position: static;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .blog-single-layout .blog-content { padding-bottom: 32px; }
}
@media (max-width: 768px) {
  .blog-single-wrap { padding-bottom: 20px; }
  .blog-single-layout .blog-content { padding: 32px 0 24px; }
  .sidebar-post-thumb { width: 58px; height: 46px; }
  .sidebar-post-title { font-size: 0.8rem; }
}
