/* =========================================
   AROHAM TALENT — Design System
   ========================================= */
:root {
  /* Brand palette */
  --navy: #0A1F44;
  --navy-700: #122d5c;
  --navy-600: #1a3a73;
  --teal: #00A896;
  --teal-600: #008e7f;
  --teal-300: #4fd1c5;
  --gold: #F4B400;
  --bg: #ffffff;
  --bg-alt: #F2F4F7;
  --bg-cream: #F8FAFC;
  --ink: #0A1F44;
  --ink-2: #3b4a6b;
  --ink-3: #6b7896;
  --line: #E3E8F0;
  --line-2: #d4dce8;

  /* Type */
  --ff-head: "Montserrat", system-ui, sans-serif;
  --ff-body: "Poppins", system-ui, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(10,31,68,.06), 0 1px 3px rgba(10,31,68,.04);
  --shadow-md: 0 8px 24px -8px rgba(10,31,68,.14), 0 4px 12px -4px rgba(10,31,68,.08);
  --shadow-lg: 0 30px 60px -20px rgba(10,31,68,.25), 0 18px 36px -18px rgba(10,31,68,.18);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Typography */
h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; }
h3 { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; }
p { margin: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--teal); display: inline-block; }
.eyebrow.on-dark { color: var(--teal-300); }
.eyebrow.on-dark::before { background: var(--teal-300); }
.lead { font-size: clamp(17px, 1.3vw, 19px); color: var(--ink-2); line-height: 1.55; max-width: 60ch; }

/* Container & sections */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(72px, 9vw, 128px); position: relative; }
.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 72px); text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { margin-inline: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-family: var(--ff-head); font-weight: 600; font-size: 15px; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; white-space: nowrap; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px -10px rgba(0,168,150,.55); }
.btn-primary:hover { background: var(--teal-600); transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(0,168,150,.65); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-1px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-color: var(--line); background: rgba(255,255,255,.95); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; width: auto; display: block; }
.footer .brand-logo { height: 48px; }
.brand-mark { width: 38px; height: 38px; color: var(--navy); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { font-family: var(--ff-head); font-weight: 800; letter-spacing: 0.04em; color: var(--navy); font-size: 18px; }
.brand-text .b2 { font-family: var(--ff-head); font-weight: 500; letter-spacing: 0.32em; color: var(--teal); font-size: 10px; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--ink-2); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--navy); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--teal); transition: width .25s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); position: relative; transition: transform .25s ease; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy); transition: transform .25s ease, top .25s ease; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-mobile { display: flex; }
  .nav-mobile { display: none; flex-direction: column; gap: 4px; position: absolute; left: 0; right: 0; top: 76px; background: #fff; padding: 16px var(--gutter) 24px; border-bottom: 1px solid var(--line); }
  .nav-mobile a { padding: 14px 0; font-weight: 500; border-bottom: 1px solid var(--line); }
  .nav-mobile .btn { margin-top: 14px; }
}
@media (min-width: 961px) { .nav-mobile { display: none !important; } }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding-top: clamp(60px, 8vw, 104px);
  padding-bottom: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 90% 10%, rgba(0,168,150,.10), transparent 70%),
    radial-gradient(50% 60% at 0% 0%, rgba(10,31,68,.05), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 7px; border-radius: 999px;
  background: rgba(0,168,150,.08); color: var(--navy);
  font-size: 13px; font-weight: 500;
  border: 1px solid rgba(0,168,150,.18);
  margin-bottom: 24px;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(0,168,150,.18); }
