/*
Theme Name: ResourcePlan
Theme URI: https://resourceplan.africa
Author: ResourcePlan
Description: Pan-African SPA-ready custom theme for ResourcePlan.
Version: 1.0.0
Text Domain: resourceplan
*/

:root {
  --p950: #130326; --p900: #1e0540; --p800: #2d0a4e; --p700: #4a1275;
  --p600: #6b21a8; --p500: #8b45c8; --p200: #d8b4fe; --p100: #f3e8ff;
  --p50:  #faf5ff; --gold: #f0b429; --gold-lt: #f5c842;
  --white: #ffffff; --ink: #0d0120; --muted: #6b5f7a;
  --surf:  #faf8fc; --bdr: #e8e0f0;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Figtree', system-ui, sans-serif;

  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 32px;

  --sh-sm: 0 1px 4px rgba(74,18,117,.08);
  --sh-md: 0 4px 20px rgba(74,18,117,.13);
  --sh-lg: 0 12px 44px rgba(74,18,117,.2);

  --max-w: 1160px;
  --gutter: clamp(1rem, 5vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-body); color: var(--ink); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul   { list-style: none; }

input, textarea, select {
  font: inherit; width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--bdr); border-radius: var(--r-sm);
  background: var(--white); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--p600);
  box-shadow: 0 0 0 3px rgba(107,33,168,.12);
}
label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: .4rem; }

.wrap  { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--gold); display: block; flex-shrink: 0; }

.sec-title { font-family: var(--ff-display); font-size: clamp(1.8rem,4vw,2.7rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.sec-lead  { font-size: clamp(.95rem,1.8vw,1.1rem); color: var(--muted); max-width: 54ch; margin-top: .75rem; line-height: 1.7; }
.sec-hd    { margin-bottom: 2.75rem; }

.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; font-weight: 700; font-size: .9375rem;
  border-radius: 100px; white-space: nowrap;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold   { background: var(--gold); color: var(--ink); box-shadow: 0 4px 18px rgba(240,180,41,.4); }
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 6px 28px rgba(240,180,41,.5); }
.btn-ghost  { border: 2px solid rgba(255,255,255,.55); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-purple { background: var(--p600); color: var(--white); box-shadow: var(--sh-md); }
.btn-purple:hover { background: var(--p500); box-shadow: var(--sh-lg); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--r-md); }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bdr); transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--sh-md); }
.nav-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding-inline: var(--gutter); height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); flex-shrink: 0;
}
.nav-logo svg { width: 36px; height: 36px; }
.logo-sub { color: var(--p600); font-family: var(--ff-body); font-weight: 600; font-size: .65em; display: block; letter-spacing: .07em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: .125rem; }
.nav-link {
  padding: .5rem .875rem; font-size: .9rem; font-weight: 500;
  border-radius: 100px; color: var(--muted); transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.act { color: var(--p600); background: var(--p100); }
.nav-cta {
  padding: .55rem 1.2rem; background: var(--p600); color: var(--white);
  border-radius: 100px; font-size: .875rem; font-weight: 700;
  transition: background .2s, transform .18s; flex-shrink: 0;
}
.nav-cta:hover { background: var(--p500); transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 3px; }
.burger span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mob-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--bdr);
  padding: 1rem var(--gutter) 1.5rem; flex-direction: column; gap: .25rem;
  box-shadow: var(--sh-md); z-index: 99;
}
.mob-nav.open { display: flex; }
.mob-nav .nav-link { display: block; padding: .75rem 1rem; font-size: 1rem; }
.mob-nav .nav-cta { margin-top: .5rem; text-align: center; padding: .75rem; display: block; border-radius: var(--r-md); }

