/* ============================================================
   Trisphere Global Consulting — Global Stylesheet
   Palette: Deep Navy + Teal + White
   ============================================================ */

:root {
  --navy-900: #0b2038;
  --navy-800: #0f2a4f;
  --navy-700: #163a63;
  --navy-600: #1d4c7c;
  --teal-600: #1e6e8c;
  --teal-500: #2a89a8;
  --teal-400: #3ea2c0;
  --accent:   #2a89a8;
  --gold:     #c9a24b;

  --ink:      #16283d;
  --body:     #43566b;
  --muted:    #6b7c8f;
  --line:     #e3e9f0;

  --bg:       #ffffff;
  --bg-soft:  #f4f8fb;
  --bg-soft2: #eef4f9;
  --bg-navy:  #0f2a4f;

  --white:    #ffffff;

  --radius:   14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(15, 42, 79, 0.06);
  --shadow:    0 14px 40px rgba(15, 42, 79, 0.10);
  --shadow-lg: 0 26px 60px rgba(15, 42, 79, 0.16);

  --container: 1200px;
  --ff-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --ff-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; }
a { color: var(--teal-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy-700); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: 40px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--teal-600), var(--navy-700));
  color: #fff;
  box-shadow: 0 10px 26px rgba(30, 110, 140, 0.28);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(30, 110, 140, 0.38);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); color:#fff; transform: translateY(-2px); }
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--teal-500); color: var(--navy-800); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(227,233,240,.9);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(15,42,79,.08); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand-logo { height: 46px; width: auto; max-width: min(340px, 60vw); object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: .55rem .9rem;
  color: var(--navy-800);
  font-weight: 500;
  font-size: .95rem;
  font-family: var(--ff-head);
  border-radius: 8px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 6px;
  width: 0; height: 2px;
  background: var(--teal-500);
  transition: all .25s var(--ease);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 22px; }
