/* ============================================================
   SAYNET.NG INNOVATIONS — Premium Corporate Homepage
   Design system: Deep Navy / SAYNET Blue / Bright Blue / White
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy: #071A33;
  --saynet: #075BFF;
  --bright: #1687FF;
  --light: #EAF4FF;
  --white: #FFFFFF;
  --soft: #F5F9FF;
  --ink: #081526;
  --muted: #46536B;
  --muted-soft: #8A97AC;
  --line: #DCE8F8;

  --grad: linear-gradient(135deg, #071A33 0%, #075BFF 55%, #1687FF 100%);
  --grad-text: linear-gradient(120deg, #075BFF 0%, #1687FF 60%, #075BFF 100%);
  --grad-navy: linear-gradient(160deg, #071A33 0%, #0A2C5E 60%, #075BFF 130%);

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-card: 0 18px 44px -22px rgba(7, 27, 51, .16);
  --shadow-hover: 0 30px 60px -24px rgba(7, 91, 255, .32);
  --shadow-header: 0 12px 34px -18px rgba(7, 27, 51, .22);

  --container: 1200px;
  --ease: cubic-bezier(.22, .8, .28, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--navy); font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(7, 91, 255, .18); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: clamp(64px, 9vw, 120px); }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.section-title {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  letter-spacing: -.02em;
  margin: 14px 0 18px;
}

.section-title.light { color: var(--white); }

.lead { font-size: clamp(1rem, 1.4vw, 1.125rem); color: var(--muted); }
.lead.light { color: #B9C7DE; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--saynet);
  background: rgba(7, 91, 255, .08);
  border: 1px solid rgba(7, 91, 255, .18);
  padding: 8px 16px;
  border-radius: 999px;
}

.eyebrow.light {
  color: #8FC1FF;
  background: rgba(143, 193, 255, .1);
  border-color: rgba(143, 193, 255, .25);
}

.center { text-align: center; margin-top: 40px; }

.icon { width: 1.2em; height: 1.2em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s, color .3s;
  white-space: nowrap;
}

.btn .icon { transition: transform .3s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  color: var(--white);
  background: var(--grad);
  background-size: 160% 160%;
  box-shadow: 0 14px 30px -12px rgba(7, 91, 255, .5);
}
.btn-primary:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(7, 91, 255, .55); }

.btn-outline {
  color: var(--saynet);
  border-color: rgba(7, 91, 255, .35);
  background: var(--white);
}
.btn-outline:hover { background: var(--light); border-color: var(--saynet); transform: translateY(-2px); }

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 30px -12px rgba(3, 12, 28, .5);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .45); }

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); transform: translateY(-2px); }

.btn-sm { padding: 11px 22px; font-size: .92rem; }

.btn-ghost-wa {
  color: #128C7E;
  border-color: rgba(18, 140, 126, .4);
  background: var(--white);
}
.btn-ghost-wa .icon { width: 18px; height: 18px; color: #25D366; }
.btn-ghost-wa:hover { background: #E9FBF0; border-color: #25D366; transform: translateY(-2px); }

/* ---------- Tighter nav for 8-link headers ---------- */
@media (max-width: 1280px) {
  .nav-links a { padding: 10px 9px; font-size: .9rem; }
  .primary-nav { gap: 14px; }
  .nav-cta { gap: 14px; }
  .btn-sm { padding: 10px 15px; font-size: .85rem; }
}

/* ---------- Link arrow ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--saynet);
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow .icon { transition: transform .3s var(--ease); }
.link-arrow:hover { gap: 12px; color: var(--bright); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 2000;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: top .25s;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
  transition: height .3s var(--ease);
}

.site-header.is-scrolled .header-inner { height: 68px; }

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  color: var(--saynet);
  transition: transform .4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }

.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; letter-spacing: .01em; color: var(--navy); }
.logo-text span { font-size: .6rem; font-weight: 600; letter-spacing: .34em; color: var(--saynet); text-transform: uppercase; }

/* Nav */
.primary-nav { display: flex; align-items: center; gap: 28px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: .97rem;
  color: var(--muted);
  border-radius: 10px;
  position: relative;
  transition: color .25s, background .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--saynet); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.is-current { color: var(--saynet); }
.nav-links a.is-current::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-expert { font-size: .92rem; font-weight: 600; color: var(--navy); border-bottom: 2px solid rgba(7, 91, 255, .35); padding-bottom: 2px; transition: border-color .3s, color .3s; }
.nav-expert:hover { color: var(--saynet); border-color: var(--saynet); }

