/* ══════════════════════════════════════════════════════════════
   TOYI-CAM TABLE WATER — Premium CSS
   Matches the ChatGPT mockup template closely
   Font: Montserrat + Playfair Display
   ══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --blue:       #0ea5e9;
  --blue-dark:  #0284c7;
  --blue-deep:  #0c1a2e;
  --blue-mid:   #0f2744;
  --navy:       #060e1d;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --green-wa:   #25D366;
  --green-wa-d: #128C7E;

  --font-main:  'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-xxl: 40px;

  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 6px 28px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.14);
  --glow-blue: 0 0 32px rgba(14,165,233,.3);

  --ease: cubic-bezier(.4,0,.2,1);
  --t: .28s;
}

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

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--gray-800);
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title.white { color: var(--white); }
.section-title em { font-style: italic; font-weight: 400; }
.blue-em { color: var(--blue); }

.section-header { margin-bottom: 56px; }

.body-text {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 18px;
}

/* ── Global Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-main);
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-xxl);
  transition: background var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--glow-blue); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-main);
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-xxl);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(12px);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.btn-secondary:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-xxl);
  border: 1.5px solid rgba(255,255,255,.4);
  transition: all var(--t) var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-xxl);
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
  margin-top: 10px;
}
.btn-primary-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--glow-blue); }

.btn-wa-green {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-wa);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-xxl);
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
  white-space: nowrap;
}
.btn-wa-green:hover { background: var(--green-wa-d); transform: translateY(-2px); }

.btn-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  font-size: .92rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-xxl);
  transition: background var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp-big:hover { background: var(--green-wa-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

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

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-brand { flex-shrink: 0; }
.nav-logo-img {
  height: 58px;
  width: auto;
  transition: filter var(--t) var(--ease);
  /* White on dark hero */
  filter: brightness(0) invert(1);
}
#navbar.scrolled .nav-logo-img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  padding: 8px 13px;
  border-radius: var(--r-xxl);
  border-bottom: 2px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active { color: var(--white); border-bottom-color: var(--blue); }
#navbar.scrolled .nav-link { color: var(--gray-700); }
#navbar.scrolled .nav-link:hover { color: var(--blue); background: var(--gray-50); }
#navbar.scrolled .nav-link.active { color: var(--blue); border-bottom-color: var(--blue); }

.btn-order-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--r-xxl);
  flex-shrink: 0;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
  white-space: nowrap;
}
.btn-order-nav:hover { background: var(--blue-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--t) var(--ease);
}
#navbar.scrolled .hamburger span { background: var(--gray-800); }

.mobile-nav {
  display: none;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-100);
  padding: 16px 28px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-md);
  transition: all var(--t) var(--ease);
}
.mobile-nav a:hover { background: var(--gray-50); color: var(--blue); }
.mob-order-btn {
  background: var(--blue) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  border-radius: var(--r-xxl) !important;
  font-weight: 700 !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO — T2 water image as full background (like mockup)
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroScale 18s ease-in-out infinite alternate;
}
@keyframes heroScale {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* matches mockup: dark left with blue depth */
  background: linear-gradient(
    105deg,
    rgba(6,14,29,.92) 0%,
    rgba(12,26,46,.82) 45%,
    rgba(2,132,199,.15) 100%
  );
}

/* TC Logo watermark top-right exactly like mockup */
.hero-logo-mark {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  z-index: 1;
  width: 42vw;
  max-width: 520px;
  opacity: .08;
  pointer-events: none;
}
.hero-logo-mark img { width: 100%; filter: brightness(0) invert(1); }

/* Hero body — text left-aligned like mockup */
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 28px 200px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.hero-text { max-width: 600px; }

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  animation: fadeUp .9s var(--ease) both;
}
.hero-h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.85);
}

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp .9s .15s var(--ease) both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .9s .28s var(--ease) both;
}

/* Stats bar across bottom of hero — exactly like mockup */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  flex-wrap: wrap;
  gap: 0;
  animation: fadeUp .9s .5s var(--ease) both;
}
.hstat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 32px;
}
.hstat-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.hstat-text span {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-top: 1px;
}
.hstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT — white split layout
   ══════════════════════════════════════════════════════════════ */
.section-about {
  background: var(--white);
  padding: 110px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left visual: T1 logo on teal background */
.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: #1ab3c8;  /* teal, matching T1 bg */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-brand-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  padding: 20px;
}
.about-since-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.since-label { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.since-year { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }

.about-content {}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 7px 14px;
  border-radius: var(--r-xxl);
}

/* ══════════════════════════════════════════════════════════════
   OUR PROCESS — T2 water image as background (dark section)
   ══════════════════════════════════════════════════════════════ */
.section-process {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--blue-deep);
}
.process-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.process-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  opacity: .18;
}
.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,29,.96) 0%, rgba(12,26,46,.88) 100%);
}
.process-inner {
  position: relative;
  z-index: 1;
}
.process-header { margin-bottom: 56px; }

/* Process flow — horizontal icons with connectors */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 64px;
}
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 110px;
  max-width: 140px;
  text-align: center;
}
.proc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--t) var(--ease);
  backdrop-filter: blur(8px);
}
.proc-icon:hover, .proc-icon-active {
  border-color: var(--blue) !important;
  background: rgba(14,165,233,.15) !important;
  box-shadow: 0 0 24px rgba(14,165,233,.25) !important;
}
.proc-dot-line { display: none; }
.proc-label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
}
.proc-connector {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-shrink: 0;
  padding: 0 4px;
}

