/* ============================================================
   FINUM PHARMA LIMITED — Website Design System
   Palette extracted from the company profile deck.
   ============================================================ */

:root {
  /* Brand colours */
  --teal:        #0E8A7A;
  --teal-bright: #14A896;
  --teal-dark:   #0A6E62;
  --navy:        #0A1E35;
  --navy-2:      #0D2B55;
  --navy-3:      #1A3F5C;
  --blue:        #1A6FA8;
  --green:       #1B7A4A;
  --orange:      #E05A2B;
  --orange-dark: #C24A20;

  /* Neutral / tints */
  --tint-blue:   #E8F0F5;
  --tint-teal:   #D0F0EC;
  --tint-bg:     #F4F9FB;
  --slate:       #7A8FA6;
  --ink:         #14202E;
  --muted:       #556579;
  --line:        #E2EAF0;
  --white:       #ffffff;

  /* Gradients */
  --grad-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
  --grad-navy: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, #133A63 100%);
  --grad-hero: linear-gradient(155deg, #08182B 0%, #0C2748 45%, #0E4A5A 100%);

  /* Shape / motion */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow:    0 10px 30px -12px rgba(10, 30, 53, .18);
  --shadow-lg: 0 24px 60px -20px rgba(10, 30, 53, .30);
  --shadow-sm: 0 4px 14px -6px rgba(10, 30, 53, .18);
  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section--tint { background: var(--tint-bg); }
.section--navy { background: var(--grad-navy); color: #DCE7F2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--teal); border-radius: 2px; }
.section--navy .eyebrow { color: var(--teal-bright); }
.section--navy .eyebrow::before { background: var(--teal-bright); }

.section-title { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
.lead { font-size: 1.15rem; color: var(--muted); }
.section--navy .lead { color: #B9C8DA; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-teal); color: #fff; box-shadow: 0 10px 24px -10px rgba(14,138,122,.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(14,138,122,.75); }
.btn--accent { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(224,90,43,.7); }
.btn--accent:hover { transform: translateY(-2px); background: var(--orange-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--navy); letter-spacing: .02em; }
.brand__name b { color: var(--teal); font-weight: 800; }
.brand__sub { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--slate); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--navy);
  padding: 9px 15px; border-radius: 8px; position: relative; transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--teal); background: var(--tint-teal); }
.nav__links a.active { color: var(--teal); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.nav__cta { margin-left: 10px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: .3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--grad-hero); color: #fff; overflow: hidden;
  padding: 118px 0 130px;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(10px); opacity: .5;
}
.hero::before { width: 520px; height: 520px; right: -140px; top: -160px;
  background: radial-gradient(circle, rgba(20,168,150,.45), transparent 68%); }
.hero::after { width: 460px; height: 460px; left: -160px; bottom: -200px;
  background: radial-gradient(circle, rgba(26,111,168,.4), transparent 68%); }
.hero__grid {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px 7px 8px;
  border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  font-size: .82rem; font-weight: 600; margin-bottom: 26px; color: #DFF3EF;
}
.hero__badge b { background: var(--grad-teal); color:#fff; padding: 3px 11px; border-radius: 999px; font-size:.74rem; letter-spacing:.05em; }
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 5.5vw, 4.1rem); line-height: 1.05; margin-bottom: 22px;
}
.hero h1 .accent { background: linear-gradient(120deg,#2FD3BE,#5BB4E8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: #C4D4E4; font-size: 1.22rem; max-width: 600px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 600;
  color: #DCEAF4; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  padding: 8px 15px; border-radius: 999px;
}
.chip svg { width: 15px; height: 15px; color: var(--teal-bright); }

/* Page (sub) hero */
.pagehero {
  background: var(--grad-hero); color: #fff; padding: 92px 0 84px; position: relative; overflow: hidden;
}
.pagehero::after {
  content:""; position:absolute; width:440px; height:440px; right:-120px; top:-140px; border-radius:50%;
  background: radial-gradient(circle, rgba(20,168,150,.4), transparent 68%);
}
.pagehero .container { position: relative; z-index: 2; }
.pagehero h1 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.3rem); margin-bottom: 16px; }
.pagehero p { color: #C4D4E4; font-size: 1.15rem; max-width: 640px; }
.breadcrumb { font-size: .85rem; color: #8FA6BC; margin-bottom: 18px; font-weight: 600; }
.breadcrumb a { color: var(--teal-bright); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: -66px; position: relative; z-index: 5;
}
.stat {
  background: #fff; border-radius: var(--radius); padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--teal);
  line-height: 1; letter-spacing: -.02em; }
.stat__num span { color: var(--orange); }
.stat__label { font-size: .92rem; color: var(--muted); margin-top: 8px; font-weight: 500; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--tint-teal); }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-teal); color: #fff; margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card__list { margin-top: 16px; display: grid; gap: 9px; }
.card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink); }
.card__list li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: var(--tint-teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E8A7A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
/* colour variants for card icons */
.icon--blue  { background: linear-gradient(135deg,#1A6FA8,#2E90CE); }
.icon--green { background: linear-gradient(135deg,#1B7A4A,#28A366); }
.icon--navy  { background: linear-gradient(135deg,#0A1E35,#1A3F5C); }
.icon--orange{ background: linear-gradient(135deg,#E05A2B,#F0803D); }

/* number-badge card (process / import ops) */
.card--num .num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--teal);
  width: 46px; height: 46px; border-radius: 12px; background: var(--tint-teal);
  display: grid; place-items: center; margin-bottom: 16px;
}

/* Service overview card — keeps the "Read more" button on a shared baseline */
.card--svc { display: flex; flex-direction: column; }
.card--svc .card__list { margin-bottom: 24px; }
.card--svc .btn { margin-top: auto; align-self: flex-start; }

/* Pillars (large feature cards with top accent) */
.pillar { padding-top: 40px; }
.pillar::before { content:""; position:absolute; top:0; left:0; right:0; height:5px; background: var(--grad-teal); }
.pillar.pillar--2::before { background: linear-gradient(90deg,#1A6FA8,#2E90CE); }
.pillar.pillar--3::before { background: linear-gradient(90deg,#1B7A4A,#28A366); }

/* Feature row (image/text split) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media {
  border-radius: var(--radius-lg); background: var(--grad-navy); min-height: 340px; position: relative;
  overflow: hidden; box-shadow: var(--shadow-lg); display: grid; place-items: center; padding: 30px;
}
.split__media .biglogo { width: 62%; opacity: .96; }
.split__media::after {
  content:""; position:absolute; inset:0; background:
    radial-gradient(circle at 20% 20%, rgba(20,168,150,.35), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(26,111,168,.35), transparent 55%);
}
/* Photo variant of the media block */
.split__media--photo { padding: 0; background: var(--navy); }
.split__media--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.split__media--photo::after {
  background: linear-gradient(150deg, rgba(14,138,122,.20) 0%, rgba(10,30,53,.15) 45%, rgba(10,30,53,.45) 100%);
}
/* Photo backgrounds for hero / page hero (dark gradient keeps text readable) */
.hero--photo { background-size: cover !important; background-position: center !important; }
.pagehero--photo { background-size: cover !important; background-position: center !important; }

.value-list { display: grid; gap: 14px; margin-top: 8px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .vi {
  flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--tint-teal);
  display: grid; place-items: center; color: var(--teal);
}
.value-list .vi svg { width: 16px; height: 16px; }
.value-list b { font-family: var(--font-head); color: var(--navy); }

/* ============================================================
   VISION / MISSION
   ============================================================ */
.vm { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vm__card { border-radius: var(--radius); padding: 40px; color: #fff; position: relative; overflow: hidden; }
.vm__card--v { background: var(--grad-teal); }
.vm__card--m { background: var(--grad-navy); }
.vm__card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.vm__card p { color: rgba(255,255,255,.9); }
.vm__card .vm__ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.vm__card .vm__ic svg { width: 24px; height: 24px; color: #fff; }

/* ============================================================
   PROCESS TIMELINE (How we work)
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tl-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  position: relative; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease);
}
.tl-step:hover { transform: translateY(-5px); }
.tl-step .n {
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--tint-teal);
  line-height: 1; margin-bottom: 10px;
}
.tl-step h4 { font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
.tl-step p { font-size: .9rem; color: var(--muted); }
.tl-step::after {
  content:""; position:absolute; top: 42px; right: -14px; width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E8A7A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center/contain no-repeat; opacity:.5;
}
.tl-step:nth-child(4n)::after { display: none; }

/* ============================================================
   PILL LIST / MARKETS
   ============================================================ */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .95rem; color: var(--navy);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), border-color .25s;
}
.pill:hover { transform: translateY(-3px); border-color: var(--teal); }
.pill svg { width: 18px; height: 18px; color: var(--teal); }
.section--navy .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #EAF2F8; }
.section--navy .pill svg { color: var(--teal-bright); }

/* ============================================================
   LEADERSHIP
   ============================================================ */
.ceo-card {
  display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center;
  background: var(--grad-navy); border-radius: var(--radius-lg); padding: 44px; color: #fff;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.ceo-card::after { content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%;
  background: radial-gradient(circle, rgba(20,168,150,.4), transparent 65%); }
.avatar {
  width: 130px; height: 130px; border-radius: 24px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: #fff; flex: none;
  background: var(--grad-teal); box-shadow: 0 12px 30px -10px rgba(0,0,0,.4); position: relative; z-index: 2;
}
.ceo-card .info { position: relative; z-index: 2; }
.ceo-card .role { color: var(--teal-bright); font-weight: 700; font-family: var(--font-head); letter-spacing:.05em; text-transform: uppercase; font-size: .82rem; }
.ceo-card h3 { color: #fff; font-size: 2rem; margin: 6px 0 12px; }
.ceo-card p { color: #C4D4E4; max-width: 560px; }

.leader {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border-top: 4px solid var(--teal);
}
.leader:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.leader.l-green { border-top-color: var(--green); }
.leader.l-purple { border-top-color: #6C3FA0; }
.leader.l-orange { border-top-color: var(--orange); }
.leader.l-blue { border-top-color: var(--blue); }
.leader__top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.leader__av { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; background: var(--grad-teal); flex: none; }
.l-green .leader__av { background: linear-gradient(135deg,#1B7A4A,#28A366); }
.l-purple .leader__av { background: linear-gradient(135deg,#6C3FA0,#9366C4); }
.l-orange .leader__av { background: linear-gradient(135deg,#E05A2B,#F0803D); }
.l-blue .leader__av { background: linear-gradient(135deg,#1A6FA8,#2E90CE); }
.leader__name { font-family: var(--font-head); font-weight: 800; font-size: 1.16rem; color: var(--navy); }
.leader__role { font-size: .84rem; color: var(--teal); font-weight: 600; }
.leader .card__list li { font-size: .9rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.ci-card {
  display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
}
.ci-card .ci-ic { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--tint-teal); color: var(--teal); }
.ci-card .ci-ic svg { width: 22px; height: 22px; }
.ci-card h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--slate); margin-bottom: 4px; }
.ci-card p, .ci-card a { color: var(--navy); font-weight: 600; font-size: 1.02rem; word-break: break-word; }
.ci-card a:hover { color: var(--teal); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: var(--tint-bg);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(14,138,122,.12); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; display: none; }
.form-status.ok { display: block; background: var(--tint-teal); color: var(--teal-dark); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); margin-top: 20px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--grad-teal); border-radius: var(--radius-lg); padding: 62px 56px; text-align: center;
  position: relative; overflow: hidden; color: #fff; box-shadow: var(--shadow-lg); }
.cta-band::before { content:""; position:absolute; inset:0; opacity:.4;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.25), transparent 45%),
              radial-gradient(circle at 85% 90%, rgba(10,30,53,.35), transparent 50%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.12rem; max-width: 620px; margin: 0 auto 28px; }
.cta-band .btn--accent { box-shadow: 0 12px 26px -10px rgba(10,30,53,.5); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: #A8BACE; padding: 72px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: #6E8299; }
.footer__about { margin-top: 20px; font-size: .95rem; line-height: 1.75; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; letter-spacing: .02em; }
.footer ul { display: grid; gap: 11px; }
.footer ul a, .footer ul li { color: #A8BACE; font-size: .95rem; }
.footer ul a:hover { color: var(--teal-bright); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--teal-bright); flex: none; margin-top: 3px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 52px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #7286A0;
}
.footer__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__badges span { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 5px 12px; border-radius: 999px; font-size: .78rem; color: #C6D4E2; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .tl-step:nth-child(4n)::after { display: block; }
  .tl-step:nth-child(2n)::after { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 18px 24px 28px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .4s var(--ease); z-index: 90;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 12px; border-radius: 10px; font-size: 1.05rem; }
  .nav__links a.active::after { display: none; }
  .nav__links a.active { background: var(--tint-teal); }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: flex; }
}
@media (max-width: 620px) {
  .section { padding: 66px 0; }
  body { font-size: 16px; }
  .grid-2, .vm, .grid-4, .grid-3, .timeline { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: -50px; }
  .form-row { grid-template-columns: 1fr; }
  .ceo-card { grid-template-columns: 1fr; text-align: center; padding: 34px 26px; }
  .ceo-card .avatar { margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; }
  .tl-step::after { display: none !important; }
  .hero { padding: 84px 0 96px; }
  .brand__sub { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   SHOP — cart button, drawer, products, checkout
   ============================================================ */

/* header cart button */
.nav__actions { display: flex; align-items: center; gap: 6px; }
.cart-btn {
  position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
  color: var(--navy); transition: border-color .2s, background .2s, transform .2s;
}
.cart-btn:hover { border-color: var(--teal); background: var(--tint-teal); transform: translateY(-1px); }
.cart-btn svg { width: 21px; height: 21px; }
.cart-btn__count {
  position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: var(--orange); color: #fff; font-family: var(--font-head);
  font-weight: 800; font-size: .72rem; display: grid; place-items: center; box-shadow: 0 2px 6px rgba(224,90,43,.5);
  transform: scale(0); transition: transform .25s var(--ease);
}
.cart-btn__count.show { transform: scale(1); }

/* shop toolbar / filters */
.shop-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; margin-bottom: 40px; }
.filter-chip {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy);
  background: #fff; border: 1.5px solid var(--line); padding: 9px 18px; border-radius: 999px;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.filter-chip:hover { border-color: var(--teal); color: var(--teal); }
.filter-chip.active { background: var(--grad-teal); color: #fff; border-color: transparent; box-shadow: 0 8px 18px -8px rgba(14,138,122,.6); }

/* product grid */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--tint-teal); }
.product__media {
  height: 180px; position: relative; display: grid; place-items: center; overflow: hidden;
}
.product__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product__media svg { width: 66px; height: 66px; color: #fff; opacity: .95; }
.product__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--font-head); font-weight: 700;
  font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: #fff;
  background: rgba(10,30,53,.55); backdrop-filter: blur(4px); padding: 5px 11px; border-radius: 999px;
}
.product__rx {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 26px; height: 26px; border-radius: 7px;
  background: rgba(255,255,255,.9); color: var(--orange); font-family: var(--font-head); font-weight: 800;
  font-size: .7rem; display: grid; place-items: center;
}
.product__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product__name { font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; color: var(--navy); line-height: 1.3; }
.product__unit { font-size: .84rem; color: var(--slate); margin-top: 4px; }
.product__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product__price { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--teal); white-space: nowrap; }
.product__price span { font-size: .72rem; color: var(--slate); font-weight: 600; }
.add-btn {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700;
  font-size: .86rem; padding: 10px 15px; border-radius: 10px; border: 0; cursor: pointer;
  background: var(--navy); color: #fff; transition: background .2s, transform .2s;
}
.add-btn svg { width: 16px; height: 16px; }
.add-btn:hover { background: var(--teal); transform: translateY(-1px); }
.add-btn.in-cart { background: var(--green); }

.shop-empty { text-align: center; color: var(--muted); padding: 60px 0; grid-column: 1/-1; }

/* qty stepper */
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 9px; overflow: hidden; }
.qty button {
  width: 30px; height: 32px; border: 0; background: var(--tint-bg); color: var(--navy); cursor: pointer;
  font-size: 1.1rem; line-height: 1; display: grid; place-items: center; transition: background .15s;
}
.qty button:hover { background: var(--tint-teal); color: var(--teal); }
.qty input { width: 38px; height: 32px; border: 0; text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .92rem; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---- cart drawer ---- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(10,30,53,.5); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; z-index: 200;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: #fff;
  z-index: 201; display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .4s var(--ease); box-shadow: -20px 0 50px -20px rgba(10,30,53,.4);
}
.drawer.open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.drawer__close { width: 38px; height: 38px; border: 0; background: var(--tint-bg); border-radius: 10px; cursor: pointer; color: var(--navy); display: grid; place-items: center; transition: background .2s; }
.drawer__close:hover { background: var(--tint-teal); color: var(--teal); }
.drawer__close svg { width: 18px; height: 18px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 14px 24px; }
.drawer__foot { border-top: 1px solid var(--line); padding: 22px 24px; }
.drawer__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-family: var(--font-head); }
.drawer__row .t { color: var(--muted); font-weight: 600; }
.drawer__row .v { font-weight: 800; color: var(--navy); font-size: 1.35rem; }
.drawer__empty { text-align: center; color: var(--muted); padding: 50px 10px; }
.drawer__empty svg { width: 54px; height: 54px; color: var(--line); margin: 0 auto 14px; }

.cart-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item__media { width: 60px; height: 60px; border-radius: 10px; display: grid; place-items: center; overflow: hidden; }
.cart-item__media svg { width: 28px; height: 28px; color: #fff; }
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--navy); line-height: 1.25; }
.cart-item__price { font-size: .82rem; color: var(--slate); margin-top: 3px; }
.cart-item__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item__line { font-family: var(--font-head); font-weight: 800; color: var(--teal); font-size: .95rem; }
.cart-item__rm { background: none; border: 0; color: var(--slate); cursor: pointer; font-size: .78rem; text-decoration: underline; padding: 0; }
.cart-item__rm:hover { color: var(--orange); }

/* ---- checkout ---- */
.checkout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.checkout__main { display: grid; gap: 24px; }
.co-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.co-card h3 { font-size: 1.15rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.co-card h3 .n { width: 28px; height: 28px; border-radius: 8px; background: var(--grad-teal); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .85rem; display: grid; place-items: center; }

.pay-methods { display: grid; gap: 12px; }
.pay-opt { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; cursor: pointer; transition: border-color .2s, background .2s; }
.pay-opt:hover { border-color: var(--teal); }
.pay-opt.active { border-color: var(--teal); background: var(--tint-bg); box-shadow: 0 0 0 3px rgba(14,138,122,.1); }
.pay-opt__head { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.pay-opt__head .dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--slate); flex: none; position: relative; }
.pay-opt.active .pay-opt__head .dot { border-color: var(--teal); }
.pay-opt.active .pay-opt__head .dot::after { content:""; position: absolute; inset: 3px; border-radius: 50%; background: var(--teal); }
.pay-opt__logo { margin-left: auto; font-family: var(--font-head); font-weight: 800; font-size: .78rem; padding: 4px 10px; border-radius: 6px; }
.pay-opt__logo.mpesa { background: #1B7A4A; color: #fff; }
.pay-opt__logo.card { background: var(--navy); color: #fff; }
.pay-opt__fields { display: none; margin-top: 16px; }
.pay-opt.active .pay-opt__fields { display: block; }

/* order summary sticky */
.summary { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.summary__head { background: var(--grad-navy); color: #fff; padding: 22px 24px; }
.summary__head h3 { color: #fff; font-size: 1.15rem; }
.summary__head p { color: #B9C8DA; font-size: .85rem; margin-top: 3px; }
.summary__items { padding: 8px 24px; max-height: 320px; overflow-y: auto; }
.summary__totals { padding: 18px 24px; border-top: 1px solid var(--line); }
.sum-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: .95rem; color: var(--muted); }
.sum-row.total { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.3rem; margin: 6px 0 0; padding-top: 14px; border-top: 1px dashed var(--line); }
.sum-row.total .teal { color: var(--teal); }
.summary__foot { padding: 0 24px 24px; }

.demo-note {
  display: flex; gap: 12px; align-items: flex-start; background: #FFF6EE; border: 1px solid #F6D3BE;
  border-radius: var(--radius-sm); padding: 14px 16px; font-size: .86rem; color: #9A4B22; margin-top: 16px;
}
.demo-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--orange); }

/* order confirmation */
.order-done { text-align: center; max-width: 620px; margin: 0 auto; }
.order-done__badge { width: 92px; height: 92px; border-radius: 50%; background: var(--grad-teal); display: grid; place-items: center; margin: 0 auto 26px; box-shadow: 0 16px 40px -14px rgba(14,138,122,.6); }
.order-done__badge svg { width: 46px; height: 46px; color: #fff; }
.order-done h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.order-ref { display: inline-block; font-family: var(--font-head); font-weight: 800; color: var(--navy); background: var(--tint-teal); padding: 8px 18px; border-radius: 999px; margin: 8px 0 18px; letter-spacing: .05em; }
.order-done__items { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin: 26px 0; box-shadow: var(--shadow-sm); }

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .checkout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product__body { padding: 14px; }
  .product__foot { flex-direction: column; align-items: stretch; }
  .add-btn { justify-content: center; }
  .drawer { width: 100%; }
}