/* Hamburger */
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background .25s, border-color .25s;
}
.hamburger:hover { border-color: var(--saynet); color: var(--saynet); }
.hamburger .icon { width: 24px; height: 24px; }
.hamburger .icon-close { display: none; }
.hamburger.is-open .icon-menu { display: none; }
.hamburger.is-open .icon-close { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 7vw, 88px)) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(22, 135, 255, .12), transparent 60%),
    radial-gradient(760px 460px at 96% 22%, rgba(7, 91, 255, .1), transparent 55%),
    linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7, 91, 255, .14) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(800px 420px at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(800px 420px at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-inner > * { min-width: 0; }

.hero-badge {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--saynet);
  background: var(--white);
  border: 1px solid rgba(7, 91, 255, .2);
  box-shadow: 0 8px 22px -12px rgba(7, 91, 255, .35);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
  max-width: 100%;
}
.hero-badge i { font-style: normal; color: var(--bright); opacity: .6; }

.hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.55rem);
  letter-spacing: -.025em;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}
.hero-strip li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 18px;
  border-left: 2px solid var(--bright);
}
.hero-strip li:first-child { padding-left: 0; border-left: 0; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(64px, 9vw, 110px)) 0 clamp(44px, 6vw, 72px);
  background:
    radial-gradient(900px 460px at 12% -10%, rgba(22, 135, 255, .12), transparent 60%),
    radial-gradient(760px 420px at 96% 10%, rgba(7, 91, 255, .1), transparent 55%),
    linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7, 91, 255, .14) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(800px 380px at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(800px 380px at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
}

.page-hero-title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: -.025em;
  margin: 18px 0 20px;
}

.page-hero .lead { margin-inline: auto; max-width: 60ch; }

/* Hero visual */
.hero-visual { position: relative; }

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px -30px rgba(7, 91, 255, .4));
}

/* floating chips */
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(7, 91, 255, .18);
  box-shadow: 0 16px 34px -18px rgba(7, 27, 51, .35);
  border-radius: 14px;
  padding: 10px 16px;
  animation: floatY 6s ease-in-out infinite;
}
.hero-chip strong { display: block; font-size: .82rem; line-height: 1.2; color: var(--navy); font-family: var(--font-display); }
.hero-chip small { display: block; font-size: .7rem; color: var(--muted); line-height: 1.2; }
.hero-chip .icon { width: 22px; height: 22px; color: var(--saynet); }

.chip-1 { top: 16%; left: -3%; animation-delay: .4s; }
.chip-2 { bottom: 14%; right: -2%; animation-delay: 1.2s; }

.chip-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
  animation: ping 2.4s infinite;
  flex: none;
}

/* SVG animation helpers */
.float-1 { animation: floatY 7s ease-in-out infinite; }
.float-2 { animation: floatY 8s ease-in-out .6s infinite; }
.float-3 { animation: floatY 7s ease-in-out 1.4s infinite; }
.float-4 { animation: floatY 8.5s ease-in-out .2s infinite; }

.pulse { animation: pulse 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.pulse.p2 { animation-delay: .7s; }
.pulse.p3 { animation-delay: 1.4s; }
.pulse.p4 { animation-delay: 2.1s; }
.pulse.p5 { animation-delay: 2.6s; }
.pulse.p6 { animation-delay: 3s; }

.line.draw { stroke-dasharray: 220; stroke-dashoffset: 220; animation: draw 2.6s var(--ease) forwards; }
.line.draw:nth-child(2) { animation-delay: .25s; }
.line.draw:nth-child(3) { animation-delay: .5s; }
.line.draw:nth-child(4) { animation-delay: .75s; }
.line.draw:nth-child(5) { animation-delay: 1s; }

.dot-run { animation: twinkle 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.dot-run.d2 { animation-delay: .65s; }
.dot-run.d3 { animation-delay: 1.3s; }
.dot-run.d4 { animation-delay: 1.95s; }

.particle { animation: twinkle 3.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.particle.p2 { animation-delay: .8s; }
.particle.p3 { animation-delay: 1.4s; }
.particle.p4 { animation-delay: 2s; }
.particle.p5 { animation-delay: 2.6s; }
.particle.p6 { animation-delay: 3.1s; }

.spin { animation: spin 40s linear infinite; transform-box: fill-box; transform-origin: center; }

/* ============================================================
   CAPABILITIES BAR
   ============================================================ */
.capabilities {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.cap-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.cap-bar::-webkit-scrollbar { display: none; }

.cap-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  scroll-snap-align: start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .06em;
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--soft);
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}
.cap-item .icon { width: 22px; height: 22px; color: var(--saynet); transition: transform .3s var(--ease); }
.cap-item:hover { background: var(--light); border-color: rgba(7, 91, 255, .25); color: var(--saynet); transform: translateY(-2px); }
.cap-item:hover .icon { transform: scale(1.12); }

/* ============================================================
   INTRODUCTION
   ============================================================ */
.intro { background: var(--white); }

.intro-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.intro-inner p { color: var(--muted); margin: 0 auto 22px; max-width: 70ch; }
.intro-inner .link-arrow { margin-top: 8px; }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions { background: var(--soft); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .4s;
}
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .35); }
.solution-card:hover::before { opacity: 1; animation: gradMove 3s linear infinite; }

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bright);
  opacity: .75;
  letter-spacing: .08em;
}