.nav-links a.active { color: var(--teal-600); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-menu > .btn { display: none; } /* only shown inside the mobile drawer */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all .3s var(--ease);
  margin: 0 auto;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #eaf2fa;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(62,162,192,.30), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(30,110,140,.28), transparent 55%),
    linear-gradient(140deg, #0b2038 0%, #0f2a4f 45%, #163a63 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0 104px;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-head);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: #8fd0e6; font-weight: 600;
  background: rgba(62,162,192,.12);
  border: 1px solid rgba(62,162,192,.3);
  padding: .5rem 1rem; border-radius: 40px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: .5em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #5fc4e0, #9fe0f0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: 1.12rem;
  color: #c4d6e8;
  max-width: 33em;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-meta .m { display: flex; align-items: center; gap: 10px; color: #b9cee0; font-size: .92rem; }
.hero-meta .m svg { flex: none; color: #5fc4e0; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 34px 32px;
  backdrop-filter: blur(6px);
  width: 100%;
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
}
.hero-card img { width: 130px; margin: 0 auto 20px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)); }
.hero-illus { display: block; width: 172px; height: auto; margin: 0 auto 18px; }
.media-illus { display: block; width: 100%; max-width: 380px; height: auto; margin: 0 auto; }
.founder-illus { display: block; width: 130px; height: auto; margin: 0 auto 20px; }
.hero-card h3 { color:#fff; text-align:center; font-size:1.2rem; margin-bottom: 18px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
}
.hero-stat .n { font-family: var(--ff-head); font-weight: 700; font-size: 1.5rem; color: #6fd0ea; line-height:1; }
.hero-stat .l { font-size: .74rem; color: #b9cee0; margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }

.hero-wave { display:block; width:100%; height: auto; margin-bottom: -6px; position: relative; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section.soft { background: var(--bg-soft); }
.section.navy {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(62,162,192,.18), transparent 60%),
    linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: #d7e4f0;
}
.section.navy h2, .section.navy h3 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow-line {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-head);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.eyebrow-line::before { content:''; width: 26px; height: 2px; background: var(--teal-500); border-radius: 2px; }
.section.navy .eyebrow-line { color: #7fd0e6; }
.section.navy .eyebrow-line::before { background: #7fd0e6; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: .4em;
}
.section-head p { color: var(--muted); font-size: 1.06rem; margin: 0; }
.section.navy .section-head p { color: #b9cee0; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-box .n {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--navy-800);
  line-height: 1;
}
.stat-box .n span { color: var(--teal-500); }
.stat-box .l { color: var(--muted); font-size: .92rem; margin-top: 8px; }
.stat-box--text .n { font-size: 1.25rem; letter-spacing: .01em; }
@media (max-width: 620px) {
  .stat-box--text .n { font-size: 1.02rem; line-height: 1.3; }
  .stat-box { padding: 22px 14px; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(42,137,168,.4);
}
.card .ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(42,137,168,.14), rgba(22,58,99,.12));
  color: var(--teal-600);
  margin-bottom: 20px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: .5em; }
.card p { color: var(--body); font-size: .96rem; margin: 0; }

/* service list card */
.svc-card ul { list-style: none; margin-top: 14px; }
.svc-card li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: .95rem;
  color: var(--body);
  border-bottom: 1px dashed var(--line);
}
.svc-card li:last-child { border-bottom: none; }
.svc-card li::before {
  content: '';
  position: absolute; left: 4px; top: 15px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-500);
}

/* ---------- Two column feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--navy-800), var(--teal-600));
  aspect-ratio: 4/3.4;
  position: relative;
  display: grid; place-items: center;
  padding: 40px;
}
.split .media img { width: min(78%, 320px); filter: drop-shadow(0 14px 30px rgba(0,0,0,.28)); }
.split .media .badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px; padding: 14px 18px;
  color: #eaf2fa; font-size: .9rem;
  backdrop-filter: blur(4px);
}
.lead-big { font-size: 1.15rem; color: var(--ink); font-weight: 500; }

.check-list { list-style: none; margin: 18px 0 0; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 9px 0;
  font-size: .98rem;
  color: var(--body);
}
.check-list li svg { flex: none; color: var(--teal-500); margin-top: 3px; }

/* ---------- Values ---------- */
.value-card { text-align: left; }
.value-card .num {
  font-family: var(--ff-head); font-weight: 700;
  color: rgba(42,137,168,.25); font-size: 2.2rem; line-height:1;
  margin-bottom: 10px;
}

/* ---------- Industries ---------- */
.ind-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.ind-card::after {
  content:''; position:absolute; left:0; top:0; bottom:0; width: 4px;
  background: linear-gradient(var(--teal-500), var(--navy-700));
  transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease);
}
.ind-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ind-card:hover::after { transform: scaleY(1); }
.ind-card .ico { width: 48px; height:48px; border-radius: 12px; display:grid; place-items:center; background: var(--bg-soft2); color: var(--teal-600); margin-bottom: 16px; }
.ind-card h3 { font-size: 1.12rem; margin-bottom: .35em; }
.ind-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: .6rem 1.15rem;
  font-size: .92rem;
  color: var(--navy-800);
  font-weight: 500;
  font-family: var(--ff-head);
  transition: all .25s ease;
}
.chip:hover { border-color: var(--teal-500); color: var(--teal-600); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.section.navy .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #eaf2fa; }
.section.navy .chip:hover { background: rgba(255,255,255,.12); color:#fff; }

/* ---------- Countries ---------- */
.country-group { margin-bottom: 34px; }
.country-group h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.05rem; color: var(--teal-600);
  text-transform: uppercase; letter-spacing: .1em; font-size: .9rem;
  margin-bottom: 18px;
}
.country-group h3::after { content:''; flex:1; height:1px; background: var(--line); }
.section.navy .country-group h3 { color: #7fd0e6; }
.section.navy .country-group h3::after { background: rgba(255,255,255,.14); }
.country-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.country {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem 1.25rem;
  min-width: 150px;
  font-weight: 500;
  color: var(--navy-800);
  font-family: var(--ff-head);
  transition: all .25s ease;
}
.country:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--teal-500); }
.country .flag { font-size: 1.5rem; line-height: 1; }
.country .flag-img {
  width: 28px; height: 21px; flex: none;
  border-radius: 3px; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15,42,79,.12), 0 1px 3px rgba(15,42,79,.15);
}
.section.navy .country .flag-img { box-shadow: 0 0 0 1px rgba(255,255,255,.25); }
.section.navy .country { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color:#fff; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step {
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.process-step .step-n {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-600), var(--navy-700));
  color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: .3em; }