.hero-pill .badge { padding: 3px 10px; background: var(--navy); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.hero h1 .accent { color: var(--teal); }
.hero .lead { margin-top: 22px; font-size: clamp(17px, 1.3vw, 19px); }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 44px; }
.avatars { display: flex; }
.avatars .a {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff;
  background: var(--bg-alt); margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy); font-size: 13px;
  font-family: var(--ff-head);
}
.avatars .a:first-child { margin-left: 0; }
.avatars .a:nth-child(1) { background: linear-gradient(135deg,#0A1F44,#1a3a73); color: #fff; }
.avatars .a:nth-child(2) { background: linear-gradient(135deg,#00A896,#4fd1c5); color: #fff; }
.avatars .a:nth-child(3) { background: linear-gradient(135deg,#F4B400,#f6c849); color: #fff; }
.avatars .a:nth-child(4) { background: linear-gradient(135deg,#1E6A8E,#3CC9C0); color: #fff; }
.hero-trust .meta strong { display: block; font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: 16px; }
.hero-trust .meta span { font-size: 13px; color: var(--ink-3); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 4/4.4; }
.hv-photo {
  position: absolute; inset: 0; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(135deg,#0A1F44 0%, #1a3a73 100%);
  box-shadow: var(--shadow-lg);
}
.hv-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(244,180,0,.18), transparent 70%),
    radial-gradient(50% 50% at 20% 80%, rgba(0,168,150,.25), transparent 60%);
}
.hv-photo .silhouette {
  position: absolute; inset: 0; opacity: .9;
}
.hv-overlay-text {
  position: absolute; left: 28px; right: 28px; bottom: 28px; color: #fff;
  font-family: var(--ff-head); font-weight: 600; font-size: 22px; line-height: 1.25;
}
.hv-overlay-text .teal { color: var(--teal-300); }

/* Floating stat cards */
.float-card {
  position: absolute;
  background: #ffffff !important;
  opacity: 1 !important;
  padding: 16px 18px; border-radius: var(--r-md);
  box-shadow: 0 6px 16px -4px rgba(10,31,68,.35), 0 1px 3px rgba(10,31,68,.18);
  border: 1px solid rgba(10,31,68,.10);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-head);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  isolation: isolate;
  z-index: 5;
}
.float-card .icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: #e6f7f4; color: var(--teal); display: grid; place-items: center; }
.float-3 { background: var(--navy) !important; }
.float-3 .icon-wrap { background: rgba(0,168,150,.22); color: var(--teal-300); }
.float-card .v { font-weight: 700; color: var(--navy); font-size: 20px; line-height: 1; }
.float-card .l { font-size: 12px; color: var(--ink-3); font-family: var(--ff-body); margin-top: 4px; }
.float-1 { top: 8%; left: -28px; }
.float-2 { bottom: 14%; right: -22px; }
.float-3 { top: 38%; right: -34px; color: #fff; }
.float-3 .v { color: #fff; } .float-3 .l { color: rgba(255,255,255,.7); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 520px; margin-inline: auto; aspect-ratio: 4/3.6; }
  .float-1 { left: -10px; } .float-2 { right: -10px; } .float-3 { right: -14px; }
}

/* =========================================
   LOGO STRIP
   ========================================= */
.logos { padding-block: 56px; background: var(--bg-alt); }
.logos-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.logos-label { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; font-family: var(--ff-head); }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(28px, 5vw, 64px); align-items: center; opacity: .8; }
.logo-item { font-family: var(--ff-head); font-weight: 700; font-size: clamp(17px, 1.6vw, 22px); color: var(--navy); letter-spacing: -0.02em; opacity: .7; transition: opacity .2s ease; }
.logo-item:hover { opacity: 1; }
.logo-item .dot { color: var(--teal); }

/* =========================================
   SERVICES
   ========================================= */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.svc {
  position: relative;
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  opacity: 0; transition: opacity .25s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc:hover::before { opacity: 1; }
.svc .num {
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  color: var(--ink-3); letter-spacing: 0.1em;
}
.svc .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,168,150,.10); color: var(--teal);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background .25s ease, color .25s ease;
}
.svc:hover .ico { background: var(--teal); color: #fff; }
.svc h3 { margin-bottom: 10px; }
.svc p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.svc .more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-family: var(--ff-head); font-weight: 600; font-size: 14px;
  color: var(--navy); opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.svc:hover .more { opacity: 1; transform: translateY(0); }
/* Make 5 cards: first 2 = 3 cols each, next 3 = 2 cols each (5 total visually rebalanced) */
.svc.size-lg { grid-column: span 3; }
.svc.size-md { grid-column: span 2; }
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc, .svc.size-lg, .svc.size-md { grid-column: span 1; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================
   STATS BANNER
   ========================================= */
.stats {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 64px);
  position: relative; overflow: hidden;
  margin-top: clamp(20px, 4vw, 60px);
}
.stats::before {
  content: ""; position: absolute; inset: -1px;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(0,168,150,.25), transparent 60%),
    radial-gradient(35% 50% at 0% 100%, rgba(244,180,0,.12), transparent 60%);
  pointer-events: none;
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat .v { font-family: var(--ff-head); font-weight: 700; font-size: clamp(40px, 4.5vw, 60px); line-height: 1; letter-spacing: -0.03em; display: inline-flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.stat .v .tail { color: var(--teal-300); font-size: 0.5em; font-weight: 700; letter-spacing: -0.01em; }
.stat .l { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.7); letter-spacing: 0.04em; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.12); padding-left: 32px; }
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat + .stat { border-left: 0; padding-left: 0; }
  .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
}

/* =========================================
   ABOUT (split)
   ========================================= */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-img {
  position: relative; aspect-ratio: 4/4.4; border-radius: var(--r-xl);
  background: linear-gradient(140deg,#0A1F44,#1a3a73 60%, #00A896);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 30% 30%, rgba(244,180,0,.18), transparent 60%),
    radial-gradient(40% 50% at 80% 80%, rgba(0,168,150,.35), transparent 60%);
}
.about-img .silh { position: absolute; inset: 0; }
.about-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: 18px 22px; display: flex; gap: 14px; align-items: center;
}
.about-badge .v { font-family: var(--ff-head); font-weight: 700; font-size: 36px; color: var(--navy); line-height: 1; }
.about-badge .l { font-size: 13px; color: var(--ink-2); line-height: 1.3; max-width: 130px; }
.about-list { list-style: none; margin: 28px 0 0; padding: 0; }
.about-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.about-list li:first-child { border-top: 0; padding-top: 0; }
.about-list .check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,168,150,.12); color: var(--teal);
  display: grid; place-items: center; margin-top: 2px;
}
.about-list strong { font-family: var(--ff-head); font-weight: 600; color: var(--navy); display: block; margin-bottom: 2px; }
.about-list span { color: var(--ink-2); font-size: 15px; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } .about-img { max-width: 520px; margin-inline: auto; } }

/* =========================================
   PROCESS
   ========================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: 36px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.step .num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: #fff; border: 2px solid var(--line);
  display: grid; place-items: center; position: relative;
  font-family: var(--ff-head); font-weight: 700; font-size: 24px; color: var(--navy);
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.step:hover .num { background: var(--teal); color: #fff; border-color: var(--teal); }
.step h4 { margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-2); }
@media (max-width: 800px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-grid::before { display: none; }
}

/* =========================================
   INDUSTRIES
   ========================================= */
.industries { background: var(--bg-alt); }
.ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ind {
  background: #fff; border-radius: var(--r-md); padding: 22px 18px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  border: 1px solid var(--line); transition: all .2s ease;
}
.ind:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow-sm); }
.ind .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(10,31,68,.04); color: var(--navy); display: grid; place-items: center; transition: background .2s ease, color .2s ease; }
.ind:hover .ico { background: var(--teal); color: #fff; }
.ind .name { font-family: var(--ff-head); font-weight: 600; font-size: 14px; color: var(--navy); }
@media (max-width: 900px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================
   WHY US (feature columns)
   ========================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  padding: 32px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line);
  transition: all .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .ico { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--teal), var(--teal-300)); color: #fff; display: grid; place-items: center; margin-bottom: 20px; }