.card-icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--grad);
  background-size: 160% 160%;
  box-shadow: 0 12px 26px -10px rgba(7, 91, 255, .55);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.card-icon svg { width: 28px; height: 28px; }
.solution-card:hover .card-icon { transform: rotate(-6deg) scale(1.06); box-shadow: 0 16px 32px -10px rgba(7, 91, 255, .6); }

.solution-card h3 { font-size: 1.28rem; letter-spacing: -.01em; margin-bottom: 12px; }
.solution-card > p { color: var(--muted); font-size: .97rem; margin-bottom: 18px; }

.cap-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-bottom: 20px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.cap-list li {
  position: relative;
  font-size: .85rem;
  color: var(--muted);
  padding-left: 18px;
}
.cap-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bright);
  opacity: .55;
}

.notice {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .78rem;
  color: var(--muted-soft);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.notice .icon { width: 15px; height: 15px; margin-top: 3px; color: var(--saynet); }

.solution-card .link-arrow { margin-top: auto; padding-top: 6px; }

/* ============================================================
   BUILD / SECURE / AUTOMATE / TRANSFORM
   ============================================================ */
.bsat {
  position: relative;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(7, 91, 255, .22), transparent 60%),
    radial-gradient(700px 500px at 10% 100%, rgba(22, 135, 255, .16), transparent 60%),
    var(--grad-navy);
  color: var(--white);
  overflow: hidden;
}

.bsat-bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.bsat-bg svg {
  width: min(100%, 1300px);
  height: auto;
  aspect-ratio: 1200 / 500;
  opacity: .9;
}

.netline { stroke-dasharray: 6 8; animation: dashMove 18s linear infinite; }
.netline.l2 { animation-delay: -6s; }
.netline.l3 { animation-delay: -12s; }
.netline.l4 { animation-delay: -3s; }
.netline.l5 { animation-delay: -9s; }

.bsat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bsat-panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(143, 193, 255, .22);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), border-color .4s, background .4s, box-shadow .4s;
}
.bsat-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 193, 255, .55);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, .55);
}

.bsat-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #9CC9FF;
  background: rgba(143, 193, 255, .14);
  border: 1px solid rgba(143, 193, 255, .3);
  margin-bottom: 18px;
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.bsat-icon svg { width: 26px; height: 26px; }
.bsat-panel:hover .bsat-icon { background: var(--grad); color: var(--white); transform: rotate(-6deg) scale(1.05); }

.bsat-panel h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 12px; }
.bsat-panel li {
  color: #B9C7DE;
  font-size: .9rem;
  padding: 5px 0 5px 18px;
  position: relative;
}
.bsat-panel li::before {
  content: '';
  position: absolute;
  left: 0; top: .75em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #9CC9FF;
}

/* ============================================================
   PROBLEM -> SOLUTION
   ============================================================ */
.problem { background: var(--white); }

.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ps-card {
  position: relative;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.ps-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .35); }

.ps-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s;
}
.ps-card:hover::after { opacity: 1; }

.ps-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.ps-label.challenge { color: var(--muted-soft); background: rgba(7, 27, 51, .06); }
.ps-label.solution { color: var(--saynet); background: rgba(7, 91, 255, .1); margin-top: 12px; }

.ps-q {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  margin: 12px 0;
  min-height: 3.2em;
}

.ps-arrow { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); color: var(--bright); margin: 10px 0 4px; }
.ps-arrow svg { width: 15px; height: 15px; }

.ps-card h3 { font-size: 1.05rem; margin-top: 8px; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process { background: var(--soft); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 1150px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(7, 91, 255, .4), rgba(22, 135, 255, .4), transparent);
}

.tl-step {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.tl-dot {
  position: relative;
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(7, 91, 255, .3);
  box-shadow: 0 10px 24px -12px rgba(7, 91, 255, .4);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  z-index: 1;
}
.tl-step:hover .tl-dot { transform: translateY(-4px); border-color: var(--saynet); box-shadow: 0 16px 30px -12px rgba(7, 91, 255, .55); }

.tl-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--saynet);
}

.tl-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.tl-step p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   WHY SAYNET
   ============================================================ */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .32); }

.why-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--saynet);
  background: var(--light);
  border: 1px solid rgba(7, 91, 255, .2);
  margin-bottom: 18px;
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.why-icon svg { width: 25px; height: 25px; }
.why-card:hover .why-icon { background: var(--grad); color: var(--white); transform: rotate(-6deg); }

.why-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.why-card p { font-size: .92rem; color: var(--muted); }

/* ============================================================
   AFRICA
   ============================================================ */
