/* ═══════════════════════════════════════════════════════
   TOYI-CAM TABLE WATER — Complete Stylesheet
   Matches ChatGPT mockup template exactly
   ═══════════════════════════════════════════════════════ */

:root {
  --blue:    #0ea5e9;
  --blue-d:  #0284c7;
  --blue-dd: #0369a1;
  --navy:    #060e1d;
  --dark:    #0a1628;
  --dark2:   #0d1f38;
  --white:   #ffffff;
  --off:     #f4f7fb;
  --light:   #edf2f8;
  --g100:    #f1f5f9;
  --g200:    #e2e8f0;
  --g300:    #cbd5e1;
  --g400:    #94a3b8;
  --g500:    #64748b;
  --g600:    #475569;
  --g700:    #334155;
  --g800:    #1e293b;
  --green:   #25D366;
  --green-d: #128C7E;

  --f: 'Inter', 'Poppins', sans-serif;
  --fp: 'Poppins', 'Inter', sans-serif;

  --r1: 8px;
  --r2: 14px;
  --r3: 20px;
  --r4: 28px;
  --rpill: 999px;

  --s1: 0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --s2: 0 4px 16px rgba(0,0,0,.09);
  --s3: 0 12px 40px rgba(0,0,0,.14);
  --sglow: 0 6px 24px rgba(14,165,233,.4);

  --tr: .24s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--f); color: var(--g800); background: var(--white); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Common section spacing ── */
.sec      { padding: 96px 0; }
.sec-white{ background: var(--white); }
.sec-light{ background: var(--off); }

/* ── Section header ── */
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head h2 { font-family: var(--fp); font-size: clamp(1.85rem,3.8vw,2.75rem); font-weight: 700; line-height: 1.15; color: var(--g800); }

/* ── Eyebrow ── */
.eyebrow { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.eyebrow.light { color: rgba(14,165,233,.85); }

/* ── h2 variants ── */
h2 { font-family: var(--fp); font-size: clamp(1.85rem,3.8vw,2.75rem); font-weight: 700; line-height: 1.15; color: var(--g800); margin-bottom: 18px; }
h2.white { color: var(--white); }
.c-blue { color: var(--blue); }

/* ── Body text ── */
.body-text { font-size: .95rem; line-height: 1.82; color: var(--g500); margin-bottom: 16px; }

/* ═══════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  font-family: var(--f); font-size: .875rem; font-weight: 600;
  padding: 12px 24px; border-radius: var(--rpill);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  white-space: nowrap; cursor: pointer;
}
.btn-primary svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: var(--sglow); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: var(--white);
  font-family: var(--f); font-size: .875rem; font-weight: 600;
  padding: 12px 24px; border-radius: var(--rpill);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
  transition: background var(--tr), border-color var(--tr);
  white-space: nowrap;
}
.btn-secondary svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-secondary:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.7); }

.btn-outline-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  font-family: var(--f); font-size: .875rem; font-weight: 600;
  padding: 12px 24px; border-radius: var(--rpill);
  border: 1.5px solid var(--blue);
  transition: background var(--tr), color var(--tr), transform var(--tr);
  margin-top: 8px;
}
.btn-outline-blue svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-family: var(--f); font-size: .875rem; font-weight: 600;
  padding: 12px 24px; border-radius: var(--rpill);
  transition: background var(--tr), transform var(--tr);
  white-space: nowrap;
}
.btn-whatsapp svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-whatsapp:hover { background: var(--green-d); transform: translateY(-2px); }

.btn-wa-big {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--green); color: var(--white);
  font-family: var(--f); font-size: .9rem; font-weight: 600;
  padding: 14px; border-radius: var(--rpill);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  margin-top: 12px;
}
.btn-wa-big svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wa-big:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ═══════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 0;
  transition: background var(--tr), box-shadow var(--tr), padding var(--tr);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--g200), var(--s1);
  padding: 5px 0;
}

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 18px;
}

/* Brand: T2 circle + TC text */
.nav-brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo-img {
  width: 52px; height: 52px;
  border-radius: var(--r2);
  object-fit: contain;
  object-position: center;
  background: rgba(255,255,255,.1);
  padding: 2px;
  transition: background var(--tr);
}
#navbar.scrolled .nav-logo-img {
  background: var(--off);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nb-tc {
  font-family: var(--fp); font-size: 1.15rem; font-weight: 800;
  color: var(--white); letter-spacing: -.02em;
  transition: color var(--tr);
}
#navbar.scrolled .nb-tc { color: var(--g800); }
.nb-name {
  font-size: .55rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  transition: color var(--tr);
}
.nb-name em { font-style: italic; font-weight: 400; display: block; font-size: .7em; }
#navbar.scrolled .nb-name { color: var(--g500); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: center;
}
.nl {
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 8px 11px; border-radius: 6px;
  border-bottom: 2px solid transparent;
  transition: all .2s; white-space: nowrap;
}
.nl:hover   { color: var(--white); background: rgba(255,255,255,.1); }
.nl.active  { color: var(--blue); border-bottom-color: var(--blue); }
#navbar.scrolled .nl       { color: var(--g600); }
#navbar.scrolled .nl:hover { color: var(--blue); background: var(--off); }
#navbar.scrolled .nl.active{ color: var(--blue); }