.feature h3 { margin-bottom: 10px; font-size: 20px; }
.feature p { color: var(--ink-2); font-size: 15px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.testimonials::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 90% 10%, rgba(0,168,150,.18), transparent 60%),
    radial-gradient(30% 40% at 10% 80%, rgba(244,180,0,.10), transparent 60%);
}
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head .lead { color: rgba(255,255,255,.75); }
.test-track { position: relative; }
.test-viewport { overflow: hidden; border-radius: var(--r-xl); }
.test-rail { display: flex; transition: transform .55s cubic-bezier(.6,.05,.28,1); }
.test-card {
  flex: 0 0 100%; padding: clamp(36px, 5vw, 56px); padding-right: clamp(36px, 5vw, 80px);
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.quote-mark { font-family: var(--ff-head); font-size: 96px; line-height: 0.8; color: var(--teal-300); opacity: .35; }
.test-quote { font-family: var(--ff-head); font-weight: 500; font-size: clamp(20px, 2vw, 26px); line-height: 1.4; color: #fff; max-width: 60ch; }
.test-author { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.test-author .av { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; color: #fff; }
.test-author .nm { font-family: var(--ff-head); font-weight: 600; color: #fff; }
.test-author .ro { font-size: 13px; color: rgba(255,255,255,.65); }
.test-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.test-dots { display: flex; gap: 8px; }
.test-dots button { width: 28px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.25); transition: background .2s ease, width .2s ease; }
.test-dots button.active { background: var(--teal-300); width: 44px; }
.test-arrows { display: flex; gap: 10px; }
.test-arrows button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  display: grid; place-items: center; transition: border-color .2s ease, background .2s ease;
}
.test-arrows button:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* =========================================
   FAQ
   ========================================= */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--ff-head); font-weight: 600; font-size: 18px; color: var(--navy);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--teal-600); }