.africa {
  position: relative;
  background:
    radial-gradient(1000px 600px at 20% 30%, rgba(7, 91, 255, .28), transparent 62%),
    radial-gradient(800px 600px at 95% 85%, rgba(22, 135, 255, .18), transparent 60%),
    var(--grad-navy);
  overflow: hidden;
}

.africa::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(143, 193, 255, .12) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.africa-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.africa-map { position: relative; }

.map-svg {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  filter: drop-shadow(0 30px 60px -30px rgba(22, 135, 255, .5));
}

.map-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: #CFE2FF;
  background: rgba(11, 40, 88, .75);
  border: 1px solid rgba(143, 193, 255, .35);
  border-radius: 999px;
  padding: 8px 16px;
  backdrop-filter: blur(6px);
}
.map-chip span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bright);
  box-shadow: 0 0 10px 2px rgba(22, 135, 255, .8);
}
.mc-1 { top: 46%; left: 4%; }
.mc-2 { top: 38%; left: 22%; animation-delay: 1s; }
.mc-3 { top: 30%; right: 0; animation-delay: 2s; }
.mc-4 { bottom: 6%; left: 34%; animation-delay: 3s; }

.africa-copy .lead { margin-bottom: 26px; }

.africa-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.africa-locations li {
  font-size: .82rem;
  font-weight: 600;
  color: #CFE2FF;
  background: rgba(143, 193, 255, .1);
  border: 1px solid rgba(143, 193, 255, .25);
  padding: 7px 16px;
  border-radius: 999px;
  transition: background .3s, border-color .3s, transform .3s;
}
.africa-locations li:hover { background: rgba(143, 193, 255, .2); border-color: #9CC9FF; transform: translateY(-2px); }

.africa-path {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  color: #CFE2FF;
}
.africa-path span { padding: 8px 16px; border-radius: 12px; background: rgba(143, 193, 255, .14); border: 1px solid rgba(143, 193, 255, .3); }
.africa-path .icon { color: #9CC9FF; width: 16px; height: 16px; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { background: var(--white); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  background:
    linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .32); }

.industry-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--grad);
  background-size: 160% 160%;
  box-shadow: 0 12px 26px -10px rgba(7, 91, 255, .5);
  margin-bottom: 18px;
  transition: transform .4s var(--ease);
}
.industry-icon svg { width: 27px; height: 27px; }
.industry-card:hover .industry-icon { transform: scale(1.08) rotate(-5deg); }

.industry-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.industry-card p { font-size: .93rem; color: var(--muted); }

/* ============================================================
   AWARENESS
   ============================================================ */
.awareness {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(22, 135, 255, .14), transparent 60%),
    var(--light);
}

.awareness-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.awareness-copy .lead { margin-bottom: 26px; }

.awareness-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 30px;
}
.awareness-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(7, 91, 255, .14);
  border-radius: 12px;
  padding: 10px 14px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.awareness-list li:hover { transform: translateX(4px); border-color: rgba(7, 91, 255, .4); box-shadow: 0 10px 22px -14px rgba(7, 91, 255, .4); }
.awareness-list .icon { width: 18px; height: 18px; color: var(--saynet); }

/* visual */
.awareness-visual { position: relative; }

.awareness-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 30px;
  background:
    radial-gradient(420px 320px at 50% 30%, rgba(7, 91, 255, .16), transparent 65%),
    var(--white);
  border: 1px solid rgba(7, 91, 255, .16);
  box-shadow: 0 30px 70px -30px rgba(7, 91, 255, .35);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.awareness-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7, 91, 255, .16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .6;
}

.frame-icon {
  position: absolute;
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--saynet);
  background: var(--white);
  border: 1px solid rgba(7, 91, 255, .2);
  box-shadow: 0 14px 30px -14px rgba(7, 91, 255, .45);
  animation: floatY 7s ease-in-out infinite;
}
.frame-icon svg { width: 30px; height: 30px; }
.frame-icon:nth-child(1) { top: 16%; left: 14%; }
.frame-icon:nth-child(2) { top: 24%; right: 10%; animation-delay: 1.4s; }
.frame-icon:nth-child(3) { left: 6%; bottom: 24%; animation-delay: 2.4s; }
.frame-icon:nth-child(4) { right: 8%; bottom: 12%; animation-delay: .8s; }
.frame-icon:nth-child(5) { left: 24%; top: 8%; animation-delay: 3s; }
.frame-icon:nth-child(6) { right: 22%; bottom: 30%; animation-delay: 1.9s; }

.frame-line {
  position: absolute;
  width: 26%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(7, 91, 255, .5), transparent);
  animation: dashMove 3.5s linear infinite;
}
.frame-line.l1 { transform: rotate(24deg); }
.frame-line.l2 { transform: rotate(-28deg); animation-delay: 1.2s; }
.frame-line.l3 { transform: rotate(8deg); animation-delay: 2s; }

/* ============================================================
   RECENT PROJECTS
   ============================================================ */