/* Stats row inside process section */
.proc-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  gap: 0;
  flex-wrap: wrap;
}
.pstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
}
.pstat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.pstat span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  text-align: center;
}
.pstat-vdiv {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.12);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS — light background, 3 cards
   ══════════════════════════════════════════════════════════════ */
.section-products {
  background: var(--gray-50);
  padding: 110px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.prod-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--ease);
}
.product-card:hover .prod-img { transform: scale(1.05); }
.prod-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}
.prod-icon-bg--event {
  background: linear-gradient(135deg, #e0f2fe 0%, #c7d2fe 100%);
}
.prod-icon-wrap { opacity: .8; }
.prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-xxl);
}
.prod-body { padding: 24px 24px 28px; }
.prod-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 9px;
}
.prod-body p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}
.prod-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--t) var(--ease), color var(--t) var(--ease);
}
.prod-link:hover { color: var(--blue-dark); gap: 11px; }

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US — white background, 4 cards
   ══════════════════════════════════════════════════════════════ */
.section-why {
  background: var(--white);
  padding: 110px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #bfdbfe;
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--t) var(--ease);
}
.why-card:hover .why-icon { background: #dbeafe; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}
.why-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   DISTRIBUTOR — dark image background
   ══════════════════════════════════════════════════════════════ */
.section-distributor {
  position: relative;
  padding: 110px 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(135deg, rgba(6,14,29,.93) 0%, rgba(12,26,46,.88) 60%, rgba(6,14,29,.8) 100%);
}
.dist-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.dist-body {
  font-size: .97rem;
  line-height: 1.8;
  color: rgba(255,255,255,.68);
  margin-bottom: 24px;
}
.dist-perks {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}
.dist-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
}
.dist-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Distributor right card */
.dist-card {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dist-card-top {
  padding: 36px 36px 24px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}
.dist-card-icon { font-size: 2.4rem; margin-bottom: 10px; }
.dist-card-top h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.dist-card-top p { font-size: .88rem; color: var(--gray-500); }
.dist-contact-list { padding: 4px 0; }
.dci {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t) var(--ease), padding-left var(--t) var(--ease);
}
.dci:last-child { border-bottom: none; }
.dci:hover { background: var(--gray-50); padding-left: 44px; }
.dci-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.dci:hover .dci-icon-wrap { background: var(--blue); color: var(--white); }
.dci-label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-300); }
.dci-val { display: block; font-size: .92rem; font-weight: 600; color: var(--gray-800); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.section-testi {
  background: var(--gray-50);
  padding: 110px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  position: relative;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: .1em; margin-bottom: 18px; }
.testi-card > p {
  font-size: .93rem;
  line-height: 1.78;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 26px;
}
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .88rem; font-weight: 700; color: var(--gray-800); }
.testi-author span { display: block; font-size: .78rem; color: var(--gray-400); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   CTA STRIP
   ══════════════════════════════════════════════════════════════ */
.section-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,29,.94) 0%, rgba(12,26,46,.88) 100%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
}
.cta-headline em { font-style: italic; font-weight: 400; color: var(--blue); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.section-contact {
  background: var(--white);
  padding: 110px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.cinfo-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.cinfo-icon {
  width: 46px;
  height: 46px;
  background: #eff6ff;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-card h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.cinfo-card p, .cinfo-card a {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.6;
  display: block;
  transition: color var(--t) var(--ease);
}
.cinfo-card a:hover { color: var(--blue); }

.contact-map { height: 460px; }
.map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-open-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--r-xxl);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.map-open-btn:hover { background: var(--blue-dark); transform: translateX(-50%) translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: .86rem;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
  margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 10px; }
.fsocial {
  width: 38px;
  height: 38px;
  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,.55);
  transition: all var(--t) var(--ease);
}
.fsocial:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li, .footer-col a {
  font-size: .86rem;
  color: rgba(255,255,255,.48);
  line-height: 1.5;
  transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--blue); }
.footer-nafdac { margin-top: 24px; }
.nafdac-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid rgba(14,165,233,.3);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  background: rgba(14,165,233,.06);
}

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-tagline { font-style: italic; color: rgba(255,255,255,.2) !important; }

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

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.revealed { opacity: 1 !important; transform: translate(0,0) !important; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .dist-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 360px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-stats { padding: 28px 16px; }
  .pstat { padding: 0 28px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-order-nav { display: none; }
  .hamburger { display: flex; }

  .hero-body { padding: 110px 28px 220px; }
  .hero-h1 { font-size: 2.6rem; }

  .hero-stats-bar { justify-content: flex-start; overflow-x: auto; padding: 16px 20px; gap: 0; flex-wrap: nowrap; }
  .hstat { padding: 8px 20px; min-width: fit-content; }
  .hstat-divider { flex-shrink: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .process-flow { justify-content: flex-start; }
  .proc-stats { flex-direction: column; gap: 20px; }
  .pstat-vdiv { width: 80%; height: 1px; }
  .pstat { padding: 0; }

  .dist-cta-row { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats-bar { flex-direction: column; flex-wrap: nowrap; padding: 16px; }
  .hstat-divider { width: 100%; height: 1px; }
  .hstat { width: 100%; justify-content: flex-start; padding: 12px 8px; }
  .about-img-frame { aspect-ratio: 4/3; }
  .br-d { display: none; }
  section { padding-top: 80px !important; padding-bottom: 80px !important; }
}