/* Order Now btn */
.nav-btn-order {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: var(--white);
  font-size: .8rem; font-weight: 700;
  padding: 9px 18px; border-radius: var(--rpill);
  flex-shrink: 0; white-space: nowrap;
  transition: background var(--tr), transform var(--tr);
}
.nav-btn-order svg { width: 14px; height: 14px; }
.nav-btn-order:hover { background: var(--blue-d); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: background .2s;
}
#navbar.scrolled .hamburger span { background: var(--g700); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
  border-top: 1px solid var(--g200); padding: 14px 28px 22px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block; padding: 11px 14px;
  font-size: .9rem; font-weight: 500; color: var(--g700);
  border-radius: var(--r2); transition: all .2s;
}
.mobile-menu a:hover { background: var(--off); color: var(--blue); }
.mob-order-btn {
  background: var(--blue) !important; color: var(--white) !important;
  text-align: center; border-radius: var(--rpill) !important;
  font-weight: 700 !important; margin-top: 8px;
}

/* ═══════════════════════════════════════
   HERO
   hero-bg.png = full background
   t2-water-bottle.jpg = big TC watermark top-right
════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--navy); overflow: hidden;
}

/* Full background image */
.hero-bg-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  animation: hpan 18s ease-in-out infinite alternate;
}
@keyframes hpan { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(6,14,29,.92)  0%,
      rgba(10,22,40,.78) 45%,
      rgba(2,80,140,.25) 100%
    );
}

/* TC logo large watermark — top right */
.hero-watermark {
  position: absolute;
  top: 50%; right: 3%;
  transform: translateY(-50%);
  z-index: 1;
  width: 38vw; max-width: 440px;
  pointer-events: none;
  opacity: .12;
}
.hero-watermark img {
  width: 100%; height: auto;
  object-fit: contain;
}

/* Hero body — left aligned */
.hero-body {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 140px 28px 200px;
  max-width: 1160px; width: 100%; margin: 0 auto;
}
.hero-h1 {
  font-family: var(--fp);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.06; letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero-p {
  font-size: clamp(.9rem,1.7vw,1.06rem);
  color: rgba(255,255,255,.72);
  line-height: 1.78; margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero animations ── */
.anim-up { opacity: 0; transform: translateY(26px); animation: fadeUp .9s forwards; }
.a1 { animation-delay: .16s; }
.a2 { animation-delay: .3s; }
.a3 { animation-delay: .48s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Stats bar — white strip exactly at bottom of hero */
.hero-statsbar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: var(--white);
  box-shadow: 0 -2px 16px rgba(0,0,0,.1);
  display: flex; align-items: stretch;
  flex-wrap: wrap;
}
.hsb-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px; flex: 1; min-width: 190px;
  cursor: default;
  transition: background .2s;
}
.hsb-item:hover { background: var(--off); }
.hsb-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #eff6ff; border-radius: var(--r2);
  display: flex; align-items: center; justify-content: center;
}
.hsb-icon svg { width: 22px; height: 22px; }
.hsb-item strong { display: block; font-size: .86rem; font-weight: 700; color: var(--g800); }
.hsb-item span   { display: block; font-size: .74rem; color: var(--g400); margin-top: 2px; }
.hsb-divider { width: 1px; background: var(--g200); margin: 14px 0; flex-shrink: 0; }