.projects { background: var(--soft); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .35); }

/* preview / browser mockup */
.project-preview { display: block; }

.preview-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #F2F7FF;
  border-bottom: 1px solid var(--line);
}

.preview-dots { display: flex; gap: 5px; flex: none; }
.preview-dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #C9D8EE;
}
.preview-dots i:nth-child(1) { background: #FFB4A2; }
.preview-dots i:nth-child(2) { background: #FFD479; }
.preview-dots i:nth-child(3) { background: #7FE0A6; }

.preview-url {
  flex: 1;
  min-width: 0;
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted-soft);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.project-card:hover .preview-visual { transform: scale(1.03); }

.pv-1 { background: linear-gradient(140deg, #075BFF 0%, #071A33 75%); }
.pv-2 { background: linear-gradient(140deg, #0A2C5E 0%, #075BFF 60%, #1687FF 120%); }
.pv-3 { background: linear-gradient(140deg, #071A33 0%, #0A3D8F 55%, #075BFF 120%); }
.pv-4 { background: linear-gradient(140deg, #5C2E0E 0%, #C96F0E 55%, #F5A623 120%); }
.pv-5 { background: linear-gradient(140deg, #062B24 0%, #0E6B4F 55%, #18A975 120%); }
.pv-6 { background: linear-gradient(140deg, #0E2A4A 0%, #0E7C86 55%, #14B8C4 120%); }
.pv-7 { background: linear-gradient(140deg, #141B26 0%, #33415C 55%, #4D6A9E 120%); }

.pv-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .7;
}

.pv-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, .35);
  animation: spin 26s linear infinite;
}

.pv-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, .6);
}

.pv-orb {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 65%);
  animation: floatY 6s ease-in-out infinite;
}

.pv-icon {
  position: relative;
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .3));
  animation: floatY 5s ease-in-out .6s infinite;
}

/* body */
.project-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--saynet);
  background: rgba(7, 91, 255, .09);
  border: 1px solid rgba(7, 91, 255, .18);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.project-tag .icon { width: 14px; height: 14px; }

.project-body h3 { font-size: 1.2rem; letter-spacing: -.01em; margin-bottom: 10px; transition: color .25s; }
.project-card:hover h3 { color: var(--saynet); }

.project-body p { font-size: .93rem; color: var(--muted); margin-bottom: 18px; }

.project-body .link-arrow { margin-top: auto; padding-top: 4px; }

.link-arrow.external .icon { transition: transform .3s var(--ease); }
.link-arrow.external:hover .icon { transform: translate(3px, -3px); }

.projects-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 640px;
  margin: 34px auto 0;
  text-align: center;
  font-size: .82rem;
  color: var(--muted-soft);
  background: var(--white);
  border: 1px dashed rgba(7, 91, 255, .3);
  border-radius: 14px;
  padding: 12px 18px;
}
.projects-note .icon { width: 17px; height: 17px; color: var(--saynet); }

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights { background: var(--white); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.insight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .32); }

.insight-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--saynet);
  background: rgba(7, 91, 255, .09);
  border: 1px solid rgba(7, 91, 255, .18);
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.insight-cat .icon { width: 15px; height: 15px; }

.insight-card h3 { font-size: 1.18rem; line-height: 1.35; margin-bottom: 18px; }
.insight-card h3 a { transition: color .25s; }
.insight-card h3 a:hover { color: var(--saynet); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(22, 135, 255, .25), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(7, 91, 255, .22), transparent 60%),
    var(--navy);
  padding-top: 0;
}

.cta-panel {
  position: relative;
  text-align: center;
  background: var(--grad-navy);
  border: 1px solid rgba(143, 193, 255, .22);
  border-radius: 32px;
  padding: clamp(48px, 7vw, 84px) clamp(24px, 6vw, 72px);
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .7);
}

.cta-glow {
  position: absolute;
  inset: -40% -30% auto -30%;
  height: 140%;
  background: conic-gradient(from 180deg, transparent 0deg, rgba(22, 135, 255, .16) 80deg, transparent 160deg, rgba(7, 91, 255, .12) 260deg, transparent 340deg);
  animation: spin 26s linear infinite;
  pointer-events: none;
}

.cta-panel > * { position: relative; }
.cta-panel .eyebrow { margin-bottom: 6px; }
.cta-panel .section-title { max-width: 18ch; margin-inline: auto; }
.cta-panel .lead { max-width: 56ch; margin: 0 auto 34px; }

.cta-panel.blue-panel { background: linear-gradient(135deg, #075BFF 0%, #1687FF 100%); border-color: rgba(255, 255, 255, .25); }
.cta-panel.blue-panel .lead.light { color: #E7F1FF; }
.cta-panel.blue-panel .cta-note { color: #CFE2FF; }
.cta-panel.blue-panel .grad-text { background: linear-gradient(120deg, #FFFFFF 0%, #E7F1FF 100%); -webkit-background-clip: text; background-clip: text; }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.cta-note { font-size: .84rem; letter-spacing: .06em; color: #8FA6C4; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #04101F;
  color: #A8B8CF;
  padding: clamp(56px, 7vw, 84px) 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(143, 193, 255, .12);
}

.logo-footer { margin-bottom: 18px; }
.logo-footer .logo-text strong { color: var(--white); }
.logo-footer .logo-mark { color: #9CC9FF; }

.footer-brand > p {
  font-family: var(--font-display);
  font-weight: 600;
  color: #CFE2FF;
  margin-bottom: 22px;
  font-size: .98rem;
}

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.footer-contact .icon { width: 18px; height: 18px; color: #9CC9FF; }
.footer-contact a { transition: color .25s; }
.footer-contact a:hover { color: var(--white); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(143, 193, 255, .12);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #A8B8CF;
  background: rgba(143, 193, 255, .08);
  border: 1px solid rgba(143, 193, 255, .18);
  border-radius: 50%;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.footer-social a:hover {
  color: var(--white);
  border-color: #9CC9FF;
  background: rgba(143, 193, 255, .16);
  transform: translateY(-2px);
}
.footer-social .icon { width: 18px; height: 18px; color: #9CC9FF; transition: color .25s; }
.footer-social a:hover .icon { color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: .84rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: .92rem;
  position: relative;
  transition: color .25s, padding-left .25s;
}
.footer-col a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 2px;
  background: #9CC9FF;
  transition: width .25s;
  transform: translateY(-50%);
}
.footer-col a:hover { color: var(--white); padding-left: 14px; }
.footer-col a:hover::before { width: 8px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding-top: 26px;
}
.footer-legal p { font-size: .85rem; color: #6F82A0; }
.footer-legal ul { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a { font-size: .85rem; color: #8FA6C4; transition: color .25s; }
.footer-legal a:hover { color: var(--white); }

.footer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: .78rem;
  color: #6F82A0;
}
.footer-note .icon { width: 15px; height: 15px; color: #9CC9FF; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  background-size: 160% 160%;
  color: var(--white);
  box-shadow: 0 16px 34px -12px rgba(18, 140, 126, .65);
  transition: width .4s var(--ease), background-position .4s, box-shadow .4s var(--ease);
  animation: waIn .7s var(--ease) 1.2s backwards;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  width: 196px;
  background-position: 100% 50%;
  box-shadow: 0 22px 44px -14px rgba(18, 140, 126, .8);
}

.wa-icon {
  flex: none;
  width: 34px;
  height: 34px;
  margin-left: 14px;
  animation: waShake 5s ease-in-out infinite;
}

.wa-label {
  flex: none;
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .3s .05s, transform .35s var(--ease);
}

.whatsapp-float:hover .wa-label,
.whatsapp-float:focus-visible .wa-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .75);
  animation: waPing 2.6s cubic-bezier(.22, .8, .28, 1) infinite;
  pointer-events: none;
}

@keyframes waPing {
  0% { transform: scale(1); opacity: .8; }
  80%, 100% { transform: scale(1.65); opacity: 0; }
}

@keyframes waShake {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-10deg); }
  92% { transform: rotate(10deg); }
  94% { transform: rotate(-8deg); }
  96% { transform: rotate(6deg); }
  98% { transform: rotate(-3deg); }
}

@keyframes waIn {
  from { transform: translateY(24px) scale(.6); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 890;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--grad);
  background-size: 160% 160%;
  border: 0;
  box-shadow: 0 12px 28px -14px rgba(7, 91, 255, .6);
  opacity: 0;
  transform: translateY(12px) scale(.85);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), box-shadow .4s var(--ease), background-position .4s;
  cursor: pointer;
}

.to-top .icon { width: 22px; height: 22px; }

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.to-top:hover,
.to-top:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 18px 34px -14px rgba(7, 91, 255, .75);
  transform: translateY(-3px) scale(1.06);
}

.to-top:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .to-top { right: 16px; bottom: 82px; width: 42px; height: 42px; }
  .to-top .icon { width: 19px; height: 19px; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .8s ease, transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }

.in-view { opacity: 1; transform: none; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.72); }
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes twinkle {
  0%, 100% { opacity: .15; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gradMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes dashMove {
  to { stroke-dashoffset: -1000; }
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); }
  80%, 100% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 76px; }

  .solutions-grid, .why-grid, .industries-grid, .projects-grid, .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .bsat-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { max-width: 14ch; }
  .hero-visual { width: 100%; max-width: 620px; margin-inline: auto; }

  .awareness-inner, .africa-inner { grid-template-columns: 1fr; }
  .africa-map { max-width: 480px; margin-inline: auto; }

  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
}

@media (max-width: 860px) {
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .hamburger { display: flex; }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 50px -24px rgba(7, 27, 51, .3);
    padding: 12px 24px 28px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s, visibility .3s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open { overflow: hidden; }

  .nav-links { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links a { font-size: 1.1rem; padding: 14px 12px; border-bottom: 1px solid var(--soft); border-radius: 8px; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: var(--soft); }

  .nav-cta { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-expert { text-align: center; padding: 8px; }

  .solutions-grid, .why-grid, .industries-grid, .projects-grid, .insights-grid, .ps-grid { grid-template-columns: 1fr; }
  .bsat-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; max-width: 520px; gap: 34px; }
  .timeline::after {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 29px;
    width: 2px;
    background: linear-gradient(180deg, rgba(7, 91, 255, .35), rgba(22, 135, 255, .15), transparent);
  }
  .tl-step { text-align: left; padding-left: 84px; }
  .tl-dot { margin: 0; position: absolute; left: 0; top: 0; }
  .tl-step h3 { margin-bottom: 8px; }

  .awareness-list { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-strip li { padding: 4px 12px; }

  .cap-bar { padding-block: 14px; }
}

@media (max-width: 560px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .wa-icon { width: 30px; height: 30px; margin-left: 13px; }

  .container { padding-inline: 18px; }

  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-badge {
    font-size: .66rem;
    letter-spacing: .14em;
    padding: 8px 14px;
  }

  .cap-list { grid-template-columns: 1fr 1fr; }

  .section-head { text-align: left; }
  .section-head .eyebrow { margin-bottom: 0; }

  .footer-top { grid-template-columns: 1fr; }

  .footer-legal { flex-direction: column; align-items: flex-start; }

  .africa-path .icon { transform: rotate(90deg); }

  .ps-card { padding: 22px 18px; }

  .hero-chip { padding: 8px 12px; }
  .hero-chip small { display: none; }
  .chip-1 { top: 10%; }
  .chip-2 { bottom: 8%; }
}

@media (max-width: 380px) {
  .cap-list { grid-template-columns: 1fr; }

  .btn { font-size: .95rem; padding: 14px 22px; }

  .awareness-list li { font-size: .88rem; }
  .map-chip { font-size: .74rem; padding: 6px 12px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .hero-chip, .float-1, .float-2, .float-3, .float-4 { animation: none; }
  .cta-glow { display: none; }
  .whatsapp-float { animation: none; }
  .whatsapp-float .wa-icon { animation: none; }
  .whatsapp-float::after { display: none; }
  .to-top { transition: opacity .01ms, transform .01ms, box-shadow .01ms; }
  .pv-ring, .pv-orb, .pv-icon { animation: none; }
}

/* ============================================================
   TRAINING PAGE
   ============================================================ */

/* --- Value proposition --- */
.vp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.vp-card {
  text-align: center;
  padding: 32px 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.vp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .32); }

.vp-num {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--light);
  color: var(--saynet);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.vp-card:hover .vp-num { background: var(--grad); color: var(--white); transform: scale(1.08); }

.vp-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.vp-card p { font-size: .9rem; color: var(--muted); }

/* --- Training cards --- */
.training-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.training-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.training-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .32); }

.tc-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.tc-num {
  flex: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bright);
  opacity: .6;
  line-height: 1;
}

.tc-icon {
  flex: none;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--grad);
  box-shadow: 0 10px 22px -10px rgba(7, 91, 255, .5);
  transition: transform .4s var(--ease);
}
.tc-icon svg { width: 24px; height: 24px; }
.training-card:hover .tc-icon { transform: rotate(-6deg) scale(1.06); }

.tc-header { flex: 1; }
.tc-header h3 { font-size: 1.22rem; margin-bottom: 4px; }
.tc-header p { font-size: .9rem; color: var(--muted); }

.tc-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

.topic-chip {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  transition: background .25s, border-color .25s, color .25s;
}
.topic-chip:hover { background: var(--light); border-color: rgba(7, 91, 255, .25); color: var(--saynet); }

.tc-ideal { font-size: .82rem; color: var(--muted-soft); margin-bottom: 16px; }
.tc-ideal strong { font-weight: 600; color: var(--navy); }

.tc-cta { margin-top: auto; }

.tc-notice {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .78rem;
  color: var(--muted-soft);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.tc-notice .icon { width: 15px; height: 15px; margin-top: 3px; color: var(--saynet); }

/* --- Pathway --- */
.pathway { position: relative; background: var(--grad-navy); overflow: hidden; }
.pathway::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(143, 193, 255, .12) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.pathway-inner { position: relative; }

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 36px;
}

.path-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(143, 193, 255, .22);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  backdrop-filter: blur(6px);
  text-align: center;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.path-card:hover { transform: translateY(-6px); border-color: rgba(143, 193, 255, .55); background: rgba(255, 255, 255, .09); }

.path-card h3 { color: var(--white); font-size: 1.06rem; letter-spacing: .06em; margin-bottom: 12px; }
.path-card p { color: #B9C7DE; font-size: .9rem; margin-bottom: 16px; }

.path-steps { list-style: none; }
.path-steps li {
  position: relative;
  color: #CFE2FF;
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(143, 193, 255, .12);
}
.path-steps li:last-child { border-bottom: 0; }

.path-arrow { display: grid; place-items: center; color: #9CC9FF; margin: 4px auto; }
.path-arrow svg { width: 20px; height: 20px; }

/* --- Consultation --- */
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: center; }

.consult-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.consult-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.consult-list li:hover { transform: translateX(4px); border-color: rgba(7, 91, 255, .4); box-shadow: 0 10px 22px -14px rgba(7, 91, 255, .4); }
.consult-list .icon { width: 18px; height: 18px; color: var(--saynet); }

/* --- Assessment --- */
.assess-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }

.assess-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}
.assess-card h3 { font-size: 1.08rem; margin-bottom: 18px; }

.assess-row { margin-bottom: 14px; }
.assess-label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }

.level-group { display: flex; gap: 6px; flex-wrap: wrap; }
.level-btn {
  padding: 7px 14px;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.level-btn:hover { border-color: rgba(7, 91, 255, .3); color: var(--saynet); }
.level-btn.is-active { background: var(--grad); color: var(--white); border-color: transparent; transform: scale(1.04); }

.assess-btn { width: 100%; justify-content: center; margin-top: 8px; }

.assess-result {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: var(--light);
  border: 1px solid rgba(7, 91, 255, .25);
  text-align: center;
}
.assess-result.is-visible { display: block; }

.assess-result p { font-size: .92rem; color: var(--navy); margin-bottom: 6px; }
.assess-result strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--saynet); }
.result-note { font-size: .78rem; color: var(--muted-soft); margin-top: 8px; }

