/* ============================================================
   SHILPA BIOLOGICALS — Hero Section
   Bright · airy · premium biopharma
   ============================================================ */

:root {
  /* Brand palette (from logo) */
  --teal:        #00a6c9;
  --teal-bright: #22c7e6;
  --cyan-glow:   #7ee5ff;
  --blue:        #0e6f97;
  --green:       #8cc63f;
  --green-bright:#a7db54;
  --ink:         #0a2537;

  /* Light neutrals */
  --white: #ffffff;
  --soft:  rgba(255, 255, 255, 0.9);
  --line:  rgba(255, 255, 255, 0.28);

  /* Type */
  --f-display: "Schibsted Grotesk", system-ui, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, sans-serif;
  --f-accent:  "Fraunces", Georgia, serif;

  /* Motion */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--white);
  background: #dff1f8;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
nav a { display: inline-block; }

/* ============================================================
   NAVIGATION — logo left · centered pill · contact right
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: clamp(1rem, 2vw, 1.6rem) 0;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
              padding 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.is-stuck {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 8px 30px -18px rgba(10, 37, 55, 0.5);
  padding: 0.75rem 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand { position: relative; display: block; height: 40px; }
.nav__logo {
  height: 40px; width: auto;
  transition: opacity 0.4s var(--ease);
}
.nav__logo--white { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25)); }
.nav__logo--color { position: absolute; inset: 0; opacity: 0; }
/* swap to the colored logo once the nav goes light on scroll */
.nav.is-stuck .nav__logo--white { opacity: 0; }
.nav.is-stuck .nav__logo--color { opacity: 1; }

/* Menu with hover dropdowns */
.nav__pill {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 0.9vw, 1rem);
}
.nav__item { position: relative; }
.nav__item > a {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.2rem;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.3rem;
  transition: color 0.3s var(--ease);
}
.nav__caret { width: 12px; height: 12px; opacity: 0.75; transition: transform 0.3s var(--ease); }
.nav__item:hover .nav__caret { transform: rotate(180deg); }
.nav__item > a::after {
  content: "";
  position: absolute; left: 0.3rem; right: 0.3rem; bottom: 0;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-bright), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__item:hover > a { color: #fff; }
.nav__item:hover > a::after { transform: scaleX(1); }
.nav.is-stuck .nav__item > a { color: rgba(10, 37, 55, 0.74); }
.nav.is-stuck .nav__item:hover > a { color: var(--ink); }

/* dropdown panel */
.nav__drop {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 224px;
  padding: 0.5rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(10, 37, 55, 0.08);
  box-shadow: 0 26px 54px -22px rgba(10, 40, 60, 0.45);
  display: grid; gap: 0.1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 60;
}
.nav__drop--wide { grid-template-columns: 1fr 1fr; min-width: 400px; }
.nav__item:hover .nav__drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.nav__drop a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 9px;
  font-family: var(--f-body);
  font-size: 0.88rem; font-weight: 500;
  color: #45606f;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__drop a:hover { background: rgba(0, 166, 201, 0.09); color: var(--teal); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.nav.is-stuck .nav__toggle span { background: var(--ink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 1.05rem 1.7rem;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }

/* Primary — lime green */
.btn--primary {
  color: #113305;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 12px 30px -10px rgba(140, 198, 63, 0.7),
              inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -12px rgba(140, 198, 63, 0.85),
              inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn--primary:hover svg { transform: translate(3px, -3px); }

/* Secondary — frosted white glass */
.btn--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.btn--secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 18px 40px -14px rgba(10, 37, 55, 0.45);
}
.btn--secondary:hover svg { transform: translateX(4px); }

/* Contact (nav) */
.btn--contact {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
}
.btn--contact:hover { background: var(--white); color: var(--ink); border-color: transparent; transform: translateY(-2px); }
.nav.is-stuck .btn--contact { color: var(--ink); border-color: rgba(10, 37, 55, 0.2); background: rgba(10, 37, 55, 0.05); }
.nav.is-stuck .btn--contact:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 250px 0 90px;       /* top/bottom padding, height follows content */
  overflow: hidden;
  isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 50%;    /* keep the hand + capsule in frame */
}
.hero__yt {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__ytframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 100%;
  min-width: 177.78vh;         /* cover taller heroes without letterboxing */
  border: 0;
  pointer-events: none;
}