/* ═══════════════════════════════════════
   ABOUT US
   t1-teal-logo.jpg on left
════════════════════════════════════════ */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--r3);
  overflow: hidden; aspect-ratio: 1;
  box-shadow: var(--s3);
  background: #1ab3c8;
  display: flex; align-items: center; justify-content: center;
}
.about-main-img {
  width: 80%; height: 80%;
  object-fit: contain; object-position: center;
  padding: 16px;
}
.about-since {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--dark); color: var(--white);
  border-radius: var(--r2); padding: 12px 20px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--s2); min-width: 80px;
}
.about-since span {
  font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; opacity: .6;
}
.about-since strong {
  font-family: var(--fp); font-size: 2rem; font-weight: 800; line-height: 1;
}

/* ═══════════════════════════════════════
   OUR PROCESS
   t2-water-bottle.jpg on left half
   Dark navy on right half
════════════════════════════════════════ */
.sec-process {
  display: flex; min-height: 560px;
  background: var(--dark);
}

.proc-img-panel {
  flex: 0 0 42%; position: relative; overflow: hidden;
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
}
.proc-img {
  width: 68%; height: auto;
  object-fit: contain; object-position: center;
  opacity: .75;
}
.proc-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,31,56,.2) 0%, var(--dark) 100%);
}

.proc-content-panel {
  flex: 1; padding: 80px 60px 80px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.proc-content-panel h2 { margin-bottom: 0; }

/* Process flow */
.proc-flow {
  display: flex; align-items: center;
  gap: 0; flex-wrap: nowrap;
  margin: 36px 0 44px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.proc-step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.proc-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.proc-icon svg { width: 26px; height: 26px; }
.proc-step:hover .proc-icon,
.proc-step.active .proc-icon {
  background: rgba(14,165,233,.2);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(14,165,233,.3);
}
.proc-step span {
  font-size: .73rem; font-weight: 600;
  color: rgba(255,255,255,.68); white-space: nowrap;
}
.proc-step.active span { color: var(--blue); }

.proc-connector {
  flex-shrink: 0; display: flex; align-items: center;
  margin-bottom: 22px; padding: 0 6px;
}
.proc-connector svg { width: 36px; height: 10px; }

/* Stats row */
.proc-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r3); padding: 28px 20px;
  gap: 0; flex-wrap: wrap;
}
.pstat {
  display: flex; flex-direction: column; align-items: center;
  gap: 5px; flex: 1; min-width: 80px;
  text-align: center; padding: 0 10px;
}
.pstat svg { width: 28px; height: 28px; }
.pstat-n {
  font-family: var(--fp); font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.pstat span {
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.42); line-height: 1.4; text-align: center;
}
.pstat-vline {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.1); flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PRODUCTS — 3 cards
════════════════════════════════════════ */
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r3);
  overflow: hidden; box-shadow: var(--s1);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--s3); border-color: var(--g300); }

/* Product image wrapper — sachet photo */
.prod-img-wrap {
  height: 200px; overflow: hidden;
  position: relative; background: var(--light);
}
.prod-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .5s;
}
.prod-card:hover .prod-photo { transform: scale(1.05); }