/* --- Learning formats --- */
.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.format-card {
  text-align: center;
  padding: 30px 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.format-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .32); }

.format-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--grad);
  box-shadow: 0 12px 26px -10px rgba(7, 91, 255, .5);
  transition: transform .4s var(--ease);
}
.format-icon svg { width: 28px; height: 28px; }
.format-card:hover .format-icon { transform: scale(1.08) rotate(-5deg); }

.format-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.format-card p { font-size: .88rem; color: var(--muted); }

/* --- Audience --- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.audience-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .32); }

.audience-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.audience-card p { font-size: .9rem; color: var(--muted); }

/* --- Why learn --- */
.why-learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.why-learn-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.why-learn-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(7, 91, 255, .32); }

.why-learn-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.why-learn-card p { font-size: .9rem; color: var(--muted); }

/* -- Journey timeline reuse -- */
.journey { padding-top: 0; }
.journey .timeline { max-width: 1000px; }

/* --- Request form --- */
.request-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 5vw, 72px); align-items: start; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: .92rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}

.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2346536B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6l4 4 4-4'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 14px; padding-right: 36px; }
.form-field select::-ms-expand { display: none; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--saynet);
  box-shadow: 0 0 0 3px rgba(7, 91, 255, .18);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-submit { width: 100%; justify-content: center; margin-top: 6px; }