.faq-q .plus {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--line-2); display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  color: var(--navy);
}
.faq-item.open .faq-q .plus { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 60px 24px 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }

/* =========================================
   CTA + CONTACT
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #122d5c 60%, var(--navy-600) 100%);
  color: #fff; border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 80% 50%, rgba(0,168,150,.25), transparent 60%);
}
.cta-grid { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.cta-grid h2 { color: #fff; }
.cta-grid p { color: rgba(255,255,255,.78); margin-top: 14px; max-width: 50ch; }
.cta-actions { position: relative; display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; align-items: stretch; }
.cta-actions .btn { flex: 1 1 0; min-width: 200px; max-width: 280px; justify-content: center; }
@media (max-width: 800px) { .cta-grid { grid-template-columns: 1fr; } .cta-actions { justify-content: flex-start; } .cta-actions .btn { flex: 1 1 200px; max-width: none; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 5vw, 64px); align-items: start; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info .lead { margin-bottom: 32px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-row .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,168,150,.10); color: var(--teal); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .lbl { font-family: var(--ff-head); font-weight: 600; color: var(--navy); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-row .val { color: var(--ink-2); margin-top: 2px; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--navy); background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,168,150,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; }
.form-actions .small { font-size: 13px; color: var(--ink-3); }
.form-success {
  display: none; margin-top: 12px; padding: 14px 16px; border-radius: 10px;
  background: rgba(0,168,150,.10); color: var(--teal-600); border: 1px solid rgba(0,168,150,.25);
  font-size: 14px; font-weight: 500;
}
.form-card.sent .form-success { display: block; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer { background: #061230; color: rgba(255,255,255,.72); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand-text .b1, .footer .brand-text .b2 { color: #fff; }
.footer .brand-text .b2 { color: var(--teal-300); }
.footer .brand-mark { color: #fff; }
.footer .blurb { margin-top: 18px; font-size: 14.5px; line-height: 1.65; max-width: 40ch; }
.footer h5 { font-family: var(--ff-head); font-weight: 600; color: #fff; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .2s ease; }
.footer ul a:hover { color: var(--teal-300); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; transition: all .2s ease; color: #fff; }
.socials a:hover { background: var(--teal); border-color: var(--teal); }
.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #fff; padding: 11px 14px; border-radius: 10px; font: inherit; }
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter input:focus { outline: 0; border-color: var(--teal-300); }
.newsletter button { background: var(--teal); color: #fff; padding: 0 16px; border-radius: 10px; font-weight: 600; font-family: var(--ff-head); }
.newsletter button:hover { background: var(--teal-600); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-size: 13.5px; flex-wrap: wrap;
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================
   UTIL
   ========================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Stock-photo treatment inside themed visual containers */
