/* ============================================================
   SNOWFLAKES GROUP — Design System
   Concept: "Crystalline Trade" — six-fold precision meets
   deep-navy corporate calm with ice-blue signal accents.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Manrope:wght@500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Core palette */
  --white:      #ffffff;
  --grey-050:   #f7f9fb;
  --grey-100:   #eef2f6;
  --grey-200:   #e2e8ef;
  --grey-300:   #cdd7e0;
  --grey-400:   #9fadbc;
  --grey-500:   #6b7987;
  --charcoal:   #1c2430;
  --ink:        #0e1620;

  --navy-900:   #060e18;
  --navy-800:   #0a1626;
  --navy-700:   #0f2036;
  --navy-600:   #163050;
  --navy-500:   #1d4066;

  /* Accents */
  --ice:        #56b6e6;   /* ice blue */
  --ice-bright: #8fd6f5;
  --ice-soft:   #cfeaf8;
  --silver:     #c3ced9;

  /* Semantic */
  --bg:          var(--white);
  --bg-alt:      var(--grey-050);
  --text:        var(--charcoal);
  --text-soft:   var(--grey-500);
  --heading:     var(--navy-800);
  --line:        var(--grey-200);
  --accent:      var(--ice);

  /* Gradients */
  --grad-ice:   linear-gradient(120deg, #8fd6f5 0%, #56b6e6 45%, #c3ced9 100%);
  --grad-navy:  linear-gradient(160deg, #0f2036 0%, #060e18 100%);
  --grad-sheen: linear-gradient(135deg, rgba(143,214,245,.16), rgba(195,206,217,.04));

  /* Type */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Manrope", "Inter", system-ui, sans-serif;

  /* Spacing / layout */
  --container: 1240px;
  --container-narrow: 900px;
  --radius:   16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(10,22,38,.04), 0 4px 14px rgba(10,22,38,.05);
  --shadow-md: 0 8px 30px rgba(10,22,38,.08), 0 2px 8px rgba(10,22,38,.05);
  --shadow-lg: 0 30px 70px rgba(10,22,38,.14);
  --shadow-ice: 0 20px 50px rgba(86,182,230,.18);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: .6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font-family: inherit; font-size: 1rem; color: var(--text); }
::selection { background: var(--ice); color: var(--navy-900); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.12rem; letter-spacing: -0.01em; }
p  { color: var(--text-soft); }
strong { color: var(--charcoal); font-weight: 600; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--grey-500); line-height: 1.7; }