/* Icon variant */
.prod-icon-wrap {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.prod-icon-wrap2 {
  background: linear-gradient(135deg, #dbeafe, #c7d2fe);
}
.prod-icon-svg { width: 80px; height: 80px; opacity: .85; }

.prod-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: var(--white);
  font-size: .67rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 11px;
  border-radius: var(--rpill);
}
.prod-body { padding: 22px 22px 26px; }
.prod-body h3 {
  font-family: var(--fp); font-size: 1.1rem; font-weight: 700;
  color: var(--g800); margin-bottom: 8px;
}
.prod-body p {
  font-size: .85rem; color: var(--g400);
  line-height: 1.65; margin-bottom: 16px;
}
.prod-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--blue);
  transition: gap .2s, color .2s;
}
.prod-cta svg { width: 13px; height: 13px; }
.prod-cta:hover { gap: 10px; color: var(--blue-d); }

/* ═══════════════════════════════════════
   WHY CHOOSE US — 4 cards
════════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--off); border: 1px solid var(--g200);
  border-radius: var(--r3); padding: 32px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--s2); border-color: #bfdbfe; }
.why-icon {
  width: 58px; height: 58px;
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: var(--r2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .2s;
}
.why-icon svg { width: 30px; height: 30px; }
.why-card:hover .why-icon { background: #dbeafe; }
.why-card h3 {
  font-family: var(--fp); font-size: 1.02rem; font-weight: 700;
  color: var(--g800); margin-bottom: 10px;
}
.why-card p { font-size: .85rem; color: var(--g400); line-height: 1.68; }

/* ═══════════════════════════════════════
   DISTRIBUTOR
   hero-bg.png as dark background
════════════════════════════════════════ */
.sec-dist {
  position: relative; padding: 96px 0; overflow: hidden;
}
.dist-bg-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.dist-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.dist-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    rgba(6,14,29,.95) 0%,
    rgba(10,22,40,.90) 60%,
    rgba(6,14,29,.88) 100%
  );
}
.dist-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.dist-desc {
  font-size: .95rem; line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
}
.dist-perks {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.dist-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.8);
}
.dist-perks svg { width: 16px; height: 16px; flex-shrink: 0; }
.dist-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact card */
.dist-card {
  background: var(--white); border-radius: var(--r3);
  overflow: hidden; box-shadow: var(--s3);
}
.dist-card-top {
  padding: 30px 32px 20px; text-align: center;
  border-bottom: 1px solid var(--g200);
}
.dist-hand { font-size: 2.2rem; display: block; margin-bottom: 8px; }
.dist-card-top h3 {
  font-family: var(--fp); font-size: 1.3rem; font-weight: 700;
  color: var(--g800); margin-bottom: 6px;
}
.dist-card-top p { font-size: .85rem; color: var(--g400); }

.dist-contacts {}
.dc-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--g100);
  transition: background .2s, padding-left .2s;
}
.dc-row:last-child { border-bottom: none; }
.dc-row:hover { background: var(--off); padding-left: 38px; }
.dc-ico {
  width: 40px; height: 40px; border-radius: var(--r1);
  background: #eff6ff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: background .2s, color .2s;
}
.dc-ico svg { width: 18px; height: 18px; }
.dc-row:hover .dc-ico { background: var(--blue); color: var(--white); }
.dc-row em  { display: block; font-style: normal; font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g300); margin-bottom: 2px; }
.dc-row strong { display: block; font-size: .87rem; font-weight: 600; color: var(--g800); }

/* ═══════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r3); padding: 30px 26px;
  box-shadow: var(--s1);
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--s2); }
.testi-stars { color: #f59e0b; font-size: .95rem; letter-spacing: .08em; margin-bottom: 14px; }
.testi-card > p {
  font-size: .9rem; line-height: 1.78; color: var(--g500);
  font-style: italic; margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  display: flex; align-items: center; justify-content: center;
  font-size: .74rem; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .85rem; font-weight: 700; color: var(--g800); }
.testi-author span   { display: block; font-size: .76rem; color: var(--g400); margin-top: 2px; }

/* ═══════════════════════════════════════
   CTA STRIP — t2 as background
════════════════════════════════════════ */
.cta-strip {
  position: relative; padding: 88px 0;
  text-align: center; overflow: hidden;
  background: var(--dark);
}
.cta-bg-wrap { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; }
.cta-bg-img  { width: 340px; height: 340px; object-fit: contain; opacity: .06; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,14,29,.92), rgba(10,22,40,.85));
}
.cta-body { position: relative; z-index: 1; }
.cta-body h2 { margin-bottom: 36px; font-size: clamp(2rem,4vw,3.2rem); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 52px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.ci-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--off); border: 1px solid var(--g200);
  border-radius: var(--r2); padding: 18px 20px;
  transition: transform .2s, box-shadow .2s;
}
.ci-card:hover { transform: translateX(4px); box-shadow: var(--s1); }
.ci-icon {
  width: 42px; height: 42px; background: #eff6ff;
  border-radius: var(--r1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-card h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--g400); margin-bottom: 5px;
}
.ci-card p, .ci-card a {
  display: block; font-size: .88rem; color: var(--g700);
  line-height: 1.55; transition: color .2s;
}
.ci-card a:hover { color: var(--blue); }

