/* ========== Tokens ========== */
:root {
  --primary: 215 75% 18%;
  --primary-light: 215 70% 28%;
  --secondary: 158 65% 38%;
  --secondary-light: 152 70% 45%;
  --accent: 158 60% 94%;
  --background: 0 0% 100%;
  --foreground: 215 45% 12%;
  --muted: 210 25% 96%;
  --muted-foreground: 215 20% 40%;
  --border: 215 25% 90%;
  --card: 0 0% 100%;

  --gradient-brand: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--secondary-light)) 100%);
  --gradient-soft: linear-gradient(180deg, hsl(210 25% 98%) 0%, hsl(0 0% 100%) 100%);

  --shadow-elegant: 0 20px 60px -20px hsl(var(--primary) / .25);
  --shadow-glow: 0 8px 40px -8px hsl(var(--secondary) / .4);
  --shadow-soft: 0 4px 24px -8px hsl(215 60% 20% / .12);

  --radius: 0.9rem;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; color: hsl(var(--primary)); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.header-inner { max-width: 1320px; }
section { padding: 96px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--secondary));
  margin-bottom: 14px;
}
.eyebrow-light { color: hsl(152 70% 68%); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 14px; }
.section-lead { color: hsl(var(--muted-foreground)); font-size: 1.05rem; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: hsl(var(--primary)); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: hsl(var(--primary-light)); }
.btn-cta { background: var(--gradient-cta); color: #fff; box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; color: hsl(var(--primary)); }
.btn-ghost:hover { background: hsl(var(--muted)); }
.btn-outline { background: transparent; border-color: hsl(var(--border)); color: hsl(var(--primary)); }
.btn-outline:hover { border-color: hsl(var(--primary)); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* ========== Hero announcement badge ========== */

.hero-announcement {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  padding: 11px 22px;
  background: hsla(0,0%,100%,.08);
  border: 1px solid hsla(0,0%,100%,.2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: .01em;
  color: hsla(0,0%,100%,.92);
}
.hero-announcement .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: hsl(152 70% 60%);
  box-shadow: 0 0 0 rgba(52, 211, 153, .6);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 hsla(152, 70%, 60%, .55); }
  70% { box-shadow: 0 0 0 8px hsla(152, 70%, 60%, 0); }
  100% { box-shadow: 0 0 0 0 hsla(152, 70%, 60%, 0); }
}
.hero-announcement a { color: hsl(152 70% 72%); text-decoration: underline; font-weight: 800; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsla(0, 0%, 100%, 0.98);
  border-bottom: 1px solid hsl(var(--border));
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 38px; height: 38px; object-fit: contain; border-radius: 8px; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: hsl(var(--primary)); white-space: nowrap; }
.brand-name em { font-style: normal; color: hsl(var(--secondary)); }

.brand-name-stack { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name-top {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: hsl(var(--primary)); text-transform: uppercase; letter-spacing: .01em;
  white-space: nowrap;
}
.brand-name-bottom {
  font-family: var(--font-display); font-weight: 700; font-size: 0.62rem;
  color: hsl(var(--secondary)); text-transform: uppercase; letter-spacing: .1em;
  white-space: nowrap;
}
.main-nav { display: flex; gap: 22px; flex: 1; justify-content: center; }
.main-nav a { font-weight: 600; font-size: 0.87rem; color: hsl(var(--foreground)); position: relative; padding: 6px 0; white-space: nowrap; }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: hsl(var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover { color: hsl(var(--secondary)); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.header-actions .btn { padding: 11px 18px; font-size: 0.88rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; flex-shrink: 0; }
.nav-toggle span { width: 24px; height: 2px; background: hsl(var(--primary)); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; margin-bottom: 20px; }
.hero-slogan {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 1.1rem; color: hsl(152 70% 72%); margin-bottom: 14px;
}
.hero-lead { font-size: 1.15rem; color: hsla(0,0%,100%,.85); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-scroll { display: inline-flex; gap: 6px; font-size: 0.9rem; color: hsla(0,0%,100%,.75); font-weight: 600; }
.hero-badges {
  max-width: 900px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsla(0,0%,100%,.15);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-badge { background: hsla(0,0%,100%,.06); padding: 22px 16px; text-align: center; }
.hero-badge-value { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; }
.hero-badge-label { display: block; font-size: 0.8rem; color: hsla(0,0%,100%,.7); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.hero-slogan-bottom { text-align: center; margin: 28px 0 0; font-size: 1.15rem; }

/* ========== About ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-elegant); }
.about-media img { border-radius: var(--radius); height: 460px; width: 100%; object-fit: cover; }
.about-media-card {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.about-media-card strong { color: hsl(var(--secondary)); font-family: var(--font-display); }
.about-media-card span { font-size: 0.82rem; color: hsl(var(--muted-foreground)); }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.about-content p { color: hsl(var(--muted-foreground)); margin-bottom: 14px; }
.check-list { margin: 22px 0; display: grid; gap: 10px; }
.check-list li { padding-left: 28px; position: relative; font-weight: 600; font-size: 0.95rem; }
.check-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: hsl(var(--accent));
  color: hsl(var(--secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
}
.about-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.about-panel { background: hsl(var(--muted)); padding: 20px; border-radius: 12px; }
.about-panel h3 { font-size: 1rem; margin-bottom: 8px; }
.about-panel p { font-size: 0.88rem; margin: 0; }

.values-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
.value-item { padding: 28px; border: 1px solid hsl(var(--border)); border-radius: var(--radius); }
.value-item h4 { font-size: 1.05rem; margin-bottom: 10px; }
.value-item p { color: hsl(var(--muted-foreground)); font-size: 0.92rem; }

/* ========== Services ========== */
.services { background: hsl(var(--muted)); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elegant); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: hsl(var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { color: hsl(var(--muted-foreground)); font-size: 0.9rem; margin-bottom: 14px; }
.card-link { font-weight: 700; font-size: 0.85rem; color: hsl(var(--secondary)); }

/* ========== Why ========== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 32px 20px; }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: var(--shadow-glow);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: hsl(var(--muted-foreground)); font-size: 0.9rem; }

/* ========== Markets ========== */
.market-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.market-map {
  background: linear-gradient(180deg, hsl(210 30% 97%) 0%, hsl(0 0% 100%) 100%);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.market-map svg { width: 100%; height: auto; display: block; }

.map-countries [id="ke"], .map-countries [id="ug"], .map-countries [id="tz"],
.map-countries [id="cd"], .map-countries [id="ss"], .map-countries [id="et"],
.map-countries [id="so"], .map-countries [id="sd"], .map-countries [id="cf"],
.map-countries [id="cg"], .map-countries [id="rw"], .map-countries [id="bi"],
.map-countries [id="zm"], .map-countries [id="mw"], .map-countries [id="mz"],
.map-countries [id="ao"], .map-countries [id="er"], .map-countries [id="dj"],
.map-countries [id="zw"] {
  fill: hsl(215 20% 90%);
  stroke: #fff;
  stroke-width: 1.1;
  transition: fill .25s ease;
}
.map-countries [id="ke"],
.map-countries [id="ug"],
.map-countries [id="tz"],
.map-countries [id="cd"],
.map-countries [id="ss"] {
  fill: hsl(var(--secondary) / .35);
  cursor: pointer;
}
.map-countries [id="ke"]:hover,
.map-countries [id="ug"]:hover,
.map-countries [id="tz"]:hover,
.map-countries [id="cd"]:hover,
.map-countries [id="ss"]:hover,
.map-countries [id].is-hovered {
  fill: hsl(var(--secondary) / .65);
}
.map-countries [id="ke"].is-selected,
.map-countries [id="ug"].is-selected,
.map-countries [id="tz"].is-selected,
.map-countries [id="cd"].is-selected,
.map-countries [id="ss"].is-selected {
  fill: hsl(var(--secondary));
}

.map-marker circle {
  fill: hsl(var(--primary));
  stroke: #fff;
  stroke-width: 1.6;
  transition: r .2s ease, fill .2s ease;
}
.map-marker.is-selected circle,
.map-marker:hover circle {
  fill: hsl(var(--secondary));
  r: 5.5;
}
.map-marker text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  fill: hsl(var(--primary));
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 3px;
  stroke-linejoin: round;
  pointer-events: none;
}

.market-list { display: grid; gap: 10px; }
.market-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: transparent;
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.market-item:hover { border-color: hsl(var(--secondary)); transform: translateX(2px); }
.market-item.is-active { border-color: hsl(var(--secondary)); background: hsl(var(--accent)); }
.market-dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  background: hsl(var(--primary));
  transition: background .2s ease;
}
.market-item.is-active .market-dot { background: hsl(var(--secondary)); }
.market-item-text { display: flex; flex-direction: column; gap: 4px; }
.market-item-text strong { font-family: var(--font-display); font-size: 1rem; color: hsl(var(--primary)); }
.market-item-text span { font-size: 0.88rem; color: hsl(var(--muted-foreground)); }

/* ========== Stats ========== */
.stats { background: var(--gradient-brand); color: #fff; padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.stat-value { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
.stat-label { display: block; margin-top: 6px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .06em; color: hsla(0,0%,100%,.75); }

/* ========== Products ========== */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product-card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 36px;
  background: hsl(var(--card));
}
.product-tag { color: hsl(var(--secondary)); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.product-card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.product-card > p { color: hsl(var(--muted-foreground)); margin-bottom: 18px; }
.dot-list { display: grid; gap: 8px; margin-bottom: 24px; }
.dot-list li { padding-left: 20px; position: relative; font-size: 0.92rem; }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: hsl(var(--secondary)); }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========== Partners & Compliance ========== */
.partners { padding: 64px 0; border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); }
.partners-block { text-align: center; }
.partners-block + .partners-block { margin-top: 48px; }
.partners-label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: .12em; text-transform: uppercase; color: hsl(var(--muted-foreground));
  margin-bottom: 24px;
}
.partners-row {
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: center;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  height: 52px; width: 120px;
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  background: #fff;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.partner-logo:hover { border-color: hsl(var(--secondary)); box-shadow: var(--shadow-soft); }
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ========== Testimonials ========== */
.testimonials { background: hsl(var(--muted)); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.testimonial-card p { font-size: 0.95rem; color: hsl(var(--foreground)); margin-bottom: 20px; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial-card cite { display: block; font-style: normal; font-weight: 700; font-size: 0.88rem; }
.testimonial-card footer span { font-size: 0.78rem; color: hsl(var(--muted-foreground)); }

/* ========== Insights ========== */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.insight-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.insight-tag { display: inline-block; background: hsl(var(--accent)); color: hsl(var(--secondary)); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.insight-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.insight-card p { color: hsl(var(--muted-foreground)); font-size: 0.88rem; margin-bottom: 18px; }
.insight-meta { display: flex; gap: 14px; font-size: 0.78rem; color: hsl(var(--muted-foreground)); border-top: 1px solid hsl(var(--border)); padding-top: 14px; }

/* ========== Contact ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
.contact-list { margin-top: 28px; display: grid; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; padding-bottom: 16px; border-bottom: 1px solid hsl(var(--border)); }
.contact-list strong { font-family: var(--font-display); font-size: 0.95rem; }
.contact-list span { color: hsl(var(--muted-foreground)); font-size: 0.9rem; }
.contact-list a { color: hsl(var(--secondary)); font-weight: 600; }

.quote-form {
  background: hsl(var(--muted));
  border-radius: var(--radius);
  padding: 36px;
}
.quote-form h3 { font-size: 1.3rem; margin-bottom: 8px; }
.quote-form > p { color: hsl(var(--muted-foreground)); font-size: 0.9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: #fff;
  color: hsl(var(--foreground));
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: hsl(var(--secondary));
  box-shadow: 0 0 0 3px hsl(var(--secondary) / .15);
}
.form-note { font-size: 0.85rem; margin-top: 10px; color: hsl(var(--secondary)); font-weight: 600; min-height: 1.2em; }

/* ========== Team page ========== */
.main-nav a.is-current { color: hsl(var(--secondary)); }
.main-nav a.is-current::after { transform: scaleX(1); }

.team-hero {
  padding: 160px 0 90px;
  text-align: center;
  color: #fff;
  background: var(--gradient-brand);
}
.team-hero-inner { max-width: 720px; margin: 0 auto; }
.team-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); color: #fff; margin-bottom: 18px; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.team-card-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.team-photo-sm {
  flex-shrink: 0; width: 96px; height: 96px;
  border-radius: 16px; overflow: hidden;
  background: hsl(var(--muted));
}
.team-photo-sm img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.team-head-text h3 { font-size: 1.25rem; margin-bottom: 4px; }
.team-role { color: hsl(var(--secondary)); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .03em; }
.team-bio { color: hsl(var(--muted-foreground)); margin-bottom: 0; }

.team-culture { background: hsl(var(--muted)); }
.team-culture-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.team-culture-content p { color: hsl(var(--muted-foreground)); margin-bottom: 16px; }
.team-culture-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.team-culture-panel h3 { font-size: 1.15rem; margin-bottom: 12px; }
.team-culture-panel p { color: hsl(var(--muted-foreground)); font-size: 0.92rem; margin-bottom: 22px; }

@media (max-width: 480px) {
  .team-card-head { gap: 14px; }
  .team-photo-sm { width: 76px; height: 76px; border-radius: 14px; }
  .team-head-text h3 { font-size: 1.1rem; }
}
@media (max-width: 760px) {
  .team-culture-grid { grid-template-columns: 1fr; }
  .team-hero { padding-top: 130px; }
}

/* ========== Footer ========== */
.site-footer { background: hsl(var(--primary)); color: hsla(0,0%,100%,.85); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-grid p { font-size: 0.88rem; margin-top: 14px; color: hsla(0,0%,100%,.6); }
.footer-slogan {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 1rem; color: hsl(var(--secondary)) !important; margin-top: 16px !important;
}
.brand-footer .brand-name { color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid hsla(0,0%,100%,.12);
  padding: 22px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: hsla(0,0%,100%,.55);
}

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .about-grid, .contact-grid, .product-grid, .market-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .testimonial-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-strip { grid-template-columns: 1fr; }
}
@media (max-width: 1250px) {
  .main-nav { display: none; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .service-grid, .why-grid, .testimonial-grid, .insight-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding-top: 130px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .partner-logo { width: 92px; height: 44px; padding: 6px 10px; flex-shrink: 0; }
  .partners-row { gap: 10px; justify-content: flex-start; }
  .partners-block + .partners-block { margin-top: 32px; }
  .hero-announcement { font-size: 0.74rem; padding: 9px 16px; margin-top: 24px; text-align: left; }
}

/* Mobile nav panel */
.main-nav.open {
  display: flex;
  position: fixed;
  top: var(--header-h, 78px);
  left: 0; right: 0; bottom: 0;
  background: #fff;
  flex-direction: column;
  padding: 12px 24px 32px;
  gap: 0;
  overflow-y: auto;
  z-index: 99;
  animation: navIn .22s ease;
}
@keyframes navIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.main-nav.open a {
  padding: 18px 4px;
  font-size: 1.05rem;
  border-bottom: 1px solid hsl(var(--border));
  width: 100%;
}
.main-nav.open a::after { display: none; }
.mobile-cta {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.main-nav.open .mobile-cta { display: flex; }
.main-nav.open .mobile-cta .btn { width: 100%; padding: 16px 26px; }
.main-nav.open .mobile-cta .btn-primary { color: #fff; }
.main-nav.open .mobile-cta .btn-outline { color: hsl(var(--primary)); }

body.nav-open { overflow: hidden; }