/* Gradient text accent */
.gradient-text {
  background: var(--grad-ice);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-alt  { background: var(--bg-alt); }
.bg-navy { background: var(--grad-navy); color: var(--grey-200); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(226,232,239,.72); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .96rem;
  letter-spacing: -0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ice { background: var(--grad-ice); color: var(--navy-900); box-shadow: var(--shadow-ice); }
.btn-ice:hover { transform: translateY(-2px); box-shadow: 0 26px 60px rgba(86,182,230,.34); }
.btn-ghost { background: transparent; color: var(--heading); border: 1px solid var(--grey-300); }
.btn-ghost:hover { border-color: var(--navy-800); transform: translateY(-2px); }
/* Ghost buttons on any dark surface need light text (was dark-on-dark = invisible) */
.bg-navy .btn-ghost,
.hero .btn-ghost,
.page-hero .btn-ghost,
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.bg-navy .btn-ghost:hover,
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover,
.cta-band .btn-ghost:hover { border-color: var(--ice); color: var(--ice-bright); }

/* ---------- Crystalline motif ---------- */
.flake {
  width: 1em; height: 1em; display: inline-block; flex: none;
  color: var(--accent);
}
.marker {
  width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 3px;
}

/* Faint background watermark flake */
.flake-watermark {
  position: absolute; pointer-events: none; opacity: .05; color: var(--ice);
  z-index: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s;
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; transition: height .4s var(--ease);
}
.site-header.scrolled .bar { height: 70px; }

/* Backgrounds appear only once scrolled, tinted to match the section behind */
.site-header.scrolled.nav-light {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 30px rgba(10,22,38,.06);
}
.site-header.scrolled.nav-dark {
  background: rgba(9,17,30,.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: rgba(255,255,255,.09);
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
}

/* DARK section behind header → light text/marks */
.site-header.nav-dark .nav-link { color: rgba(255,255,255,.82); }
.site-header.nav-dark .nav-link:hover { color: #fff; }
.site-header.nav-dark .brand-name { color: #fff; }
.site-header.nav-dark .brand-sub { color: rgba(255,255,255,.6); }
.site-header.nav-dark .burger span { background: #fff; }
.site-header.nav-dark .nav-cta.btn-primary { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(4px); }
.site-header.nav-dark .nav-cta.btn-primary:hover { background: var(--ice); border-color: var(--ice); color: var(--navy-900); }

/* LIGHT section behind header → dark text/marks */
.site-header.nav-light .nav-link { color: var(--charcoal); }
.site-header.nav-light .nav-link:hover { color: var(--navy-800); }
.site-header.nav-light .brand-name { color: var(--navy-800); }
.site-header.nav-light .brand-sub { color: var(--grey-500); }
.site-header.nav-light .burger span { background: var(--charcoal); }
.site-header.nav-light .nav-cta.btn-primary { background: var(--navy-800); border: 1px solid transparent; color: #fff; }
.site-header.nav-light .nav-cta.btn-primary:hover { background: var(--navy-900); }

/* Smooth the colour swap when crossing sections */
.brand-name, .brand-sub, .burger span { transition: color .35s var(--ease), background .35s var(--ease); }

.brand { display: flex; align-items: center; gap: .8rem; }
.brand .mark { width: 40px; height: 40px; color: var(--ice); flex: none; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; letter-spacing: .01em; line-height: 1; }
.brand-sub { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--grey-500); margin-top: .3rem; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nav-link {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  position: relative; padding: .4rem 0; transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--ice); transition: width .35s var(--ease); border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--ice) !important; }

.nav-cta { margin-left: .4rem; }
/* nav-CTA styling is handled by the .nav-dark / .nav-light theme rules above */

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 6px; }
.burger span { display: block; height: 2px; width: 100%; background: var(--charcoal); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 98;
  background: var(--grad-navy);
  display: flex; flex-direction: column;
  padding: calc(84px + 1.5rem) 1.6rem calc(1.75rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; }
.mobile-nav a:not(.m-contact) {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.35rem, 6.2vw, 1.7rem);
  color: #fff; padding: .95rem .2rem; border-bottom: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: space-between;
  letter-spacing: -0.01em;
}
.mobile-nav a:not(.m-contact):active { color: var(--ice-bright); }
.mobile-nav a .idx { font-family: var(--font-mono); font-size: .78rem; color: var(--ice); font-weight: 600; }
.mobile-nav .m-contact { margin-top: auto; margin-bottom: .25rem; justify-content: center; font-size: 1.02rem; padding: 1.05rem 1.7rem; }

/* Staggered entrance for each menu item */
.mobile-nav a { opacity: 0; transform: translateY(14px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.mobile-nav.open a { opacity: 1; transform: none; }
.mobile-nav.open a:nth-child(1) { transition-delay: .10s; }
.mobile-nav.open a:nth-child(2) { transition-delay: .15s; }
.mobile-nav.open a:nth-child(3) { transition-delay: .20s; }
.mobile-nav.open a:nth-child(4) { transition-delay: .25s; }
.mobile-nav.open a:nth-child(5) { transition-delay: .30s; }
.mobile-nav.open a:nth-child(6) { transition-delay: .35s; }
.mobile-nav.open a:nth-child(7) { transition-delay: .40s; }
.mobile-nav.open a:nth-child(8) { transition-delay: .46s; }

/* Header blends into the drawer while the menu is open */
.site-header.menu-open { background: transparent; box-shadow: none; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header.menu-open .brand-name { color: #fff; }
.site-header.menu-open .brand-sub { color: rgba(255,255,255,.55); }
.site-header.menu-open .burger span { background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  background: var(--grad-navy); color: #fff; overflow: hidden;
  padding: 84px 0 2rem;
}
.hero-canvas { position: absolute; inset: 0; z-index: 1; }
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .28; filter: saturate(.9) contrast(1.05);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(86,182,230,.16), transparent 55%),
    linear-gradient(180deg, rgba(6,14,24,.35) 0%, rgba(6,14,24,.55) 60%, var(--navy-900) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 3; margin-block: auto; }
.hero-inner { max-width: 900px; padding-block: 2rem; }
.hero h1 { color: #fff; margin: 1.6rem 0 1.4rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero p { color: rgba(226,232,239,.82); font-size: clamp(1.05rem,1.7vw,1.32rem); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-scroll {
  position: relative; align-self: center; margin-top: 1.5rem;
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-scroll .track { width: 1px; height: 46px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.hero-scroll .track::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--ice); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0% { top: -50%; } 100% { top: 100%; } }

/* Hero stat strip */
.hero-stats {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.2rem; padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem);
}
.hero-stats .stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem,3vw,2.6rem); color: #fff; letter-spacing: -.02em; }
.hero-stats .stat .num .suffix { color: var(--ice); }
.hero-stats .stat .label { font-size: .82rem; color: rgba(226,232,239,.6); margin-top: .2rem; letter-spacing: .02em; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: linear-gradient(135deg, rgba(86,182,230,.14), rgba(195,206,217,.1));
  color: var(--ice); transition: transform .5s var(--ease);
}
.card:hover .card-icon { transform: scale(1.06) rotate(-4deg); }
.card .card-icon svg { width: 26px; height: 26px; }
/* Network logo plate (holds a partner/network company logo) */
.logo-plate { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.4rem; display: flex; align-items: center; margin-bottom: 1.3rem; min-height: 78px; }
.logo-plate img { max-height: 46px; width: auto; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .96rem; }
.card .idx {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-family: var(--font-mono); font-size: .78rem; color: var(--grey-300); font-weight: 600;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--grad-ice); transition: width .5s var(--ease);
}
.card:hover::before { width: 100%; }

/* Service (large) card */
.service-card { padding: clamp(2rem, 3vw, 2.8rem); }
.service-card .capabilities { margin-top: 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .9rem; }
.service-card .capabilities li { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; color: var(--charcoal); }
.service-card .capabilities svg { width: 15px; height: 15px; color: var(--ice); flex: none; margin-top: .28rem; }

/* Feature list */
.feature-list { display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list .marker { color: var(--ice); }
.feature-list h4 { margin-bottom: .2rem; }
.feature-list p { font-size: .94rem; }

/* Split section */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* Visual panel (SVG scene container) */
.visual-panel {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--grad-navy); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4; min-height: 320px;
}
.visual-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Industries ---------- */
.industry-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem; color: #fff; isolation: isolate;
  background: var(--grad-navy);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.industry-card .art { position: absolute; inset: 0; z-index: -2; }
.industry-card .photo { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; opacity: .5; transition: transform .8s var(--ease), opacity .5s; }
.industry-card:hover .photo { transform: scale(1.06); opacity: .62; }
.industry-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,14,24,.15) 0%, rgba(6,14,24,.55) 55%, rgba(6,14,24,.92) 100%);
}
.industry-card h3 { color: #fff; }
.industry-card p { color: rgba(226,232,239,.8); font-size: .93rem; margin-top: .5rem; }
.industry-card .tag { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ice-bright); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
.bg-navy .stats-band { background: rgba(255,255,255,.1); }
.stats-band .stat { background: var(--bg); padding: 2rem 1.6rem; text-align: center; }
.bg-navy .stats-band .stat { background: var(--navy-800); }
.stats-band .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem,3.4vw,2.9rem); color: var(--heading); letter-spacing: -.02em; }
.bg-navy .stats-band .num { color: #fff; }
.stats-band .num .suffix { color: var(--ice); }
.stats-band .label { font-size: .84rem; color: var(--text-soft); margin-top: .3rem; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.3rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--grey-400); display: inline-flex; align-items: center; gap: 3.5rem; letter-spacing: -.01em; }
.marquee span::after { content: ""; width: 6px; height: 6px; background: var(--ice); border-radius: 2px; transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Map / network ---------- */
.map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--grad-navy); box-shadow: var(--shadow-lg); }
.map-wrap svg { width: 100%; height: auto; display: block; }
.map-legend { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.6rem; }
.map-legend .item { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--text-soft); }
.map-legend .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ice); box-shadow: 0 0 0 4px rgba(86,182,230,.18); }