.process-step p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Founder ---------- */
.founder {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.founder-media {
  background: linear-gradient(150deg, var(--navy-800), var(--teal-600));
  border-radius: 20px;
  padding: 44px;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  text-align: center;
}
.founder-media img { width: 150px; margin-bottom: 20px; filter: drop-shadow(0 10px 24px rgba(0,0,0,.3)); }
.founder-media .fm-role { color: #cfe6f2; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.founder-media .fm-name { color: #fff; font-family: var(--ff-head); font-size: 1.3rem; font-weight: 600; margin-top: 4px; }
.quote-mark { font-family: Georgia, serif; font-size: 3.4rem; color: var(--teal-400); line-height: .5; }
.founder blockquote { margin: 0; font-size: 1.08rem; color: var(--ink); font-style: italic; }
.founder blockquote p { margin-bottom: 1em; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 340px at 15% 20%, rgba(62,162,192,.28), transparent 60%),
    linear-gradient(130deg, var(--navy-800), var(--navy-900));
  color: #eaf2fa;
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-band p { color: #c4d6e8; max-width: 40em; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-actions { display:flex; justify-content:center; flex-wrap: wrap; gap: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 18px;
  transition: all .3s var(--ease);
}
.info-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(42,137,168,.4); }
.info-card .ico {
  width: 50px; height: 50px; flex: none;
  border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(42,137,168,.14), rgba(22,58,99,.1));
  color: var(--teal-600);
}
.info-card h4 { margin: 0 0 4px; font-size: 1rem; }
.info-card p { margin: 0; font-size: .95rem; color: var(--body); }
.info-card a { font-weight: 500; }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; font-family: var(--ff-head); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--ink);
  background: #fdfefe;
  transition: all .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(42,137,168,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin: 6px 0 0; }
.form-success {
  display: none;
  background: #e8f6ee; border: 1px solid #bfe6cf; color: #1c6b3f;
  padding: 14px 18px; border-radius: 10px; font-size: .92rem; margin-bottom: 18px;
}
.form-success.show { display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(62,162,192,.26), transparent 60%),
    linear-gradient(140deg, #0b2038, #0f2a4f 60%, #163a63);
  color: #eaf2fa;
  padding: 70px 0 78px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity:.5;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .3em; }