.page { display: none; padding-top: 68px; animation: fadeUp .38s ease forwards; }
.page.act { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

.ph {
  background: var(--p900); color: var(--white);
  padding: clamp(3.5rem,8vw,5.5rem) 0 clamp(2.5rem,6vw,4rem);
  position: relative; overflow: hidden;
}
.ph::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 80% at 85% 50%, rgba(107,33,168,.35) 0%, transparent 70%);
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; }
.ph h1 { font-family: var(--ff-display); font-size: clamp(2rem,5vw,3.4rem); font-weight: 700; line-height: 1.15; }
.ph p  { margin-top: .8rem; font-size: clamp(.95rem,2vw,1.1rem); color: rgba(255,255,255,.68); max-width: 50ch; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.breadcrumb .cur { color: var(--gold); font-weight: 600; }

.hero {
  background: var(--p950); color: var(--white);
  padding: clamp(4rem,10vw,7rem) 0 clamp(3rem,7vw,5.5rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 65% at 72% 50%, rgba(107,33,168,.38) 0%, transparent 70%),
              radial-gradient(ellipse 45% 50% at 15% 80%, rgba(74,18,117,.45) 0%, transparent 60%);
  pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; border: 55px solid rgba(255,255,255,.025); pointer-events: none; }
.ho1 { width: 580px; height: 580px; top: -140px; right: -90px; }
.ho2 { width: 280px; height: 280px; bottom: -70px; right: 14%; border-width: 28px; border-color: rgba(255,255,255,.04); }
.ho3 { width: 110px; height: 110px; top: 22%; left: 8%; border: none; background: rgba(240,180,41,.07); }

.hero-inner {
  position: relative; z-index: 1; max-width: var(--max-w); margin-inline: auto;
  padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero h1 { font-family: var(--ff-display); font-size: clamp(2.4rem,5.5vw,3.9rem); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--p200); }
.hero-sub { margin-top: 1.2rem; font-size: clamp(1rem,2vw,1.1rem); color: rgba(255,255,255,.68); max-width: 42ch; line-height: 1.75; }
.hero-btns { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .875rem; align-items: center; }

.hcard-wrap { display: flex; justify-content: center; align-items: center; }
.hcard-stack { position: relative; width: 100%; max-width: 370px; }
.hcard-back {
  position: absolute; top: -15px; left: 14px; right: -14px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg); height: 100%; z-index: 1;
}
.hcard {
  position: relative; z-index: 2; background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-lg); padding: 1.75rem; color: var(--white);
}
.hcard-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(240,180,41,.18);
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1rem;
}
.hcard h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .375rem; }
.hcard p  { font-size: .875rem; color: rgba(255,255,255,.62); line-height: 1.55; }
.hcard-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.chip { font-size: .72rem; font-weight: 600; padding: .28rem .65rem; background: rgba(255,255,255,.1); border-radius: 100px; color: rgba(255,255,255,.78); }
.chip.g { background: rgba(240,180,41,.18); color: var(--gold-lt); }

.stats-strip { background: var(--p800); padding: 2.5rem 0; }
.stats-inner { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-n { font-family: var(--ff-display); font-size: clamp(2rem,4vw,2.75rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-l { font-size: .875rem; color: rgba(255,255,255,.6); margin-top: .35rem; }

.svc-sec { padding: clamp(4rem,8vw,6rem) 0; background: var(--surf); }
.svc-card {
  background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-lg); padding: 2rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--p200); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--p100);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; transition: background .25s;
}
.svc-card:hover .svc-icon { background: var(--p600); }
.svc-card h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.svc-card p  { font-size: .9375rem; color: var(--muted); line-height: 1.65; }

.dcta { display: grid; grid-template-columns: 1fr 1fr; }
.dcta-panel { padding: clamp(3rem,6vw,5rem) clamp(2rem,5vw,4rem); display: flex; flex-direction: column; gap: 1rem; }
.dcta-panel.for-org { background: var(--p50); border-right: 1px solid var(--bdr); }
.dcta-panel.for-cand { background: var(--p900); color: var(--white); }
.dcta-panel.for-cand .sec-title { color: var(--white); }
.dcta-panel.for-cand .sec-lead  { color: rgba(255,255,255,.62); max-width: 100%; }
.dcta-panel.for-cand .eyebrow   { color: var(--gold); }

.trust-sec { padding: clamp(4rem,8vw,6rem) 0; }
.trust-q { max-width: 720px; margin-inline: auto; text-align: center; }
.qmark { font-family: var(--ff-display); font-size: 5rem; line-height: .5; color: var(--p200); display: block; margin-bottom: .5rem; }
.trust-q blockquote { font-family: var(--ff-display); font-size: clamp(1.25rem,2.8vw,1.7rem); font-style: italic; font-weight: 300; line-height: 1.55; color: var(--ink); }
.trust-q cite { display: block; margin-top: 1.25rem; font-size: .875rem; font-style: normal; font-weight: 600; color: var(--p600); }