/* Scrim — darken left & bottom for text legibility, keep the subject bright on the right */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 26, 42, 0.86) 0%, rgba(6, 26, 42, 0.58) 38%, rgba(6, 26, 42, 0.22) 66%, rgba(6, 26, 42, 0.04) 100%),
    linear-gradient(180deg, rgba(6, 26, 42, 0.18) 0%, rgba(6, 26, 42, 0.04) 42%, rgba(6, 26, 42, 0.5) 100%);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.7vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.032em;
  max-width: none;              /* full width — headline reads across 2 lines */
  text-shadow: 0 2px 30px rgba(6, 26, 40, 0.35);
}
.hero__title span { display: block; }
/* keep the headline to exactly two lines on larger screens */
@media (min-width: 760px) {
  .hero__title span { white-space: nowrap; }
}
.hero__title em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: #eafaff;
}

.hero__subtitle {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.6;
  color: var(--soft);
  max-width: 46ch;
  text-shadow: 0 1px 16px rgba(6, 26, 40, 0.4);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

/* Scroll cue — sits below the CTAs in normal flow */
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 3rem;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.hero__scroll svg { width: 16px; height: 16px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

/* ============================================================
   USP STAT STRIP  (band directly below the hero)
   ============================================================ */
.strip {
  position: relative;
  background: linear-gradient(115deg, #063b52 0%, #0e6f97 52%, #0a86a8 100%);
  overflow: hidden;
}
.strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 130% at 88% 0%, rgba(140, 198, 63, 0.20), transparent 60%),
    radial-gradient(50% 130% at 5% 100%, rgba(34, 199, 230, 0.24), transparent 62%);
  pointer-events: none;
}
.strip__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  position: relative;
  text-align: center;
  padding: clamp(1.15rem, 1.8vw, 1.5rem) clamp(1rem, 2vw, 1.6rem);
}
.stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 28%; bottom: 28%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.stat__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.stat__ico { display: inline-flex; color: var(--green-bright); }
.stat__ico svg { width: 22px; height: 22px; display: block; }
.stat__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.stat__num[data-suffix]::after {
  content: attr(data-suffix);
  color: var(--green-bright);
  margin-left: 0.04em;
}
.stat__label {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   SHARED EYEBROW
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  color: var(--blue);
  background: rgba(0, 166, 201, 0.08);
  border: 1px solid rgba(0, 166, 201, 0.2);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(140, 198, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0); }
}

/* ============================================================
   CERTIFICATIONS SECTION
   ============================================================ */