.page-hero p { color: #c4d6e8; max-width: 40em; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: .82rem; color: #8fb4d4; margin-bottom: 18px;
  font-family: var(--ff-head); letter-spacing: .03em;
}
.breadcrumb a { color: #8fb4d4; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, var(--navy-900), #081826);
  color: #a9c0d6;
  padding: 66px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
}
.footer-brand img { height: 52px; margin-bottom: 18px; }
.footer-brand .fb-name { color: #fff; font-family: var(--ff-head); font-weight: 600; font-size: 1.15rem; margin-bottom: 10px; }
.footer-brand p { font-size: .92rem; color: #97b0c7; max-width: 30ch; }
.footer-col h4 {
  color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #a9c0d6; font-size: .93rem; }
.footer-col a:hover { color: #6fd0ea; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .92rem; }
.footer-contact svg { flex: none; color: #6fd0ea; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: #7f97ad;
}
.footer-bottom a { color: #a9c0d6; }
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  color: #c3d5e6; transition: all .25s ease;
}
.social a:hover { background: var(--teal-600); color: #fff; transform: translateY(-2px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divide { height: 1px; background: var(--line); margin: 0; border: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 0 64px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .stat-strip { margin-top: 30px; }
  .founder { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px 24px 24px;
    display: none;
    flex-direction: column;
    gap: 4px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav-menu .nav-links a { padding: .8rem .6rem; border-radius: 8px; }
  .nav-menu .nav-links a::after { display: none; }
  .nav-menu .btn { display: inline-flex; margin-top: 12px; justify-content: center; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split .media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .process-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; margin-top: 22px; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; }
  .brand-logo { height: 36px; max-width: 64vw; }
  .container { padding: 0 18px; }
  .hero-meta { gap: 14px; }
  /* Footer: single clean column on phones */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer-brand p { max-width: none; }
  .footer-col a, .footer-contact a, .footer-contact li { overflow-wrap: anywhere; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
}

/* ============================================================
   Interaction & motion polish
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
  z-index: 200; transition: width .1s linear;
  box-shadow: 0 0 10px rgba(62,162,192,.6);
}

/* Back-to-top button */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-600), var(--navy-700));
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 12px 28px rgba(15,42,79,.32);
  opacity: 0; transform: translateY(16px) scale(.85); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), box-shadow .3s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(30,110,140,.42); }

/* Button sheen sweep */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn:hover::after { left: 130%; }

/* Card hover accent for service/why cards */
.card { position: relative; overflow: hidden; }
.card::before {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--teal-500), var(--navy-600));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card .ico { transition: transform .35s var(--ease), background .35s ease; }
.card:hover .ico { transform: translateY(-2px) scale(1.06); }

/* Process step number pop */
.process-step .step-n { transition: transform .35s var(--ease), box-shadow .35s ease; }
.process-step:hover .step-n { transform: scale(1.08) rotate(-4deg); box-shadow: 0 10px 22px rgba(30,110,140,.4); }

/* Info card icon lift */
.info-card .ico { transition: transform .3s var(--ease); }
.info-card:hover .ico { transform: scale(1.08); }

/* Media illustration gentle float */
.media-illus { animation: glbFloat 7s ease-in-out infinite; }
.hero-illus { animation: glbFloat 8s ease-in-out infinite; }
@keyframes glbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Globe pins pulse + arcs flow */
.glb-ring { transform-box: fill-box; transform-origin: center; animation: glbPulse 2.6s ease-out infinite; }
.glb-ring.r2 { animation-delay: .9s; }
.glb-ring.r3 { animation-delay: 1.7s; }
@keyframes glbPulse {
  0% { transform: scale(.6); opacity: .7; }
  70% { transform: scale(2.5); opacity: 0; }
  100% { opacity: 0; }
}
.glb-arc { stroke-dasharray: 5 6; animation: glbDash 1.6s linear infinite; }
@keyframes glbDash { to { stroke-dashoffset: -44; } }
.glb-spin { transform-box: fill-box; transform-origin: center; animation: glbSpin 60s linear infinite; }
@keyframes glbSpin { to { transform: rotate(360deg); } }

/* Hero network subtle node pulse */
.tn-pulse { transform-box: fill-box; transform-origin: center; animation: glbPulse 3s ease-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .media-illus, .hero-illus, .glb-ring, .glb-arc, .glb-spin, .tn-pulse { animation: none !important; }
  .reveal { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Media statement panel (replaces decorative illustration) */
.media-statement { text-align: center; padding: 6px 6px 74px; }
.ms-eyebrow {
  display: inline-block; font-family: var(--ff-head);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: #7fd0e6; font-weight: 600; margin-bottom: 20px;
}
.ms-quote {
  font-family: var(--ff-head); font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.34;
  color: #fff; margin: 0 0 24px; text-wrap: balance;
}
.ms-quote em { font-style: normal; color: #6fd0ea; }
.ms-row {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; color: #cfe6f2; font-family: var(--ff-head);
  font-weight: 500; font-size: .92rem;
}
.ms-row i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-400); display: inline-block; }

/* ============================================================
   About — Our Story editorial layout
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: start;
}
.story-intro { position: sticky; top: 100px; }
.story-intro .lead-big { color: var(--ink); }
.story-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px;
}
.fact {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.fact:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(42,137,168,.4); }
.fact .fn {
  display: block; font-family: var(--ff-head); font-weight: 700;
  font-size: 1.85rem; color: var(--navy-800); line-height: 1;
}
.fact .fn em { font-style: normal; color: var(--teal-500); }
.fact .fl { display: block; font-size: .82rem; color: var(--muted); margin-top: 7px; }
.story-body p { margin-bottom: 1.3em; }
.story-quote {
  margin: 6px 0 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--teal-500);
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
}
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 34px; }
  .story-intro { position: static; }
}
@media (max-width: 620px) {
  .story-facts { gap: 12px; }
  .fact { padding: 15px 16px; }
  .fact .fn { font-size: 1.6rem; }
}

/* Mobile hero breathing room under the sticky header */
@media (max-width: 1024px) {
  .hero-inner { padding-top: 84px; }
}
@media (max-width: 620px) {
  .hero .eyebrow { font-size: .64rem; padding: .45rem .85rem; margin-bottom: 18px; letter-spacing: .16em; }
  .hero-inner { padding-top: 72px; }
  .page-hero { padding: 52px 0 58px; }
}

/* ============================================================
   Phase 1 additions
   ============================================================ */
/* Footer white logo (symbol + wordmark) */
.footer-logo { width: 210px; max-width: 70%; height: auto; margin-bottom: 18px; }
@media (max-width: 620px) { .footer-logo { width: 180px; } }

/* Hero card — countries display (replaces repeated stats) */
.hero-card-sub {
  color: #c4d6e8; text-align: center; font-size: .96rem;
  line-height: 1.55; margin: 0 auto 18px; max-width: 30em;
}
.hero-flags { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 18px; }
.hero-flags .flag-img { width: 30px; height: 22px; box-shadow: 0 0 0 1px rgba(255,255,255,.28); }
.hero-regions {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: #eaf2fa; font-family: var(--ff-head); font-weight: 600;
  font-size: .92rem; letter-spacing: .02em;
}
.hero-regions i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-400); display: inline-block; }