.svcs-grid { padding: clamp(4rem,8vw,6rem) 0; background: var(--surf); }
.svc-full {
  background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-lg); padding: 2.25rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-full:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--p200); }
.svc-full .svc-icon { margin-bottom: 0; flex-shrink: 0; }
.svc-full h3 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.svc-full p  { font-size: .9375rem; color: var(--muted); line-height: 1.7; }
.feat-chips  { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .875rem; }
.fchip { font-size: .72rem; font-weight: 600; padding: .22rem .6rem; background: var(--p100); color: var(--p600); border-radius: 100px; }

.proc-sec { padding: clamp(4rem,8vw,6rem) 0; }
.proc-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; position: relative; }
.proc-steps::before {
  content: ''; position: absolute; top: 27px; left: calc(12.5% + 27px); right: calc(12.5% + 27px);
  height: 2px; background: var(--bdr); z-index: 0;
}
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-n {
  width: 54px; height: 54px; border-radius: 50%; background: var(--p600); color: var(--white);
  font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 4px 18px rgba(74,18,117,.3);
}
.proc-step h4 { font-weight: 700; margin-bottom: .35rem; font-size: .9375rem; }
.proc-step p  { font-size: .8125rem; color: var(--muted); line-height: 1.55; }

.about-story { padding: clamp(4rem,8vw,6rem) 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { font-size: 1.0625rem; color: var(--muted); line-height: 1.82; margin-bottom: 1rem; }
.about-vis {
  background: var(--p900); border-radius: var(--r-xl); padding: 2.75rem; color: var(--white);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.av-logo { display: flex; align-items: center; gap: .75rem; font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; }
.av-tag { font-family: var(--ff-display); font-size: 1.55rem; font-style: italic; font-weight: 300; line-height: 1.4; border-top: 1px solid rgba(255,255,255,.13); padding-top: 1.5rem; }
.av-tag strong { font-style: normal; font-weight: 700; color: var(--gold); }
.av-list { display: flex; flex-direction: column; gap: .65rem; }
.av-item { display: flex; align-items: center; gap: .7rem; font-size: .9rem; color: rgba(255,255,255,.65); }
.av-tick { color: var(--gold); }

.vals-sec { padding: clamp(3rem,6vw,5rem) 0; background: var(--surf); }
.val-card { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-lg); padding: 2rem; border-top: 4px solid var(--p600); }
.val-card h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.val-card p  { font-size: .9375rem; color: var(--muted); line-height: 1.65; }

.team-sec { padding: clamp(4rem,8vw,6rem) 0; }
.team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.125rem; margin-top: 3rem; }
.team-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--bdr); transition: transform .25s, box-shadow .25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.team-av {
  aspect-ratio: 1; background: linear-gradient(135deg, var(--p700), var(--p500));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: rgba(255,255,255,.92);
}
.team-info { padding: 1rem 1rem .875rem; }
.team-info h4  { font-weight: 700; font-size: .875rem; margin-bottom: .15rem; }
.team-role     { font-size: .73rem; color: var(--muted); margin-bottom: .45rem; }
.team-email    { font-size: .68rem; color: var(--p600); word-break: break-all; font-weight: 600; }