.certs {
  position: relative;
  background: #f5f9fb;
  color: var(--ink);
  padding: clamp(3.5rem, 6.5vw, 5.5rem) 0 clamp(3.5rem, 6.5vw, 5.5rem);
}
.certs::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 90% 6%, rgba(0, 166, 201, 0.06), transparent 60%),
    radial-gradient(60% 50% at 2% 98%, rgba(140, 198, 63, 0.07), transparent 60%);
  pointer-events: none;
}
.certs__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.certs__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}
.certs__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 1.2rem;
  color: var(--ink);
}
.certs__title em {
  display: block;
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(100deg, var(--teal) 0%, var(--blue) 55%, var(--green) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.certs__lead {
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.7;
  color: #4a6576;
}

/* Certifications — clean minimal strip (emblem + caption, no boxes) */
.badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  align-items: start;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 1.1rem;
}
.badge__ico {
  display: grid; place-items: center;
  width: 74px; height: 74px;
  border-radius: 50%;
  color: var(--teal);
  background: linear-gradient(140deg, rgba(0, 166, 201, 0.1) 0%, rgba(140, 198, 63, 0.1) 100%);
  border: 1px solid rgba(0, 166, 201, 0.18);
  box-shadow: 0 14px 30px -16px rgba(0, 111, 151, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.badge:hover .badge__ico {
  color: #fff;
  background: linear-gradient(140deg, var(--teal), var(--blue));
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 22px 40px -16px rgba(0, 111, 151, 0.6);
}
.badge__ico svg { width: 32px; height: 32px; }
.badge__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.94rem;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: #45606f;
  max-width: 16ch;
}

@media (max-width: 900px) {
  .badges { grid-template-columns: repeat(3, 1fr); row-gap: clamp(1.8rem, 4vw, 2.6rem); }
}
@media (max-width: 520px) {
  .badges { grid-template-columns: repeat(2, 1fr); }
}

.certs__thread {
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  max-width: 46ch;
  text-align: center;
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  color: var(--blue);
}

/* reveal-up (scroll triggered) */
.reveal-up { opacity: 0; transform: translateY(28px); }
.reveal-up.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 1.7rem 0.8rem; }
  .stat + .stat::before { display: none; }
  .certs__head { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 440px) {
  .stats { grid-template-columns: 1fr; }
}


/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.about {
  position: relative;
  background: #ffffff;
  color: var(--ink);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
}

/* Column order: content left, image right */
.about__content { order: 1; }
.about__media { position: relative; order: 2; }
.about__frame {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(6, 40, 60, 0.5);
  aspect-ratio: 5 / 4;
}
.about__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}
/* floating glass fact card */
.about__float {
  position: absolute;
  z-index: 3;
  left: -14px; bottom: 26px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem 0.9rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 24px 50px -26px rgba(6, 40, 60, 0.55);
}
.about__float-ico {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex: none;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.about__float-ico svg { width: 21px; height: 21px; }
.about__float-txt {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: #5a7180;
  line-height: 1.3;
}
.about__float-txt strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Content column */
.about__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 1.4rem 0 1.5rem;
  color: var(--ink);
}
.about__title em {
  display: block;
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(100deg, var(--teal) 0%, var(--blue) 55%, var(--green) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__text {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.7;
  color: #4a6576;
  margin-bottom: 1.1rem;
}
.about__points {
  list-style: none;
  margin: 1.6rem 0 2.2rem;
  display: grid;
  gap: 0.85rem;
}
.about__points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
}
.about__points svg {
  width: 20px; height: 20px; flex: none;
  padding: 3px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--green));
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__media { max-width: 560px; }
  .about__text { max-width: none; }
}

/* ============================================================
   CTA / CONTACT FORM SECTION
   ============================================================ */
.cta {
  position: relative;
  background: linear-gradient(135deg, #062a3f 0%, #0b4f6e 55%, #0a7592 100%);
  color: #fff;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(50% 90% at 90% 0%, rgba(140, 198, 63, 0.20), transparent 60%),
    radial-gradient(46% 80% at 4% 100%, rgba(34, 199, 230, 0.22), transparent 62%);
  pointer-events: none;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  opacity: 0.16;
  mix-blend-mode: luminosity;
}
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.cta .eyebrow {
  color: #d0edf5;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.cta__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 1.4rem 0 1.3rem;
  max-width: 15ch;
}
.cta__title em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--green-bright);
}
.cta__trust {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #aecad6;
}
.cta__sub {
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
  color: #c4dde7;
  max-width: 50ch;
}
.cta__assurances {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}
.cta__assurances li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #dcecf2;
  font-size: 0.98rem;
}
.cta__assurances svg {
  width: 22px; height: 22px; flex: none;
  padding: 4px;
  border-radius: 50%;
  color: #062a3f;
  background: var(--green-bright);
}