/* Region list */
.region-list .region { padding: 1.4rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; transition: padding-left .4s var(--ease); }
.region-list .region:hover { padding-left: .6rem; }
.region-list .region:last-child { border-bottom: none; }
.region-list .region .code { font-family: var(--font-mono); font-weight: 700; font-size: 1rem; color: var(--ice); padding-top: .1rem; min-width: 58px; }
.region-list .region h4 { margin-bottom: .3rem; }
.region-list .region p { font-size: .93rem; }

/* ---------- Leadership ---------- */
.leader-card { text-align: center; }
.leader-card .avatar {
  width: 128px; height: 128px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background: var(--grad-navy); color: var(--ice-bright);
  font-family: var(--font-head); font-weight: 700; font-size: 2rem; letter-spacing: .02em;
  box-shadow: var(--shadow-md);
}
.leader-card .avatar::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--grey-200); }
.leader-card:hover .avatar::after { border-color: var(--ice); }
.leader-card .role { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ice); margin-top: .3rem; }
.leader-card h3 { font-size: 1.25rem; }
.leader-card p { font-size: .92rem; margin-top: .7rem; }
.leader-card .abbr { font-size: .78rem; color: var(--grey-400); font-family: var(--font-mono); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: var(--grad-navy); color: #fff; position: relative; overflow: hidden;
  padding: calc(84px + clamp(3.5rem,7vw,6rem)) 0 clamp(3.5rem,7vw,6rem);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 1.2rem 0 1.1rem; max-width: 15ch; }