.hv-photo img,
.about-img > img,
.sr-visual > img,
.industry-visual > img,
.article-cover > img,
.fa-cover > img,
.team-photo > img,
.about-hero-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Tint overlays so existing text on photos stays readable */
.hv-photo > img + .hv-overlay-text,
.sr-visual > img ~ .sr-tag,
.sr-visual > img ~ .sr-overlay,
.industry-visual > img ~ .label,
.article-cover > img ~ .article-category {
  z-index: 2;
}
.hv-photo:has(> img)::after {
  background:
    linear-gradient(180deg, rgba(10,31,68,0) 50%, rgba(10,31,68,.7) 100%),
    radial-gradient(60% 50% at 70% 30%, rgba(244,180,0,.10), transparent 70%);
  z-index: 1;
}
.sr-visual:has(> img)::after {
  background: linear-gradient(180deg, rgba(10,31,68,0) 50%, rgba(10,31,68,.45) 100%);
  z-index: 1;
}
.industry-visual:has(> img) {
  background: var(--navy);
}
.industry-visual:has(> img)::after {
  background: linear-gradient(180deg, rgba(10,31,68,0) 40%, rgba(10,31,68,.55) 100%);
  z-index: 1;
}
.industry-visual:has(> img) > .label { z-index: 2; }
.industry-visual:has(> img) > .ico { display: none; }

.article-cover:has(> img)::after {
  background: linear-gradient(180deg, rgba(10,31,68,0) 50%, rgba(10,31,68,.55) 100%);
  z-index: 1;
}
.fa-cover:has(> img)::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,31,68,0) 50%, rgba(10,31,68,.5) 100%);
  z-index: 1;
}
.team-photo:has(> img) > .initials { display: none; }
.about-img:has(> img)::after {
  background:
    linear-gradient(180deg, rgba(10,31,68,0) 50%, rgba(10,31,68,.55) 100%);
  z-index: 1;
}
.about-img > .about-badge { z-index: 2; }

/* Mobile webapp tab bar — hidden on desktop, shown by media query */
.app-tabbar { display: none; }

/* =========================================
   MOBILE WEBAPP SHELL
   ========================================= */