/* Form card */
.cta__form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 22px;
  padding: clamp(1.6rem, 2.6vw, 2.5rem);
  box-shadow: 0 44px 90px -34px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 1rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field__label {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #33505f;
}
.field__label em { font-style: normal; font-weight: 500; color: #8194a1; }
.cta__form input,
.cta__form select,
.cta__form textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(10, 37, 55, 0.16);
  border-radius: 11px;
  background: #fff;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cta__form input::placeholder,
.cta__form textarea::placeholder { color: #9aabb6; }
.cta__form input:focus,
.cta__form select:focus,
.cta__form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 166, 201, 0.16);
}
.cta__form textarea { resize: vertical; min-height: 86px; }
.select { position: relative; display: block; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 2.4rem; cursor: pointer; }
.select svg {
  position: absolute; right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: #5a7180;
  pointer-events: none;
}
.cta__submit { width: 100%; margin-top: 0.3rem; }
.cta__note {
  margin: 0;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: #0a7592;
}

/* ============================================================
   SOLUTIONS (bento grid)
   ============================================================ */
.solutions {
  position: relative;
  background: #f5f9fb;
  color: var(--ink);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.solutions__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.solutions__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.solutions__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "feat feat c1 c2"
    "feat feat c3 c4";
  grid-auto-rows: clamp(300px, 23.5vw, 344px);
  gap: clamp(0.9rem, 1.4vw, 1.4rem);
}
.sc-l1 { grid-area: c1; }
.sc-r1 { grid-area: c2; }
.sc-l2 { grid-area: c3; }
.sc-r2 { grid-area: c4; }