.cv-sec { padding: clamp(4rem,8vw,6rem) 0; background: var(--surf); }
.cv-inner { display: grid; grid-template-columns: 1fr 1.65fr; gap: 4rem; align-items: start; }
.cv-info h2 { font-family: var(--ff-display); font-size: clamp(1.6rem,3.5vw,2.3rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.cv-info p  { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.cv-perks { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.cv-perk  { display: flex; align-items: center; gap: .75rem; font-size: .9375rem; color: var(--muted); }
.perk-ic  { width: 34px; height: 34px; border-radius: 9px; background: var(--p100); color: var(--p600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .9rem; }

.form-card { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--sh-sm); }
.form-card h3 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; margin-bottom: .25rem; }
.form-card .sub { font-size: .875rem; color: var(--muted); margin-bottom: 1.75rem; }
.fg { margin-bottom: 1.25rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dropz { border: 2px dashed var(--bdr); border-radius: var(--r-md); padding: 2.25rem 2rem; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; }
.dropz:hover, .dropz.over { border-color: var(--p500); background: var(--p50); }
.dropz-ic { font-size: 2.25rem; margin-bottom: .7rem; }
.dropz h4 { font-weight: 700; margin-bottom: .25rem; font-size: .9375rem; }
.dropz p  { font-size: .8125rem; color: var(--muted); }
.dropz p span { color: var(--p600); font-weight: 600; }
.file-sel { display: none; align-items: center; gap: .75rem; background: var(--p50); border-radius: var(--r-md); padding: .875rem 1rem; margin-top: .75rem; }
.file-sel.show { display: flex; }
.file-nm  { font-size: .875rem; font-weight: 600; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-rm  { color: #dc2626; font-size: .8rem; cursor: pointer; font-weight: 600; flex-shrink: 0; }

.success-panel { display: none; text-align: center; padding: 3rem 2rem; }
.success-panel.show { display: block; }
.success-panel .si { font-size: 3.75rem; margin-bottom: .875rem; }
.success-panel h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.success-panel p  { color: var(--muted); font-size: .9375rem; }

.contact-sec { padding: clamp(4rem,8vw,6rem) 0; background: var(--surf); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.55fr; gap: 4rem; align-items: start; }
.cinfo-card { background: var(--p900); border-radius: var(--r-xl); padding: 2.5rem; color: var(--white); position: sticky; top: 88px; }
.cinfo-card h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.cinfo-card > p { font-size: .9375rem; color: rgba(255,255,255,.6); margin-bottom: 2rem; }
.cdet { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.cdet-ic { width: 40px; height: 40px; background: rgba(255,255,255,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cdet-lbl { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.38); margin-bottom: .25rem; }
.cdet-val { font-size: .9375rem; color: var(--white); }
.cdet-val a { color: var(--gold); }
.btn-wa { display: flex; align-items: center; gap: .75rem; background: #25D366; color: var(--white); padding: .875rem 1.5rem; border-radius: var(--r-md); font-weight: 700; font-size: .9375rem; transition: transform .2s, box-shadow .2s; margin-top: 2rem; width: 100%; justify-content: center; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.4); }

.emails-sec { padding: clamp(3rem,6vw,4.5rem) 0; }
.email-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1rem; margin-top: 2rem; }
.email-item { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-md); padding: 1.25rem 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: .875rem; align-items: center; }
.email-av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--p600), var(--p500)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9375rem; flex-shrink: 0; }
.email-nm   { font-weight: 700; font-size: .9375rem; margin-bottom: .15rem; }
.email-role { font-size: .78rem; color: var(--muted); margin-bottom: .3rem; }
.email-addr { font-size: .75rem; color: var(--p600); font-weight: 600; }

footer { background: var(--p950); color: rgba(255,255,255,.65); padding: 3.5rem 0 1.5rem; }
.ft-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.09); margin-bottom: 1.5rem; }
.ft-logo { display: flex; align-items: center; gap: .6rem; color: var(--white); font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; margin-bottom: .875rem; }
.ft-logo svg { width: 30px; height: 30px; }
.ft-tag { font-size: .875rem; line-height: 1.65; max-width: 30ch; }
.ft-col h4 { color: var(--white); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.ft-col ul { display: flex; flex-direction: column; gap: .5rem; }
.ft-col a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.ft-col a:hover { color: var(--gold); }
.ft-bottom { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; }
.ft-bottom a { color: var(--gold); }

.wa-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 28px rgba(37,211,102,.45); z-index: 90; transition: transform .2s, box-shadow .2s; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,.55); }
.wa-fab svg { width: 28px; height: 28px; fill: white; }

@media (max-width: 1024px) {
  .team-grid   { grid-template-columns: repeat(3,1fr); }
  .proc-steps  { grid-template-columns: repeat(2,1fr); }
  .proc-steps::before { display: none; }
}
@media (max-width: 768px) {
  .burger    { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hcard-wrap { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .g3 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .dcta { grid-template-columns: 1fr; }
  .dcta-panel.for-org { border-right: none; border-bottom: 1px solid var(--bdr); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cv-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .cinfo-card  { position: static; }
  .frow        { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: repeat(2,1fr); }
  .ft-top      { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bottom   { flex-direction: column; gap: .5rem; text-align: center; }
  .svc-full    { grid-template-columns: 1fr; }
  .proc-steps  { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}