.contact-map { height: 440px; }
.map-frame {
  position: relative; width: 100%; height: 100%;
  border-radius: var(--r3); overflow: hidden; box-shadow: var(--s3);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-open {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: var(--white);
  font-size: .8rem; font-weight: 700;
  padding: 9px 18px; border-radius: var(--rpill);
  white-space: nowrap; box-shadow: var(--s2);
  transition: background .2s, transform .2s;
}
.map-open svg { width: 14px; height: 14px; }
.map-open:hover { background: var(--blue-d); transform: translateX(-50%) translateY(-2px); }

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  width: 72px; height: 72px;
  border-radius: var(--r2);
  object-fit: contain;
  padding: 4px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: .84rem; line-height: 1.7;
  color: rgba(255,255,255,.38); margin-bottom: 18px;
}
.footer-socials { display: flex; gap: 10px; }
.f-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .2s;
}
.f-social svg { width: 16px; height: 16px; }
.f-social:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.f-col h5 {
  font-size: .67rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.24); margin-bottom: 18px;
}
.f-col ul { display: flex; flex-direction: column; gap: 10px; }
.f-col li, .f-col a {
  font-size: .83rem; color: rgba(255,255,255,.44);
  line-height: 1.5; transition: color .2s;
}
.f-col a:hover { color: var(--blue); }
.nafdac-pill {
  display: inline-block; margin-top: 20px;
  font-size: .67rem; font-weight: 700;
  color: var(--blue);
  border: 1px solid rgba(14,165,233,.3);
  padding: 5px 11px; border-radius: var(--r1);
  background: rgba(14,165,233,.06);
}

.footer-bottom { padding: 20px 0; }
.footer-bottom-row {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom-row span { font-size: .76rem; color: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════
   WHATSAPP FAB
════════════════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 950;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.55);
  transition: background .2s, transform .2s, box-shadow .2s;
  animation: wapulse 3s ease-in-out infinite;
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { background: var(--green-d); transform: scale(1.1); }
@keyframes wapulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.9), 0 0 0 9px rgba(37,211,102,.1); }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.rv-up    { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.rv-left  { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.rv-right { opacity: 0; transform: translateX(30px);  transition: opacity .7s ease, transform .7s ease; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.revealed { opacity: 1 !important; transform: translate(0,0) !important; }

/* ═══════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1060px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 860px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .sec-process { flex-direction: column; }
  .proc-img-panel { flex: 0 0 260px; width: 100%; }
  .proc-img-fade { background: linear-gradient(to bottom, transparent 60%, var(--dark) 100%); }
  .proc-content-panel { padding: 48px 28px; }
  .dist-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 340px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-links, .nav-btn-order { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 2.6rem; }
  .hero-body { padding: 110px 28px 180px; }
  .hero-statsbar { position: static; flex-direction: column; }
  .hsb-divider { display: none; }
  .hsb-item { min-width: unset; border-bottom: 1px solid var(--g200); }
  .hero { min-height: auto; }
  .prod-grid  { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dist-btns { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .proc-stats { flex-direction: column; }
  .pstat-vline { width: 80%; height: 1px; }
}
@media (max-width: 380px) {
  .hero-h1 { font-size: 2.1rem; }
  .sec-head h2, h2 { font-size: 1.7rem; }
}
