/* =========================================================
   AAA Business Group — main stylesheet
   Font: Poppins only
   ========================================================= */
:root {
  --navy: #0e1b33;
  --navy-2: #15264a;
  --navy-3: #1d3260;
  --gold: #c9a15a;
  --gold-2: #e2c285;
  --gold-dark: #a8823e;
  --ink: #0e1b33;
  --text: #4a5670;
  --muted: #7a859c;
  --line: #e6e9f0;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-warm: #faf7f1;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(14, 27, 51, .06);
  --shadow: 0 14px 40px rgba(14, 27, 51, .10);
  --shadow-lg: 0 30px 70px rgba(14, 27, 51, .18);
  --container: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  /* company accent (overridden per page) */
  --c1: var(--gold);
  --c2: var(--navy);
  --c3: var(--gold-2);
}

/* Company brand themes */
.theme-eft  { --c1: #139a3a; --c2: #0b6b27; --c3: #f5cf00; --c4: #d9070f; }
.theme-efs  { --c1: #f47c10; --c2: #0a2a80; --c3: #1a7fd4; --c4: #0a2a80; }
.theme-aaai { --c1: #f2330d; --c2: #36008c; --c3: #0a8ae8; --c4: #36008c; }
.theme-yiwu { --c1: #d8121b; --c2: #0c1320; --c3: #1a7fe0; --c4: #0c1320; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--ink); margin: 0 0 .5em; line-height: 1.2; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: 'Poppins', sans-serif; font-size: 15px; }
svg.i { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section.soft { background: var(--bg-soft); }
.section.warm { background: var(--bg-warm); }
.section.dark { background: var(--navy); color: #c3cbdc; }
.section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }

/* ---------- Section headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.dark .eyebrow, .on-dark .eyebrow { color: var(--gold-2); }
[class*="theme-"] .eyebrow { color: var(--c1); }
[class*="theme-"] .dark .eyebrow { color: var(--c1); }
.head { max-width: 760px; margin-bottom: 56px; }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.head.center .eyebrow::after { content: ""; width: 34px; height: 2px; background: currentColor; }
.head h2 { font-size: clamp(30px, 3.6vw, 46px); }
.head p { font-size: 17px; color: var(--muted); }
.dark .head p { color: #9fabc4; }
.lead { font-size: 18px; color: var(--text); }
.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: 15px; cursor: pointer; letter-spacing: .01em;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg.i { font-size: 18px; transition: transform .3s var(--ease); }
.btn:hover svg.i { transform: translateX(4px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold) 50%, var(--gold-dark)); color: var(--navy); box-shadow: 0 10px 26px rgba(201, 161, 90, .35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201, 161, 90, .45); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-accent { background: var(--c1); color: #fff; box-shadow: 0 10px 26px color-mix(in srgb, var(--c1) 35%, transparent); }
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { transform: translateY(-2px); background: #1ebe5b; }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Flags ---------- */
.flag { width: 22px; height: 15px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.08); display: inline-block; vertical-align: middle; }
.flag.lg { width: 34px; height: 23px; border-radius: 4px; }

/* =========================================================
   Top bar + header
   ========================================================= */
.topbar { background: var(--navy); color: #b8c2d8; font-size: 13px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 20px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.topbar a:hover { color: var(--gold-2); }
.topbar .tb-left, .topbar .tb-right { display: flex; align-items: center; gap: 26px; }
.topbar .flags { display: flex; gap: 8px; align-items: center; }
.topbar .flags span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-right: 4px; }
.topbar svg.i { color: var(--gold); font-size: 15px; }

.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s; }
.header.scrolled { box-shadow: 0 8px 30px rgba(14,27,51,.08); border-color: var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 24px; transition: height .3s; }
.header.scrolled .container { height: 74px; }
.brand img { height: 58px; width: auto; transition: height .3s; }
.header.scrolled .brand img { height: 50px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 6px; padding: 10px 15px; border-radius: 10px;
  font-size: 15px; font-weight: 500; color: var(--ink); transition: color .2s, background .2s;
}
.nav > li > a:hover, .nav > li > a.active { color: var(--gold-dark); }
.nav > li > a.active::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px; background: var(--gold); border-radius: 2px; }
.nav .caret { font-size: 14px; transition: transform .3s; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 10px);
  width: 420px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 12px;
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); border: 1px solid var(--line);
}
.dropdown::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav > li:hover .dropdown, .nav > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav > li:hover .caret { transform: rotate(180deg); }
.dropdown a { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 12px; transition: background .2s; }
.dropdown a:hover { background: var(--bg-soft); }
.dropdown .dd-logo { width: 64px; height: 44px; border-radius: 8px; border: 1px solid var(--line); background: #fff; object-fit: contain; padding: 3px; flex-shrink: 0; }
.dropdown strong { display: block; color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.35; }
.dropdown small { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12.5px; }
.dropdown small .flag { width: 16px; height: 11px; }
.dropdown .dd-all { justify-content: center; font-size: 13.5px; font-weight: 600; color: var(--gold-dark); border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; margin-top: 6px; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; transition: all .3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.nav-open .burger span { background: transparent; }
.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* =========================================================
   Hero slider (home)
   ========================================================= */
.hero { position: relative; height: calc(100vh - 132px); min-height: 640px; max-height: 900px; overflow: hidden; background: var(--navy); color: #fff; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.2s ease, visibility 1.2s; }
.slide.active { opacity: 1; visibility: visible; }
.slide .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.12); transition: transform 7s linear; }
.slide.active .bg { transform: scale(1); }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,19,37,.95) 0%, rgba(10,19,37,.82) 38%, rgba(10,19,37,.35) 75%, rgba(10,19,37,.2) 100%), linear-gradient(0deg, rgba(10,19,37,.7), transparent 40%); }
.slide .container { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-bottom: 90px; }
.slide .content { max-width: 720px; }
.slide .kicker { font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 22px; display: flex; align-items: center; gap: 12px; line-height: 1.5; }
.slide .kicker::before { content: ""; width: 40px; height: 2px; background: var(--gold); flex-shrink: 0; }
.slide .title { font-size: clamp(38px, 5.6vw, 72px); font-weight: 700; line-height: 1.08; color: #fff; margin-bottom: 20px; letter-spacing: -.02em; }
.slide .title em { font-style: normal; background: linear-gradient(90deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.slide .tags { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 15px; font-weight: 500; color: #e6ebf5; margin-bottom: 20px; }
.slide .tags span { display: inline-flex; align-items: center; gap: 8px; }
.slide .tags span + span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 10px; }
.slide .desc { font-size: 17px; color: #c3cbdc; max-width: 600px; margin-bottom: 36px; }
.slide .content > * { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.slide.active .content > * { opacity: 1; transform: none; }
.slide.active .content > *:nth-child(2) { transition-delay: .15s; }
.slide.active .content > *:nth-child(3) { transition-delay: .3s; }
.slide.active .content > *:nth-child(4) { transition-delay: .45s; }
.slide.active .content > *:nth-child(5) { transition-delay: .6s; }

.hero-ui { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; }
.hero-ui .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.dots { display: flex; gap: 10px; padding-bottom: 42px; }
.dots button { width: 44px; height: 4px; border-radius: 4px; border: 0; background: rgba(255,255,255,.28); cursor: pointer; padding: 0; overflow: hidden; position: relative; }
.dots button::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.dots button.active::after { animation: fill 6.5s linear forwards; }
@keyframes fill { to { transform: scaleX(1); } }
.hero-arrows { display: flex; gap: 10px; padding-bottom: 28px; }
.hero-arrows button { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06); color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 20px; transition: all .3s; backdrop-filter: blur(6px); }
.hero-arrows button:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-countries { display: flex; background: rgba(255,255,255,.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.14); border-bottom: 0; border-radius: 18px 18px 0 0; overflow: hidden; }
.hero-countries a { padding: 20px 26px; display: flex; align-items: center; gap: 12px; border-right: 1px solid rgba(255,255,255,.12); transition: background .3s; }
.hero-countries a:last-child { border-right: 0; }
.hero-countries a:hover { background: rgba(255,255,255,.1); }
.hero-countries strong { display: block; font-size: 14px; color: #fff; font-weight: 600; line-height: 1.3; }
.hero-countries small { font-size: 12px; color: #aab5cc; }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero { position: relative; padding: 130px 0 110px; color: #fff; background: var(--navy); overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,19,37,.95) 0%, rgba(10,19,37,.8) 45%, rgba(10,19,37,.45) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 58px); max-width: 860px; margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: #c3cbdc; max-width: 680px; margin: 0; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 14px; color: #aab5cc; margin-bottom: 26px; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span.sep { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* Company page hero */
.co-hero { padding: 110px 0 120px; }
.co-hero::after { background: linear-gradient(100deg, rgba(8,14,28,.96) 0%, rgba(8,14,28,.85) 45%, rgba(8,14,28,.45) 100%); }
.co-hero .accent-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 3; display: flex; }
.co-hero .accent-bar i { flex: 1; }
.co-hero .grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 60px; align-items: center; }
.co-hero .loc { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); font-size: 14px; font-weight: 500; margin-bottom: 24px; }
.co-hero .tagline { font-size: 20px; font-weight: 600; color: var(--c3); margin-bottom: 16px; }
.theme-efs .co-hero .tagline, .theme-aaai .co-hero .tagline { color: var(--c1); }
.co-hero .btn-row { margin-top: 34px; }
.logo-card { background: #fff; border-radius: 24px; padding: 28px; box-shadow: var(--shadow-lg); position: relative; }
.logo-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; }
.logo-card::before { content: ""; position: absolute; inset: -10px; border-radius: 30px; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }

/* =========================================================
   Stats band
   ========================================================= */
.stats { position: relative; z-index: 3; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--line); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: 44px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat b span { color: var(--gold); }
.stat small { font-size: 14px; color: var(--muted); font-weight: 500; }

/* =========================================================
   About split
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.rev > :first-child { order: 2; }
.img-stack { position: relative; padding: 0 0 60px 60px; }
.img-stack .main { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.2; }
.img-stack .main img { width: 100%; height: 100%; object-fit: cover; }
.img-stack .small { position: absolute; left: 0; bottom: 0; width: 52%; border-radius: 20px; overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.img-stack .small img { width: 100%; height: 100%; object-fit: cover; }
.img-stack .badge { position: absolute; right: -20px; top: 40px; background: var(--navy); color: #fff; border-radius: 20px; padding: 22px 26px; box-shadow: var(--shadow-lg); text-align: center; }
.img-stack .badge b { display: block; font-size: 40px; line-height: 1; color: var(--gold); }
.img-stack .badge small { font-size: 13px; color: #c3cbdc; line-height: 1.4; display: block; margin-top: 6px; }
.checks { display: grid; gap: 14px; margin: 28px 0 36px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.checks .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(201,161,90,.15); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; font-size: 15px; }
.checks.two { grid-template-columns: 1fr 1fr; }

/* =========================================================
   Company cards (group)
   ========================================================= */
.co-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.co-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; position: relative; }
.co-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--c1), var(--c3)); z-index: 2; }
.co-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.co-card .logo { background: #fff; padding: 22px 22px 10px; aspect-ratio: 3 / 2; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.co-card .logo img { max-height: 100%; width: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.co-card:hover .logo img { transform: scale(1.05); }
.co-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.co-card .where { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.co-card h3 { font-size: 17.5px; line-height: 1.35; margin-bottom: 6px; }
.co-card .tag { font-size: 14px; font-weight: 600; color: var(--c1); margin-bottom: 12px; }
.co-card p { font-size: 14.5px; line-height: 1.65; flex: 1; }
.co-card .more { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--navy); margin-top: 6px; }
.co-card .more svg.i { transition: transform .3s; }
.co-card:hover .more svg.i { transform: translateX(5px); }

/* Companies page: long rows */
.co-row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--line); }
.co-row:last-child { border-bottom: 0; }
.co-row:nth-child(even) .co-row-media { order: 2; }
.co-row-media { position: relative; }
.co-row-media .photo { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.co-row-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.co-row-media .logo-float { position: absolute; right: -24px; bottom: -30px; width: 48%; background: #fff; border-radius: 18px; padding: 14px; box-shadow: var(--shadow-lg); }
.co-row:nth-child(even) .co-row-media .logo-float { right: auto; left: -24px; }
.co-row-media .logo-float img { aspect-ratio: 3 / 2; object-fit: contain; width: 100%; }
.co-row h3 { font-size: clamp(26px, 2.6vw, 34px); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.pill-list li { padding: 8px 16px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); font-size: 13.5px; font-weight: 500; color: var(--ink); }

/* =========================================================
   Feature / service cards
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card { background: #fff; border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-size: 28px; margin-bottom: 24px; background: linear-gradient(135deg, rgba(201,161,90,.18), rgba(201,161,90,.06)); color: var(--gold-dark); transition: all .4s var(--ease); }
.card:hover .ico { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy); transform: rotate(-6deg); }
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { font-size: 15px; margin: 0; }
.card .num { position: absolute; right: 26px; top: 20px; font-size: 54px; font-weight: 700; color: var(--bg-soft); line-height: 1; transition: color .4s; }
.card:hover .num { color: rgba(201,161,90,.16); }

/* card on dark sections */
.dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.dark .card:hover { background: rgba(255,255,255,.07); border-color: rgba(201,161,90,.4); box-shadow: none; }
.dark .card p { color: #a9b4ca; }
.dark .card .ico { background: rgba(201,161,90,.12); color: var(--gold-2); }
.dark .card .num { color: rgba(255,255,255,.05); }

/* themed cards (company pages) */
[class*="theme-"] .card .ico { background: color-mix(in srgb, var(--c1) 12%, transparent); color: var(--c1); }
[class*="theme-"] .card:hover .ico { background: var(--c1); color: #fff; }
[class*="theme-"] .card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--c1); transition: width .5s var(--ease); }
[class*="theme-"] .card:hover::after { width: 100%; }
[class*="theme-"] .dark .card .ico { background: color-mix(in srgb, var(--c1) 22%, transparent); color: #fff; }

/* compact service tiles (EFT main services) */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile { display: flex; align-items: center; gap: 14px; padding: 20px 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; font-weight: 600; font-size: 15px; color: var(--ink); transition: all .3s var(--ease); }
.tile .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 21px; background: color-mix(in srgb, var(--c1) 12%, transparent); color: var(--c1); flex-shrink: 0; transition: all .3s; }
.tile:hover { border-color: var(--c1); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.tile:hover .ico { background: var(--c1); color: #fff; }

/* =========================================================
   Industries chips
   ========================================================= */
.chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: 12px; padding: 14px 24px 14px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; color: var(--ink); font-size: 15px; transition: all .3s var(--ease); }
.chip .ico { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); color: var(--gold-dark); font-size: 18px; transition: all .3s; }
.chip:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.chip:hover .ico { background: var(--gold); color: #fff; }
[class*="theme-"] .chip .ico { color: var(--c1); }
[class*="theme-"] .chip:hover { border-color: var(--c1); }
[class*="theme-"] .chip:hover .ico { background: var(--c1); color: #fff; }

/* =========================================================
   Global network
   ========================================================= */
.network { background: radial-gradient(1200px 600px at 70% 0%, #1b2f5a 0%, var(--navy) 60%); overflow: hidden; }
.map-wrap { position: relative; border-radius: 26px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); padding: 10px; margin-bottom: 44px; }
.map-wrap svg { width: 100%; height: auto; display: block; }
.map-wrap .route { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 7 9; animation: dash 30s linear infinite; opacity: .85; }
@keyframes dash { to { stroke-dashoffset: -600; } }
.map-wrap .node-pulse { fill: var(--gold); opacity: .35; transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(2.6); opacity: 0; } }
.map-wrap .node { fill: var(--gold); stroke: #fff; stroke-width: 3; }
.map-wrap .lbl { font-family: 'Poppins', sans-serif; fill: #fff; font-size: 17px; font-weight: 600; }
.map-wrap .sub { font-family: 'Poppins', sans-serif; fill: #9fabc4; font-size: 13px; }
.map-wrap .land { fill: rgba(255,255,255,.14); }
.map-wrap .route-order { position: absolute; left: 24px; bottom: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #fff; }
.map-wrap .route-order span { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.08); }
.map-wrap .route-order i { color: var(--gold); font-style: normal; }

.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.country { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px 26px; transition: all .4s var(--ease); }
.country:hover { border-color: rgba(201,161,90,.5); transform: translateY(-5px); background: rgba(255,255,255,.07); }
.country .top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.country h3 { font-size: 20px; margin: 0; letter-spacing: .06em; }
.country .city { display: flex; align-items: center; gap: 8px; color: var(--gold-2); font-size: 14px; font-weight: 500; margin-bottom: 14px; }
.country .city svg.i { font-size: 16px; }
.country .svc { display: flex; flex-wrap: wrap; gap: 6px; }
.country .svc span { font-size: 12.5px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.07); color: #c9d2e3; }
.country .co-link { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; font-weight: 600; color: #fff; }
.country .co-link:hover { color: var(--gold-2); }

/* light variant on network page */
.country.light { background: #fff; border-color: var(--line); }
.country.light h3 { color: var(--ink); }
.country.light .city { color: var(--gold-dark); }
.country.light .svc span { background: var(--bg-soft); color: var(--text); }
.country.light .co-link { color: var(--ink); border-color: var(--line); }

/* =========================================================
   CEO message
   ========================================================= */
.ceo { display: grid; grid-template-columns: .85fr 1.4fr; gap: 0; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.ceo-side { background: linear-gradient(160deg, var(--navy-3), var(--navy) 70%); color: #fff; padding: 56px 48px; position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.ceo-side::before { content: ""; position: absolute; right: -120px; bottom: -120px; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(201,161,90,.25); }
.ceo-side::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; border: 1px solid rgba(201,161,90,.35); }
.ceo-mark { width: 150px; height: 150px; border-radius: 28px; background: #fff; padding: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.ceo-mark img { width: 100%; height: 100%; object-fit: contain; }
.ceo-side .q { font-size: 23px; font-weight: 500; line-height: 1.5; color: #fff; margin: 40px 0 0; position: relative; z-index: 1; }
.ceo-side .q::before { content: "\201C"; display: block; font-size: 90px; line-height: .6; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.ceo-body { padding: 56px 60px; }
.ceo-body p { font-size: 16px; }
.sign { display: flex; align-items: center; gap: 18px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.sign .line { width: 50px; height: 2px; background: var(--gold); }
.sign strong { display: block; color: var(--ink); font-size: 17px; }
.sign small { color: var(--muted); font-size: 14px; }

/* =========================================================
   Why us
   ========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; }
.why { padding: 40px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background .4s; }
.why:nth-child(3n) { border-right: 0; }
.why:nth-last-child(-n+3) { border-bottom: 0; }
.why:hover { background: var(--bg-warm); }
.why .n { font-size: 14px; font-weight: 700; color: var(--gold-dark); letter-spacing: .1em; display: block; margin-bottom: 18px; }
.why .ico { font-size: 30px; color: var(--navy); margin-bottom: 16px; display: block; }
.why h3 { font-size: 19px; margin-bottom: 10px; }
.why p { font-size: 15px; margin: 0; }

/* Mission / vision / values */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv-card { border-radius: 24px; padding: 48px 44px; position: relative; overflow: hidden; }
.mv-card.m { background: var(--navy); color: #c3cbdc; }
.mv-card.m h3 { color: #fff; }
.mv-card.v { background: linear-gradient(135deg, #f6ecd9, #efe0c2); color: #5b4a2c; }
.mv-card .ico { width: 70px; height: 70px; border-radius: 20px; display: grid; place-items: center; font-size: 32px; margin-bottom: 26px; }
.mv-card.m .ico { background: rgba(201,161,90,.16); color: var(--gold-2); }
.mv-card.v .ico { background: var(--navy); color: var(--gold-2); }
.mv-card h3 { font-size: 30px; margin-bottom: 16px; }
.mv-card p { font-size: 16px; }
.mv-card .bg-ico { position: absolute; right: -30px; bottom: -40px; font-size: 220px; opacity: .06; }
.mv-card.v .bg-ico { color: var(--navy); }
.mv-card.m .bg-ico { color: #fff; }

/* =========================================================
   Product categories (Yiwu)
   ========================================================= */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; transition: all .35s var(--ease); }
.cat:hover { border-color: var(--c1); box-shadow: var(--shadow); transform: translateY(-4px); }
.cat .top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cat .ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; background: color-mix(in srgb, var(--c1) 10%, transparent); color: var(--c1); flex-shrink: 0; }
.cat h3 { font-size: 16.5px; margin: 0; line-height: 1.35; }
.cat ul li { font-size: 14px; padding: 5px 0 5px 18px; position: relative; color: var(--text); border-bottom: 1px dashed var(--line); }
.cat ul li:last-child { border-bottom: 0; }
.cat ul li::before { content: ""; position: absolute; left: 2px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--c3); }

/* =========================================================
   Contact cards / offices
   ========================================================= */
.contact-panel { display: grid; grid-template-columns: 1fr 1.1fr; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.cp-person { background: linear-gradient(160deg, var(--c2), #070d1a 130%); color: #fff; padding: 50px 46px; position: relative; overflow: hidden; }
.cp-person::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: var(--c1); opacity: .18; }
.cp-person .avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--c1); display: grid; place-items: center; font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 22px; box-shadow: 0 0 0 6px rgba(255,255,255,.1); }
.cp-person h3 { color: #fff; font-size: 26px; margin-bottom: 4px; }
.cp-person .role { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 30px; }
.cp-person .addr { display: flex; gap: 14px; font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.7; }
.cp-person .addr svg.i { font-size: 22px; color: var(--c1); margin-top: 3px; }
.theme-eft .cp-person .addr svg.i, .theme-eft .cp-person .avatar { color: #fff; }
.cp-lines { padding: 44px 46px; display: grid; gap: 12px; align-content: start; }
.cp-lines h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin: 0 0 6px; font-weight: 600; }
.cp-line { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-radius: 14px; border: 1px solid var(--line); transition: all .3s var(--ease); }
.cp-line:hover { border-color: var(--c1); background: color-mix(in srgb, var(--c1) 5%, #fff); transform: translateX(4px); }
.cp-line .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--c1) 12%, transparent); color: var(--c1); font-size: 19px; flex-shrink: 0; }
.cp-line small { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.cp-line small .flag { width: 16px; height: 11px; }
.cp-line strong { display: block; font-size: 16px; color: var(--ink); font-weight: 600; word-break: break-word; }

.office-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.office { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; transition: all .35s var(--ease); }
.office:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.office .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.office .top strong { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); }
.office h3 { font-size: 16.5px; line-height: 1.4; margin-bottom: 14px; }
.office .row { display: flex; gap: 10px; font-size: 14px; margin-bottom: 10px; line-height: 1.55; }
.office .row svg.i { font-size: 17px; color: var(--gold-dark); margin-top: 2px; }
.office .row a:hover { color: var(--gold-dark); }
.office .row a, .office .row span { min-width: 0; overflow-wrap: anywhere; }
.co-grid > *, .office-grid > *, .country-grid > *, .grid-3 > *, .grid-4 > *, .grid-2 > *, .cat-grid > *, .tiles > *, .form-grid > *, .split > *, .contact-layout > *, .why-grid > * { min-width: 0; }
.office .foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.office .foot a { font-size: 14px; font-weight: 600; color: var(--navy); display: inline-flex; gap: 8px; align-items: center; }

/* =========================================================
   Enquiry form
   ========================================================= */
.quote-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%); border-radius: 30px; padding: 64px; display: grid; grid-template-columns: .9fr 1.2fr; gap: 56px; align-items: center; position: relative; overflow: hidden; color: #c3cbdc; }
.quote-band::before { content: ""; position: absolute; left: -100px; top: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(201,161,90,.35), transparent 70%); }
.quote-band h2 { color: #fff; font-size: clamp(28px, 3vw, 40px); }
.quote-band .contacts { display: grid; gap: 14px; margin-top: 28px; }
.quote-band .contacts a { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 500; }
.quote-band .contacts .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: var(--gold-2); font-size: 18px; }
.quote-band form { position: relative; background: #fff; border-radius: 22px; padding: 34px; box-shadow: var(--shadow-lg); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: #d23b3b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--bg-soft);
  color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a859c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(201,161,90,.15); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d23b3b; background: #fff6f6; }
.field .err { display: none; color: #d23b3b; font-size: 12.5px; margin-top: 5px; }
.field.invalid .err { display: block; }
.upload { position: relative; border: 2px dashed var(--line); border-radius: 14px; padding: 22px; text-align: center; background: var(--bg-soft); transition: all .2s; cursor: pointer; }
.upload:hover, .upload.drag { border-color: var(--gold); background: var(--bg-warm); }
.upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload .ico { font-size: 28px; color: var(--gold-dark); margin: 0 auto 6px; display: block; width: 1em; }
.upload strong { display: block; color: var(--ink); font-size: 14.5px; }
.upload small { color: var(--muted); font-size: 13px; }
.upload .files { font-size: 13px; color: var(--navy); font-weight: 600; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.form-note svg.i { color: var(--gold-dark); margin-top: 3px; }

.req-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.req-chips button { padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 500; font-size: 14px; color: var(--ink); cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.req-chips button svg.i { color: var(--gold-dark); font-size: 16px; }
.req-chips button:hover { border-color: var(--gold); }
.req-chips button.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.req-chips button.on svg.i { color: var(--gold-2); }

.contact-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border-radius: 26px; padding: 46px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-card h2 { font-size: 30px; }
.side-stack { display: grid; gap: 18px; position: sticky; top: 100px; }
.side-card { background: #fff; border-radius: 20px; padding: 26px; border: 1px solid var(--line); }
.side-card.dark-card { background: var(--navy); color: #c3cbdc; border: 0; }
.side-card.dark-card h3 { color: #fff; }
.side-card h3 { font-size: 18px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.side-card .mini { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.side-card .mini:first-of-type { border-top: 0; }
.side-card .mini img { width: 58px; height: 40px; object-fit: contain; border-radius: 8px; border: 1px solid var(--line); padding: 2px; background: #fff; }
.side-card .mini strong { display: block; font-size: 13.5px; color: var(--ink); line-height: 1.35; }
.side-card .mini a { font-size: 13px; color: var(--gold-dark); font-weight: 500; }
.side-card .mini a:hover { text-decoration: underline; }

/* Modal (form result) */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(8,14,28,.6); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: all .3s; }
.modal.open { opacity: 1; visibility: visible; }
.modal .box { background: #fff; border-radius: 26px; padding: 44px 40px; max-width: 520px; width: 100%; text-align: center; transform: translateY(20px) scale(.97); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); position: relative; }
.modal.open .box { transform: none; }
.modal .ok { width: 76px; height: 76px; border-radius: 50%; background: rgba(37,211,102,.12); color: #1ea952; display: grid; place-items: center; font-size: 36px; margin: 0 auto 20px; }
.modal h3 { font-size: 24px; }
.modal p { font-size: 15px; }
.modal .btn-row { justify-content: center; margin-top: 24px; }
.modal .x { position: absolute; right: 16px; top: 16px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--bg-soft); cursor: pointer; font-size: 18px; display: grid; place-items: center; color: var(--ink); }

/* =========================================================
   CTA band + sister companies
   ========================================================= */
.cta-band { position: relative; border-radius: 30px; overflow: hidden; padding: 70px 64px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,19,37,.96), rgba(10,19,37,.7)); }
[class*="theme-"] .cta-band::after { background: linear-gradient(100deg, color-mix(in srgb, var(--c2) 92%, #000), color-mix(in srgb, var(--c2) 60%, transparent)); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); margin-bottom: 10px; }
.cta-band p { color: #c9d1e2; margin: 0; max-width: 620px; }

.sisters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sister { display: flex; align-items: center; gap: 18px; padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); transition: all .35s var(--ease); }
.sister:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.sister img { width: 96px; height: 64px; object-fit: contain; flex-shrink: 0; }
.sister strong { display: block; font-size: 14.5px; color: var(--ink); line-height: 1.35; margin-bottom: 4px; }
.sister small { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.sister small .flag { width: 16px; height: 11px; }

/* Group intro strip on company pages */
.group-strip { background: var(--navy); color: #c3cbdc; padding: 22px 0; }
.group-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.group-strip .l { display: flex; align-items: center; gap: 16px; font-size: 14.5px; }
.group-strip .l img { width: 46px; height: 46px; border-radius: 12px; background: #fff; padding: 5px; object-fit: contain; }
.group-strip .l strong { color: #fff; }
.group-strip a.more { font-size: 14px; font-weight: 600; color: var(--gold-2); display: inline-flex; gap: 8px; align-items: center; }

/* Service detail (services page) */
.svc-block { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--line); }
.svc-block:last-child { border-bottom: 0; }
.svc-block:nth-child(even) .svc-media { order: 2; }
.svc-media { border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 11; box-shadow: var(--shadow); position: relative; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-block:hover .svc-media img { transform: scale(1.05); }
.svc-media .ico-badge { position: absolute; left: 20px; top: 20px; width: 60px; height: 60px; border-radius: 16px; background: #fff; color: var(--gold-dark); display: grid; place-items: center; font-size: 28px; box-shadow: var(--shadow); }
.svc-block h3 { font-size: clamp(24px, 2.4vw, 32px); }
.by { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.by a { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border-radius: 12px; border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--ink); transition: all .25s; }
.by a:hover { border-color: var(--gold); background: var(--bg-warm); }
.by img { width: 44px; height: 30px; object-fit: contain; background: #fff; border-radius: 6px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: #0a1426; color: #95a1b9; padding: 90px 0 0; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-2), var(--gold-dark)); }
.footer .cols { display: grid; grid-template-columns: 1.5fr 1.2fr .8fr 1.1fr; gap: 50px; padding-bottom: 60px; }
.footer .f-logo { background: #fff; border-radius: 16px; padding: 12px 16px; display: inline-block; margin-bottom: 22px; }
.footer .f-logo img { height: 64px; width: auto; }
.footer .motto { color: #fff; font-weight: 600; font-size: 16px; line-height: 1.5; margin-bottom: 12px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 22px; font-weight: 600; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold); }
.footer ul li { margin-bottom: 11px; font-size: 14.5px; }
.footer ul a { transition: color .2s, padding .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer ul a:hover { color: var(--gold-2); padding-left: 4px; }
.footer .presence { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.footer .presence span { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #d5dcea; }
.footer .fc li { display: flex; gap: 12px; align-items: flex-start; }
.footer .fc svg.i { color: var(--gold); font-size: 17px; margin-top: 4px; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; font-size: 13.5px; }
.footer .bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer .bottom a:hover { color: var(--gold-2); }

/* Floating buttons */
.float-wa { position: fixed; right: 24px; bottom: 24px; z-index: 150; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); }
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
.float-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.to-top { position: fixed; right: 32px; bottom: 98px; z-index: 150; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center; font-size: 18px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; box-shadow: var(--shadow); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: var(--navy); }

/* Reveal animations */
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .1s; }
.js .reveal.d2 { transition-delay: .2s; }
.js .reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .nav > li > a { padding: 10px 11px; font-size: 14.5px; }
  .header-cta .btn { display: none; }
  .co-grid, .office-grid, .country-grid, .cat-grid, .tiles { grid-template-columns: repeat(2, 1fr); }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  .hero-countries a { padding: 16px 18px; }
}
@media (max-width: 1024px) {
  .topbar .tb-left a:nth-child(n+2) { display: none; }
  .burger { display: inline-flex; }
  .nav-wrap { position: fixed; inset: 0 0 0 auto; width: min(380px, 88vw); background: #fff; z-index: 200; transform: translateX(100%); visibility: hidden; transition: transform .4s var(--ease), visibility .4s; padding: 90px 24px 30px; overflow-y: auto; box-shadow: var(--shadow-lg); }
  .nav-open .nav-wrap { transform: none; visibility: visible; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(8,14,28,.5); z-index: 190; opacity: 0; visibility: hidden; transition: all .3s; }
  .nav-open .nav-overlay { opacity: 1; visibility: visible; }
  .nav-open { overflow: hidden; }
  .burger { position: relative; z-index: 210; }
  .nav { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav > li > a { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav > li > a.active::after { display: none; }
  .nav .caret { display: none; }
  .dropdown { position: static; transform: none; width: auto; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 6px 0 10px; }
  .dropdown .dd-all { display: none; }
  .nav > li:hover .dropdown { transform: none; }
  .nav-wrap .mobile-cta { display: grid !important; gap: 10px; margin-top: 24px; }
  .header-cta .btn { display: none; }
  .split, .co-hero .grid, .ceo, .contact-panel, .quote-band, .contact-layout, .co-row, .svc-block { grid-template-columns: 1fr; }
  .split { gap: 50px; }
  .split.rev > :first-child { order: 0; }
  .co-row:nth-child(even) .co-row-media, .svc-block:nth-child(even) .svc-media { order: 0; }
  .co-row { gap: 50px; }
  .co-hero .grid { gap: 40px; }
  .co-hero .logo-card { max-width: 420px; }
  .grid-3, .why-grid { grid-template-columns: 1fr 1fr; }
  .why:nth-child(3n) { border-right: 1px solid var(--line); }
  .why:nth-child(2n) { border-right: 0; }
  .why:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .why:nth-last-child(-n+2) { border-bottom: 0; }
  .sisters { grid-template-columns: 1fr; }
  .side-stack { position: static; }
  .hero-countries { display: none; }
  .quote-band { padding: 44px; }
  .ceo-body, .ceo-side { padding: 44px 36px; }
}
@media (min-width: 1025px) { .nav-wrap .mobile-cta { display: none; } }
@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .container { padding: 0 16px; }
  .topbar .flags { display: none; }
  .topbar .tb-right a span.lbl { display: none; }
  .header .container { height: 74px; }
  .brand img { height: 46px; }
  .hero { height: 760px; min-height: 0; max-height: none; }
  .slide .container { justify-content: flex-start; padding-top: 56px; padding-bottom: 70px; }
  .slide .kicker { font-size: 11px; letter-spacing: .12em; margin-bottom: 16px; }
  .slide .kicker::before { width: 24px; }
  .slide .title { font-size: 36px; margin-bottom: 16px; }
  .slide .tags { font-size: 13.5px; gap: 6px 14px; }
  .slide .tags span + span::before { margin-right: 8px; }
  .slide .desc { font-size: 15px; line-height: 1.65; margin-bottom: 26px; }
  .slide .btn-row { flex-direction: column; }
  .slide .btn-row .btn { width: 100%; padding: 14px 22px; }
  .slide::after { background: linear-gradient(180deg, rgba(10,19,37,.92) 0%, rgba(10,19,37,.82) 60%, rgba(10,19,37,.9) 100%); }
  .dots { padding-bottom: 28px; }
  .hero-arrows { display: none; }
  .stats .container { grid-template-columns: 1fr 1fr; padding: 0; }
  .stat { border-bottom: 1px solid var(--line); padding: 28px 12px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat b { font-size: 36px; }
  .co-grid, .office-grid, .country-grid, .grid-3, .grid-2, .grid-4, .why-grid, .mv, .cat-grid, .tiles, .form-grid, .checks.two { grid-template-columns: 1fr; }
  .why { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .why:last-child { border-bottom: 0 !important; }
  .img-stack { padding: 0 0 40px 30px; }
  .img-stack .badge { right: 0; }
  .co-row-media .logo-float { right: 10px !important; left: auto !important; bottom: -24px; width: 55%; }
  .page-hero { padding: 90px 0 80px; }
  .quote-band, .cta-band { padding: 36px 22px; border-radius: 22px; }
  .quote-band form, .form-card { padding: 24px 18px; }
  .ceo-body, .ceo-side, .cp-person, .cp-lines { padding: 34px 22px; }
  .mv-card { padding: 36px 26px; }
  .footer .cols { grid-template-columns: 1fr; gap: 36px; }
  .map-wrap .route-order { position: static; padding: 10px 8px 6px; }
  .float-wa { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .to-top { right: 21px; bottom: 82px; }
  .chip { padding: 10px 18px 10px 10px; font-size: 14px; }
}

/* refinements */
.country { display: flex; flex-direction: column; }
.country .co-link { margin-top: auto; }
.country .svc { margin-bottom: 18px; }
.ceo-flags { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; position: relative; z-index: 1; }
.ceo-flags li { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); font-size: 14px; font-weight: 500; color: #fff; }
[class*="theme-"] .checks .tick { background: color-mix(in srgb, var(--c1) 14%, transparent); color: var(--c1); }
[class*="theme-"] .dark .card .ico { background: var(--c1); color: #fff; }
[class*="theme-"] .dark .card:hover { border-color: color-mix(in srgb, var(--c1) 60%, transparent); }

/* five companies: centred rows of three */
.co-grid, .office-grid, .sisters { display: flex; flex-wrap: wrap; justify-content: center; }
.co-grid > *, .office-grid > * { flex: 0 1 calc((100% - 52px) / 3); }
.office-grid > * { flex-basis: calc((100% - 44px) / 3); }
.sisters > * { flex: 0 1 calc((100% - 40px) / 3); }
.co-grid .co-card .logo { aspect-ratio: 16 / 9; }
.country .co-links { margin-top: auto; }
.country .co-links .co-link + .co-link { margin-top: 0; padding-top: 12px; }
@media (max-width: 1180px) { .co-grid > *, .office-grid > *, .sisters > * { flex-basis: calc((100% - 26px) / 2); } }
@media (max-width: 720px) { .co-grid > *, .office-grid > *, .sisters > * { flex-basis: 100%; } }
.co-grid .co-card .logo { aspect-ratio: auto; height: 220px; }
.co-grid .co-card .logo img { height: 100%; width: 100%; object-fit: contain; }
.dropdown { max-height: calc(100vh - 160px); overflow-y: auto; }
.co-grid .co-card .logo { display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 18px 22px; }
.co-grid .co-card .logo img { height: auto; width: auto; max-width: 100%; max-height: 100%; min-height: 0; }

/* =========================================================
   Gallery
   ========================================================= */
.g-tabs-wrap { position: sticky; top: 74px; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.g-tabs { display: flex; gap: 10px; padding: 16px 0; overflow-x: auto; scrollbar-width: none; }
.g-tabs::-webkit-scrollbar { display: none; }
.g-tabs button { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 500; font-size: 14px; color: var(--ink); cursor: pointer; transition: all .2s; }
.g-tabs button .flag { width: 18px; height: 12px; }
.g-tabs button:hover { border-color: var(--gold); }
.g-tabs button.on { background: var(--navy); border-color: var(--navy); color: #fff; }
.g-sec { padding-bottom: 70px; margin-bottom: 70px; border-bottom: 1px solid var(--line); scroll-margin-top: 160px; }
.g-sec:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.g-sec.hide { display: none; }
.g-head { display: flex; align-items: center; gap: 22px; margin-bottom: 28px; }
.g-head .g-logo { width: 110px; height: 76px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 6px; flex-shrink: 0; }
.g-head > div { flex: 1; min-width: 0; }
.g-head .where { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.g-head h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 4px 0 2px; }
.g-head p { margin: 0; color: var(--c1); font-weight: 600; font-size: 15px; }
.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 16px; }
.g-item { position: relative; border-radius: 16px; overflow: hidden; display: block; background: var(--line); cursor: zoom-in; }
.g-item:first-child { grid-column: span 2; grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,14,28,.55), transparent 55%); opacity: 0; transition: opacity .35s; }
.g-item:hover img { transform: scale(1.07); }
.g-item:hover::after { opacity: 1; }
.g-zoom { position: absolute; right: 14px; bottom: 14px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--navy); display: grid; place-items: center; font-size: 18px; opacity: 0; transform: translateY(8px); transition: all .35s var(--ease); }
.g-item:hover .g-zoom, .g-item:focus-visible .g-zoom { opacity: 1; transform: none; }

.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(6,10,20,.94); display: flex; align-items: center; justify-content: center; padding: 60px 90px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 170px); border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); transform: scale(.96); transition: transform .35s var(--ease), opacity .25s; }
.lightbox.open img { transform: none; }
.lightbox img.swap { opacity: 0; }
.lightbox figcaption { display: flex; gap: 20px; justify-content: space-between; width: 100%; margin-top: 16px; color: #d5dcea; font-size: 15px; }
.lb-count { color: var(--gold-2); font-weight: 600; white-space: nowrap; }
.lightbox button { position: absolute; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; font-size: 22px; display: grid; place-items: center; cursor: pointer; transition: all .25s; }
.lightbox button:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
body.lb-open { overflow: hidden; }

@media (max-width: 1024px) { .g-tabs-wrap { top: 74px; } }
@media (max-width: 720px) {
  .g-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
  .g-head { flex-wrap: wrap; gap: 14px; }
  .g-head .g-logo { width: 84px; height: 58px; }
  .g-head .btn { width: 100%; }
  .g-zoom { display: none; }
  .lightbox { padding: 70px 12px 90px; }
  .lb-prev, .lb-next { top: auto; bottom: 20px; transform: none; }
  .lb-prev { left: calc(50% - 64px); }
  .lb-next { right: calc(50% - 64px); }
  .lightbox figcaption { font-size: 13.5px; }
}
@media (min-width: 1025px) { .g-tabs { flex-wrap: wrap; justify-content: center; overflow: visible; } }

/* compact hero slides */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.slide .content { max-width: 620px; }
.slide .title { font-size: clamp(36px, 4.4vw, 60px); margin-bottom: 16px; }
.slide .desc { font-size: 18px; max-width: 520px; margin-bottom: 32px; }
.hero { max-height: 760px; min-height: 560px; }
@media (max-width: 720px) {
  .hero { height: 600px; min-height: 0; }
  .slide .container { justify-content: center; padding-top: 0; }
  .slide .title { font-size: 34px; }
  .slide .desc { font-size: 15.5px; }
}

/* =========================================================
   Company cards v2 (photo + logo badge)
   ========================================================= */
.cc-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.cc { flex: 0 1 calc((100% - 56px) / 3); min-width: 0; display: flex; flex-direction: column; background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(14,27,51,.04); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s; }
.cc:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(14,27,51,.14); border-color: transparent; }
.cc-media { position: relative; height: 190px; overflow: hidden; background: var(--navy); }
.cc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.cc:hover .cc-media img { transform: scale(1.08); }
.cc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,19,37,.15) 0%, rgba(10,19,37,.55) 100%); }
.cc-media::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 2; background: linear-gradient(90deg, var(--c1), var(--c3)); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.cc:hover .cc-media::before { transform: scaleX(1); }
.cc-where { position: absolute; top: 16px; left: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; border-radius: 999px; background: rgba(255,255,255,.95); color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.cc-where .flag { width: 20px; height: 13px; }
.cc-body { position: relative; padding: 58px 28px 26px; display: flex; flex-direction: column; flex: 1; }
.cc-logo { position: absolute; top: -44px; left: 28px; width: 124px; height: 88px; background: #fff; border-radius: 16px; padding: 8px 10px; box-shadow: 0 12px 30px rgba(14,27,51,.14); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.cc-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cc-tag { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c1); margin-bottom: 8px; line-height: 1.5; }
.theme-eft .cc-tag { color: #0f8a32; }
.cc h3 { font-size: 19px; line-height: 1.35; margin-bottom: 10px; }
.cc p { font-size: 14.5px; line-height: 1.7; color: var(--text); flex: 1; margin-bottom: 22px; }
.cc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14.5px; font-weight: 600; color: var(--navy); }
.cc-go { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); font-size: 17px; transition: all .35s var(--ease); }
.cc:hover .cc-go { background: var(--navy); color: #fff; transform: rotate(-45deg); }
@media (max-width: 1100px) { .cc { flex-basis: calc((100% - 28px) / 2); } }
@media (max-width: 680px) { .cc { flex-basis: 100%; } .cc-media { height: 170px; } }

/* =========================================================
   Industry wheel (home about)
   ========================================================= */
.iw { position: relative; width: 100%; max-width: 540px; aspect-ratio: 1; margin: 0 auto; }
.iw::before { content: ""; position: absolute; inset: 14%; border-radius: 50%; background: radial-gradient(circle, rgba(201,161,90,.14), rgba(201,161,90,0) 70%); }
.iw-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.iw-svg circle { fill: none; }
.iw-ring-outer { stroke: rgba(201,161,90,.35); stroke-width: .25; stroke-dasharray: 1 1.6; transform-origin: 50px 50px; animation: iwspin 60s linear infinite; }
.iw-ring { stroke: var(--line); stroke-width: .35; }
.iw-ring-inner { stroke: rgba(14,27,51,.08); stroke-width: .3; }
.iw-lines line { stroke: var(--gold); stroke-width: .3; stroke-dasharray: 1.2 1.2; opacity: .6; animation: iwdash 3s linear infinite; }
@keyframes iwspin { to { transform: rotate(360deg); } }
@keyframes iwdash { to { stroke-dashoffset: -4.8; } }
.iw-center { position: absolute; left: 50%; top: 50%; width: 36%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: linear-gradient(160deg, var(--navy-3), var(--navy) 75%); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 24px 60px rgba(14,27,51,.3), 0 0 0 10px rgba(255,255,255,.9), 0 0 0 11px var(--line); z-index: 2; padding: 6%; }
.iw-center img { width: 44%; aspect-ratio: 1; object-fit: contain; background: #fff; border-radius: 22%; padding: 6%; margin-bottom: 8px; }
.iw-center strong { font-size: clamp(11px, 1.3vw, 15px); line-height: 1.25; color: #fff; }
.iw-center small { font-size: clamp(9px, .9vw, 11px); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-top: 4px; }
.iw-node { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; width: 118px; z-index: 3; text-align: center; }
.iw-ico { width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(14,27,51,.1); display: grid; place-items: center; font-size: 26px; color: var(--gold-dark); transition: all .35s var(--ease); }
.iw-lbl { margin-top: 8px; font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--ink); background: rgba(255,255,255,.92); padding: 2px 8px; border-radius: 8px; }
.iw-node:hover .iw-ico { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy); border-color: transparent; transform: scale(1.1); }
.js .iw.reveal .iw-node { opacity: 0; transform: translate(-50%, -50%) scale(.6); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: calc(.3s + var(--d)); }
.js .iw.reveal.in .iw-node { opacity: 1; transform: translate(-50%, -50%); }
@media (max-width: 720px) {
  .iw { max-width: 360px; }
  .iw-node { width: 84px; }
  .iw-ico { width: 46px; height: 46px; font-size: 19px; }
  .iw-lbl { font-size: 10.5px; padding: 1px 4px; margin-top: 5px; }
  .iw-center { box-shadow: 0 16px 40px rgba(14,27,51,.3), 0 0 0 6px rgba(255,255,255,.9); }
  .iw-center img { margin-bottom: 4px; }
}
.iw-center { height: 36%; overflow: hidden; }
@media (max-width: 720px) { .iw-center small { display: none; } .iw-center strong { font-size: 11px; } .iw-center img { width: 38%; } }

/* =========================================================
   Founder & CEO message
   ========================================================= */
.ceo2 { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.ceo2-photo { position: relative; padding: 0 28px 48px 0; }
.ceo2-photo::before { content: ""; position: absolute; top: 28px; left: 28px; right: 0; bottom: 20px; border: 2px solid var(--gold); border-radius: 28px; }
.ceo2-photo::after { content: ""; position: absolute; left: -26px; top: -26px; width: 120px; height: 120px; background-image: radial-gradient(var(--gold) 1.6px, transparent 1.6px); background-size: 14px 14px; opacity: .45; z-index: 0; }
.ceo2-frame { position: relative; z-index: 1; border-radius: 26px; overflow: hidden; aspect-ratio: 4 / 5; background: linear-gradient(180deg, #eef1f6, #dfe4ee); box-shadow: 0 30px 70px rgba(14,27,51,.18); }
.ceo2-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.ceo2-plate { position: absolute; z-index: 2; left: 28px; right: 56px; bottom: 0; background: var(--navy); color: #fff; border-radius: 18px; padding: 20px 24px; box-shadow: 0 20px 44px rgba(14,27,51,.3); border-left: 4px solid var(--gold); }
.ceo2-plate strong { display: block; font-size: 19px; line-height: 1.3; color: #fff; }
.ceo2-plate span { display: block; font-size: 13.5px; color: var(--gold-2); margin-top: 4px; }
.ceo2-quote { position: relative; margin: 6px 0 30px; padding: 0 0 0 0; font-size: clamp(24px, 2.5vw, 34px); font-weight: 600; line-height: 1.35; color: var(--ink); letter-spacing: -.01em; }
.ceo2-quote::before { content: "\201C"; display: block; font-size: 110px; line-height: .55; height: 44px; color: var(--gold); font-weight: 700; }
.ceo2-quote em { font-style: normal; color: var(--gold-dark); }
.ceo2-body p { font-size: 16px; line-height: 1.85; color: var(--text); }
.ceo2-sign { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(14,27,51,.1); }
.ceo2-sign strong { display: block; font-size: 18px; color: var(--ink); }
.ceo2-sign small { display: block; font-size: 14px; color: var(--gold-dark); font-weight: 500; }
.ceo2-flags { display: flex; gap: 8px; }
.ceo2-flags .flag { width: 30px; height: 20px; }
@media (max-width: 1024px) {
  .ceo2 { grid-template-columns: 1fr; gap: 60px; }
  .ceo2-photo { max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 720px) {
  .ceo2-photo { padding: 0 16px 44px 0; }
  .ceo2-photo::before { top: 16px; left: 16px; }
  .ceo2-photo::after { left: -10px; top: -10px; width: 80px; height: 80px; }
  .ceo2-plate { left: 16px; right: 32px; padding: 16px 18px; }
  .ceo2-plate strong { font-size: 17px; }
  .ceo2-sign { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Inner page hero v2 (no photo)
   ========================================================= */
.ph2 { position: relative; overflow: hidden; background: #0b1528; color: #fff; padding: 96px 0 100px; isolation: isolate; }
.ph2::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,161,90,.6), transparent); }
.ph2-grid { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(ellipse 70% 90% at 70% 40%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse 70% 90% at 70% 40%, #000 20%, transparent 75%); }
.ph2-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(70px); }
.ph2-orb.a { width: 520px; height: 520px; right: -120px; top: -220px; background: radial-gradient(circle, rgba(201,161,90,.45), transparent 65%); }
.ph2-orb.b { width: 560px; height: 560px; left: -200px; bottom: -320px; background: radial-gradient(circle, rgba(40,90,200,.45), transparent 65%); }
.ph2-inner { display: grid; grid-template-columns: 1.4fr .8fr; gap: 60px; align-items: center; }
.ph2-crumbs { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); font-size: 13.5px; color: #b8c2d8; margin-bottom: 26px; backdrop-filter: blur(8px); }
.ph2-crumbs a:hover { color: var(--gold-2); }
.ph2-crumbs span:last-child { color: #fff; font-weight: 500; }
.ph2-crumbs .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.ph2 h1 { color: #fff; font-size: clamp(34px, 4.6vw, 60px); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 20px; max-width: 760px; }
.ph2 h1::after { content: ""; display: block; width: 72px; height: 4px; border-radius: 4px; margin-top: 22px; background: linear-gradient(90deg, var(--gold-2), var(--gold)); }
.ph2 p { font-size: 18px; line-height: 1.7; color: #b8c2d8; max-width: 640px; margin: 0; }
.ph2-art { position: relative; width: 100%; max-width: 320px; aspect-ratio: 1; margin-left: auto; }
.ph2-art .r { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); inset: 0; }
.ph2-art .r2 { inset: 15%; border-color: rgba(201,161,90,.35); border-style: dashed; animation: iwspin 40s linear infinite; }
.ph2-art .r3 { inset: 30%; background: radial-gradient(circle, rgba(201,161,90,.18), transparent 70%); border-color: rgba(255,255,255,.08); }
.ph2-art .r1 { animation: iwspin 70s linear infinite reverse; }
.ph2-art .r1::before { content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px var(--gold); }
.ph2-art .dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff; opacity: .5; }
.ph2-art .d1 { top: 22%; left: 10%; } .ph2-art .d2 { bottom: 16%; right: 12%; background: var(--gold-2); opacity: .8; } .ph2-art .d3 { top: 12%; right: 26%; width: 5px; height: 5px; }
.ph2-mark { position: absolute; inset: 36%; border-radius: 26px; background: #fff; display: grid; place-items: center; padding: 14%; box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 8px rgba(255,255,255,.06); }
.ph2-mark img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 1024px) { .ph2-inner { grid-template-columns: 1fr; } .ph2-art { display: none; } }
@media (max-width: 720px) { .ph2 { padding: 64px 0 70px; } .ph2 p { font-size: 16px; } .ph2-grid { background-size: 40px 40px; } }
.ph2-mark { display: flex; align-items: center; justify-content: center; padding: 12%; }
.ph2-mark img { width: 100%; height: auto; max-height: 100%; }
.ph2-mark { padding: 14px; }

/* small text dropdown (About Us) */
.dropdown.dd-sm { width: 300px; }
.dropdown .dd-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-warm); color: var(--gold-dark); display: grid; place-items: center; font-size: 19px; flex-shrink: 0; }
@media (max-width: 1024px) { .dropdown.dd-sm { width: auto; } }

/* =========================================================
   WordPress theme additions
   ========================================================= */
.theme-co .co-hero .tagline { color: var(--c3); }
.theme-co .img-stack .badge b { color: #fff; }
.section.dark.co-dark { background: color-mix(in srgb, var(--c2) 45%, #050b16); }
.theme-co .dark .card .ico { background: var(--c1); color: #fff; }
.theme-co .dark .eyebrow { color: var(--c3); }
.cp-person { background: linear-gradient(160deg, var(--c2), #070d1a 130%); }
.wp-caption, .alignleft, .alignright { max-width: 100%; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }


/* Mobile menu fix: backdrop-filter on the header traps the fixed menu panel inside the header box */
@media (max-width: 1024px) {
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .nav-wrap { height: 100vh; height: 100dvh; }
}
@media (max-width: 1024px) { .nav-open .header { z-index: 250; } }


/* Bigger logo */
.header .container { height: 100px; }
.header.scrolled .container { height: 84px; }
.brand img { height: 74px; }
.header.scrolled .brand img { height: 62px; }
.footer .f-logo img { height: 76px; }
@media (max-width: 720px) {
  .header .container { height: 82px; }
  .header.scrolled .container { height: 74px; }
  .brand img { height: 58px; }
  .header.scrolled .brand img { height: 52px; }
}