/* Roles We Recruit — grouped columns (Industries page) */
.role-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.role-group {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.role-group:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(42,137,168,.4); }
.role-group h3 {
  font-size: 1.02rem; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px;
}
.role-group h3 .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(42,137,168,.14), rgba(22,58,99,.12)); color: var(--teal-600); flex: none; }
.role-group h3 .ico svg { width: 18px; height: 18px; }
.role-group ul { list-style: none; }
.role-group li { padding: 7px 0 7px 20px; position: relative; font-size: .93rem; color: var(--body); }
.role-group li::before { content: ''; position: absolute; left: 2px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); }
@media (max-width: 980px) { .role-groups { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .role-groups { grid-template-columns: 1fr; } }

/* Footer brand lockup (crisp emblem + white wordmark) */
.footer-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-lockup img { width: 54px; height: auto; flex: none; }
.footer-lockup span {
  font-family: var(--ff-head); font-weight: 600; color: #fff;
  font-size: 1.18rem; line-height: 1.14; letter-spacing: -.01em;
}

/* Media statement — bullet points variant */
.ms-points { list-style: none; text-align: left; max-width: 23em; margin: 4px auto 0; }
.ms-points li { position: relative; padding: 8px 0 8px 28px; color: #d3e4f2; font-size: .96rem; line-height: 1.45; }
.ms-points li::before {
  content: ''; position: absolute; left: 3px; top: 12px;
  width: 12px; height: 7px; border-left: 2px solid #5fc4e0; border-bottom: 2px solid #5fc4e0;
  transform: rotate(-45deg);
}

/* File input (CV upload) */
.file-input {
  cursor: pointer;
  background: #fdfefe;
  padding: .7rem 1rem;
}
.file-input::file-selector-button {
  font-family: var(--ff-head); font-weight: 500; font-size: .88rem;
  padding: .5rem 1rem; margin-right: 14px;
  border: none; border-radius: 8px; cursor: pointer;
  background: linear-gradient(120deg, var(--teal-600), var(--navy-700)); color: #fff;
  transition: transform .2s ease;
}
.file-input::file-selector-button:hover { transform: translateY(-1px); }

/* Footer horizontal white logo + social row */
.footer-logo-img { width: 260px; max-width: 82%; height: auto; margin-bottom: 18px; }
.footer-brand .social { margin-top: 20px; }
@media (max-width: 620px) { .footer-logo-img { width: 230px; } }

/* Footer logo — desktop / mobile swap */
.footer-logo--mobile { display: none; }
@media (max-width: 620px) {
  .footer-logo--desktop { display: none; }
  .footer-logo--mobile { display: block; }
}