.form-success {
  display: none;
  text-align: center;
  padding: 28px;
  margin-top: 18px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: var(--radius-lg);
}
.form-success.is-visible { display: block; }
.form-success .icon { width: 36px; height: 36px; color: #22C55E; margin-bottom: 12px; }
.form-success h3 { font-size: 1.1rem; margin-bottom: 8px; color: #166534; }
.form-success p { font-size: .9rem; color: var(--muted); }

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: 0 8px 20px -14px rgba(7, 27, 51, .2); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  font-size: .97rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--navy);
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color .25s;
}
.faq-q:hover { color: var(--saynet); }

.faq-q .icon {
  width: 20px; height: 20px;
  color: var(--muted-soft);
  flex: none;
  transition: transform .35s var(--ease);
}
.faq-item.is-open .faq-q .icon { transform: rotate(180deg); color: var(--saynet); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
  padding: 0 20px;
}

.faq-item.is-open .faq-a { padding-bottom: 18px; }

.faq-a p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-a .link-arrow { margin-top: 6px; }

/* --- Training responsive --- */
@media (max-width: 1024px) {
  .vp-grid, .format-grid { grid-template-columns: repeat(2, 1fr); }
  .training-grid { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; max-width: 480px; }
  .consult-grid, .assess-grid, .request-grid { grid-template-columns: 1fr; }
  .request-grid { gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .audience-grid, .why-learn-grid { grid-template-columns: 1fr; }
  .vp-grid, .format-grid { grid-template-columns: 1fr; }
  .consult-list { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .faq-q { font-size: .92rem; padding: 16px; }
}

@media (max-width: 560px) {
  .level-group { gap: 4px; }
  .level-btn { font-size: .78rem; padding: 6px 10px; }
}