@media (max-width: 720px) {
  :root { --gutter: 18px; }

  body { padding-bottom: 76px; -webkit-tap-highlight-color: transparent; }

  /* App-style top bar */
  .nav {
    background: #ffffff;
    box-shadow: 0 1px 0 var(--line);
  }
  .nav-inner { height: 64px; }
  .brand-logo { height: 34px; }

  /* Hide desktop nav-links entirely on mobile; replace with bottom bar */
  .nav-links { display: none !important; }
  .nav-cta .btn { display: inline-flex; padding: 10px 16px; font-size: 13px; }
  .nav-toggle { display: none !important; }
  .nav-mobile { display: none !important; }

  /* Tighter sections */
  section { padding-block: 56px; }
  h1 { font-size: 36px !important; line-height: 1.08; }
  h2 { font-size: 28px !important; line-height: 1.12; }
  h3 { font-size: 19px; }
  .lead { font-size: 16px; }
  .section-head { margin-bottom: 28px; }

  .container { padding-inline: var(--gutter); }

  /* Hero */
  .hero { padding-top: 32px; padding-bottom: 48px; }
  .hero-grid { gap: 32px; }
  .hero-visual { aspect-ratio: 4/4; max-width: 100%; }
  .float-card { padding: 12px 14px; }
  .float-card .v { font-size: 17px; }
  .float-card .l { font-size: 11px; }
  .float-card .icon-wrap { width: 34px; height: 34px; }
  .float-1 { top: 12px; left: 12px; }
  .float-2 { bottom: 12px; right: 12px; }
  .float-3 { top: auto; bottom: 64px; right: 12px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; min-width: 0; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* App cards everywhere */
  .svc, .feature, .ind, .value, .stage-details, .channel, .sla,
  .article, .team-card, .industry-card, .form-card, .compare {
    border-radius: 16px;
  }
  .svc { padding: 22px; }
  .feature, .value, .channel { padding: 22px; }

  /* Buttons: bigger hit targets */
  .btn { min-height: 48px; padding: 14px 22px; }

  /* Floating bottom tab bar */
  .app-tabbar {
    display: grid;
    position: fixed;
    bottom: 12px;
    left: 12px; right: 12px;
    z-index: 80;
    grid-template-columns: repeat(5, 1fr);
    background: #ffffff;
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 16px 40px -10px rgba(10,31,68,.25), 0 4px 12px -2px rgba(10,31,68,.1);
    border: 1px solid var(--line);
  }
  .app-tabbar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border-radius: 999px;
    color: var(--ink-3);
    font-family: var(--ff-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color .2s ease, background .2s ease;
  }
  .app-tabbar a svg { width: 22px; height: 22px; transition: transform .2s ease; }
  .app-tabbar a:active svg { transform: scale(0.88); }
  .app-tabbar a.active {
    background: var(--navy);
    color: #fff;
  }
  .app-tabbar a.active .label { display: inline; }

  /* Hide footer nav columns clutter — keep brand + bottom */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; padding-top: 18px; }

  /* Section heads centered with smaller eyebrow */
  .eyebrow { font-size: 11px; }

  /* Process / about flow */
  .stage { padding-block: 36px; }
  .stage-num { font-size: 60px; line-height: 0.9; }
  .timeline { padding-left: 24px; }

  /* Compare component tabs scroll horizontally */
  .compare { padding: 14px; }
  .cmp-tabs { grid-template-columns: repeat(5, max-content); }
  .cmp-card { min-height: 0; padding: 20px; }
  .cmp-bars { gap: 12px; }
  .cmp-meta { padding: 14px; }

  /* Testimonials */
  .test-card { padding: 28px 20px; }
  .test-quote { font-size: 18px; }

  /* Logos strip — wrap tighter */
  .logos-row { gap: 24px 32px; }

  /* Stats grid → 2x2 (already handled but tighten) */
  .stats { padding: 36px 24px; border-radius: 22px; }
  .stat .v { font-size: 36px; }

  /* Page hero */
  .page-hero { padding-top: 32px; padding-bottom: 32px; }
  .page-hero-aside { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .aside-card { flex: 1 1 calc(50% - 4px); padding: 14px 16px; }
  .aside-card .v { font-size: 18px; }
  .aside-card .l { font-size: 11px; }
  .aside-card .ico { width: 36px; height: 36px; }

  /* CTA banner: stack actions full width */
  .cta-banner { padding: 36px 24px; border-radius: 22px; }
  .cta-actions .btn { flex: 1 1 100%; max-width: none; }

  /* Hide map art width-cramping */
  .map-card { grid-template-columns: 1fr; }
  .map-art { min-height: 260px; }

  /* Contact channels stack */
  .channels-grid { grid-template-columns: 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; }

  /* Smooth iOS-like scroll */
  html { scroll-behavior: smooth; }
  body { -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  .app-tabbar a .label { display: none; }
  .app-tabbar a { padding: 12px 4px; }
  .app-tabbar a svg { width: 24px; height: 24px; }
  .app-tabbar a.active { padding: 12px 14px; }
  .app-tabbar a.active .label { display: inline; margin-left: 6px; }
  .app-tabbar a.active { flex-direction: row; }
}

/* Safe area for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
  @media (max-width: 720px) {
    body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
    .app-tabbar { bottom: calc(12px + env(safe-area-inset-bottom)); }
  }
}

::selection { background: rgba(0,168,150,.22); color: var(--navy); }