.page-hero p { color: rgba(226,232,239,.78); max-width: 60ch; font-size: clamp(1.02rem,1.5vw,1.2rem); }
.page-hero .flake-watermark { opacity: .08; }
.page-hero-canvas { position: absolute; inset: 0; z-index: 1; opacity: .9; }
.breadcrumb { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.breadcrumb a:hover { color: var(--ice); }
.breadcrumb .sep { margin: 0 .5rem; color: rgba(255,255,255,.3); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-navy); border-radius: var(--radius-lg); padding: clamp(2.8rem,6vw,5rem); text-align: center; color: #fff; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 0 auto 1.1rem; }
.cta-band p { color: rgba(226,232,239,.78); max-width: 52ch; margin: 0 auto 2rem; }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .flake-watermark { opacity: .1; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.form { display: grid; gap: 1.2rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { position: relative; display: flex; flex-direction: column; }
.field label { font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: var(--charcoal); margin-bottom: .5rem; letter-spacing: .01em; }
.field label .req { color: var(--ice); }
.field input, .field select, .field textarea {
  padding: .9rem 1rem; border: 1px solid var(--grey-300); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color .3s, box-shadow .3s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ice); box-shadow: 0 0 0 4px rgba(86,182,230,.14); }
.form-note { font-size: .82rem; color: var(--grey-400); }
.form-success { display: none; padding: 1rem 1.2rem; border-radius: var(--radius-sm); background: rgba(86,182,230,.1); border: 1px solid rgba(86,182,230,.35); color: var(--navy-700); font-size: .92rem; align-items: center; gap: .6rem; }
.form-success.show { display: flex; }

.contact-info { display: grid; gap: 1rem; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: box-shadow .4s, transform .4s, border-color .4s; }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.info-card .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(86,182,230,.14), rgba(195,206,217,.1)); color: var(--ice); flex: none; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card .k { font-family: var(--font-head); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-400); }
.info-card .v { color: var(--charcoal); font-weight: 500; margin-top: .15rem; }
.info-card .v a:hover { color: var(--ice); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }
.map-fallback { height: 320px; background: var(--grad-navy); display: grid; place-items: center; color: rgba(255,255,255,.6); text-align:center; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(226,232,239,.6); position: relative; overflow: hidden; }
.site-footer .flake-watermark { opacity: .04; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem,3vw,3rem); padding-block: clamp(3rem,6vw,4.5rem); position: relative; z-index: 1; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 1.2rem; font-size: .93rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; font-family: var(--font-mono); font-weight: 600; margin-bottom: 1.2rem; }
.footer-col a, .footer-col li { font-size: .93rem; color: rgba(226,232,239,.6); padding-block: .35rem; display: block; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--ice); padding-left: .3rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; padding-block: .4rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--ice); flex: none; margin-top: .2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .84rem; position: relative; z-index: 1; }
.footer-bottom .legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-disclaimer { font-size: .78rem; color: rgba(226,232,239,.38); max-width: 70ch; line-height: 1.6; padding-bottom: 1.4rem; position: relative; z-index: 1; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4); transition: transform .35s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* Back to top */
.to-top { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: all .35s var(--ease); }
.to-top:hover { border-color: var(--ice); color: var(--ice); transform: translateY(-3px); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* Progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-ice); z-index: 200; transition: width .1s linear; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .visual-panel { order: -1; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .service-card .capabilities { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .form .row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.4rem 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .mobile-nav a { opacity: 1 !important; transform: none !important; transition-delay: 0s !important; }
}