/* ---- Featured card (left) — centered content + image at the bottom ---- */
.scard--feature {
  grid-area: feat;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  display: flex; flex-direction: column;
  color: var(--ink);
  background: linear-gradient(150deg, #e6f4f9 0%, #eaf3f7 50%, #e9f5f1 100%);
  border: 1px solid rgba(0, 166, 201, 0.1);
  box-shadow: 0 24px 50px -30px rgba(10, 40, 60, 0.5);
}
.scard__fdots {
  position: absolute; left: 24px; top: 44%;
  width: 84px; height: 84px; z-index: 0;
  background-image: radial-gradient(rgba(0, 166, 201, 0.4) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.55;
}
.scard__fimg {
  position: absolute; left: 0; bottom: 0; z-index: 0;
  width: 100%; height: 46%;
  object-fit: cover; object-position: 50% 22%;
  -webkit-mask-image: linear-gradient(to top, #000 52%, transparent 100%);
  mask-image: linear-gradient(to top, #000 52%, transparent 100%);
  transition: transform 0.8s var(--ease);
}
.scard--feature:hover .scard__fimg { transform: scale(1.04); }
.scard__fcontent {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  text-align: left;
  max-width: 34rem;
  padding: clamp(1.8rem, 2.6vw, 2.6rem) clamp(1.9rem, 2.8vw, 3rem);
}
.scard__ftag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #4e7d1f;
  background: rgba(140, 198, 63, 0.16);
  border: 1px solid rgba(140, 198, 63, 0.34);
  padding: 0.42rem 0.95rem; border-radius: 100px;
}
.scard__ftag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.scard--feature .scard__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.14; letter-spacing: -0.025em;
  color: #204a63;
  margin: 0;
}
.scard--feature .btn--ink { padding-top: 0.78rem; padding-bottom: 0.78rem; }
.scard__fdivider {
  width: 66px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  margin: 1.1rem 0 1.2rem;
}
.scard--feature .scard__desc {
  color: #4a6576;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.6;
  margin-bottom: clamp(1.4rem, 2.2vw, 2rem);
}

/* dark pill button with circular arrow */
.btn--ink {
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  box-shadow: 0 14px 28px -12px rgba(0, 111, 151, 0.55);
  padding-right: 0.5rem;
}
.btn--ink:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -12px rgba(10, 37, 55, 0.7); }
.btn__circle {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; color: var(--ink);
  margin-left: 0.15rem;
}
.btn__circle svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.btn--ink:hover .btn__circle svg { transform: translateX(2px); }

/* ---- Side image cards ---- */
.scard--v {
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(10, 37, 55, 0.09);
  box-shadow: 0 14px 32px -24px rgba(10, 37, 55, 0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.scard--v:hover { transform: translateY(-6px); border-color: rgba(0, 166, 201, 0.3); box-shadow: 0 30px 56px -28px rgba(0, 111, 151, 0.5); }
.scard__media { position: relative; height: 39%; flex: none; overflow: hidden; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.scard--v:hover .scard__media img { transform: scale(1.06); }
.scard__varrow { display: none; }
.scard__vico {
  position: absolute; left: clamp(1rem, 1.6vw, 1.4rem); top: calc(39% - 23px); z-index: 3;
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  color: var(--teal);
  background: #fff;
  box-shadow: 0 10px 22px -8px rgba(6, 40, 60, 0.4);
}
.scard__vico svg { width: 23px; height: 23px; }
.scard__vbody {
  flex: 1; display: flex; flex-direction: column;
  padding: 1.7rem clamp(1.3rem, 1.6vw, 1.6rem) clamp(1.2rem, 1.5vw, 1.5rem);
}
.scard__vtitle { font-family: var(--f-display); font-weight: 600; font-size: 1rem; line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 0.5rem; white-space: nowrap; }
.scard__vdesc { font-size: 0.86rem; line-height: 1.5; color: #5a7180; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.scard__more { margin-top: auto; padding-top: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--f-display); font-weight: 600; font-size: 0.88rem; color: var(--teal); }
.scard__more svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.scard--v:hover .scard__more svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .cta__inner { grid-template-columns: 1fr; }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "feat feat" "c1 c2" "c3 c4";
    grid-auto-rows: clamp(320px, 46vw, 372px);
  }
  .scard--feature { min-height: 440px; }
}
@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: "feat" "c1" "c2" "c3" "c4";
  }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   VALUE CHAIN (process flow)
   ============================================================ */
.chain {
  position: relative;
  background: #ffffff;
  color: var(--ink);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.chain__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.chain__head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.chain__sub {
  display: inline-block;
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--teal);
  margin-bottom: 0.7rem;
}
.chain__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.chain__title em {
  font-family: var(--f-accent); font-style: italic; font-weight: 400;
  background: linear-gradient(100deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.flow {
  list-style: none;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
/* connecting line behind the nodes */
.flow::before {
  content: "";
  position: absolute;
  top: 55px; left: 12.5%; right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  opacity: 0.35;
  border-radius: 3px;
}
.flow__step { position: relative; text-align: center; z-index: 1; }
.flow__node {
  display: grid; place-items: center;
  width: 110px; height: 110px; margin: 0 auto 1.5rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border: 7px solid #fff;                 /* masks the line so it looks connected */
  box-shadow: 0 18px 34px -14px rgba(0, 111, 151, 0.6);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.flow__node svg { width: 50px; height: 50px; }
.flow__step:hover .flow__node { transform: translateY(-5px); box-shadow: 0 24px 40px -14px rgba(0, 111, 151, 0.7); }
.flow__no {
  display: block;
  font-family: var(--f-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.35rem;
}
.flow__label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 14ch;
  margin: 0 auto;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why {
  position: relative;
  background: #f5f9fb;
  color: var(--ink);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.why__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.why__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 1.4rem 0 1.5rem;
  color: var(--ink);
}
.why__title em {
  font-family: var(--f-accent); font-style: italic; font-weight: 400;
  background: linear-gradient(100deg, var(--teal), var(--blue) 60%, var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.why__text { font-size: clamp(0.98rem, 1.1vw, 1.08rem); line-height: 1.7; color: #4a6576; margin-bottom: 1.1rem; }
.why__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.why__tags li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(0, 166, 201, 0.22);
  box-shadow: 0 8px 20px -16px rgba(0, 111, 151, 0.6);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.why__tags li svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
.why__tags li:hover { transform: translateY(-3px); border-color: var(--teal); }

.why__media { position: relative; }
.why__frame {
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(6, 40, 60, 0.5);
}
.why__frame img { width: 100%; height: 100%; object-fit: cover; }
.why__badge {
  position: absolute; left: -18px; bottom: 30px;
  display: flex; flex-direction: column;
  padding: 1rem 1.3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  box-shadow: 0 24px 50px -22px rgba(0, 111, 151, 0.7);
}
.why__badge strong { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; }
.why__badge span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.85); margin-top: 0.15rem; }

/* ============================================================
   MANIFESTO (dark centered statement)
   ============================================================ */
.manifesto {
  position: relative;
  background: linear-gradient(135deg, #062a3f 0%, #0b4f6e 55%, #0a7592 100%);
  color: #fff;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  overflow: hidden;
}
.manifesto::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 80% at 88% 12%, rgba(140, 198, 63, 0.22), transparent 60%),
    radial-gradient(45% 80% at 8% 90%, rgba(34, 199, 230, 0.22), transparent 62%);
  pointer-events: none;
}
.manifesto__inner {
  position: relative;
  max-width: 60rem; margin: 0 auto; padding: 0 var(--pad);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.manifesto__badge {
  width: clamp(120px, 14vw, 148px);
  height: clamp(120px, 14vw, 148px);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2.2rem;
  border: 3px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 22px 44px -16px rgba(0, 0, 0, 0.55);
}
.manifesto__badge img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 45%; }
.manifesto__text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #eaf6fb;
}
.manifesto__text em {
  font-family: var(--f-accent); font-style: italic; font-weight: 400;
  color: var(--green-bright);
}
.manifesto .btn { margin-top: clamp(2rem, 4vw, 2.8rem); }

/* ============================================================
   GLOBAL REACH (light map with flag pins)
   ============================================================ */
.reach {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #eef6fa 100%);
  color: var(--ink);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  overflow: hidden;
}
.reach__head {
  max-width: 46rem; margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 var(--pad);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
}
.reach__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.12; letter-spacing: -0.03em;
  color: var(--ink);
}
.reach__title em {
  font-family: var(--f-accent); font-style: italic; font-weight: 400;
  background: linear-gradient(100deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reach__text { font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.6; color: #4a6576; }

/* full-bleed real world map (cropped to a shorter band) */
.reach__world {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: clamp(430px, 42vw, 600px);
  overflow: hidden;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
}
.reach__mapinner {
  position: absolute;
  left: clamp(0.5rem, 2vw, 1.5rem); right: clamp(0.5rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-51%);
}
.reach__map { width: 100%; height: auto; display: block; }

/* flag pins */
.fpin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: 0 12px 24px -8px rgba(10, 60, 90, 0.45);
  z-index: 2;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fpin::before {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid rgba(0, 166, 201, 0.45);
  animation: fping 2.8s ease-out infinite;
}
.fpin::after {
  content: ""; position: absolute; left: 50%; bottom: -13px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(14, 111, 151, 0.16);
}
.fpin__img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.fpin:hover { transform: translate(-50%, -50%) scale(1.12); z-index: 6; box-shadow: 0 18px 32px -8px rgba(10, 60, 90, 0.5); }
@keyframes fping { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.75); opacity: 0; } }

.fpin--hub {
  width: 52px; height: 52px;
  border-color: var(--green-bright);
  box-shadow: 0 16px 32px -10px rgba(140, 198, 63, 0.55);
  z-index: 3;
}
.fpin--hub::before { border-color: rgba(140, 198, 63, 0.6); }
.fpin--hub::after { display: none; }
.fpin__tag {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--f-display); font-size: 0.76rem; font-weight: 700;
  color: var(--ink);
  background: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  box-shadow: 0 8px 18px -8px rgba(10, 60, 90, 0.4);
}

.reach__markets {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem;
  margin-top: clamp(1.8rem, 3vw, 2.5rem);
}
.reach__markets li {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-display); font-weight: 500; font-size: 0.9rem;
  color: var(--ink);
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(10, 37, 55, 0.1);
  box-shadow: 0 8px 18px -16px rgba(10, 60, 90, 0.5);
}
.reach__flag { width: 22px; height: 15px; border-radius: 3px; object-fit: cover; display: block; box-shadow: 0 1px 3px rgba(10,60,90,0.25); }

/* ============================================================
   FAQ (native accordion)
   ============================================================ */
.faq {
  position: relative;
  background: #ffffff;
  color: var(--ink);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.faq__inner { max-width: 74rem; margin: 0 auto; padding: 0 var(--pad); }
.faq__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.faq__list {
  columns: 2;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}
.faq__item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.faq__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.faq__item { border-bottom: 1px solid rgba(10, 37, 55, 0.22); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--teal); }
.faq__mark {
  position: relative; flex: none;
  width: 22px; height: 22px;
}
.faq__mark::before, .faq__mark::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2px; border-radius: 2px;
  background: var(--teal);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq__mark::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__mark::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
.faq__a {
  padding: 0 0 1.5rem;
  max-width: 54ch;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: #4a6576;
}

/* ============================================================
   COUNTRIES WE SERVE
   ============================================================ */
.countries {
  position: relative;
  background: linear-gradient(180deg, #f5f9fb 0%, #eaf4f8 100%);
  color: var(--ink);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.countries__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.countries__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.countries__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.countries__title em {
  font-family: var(--f-accent); font-style: italic; font-weight: 400;
  background: linear-gradient(100deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.countries__acc {
  max-width: 62rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(10, 37, 55, 0.09);
  border-radius: 20px;
  box-shadow: 0 24px 50px -30px rgba(10, 60, 90, 0.4);
  overflow: hidden;
}
.cacc { background: transparent; }
.cacc + .cacc { border-top: 1px solid rgba(10, 37, 55, 0.1); }
.cacc[open] { background: linear-gradient(180deg, rgba(0, 166, 201, 0.035), transparent 60%); }
.cacc summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--ink);
}
.cacc summary::-webkit-details-marker { display: none; }
.cacc__dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.cacc__meta {
  margin-left: auto;
  font-family: var(--f-body);
  font-size: 0.8rem; font-weight: 500;
  color: #8194a1;
}
.cacc__chev { width: 20px; height: 20px; color: #6c8494; transition: transform 0.35s var(--ease); }
.cacc[open] .cacc__chev { transform: rotate(180deg); color: var(--teal); }
.cacc__panel { padding: 0 1.4rem 1.4rem; }
.cacc__list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cchip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.55rem 0.95rem;
  border-radius: 100px;
  background: #f5f9fb;
  border: 1px solid rgba(10, 37, 55, 0.09);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.cchip:hover { transform: translateY(-3px); background: #fff; border-color: var(--teal); box-shadow: 0 12px 24px -14px rgba(0, 111, 151, 0.5); }
.cchip__flag { width: 24px; height: 17px; border-radius: 3px; object-fit: cover; box-shadow: 0 1px 3px rgba(10,60,90,0.25); }

@media (max-width: 900px) {
  .flow { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .flow::before { display: none; }
  .why__inner { grid-template-columns: 1fr; }
  .why__media { max-width: 460px; }
  .faq__list { columns: 1; }
  .reach__stage { aspect-ratio: 3 / 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .flow { grid-template-columns: 1fr; }
  .fpin { width: 44px; height: 44px; }
  .fpin__flag { font-size: 1.7rem; }
  .fpin--hub { width: 58px; height: 58px; }
  .fpin--hub .fpin__flag { font-size: 2.2rem; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   COUNTRIES — Know More accordion (light)
   ============================================================ */
.countries__knowmore {
  max-width: 62rem;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}
.knowmore {
  border: 1px solid rgba(10, 37, 55, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 30px -24px rgba(10, 60, 90, 0.4);
  overflow: hidden;
}
.knowmore > summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: clamp(1.05rem, 1.8vw, 1.4rem) clamp(1.3rem, 2.2vw, 1.8rem);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.knowmore > summary::-webkit-details-marker { display: none; }
.knowmore__icon {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  transition: transform 0.35s var(--ease);
}
.knowmore__icon svg { width: 18px; height: 18px; }
.knowmore[open] .knowmore__icon { transform: rotate(180deg); }
.knowmore .prose { padding: 0 clamp(1.3rem, 2.2vw, 1.8rem) clamp(1.6rem, 2.6vw, 2.2rem); }
.prose h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: clamp(1.7rem, 3vw, 2.2rem) 0 0.8rem;
  padding-bottom: 0.04em;
}
.prose h2:first-child { margin-top: 0.5rem; }
.prose p {
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.75;
  color: #4a6576;
  margin-bottom: 1rem;
}
.prose p a { color: var(--teal); font-weight: 600; }
.prose p a:hover { text-decoration: underline; }
.prose ul { list-style: none; margin: 0.4rem 0 1.4rem; padding: 0; display: grid; gap: 0.6rem; }
.prose li { position: relative; padding-left: 1.7rem; color: #4a6576; line-height: 1.6; }
.prose li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: linear-gradient(160deg, #0a2537 0%, #062033 60%, #063040 100%);
  color: rgba(255, 255, 255, 0.78);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad) clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr 1.15fr 1.15fr;
  gap: clamp(1.6rem, 3vw, 3rem);
}
.footer__logo { height: 42px; width: auto; }
.footer__tag {
  margin-top: 1.2rem;
  max-width: 34ch;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.footer__social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.footer__social a:hover { transform: translateY(-3px); background: #fff; color: var(--blue); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 {
  font-family: var(--f-display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1.1rem;
}
.footer__col a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: #fff; }
.footer__contact p { font-size: 0.92rem; line-height: 1.6; color: rgba(255, 255, 255, 0.62); margin: 0.6rem 0; }
.footer__cta { font-family: var(--f-display); font-weight: 700; color: var(--green-bright) !important; }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__legal a { color: rgba(255, 255, 255, 0.55); margin-left: 1.4rem; transition: color 0.25s var(--ease); }
.footer__legal a:hover { color: #fff; }

@media (max-width: 620px) {
  .footer__bar { flex-direction: column; align-items: flex-start; }
  .footer__legal a { margin-left: 0; margin-right: 1.4rem; }
}

/* ============================================================
   HEADING CLIP FIX — give italic/gradient accents breathing room
   ============================================================ */
.hero__title, .chain__title, .certs__title, .why__title, .globe__title, .reach__title,
.about__title, .solutions__title, .countries__title, .faq__title, .cta__title, .awards__title {
  line-height: 1.16;
  padding-bottom: 0.08em;
}
.hero__title em, .chain__title em, .certs__title em, .why__title em, .globe__title em,
.reach__title em, .about__title em, .countries__title em, .manifesto__text em,
.scard--feature .scard__title em {
  padding: 0 0.09em;
  margin: 0 -0.03em;
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); filter: blur(6px); }
.reveal.is-in {
  opacity: 1; transform: none; filter: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__pill { display: none; }
  .nav__toggle { display: flex; }
  .btn--contact { display: none; }
}
@media (max-width: 760px) {
  .hero { padding-top: 140px; }
}
@media (max-width: 620px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 3rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}
