/* =========================================================
   SUNNY PROCESSORS LIMITED — Industrial B2B styling
   Pure CSS · Mobile-first · Accessible
   ========================================================= */

/* =========================================================
   SELF-HOSTED FONTS (replaces Google Fonts CDN)
   Barlow (500/600/700/800/900)  +  IBM Plex Sans (400/500/600)
   ========================================================= */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/barlow-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/barlow-900.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600; /* variable weight range — one file serves 400/500/600 */
  font-display: swap;
  src: url('../fonts/ibm-plex-sans-400.woff2') format('woff2');
}

:root {
  /* Logo-matched palette: deep forest green primary, orange/yellow sun accents */
  --c-green:        #1B5E20;   /* logo primary green - SUNNY text */
  --c-green-dark:   #0F4D24;   /* deeper, for dark sections */
  --c-green-2:      #2E7D32;   /* lighter green for hovers */
  --c-leaf:         #66BB6A;   /* light leaf accent */
  --c-mango:        #F5A623;   /* logo sun orange */
  --c-mango-dark:   #E08E0A;
  --c-yellow:       #FFC107;   /* logo sun yellow */
  --c-charcoal:     #0F2818;   /* dark green-tinted near-black */
  --c-charcoal-2:   #1A3322;
  --c-steel:        #A3ABB1;
  --c-steel-2:      #6F7681;
  --c-light:        #EAECEE;
  --c-off:          #F4F7F2;   /* slight green tint off-white */
  --c-white:        #FFFFFF;
  --c-text:         #1A2620;
  --c-text-mute:    #5A6068;
  --c-text-light:   #F8F9FA;
  --c-border:       #D1D5DB;

  --container:      1280px;
  --gap-l: 3rem;
  --gap-m: 1.5rem;
  --gap-s: 0.75rem;

  --r-btn: 2px;
  --r-card: 6px;

  --shadow-sm: 0 2px 6px rgba(18,20,23,.06);
  --shadow-md: 0 8px 24px rgba(18,20,23,.10);
  --shadow-lg: 0 18px 40px rgba(18,20,23,.18);

  --ff-head: 'Barlow', system-ui, sans-serif;
  --ff-body: 'IBM Plex Sans', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-charcoal);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.35rem, 2.4vw, 2rem); text-transform: uppercase; font-weight: 500; letter-spacing: .04em; color: var(--c-mango); }
h3 { font-size: 1.15rem; text-transform: uppercase; font-weight: 500; letter-spacing: .06em; }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; }
p  { margin: 0 0 1rem; color: var(--c-text-mute); }
strong { color: var(--c-charcoal); }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-mango);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.25rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.75rem; height: 2px;
  background: var(--c-mango);
  transform: translateY(-50%);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--c-charcoal); color: var(--c-text-light); }
.section--dark h1 { color: var(--c-white); }
.section--dark h2, .section--dark h3 { color: var(--c-mango); }
.section--dark p { color: rgba(248,249,250,.72); }
.section--gray { background: var(--c-off); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.5rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r-btn);
  border: 2px solid transparent;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--c-mango); color: var(--c-white); }
.btn-primary:hover { background: var(--c-yellow); color: var(--c-charcoal); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--c-charcoal); border-color: var(--c-charcoal); }
.btn-outline:hover { background: var(--c-charcoal); color: var(--c-white); }
.btn-light { background: var(--c-white); color: var(--c-charcoal); }
.btn-light:hover { background: var(--c-yellow); }
.btn-green { background: var(--c-green); color: var(--c-white); }
.btn-green:hover { background: var(--c-green-2); transform: translateY(-2px); }
.btn-ghost { color: var(--c-white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--c-mango); color: var(--c-mango); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--c-charcoal);
  color: var(--c-steel);
  font-size: .8rem;
  font-family: var(--ff-head);
  letter-spacing: .04em;
  border-bottom: 1px solid #222;
}
.top-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 38px; padding-top: .35rem; padding-bottom: .35rem; gap: 1rem;
}
.top-bar__info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar__info a:hover { color: var(--c-yellow); }
.top-bar__cert { color: var(--c-yellow); font-weight: 600; font-size: .72rem; letter-spacing: .14em; }
@media (max-width: 768px) { .top-bar__cert { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-light);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 86px;
}
/* Logo is inline within the header (no floating) */
.site-header { overflow-x: clip; }

.logo { display: flex; align-items: center; gap: .75rem; position: relative; }
.logo__img {
  height: 92px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.logo__img--light {
  background: var(--c-white);
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-green);
  letter-spacing: .02em;
}
.logo__name em { font-style: normal; color: var(--c-mango); font-weight: 700; }
.logo__sub {
  font-size: .65rem;
  letter-spacing: .22em;
  color: var(--c-steel-2);
  margin-top: 4px;
  font-weight: 600;
}
.logo--dark .logo__name { color: var(--c-white); }
.logo--dark .logo__sub  { color: var(--c-steel); }

/* Header inline layout — logo sits inside the bar */
.header__inner { min-height: 92px; }
@media (max-width: 768px) {
  /* On mobile, the logo sits INSIDE the header bar (no floating, no shadow, transparent) */
  .logo__img {
    height: 64px;
    width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    object-fit: contain;
  }
  .header__inner { min-height: 80px; padding-top: 0; padding-bottom: 0; }
  .site-header { padding: 0; }
}

.main-nav { display: flex; gap: 2rem; margin-left: 1rem; }
.nav-link {
  position: relative;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-charcoal);
  padding: .4rem 0;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--c-mango);
  transition: width .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--c-mango); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-link__short { display: none; }
@media (max-width: 1100px) {
  .nav-link__full { display: none; }
  .nav-link__short { display: inline; }
}

/* =========================================================
   HEADER EMBLEM — compact "Since 2008" stamp next to CTA
   ========================================================= */
.header__emblem {
  position: relative;
  width: 76px; height: 76px;
  flex-shrink: 0;
  flex-grow: 0;
  display: inline-block;
  margin-left: .5rem;
  max-width: 100%;
}
.header__emblem-svg {
  position: absolute;
  inset: 0;
  width: 76px; height: 76px;
  animation: sinceSpin 36s linear infinite;
  display: block;
}
.header__emblem-center {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--ff-head);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.header__emblem-since {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  opacity: .8;
  margin-bottom: .14rem;
}
.header__emblem-year {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--c-mango);
}

/* =========================================================
   MOBILE NAV EMBLEM — big "Since 2008" stamp at top of menu drawer
   ========================================================= */
.mobile-nav-emblem { display: none; }
@media (max-width: 768px) {
  .mobile-nav-emblem {
    display: block;
    position: relative;
    width: 160px; height: 160px;
    margin: .5rem auto 1.5rem;
  }
  .mobile-nav-emblem-svg {
    position: absolute; inset: 0;
    width: 160px; height: 160px;
    animation: sinceSpin 36s linear infinite;
    display: block;
  }
  .mobile-nav-emblem-center {
    position: absolute;
    inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    font-family: var(--ff-head);
    line-height: 1;
    pointer-events: none;
    z-index: 2;
  }
  .mobile-nav-emblem-since {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--c-charcoal);
    opacity: .8;
    margin-bottom: .2rem;
  }
  .mobile-nav-emblem-year {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: var(--c-mango);
  }
}

@media (max-width: 1200px) {
  /* Tighten header at narrower desktops to prevent emblem/CTA from overflowing */
  .header__tools { gap: .35rem; }
  .header__cta { padding: .55rem .8rem; font-size: .72rem; gap: .35rem; }
  .header__emblem { width: 64px; height: 64px; margin-left: .25rem; }
  .header__emblem-svg { width: 64px; height: 64px; }
  .header__emblem-since { font-size: .5rem; letter-spacing: .2em; }
  .header__emblem-year { font-size: .82rem; }
}
@media (max-width: 1080px) {
  /* Shrink CTA further so it still fits alongside emblem + nav */
  .main-nav { gap: 1.25rem; }
  .header__inner { gap: 1rem; }
  .header__tools { gap: .25rem; }
  .header__cta { padding: .5rem .7rem; font-size: .66rem; letter-spacing: .04em; gap: .3rem; }
  .header__cta svg { width: 12px; height: 12px; }
  .header__emblem { width: 60px; height: 60px; margin-left: .2rem; }
  .header__emblem-svg { width: 60px; height: 60px; }
  .header__emblem-since { font-size: .46rem; }
  .header__emblem-year { font-size: .76rem; }
}
@media (max-width: 900px) {
  /* Hide CTA below 900px — emblem + nav remain */
  .header__cta { display: none; }
}
@media (max-width: 768px) {
  .header__cta { display: none; }
  /* Compact emblem next to the hamburger on mobile */
  .header__emblem { width: 52px; height: 52px; margin-left: .25rem; }
  .header__emblem-svg { width: 52px; height: 52px; }
  .header__emblem-since { font-size: .44rem; letter-spacing: .18em; margin-bottom: .08rem; }
  .header__emblem-year { font-size: .68rem; }
}
@media (max-width: 420px) {
  /* Even tighter on very small phones */
  .header__emblem { width: 44px; height: 44px; margin-left: .15rem; }
  .header__emblem-svg { width: 44px; height: 44px; }
  .header__emblem-since { font-size: .38rem; letter-spacing: .14em; margin-bottom: .05rem; }
  .header__emblem-year { font-size: .56rem; }
}

.header__tools { display: flex; align-items: center; gap: .5rem; margin-left: auto; }

/* Search */
.search { position: relative; }
.search__toggle {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-charcoal); border-radius: 4px;
  transition: background .2s, color .2s;
}
.search__toggle:hover { background: var(--c-off); color: var(--c-mango); }
.search__panel {
  position: absolute; right: 0; top: calc(100% + 12px);
  width: 380px; max-width: 90vw;
  background: var(--c-white);
  border: 1px solid var(--c-light);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  padding: .75rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s ease;
}
.search.open .search__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.search__input {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--c-border);
  border-radius: 3px;
  font-family: var(--ff-body); font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.search__input:focus { border-color: var(--c-mango); }
.search__suggestions { margin-top: .5rem; max-height: 320px; overflow-y: auto; }
.search__suggestions a {
  display: flex; flex-direction: column;
  padding: .65rem .75rem;
  border-radius: 3px;
  transition: background .15s;
  border-left: 3px solid transparent;
}
.search__suggestions a:hover { background: var(--c-off); border-left-color: var(--c-mango); }
.search__suggestions .s-title {
  font-family: var(--ff-head); font-weight: 600; font-size: .9rem;
  color: var(--c-charcoal);
}
.search__suggestions .s-meta {
  font-size: .75rem; color: var(--c-text-mute); margin-top: 2px;
}
.search__empty { padding: .9rem; text-align: center; color: var(--c-text-mute); font-size: .85rem; }

/* Language */
.lang { position: relative; }
.lang__toggle {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .75rem;
  border-radius: 4px;
  font-family: var(--ff-head); font-weight: 600; font-size: .85rem;
  color: var(--c-charcoal);
  transition: background .2s, color .2s;
}
.lang__toggle:hover { background: var(--c-off); color: var(--c-mango); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--c-white);
  border: 1px solid var(--c-light);
  border-radius: 4px;
  min-width: 160px;
  box-shadow: var(--shadow-md);
  padding: .35rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 50;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: block; width: 100%; text-align: left;
  padding: .55rem .8rem;
  font-family: var(--ff-head); font-weight: 500; font-size: .85rem;
  color: var(--c-charcoal); border-radius: 3px;
  transition: background .15s, color .15s;
}
.lang__menu button:hover { background: var(--c-off); color: var(--c-mango); }

.header__cta { padding: .55rem .95rem; font-size: .78rem; }

/* Mobile menu toggle */
.menu-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.menu-toggle span { width: 22px; height: 2px; background: var(--c-charcoal); transition: transform .25s ease, opacity .2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--c-charcoal); color: var(--c-white);
  padding: .9rem 1.4rem;
  border-radius: 4px;
  border-left: 3px solid var(--c-mango);
  font-family: var(--ff-head); font-weight: 500; font-size: .9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
  z-index: 200;
  max-width: 90vw;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* =========================================================
   HERO + SLIDER
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  min-height: 60vh;
  display: flex; align-items: center;
  background: var(--c-charcoal);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s ease;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(18,20,23,.85) 0%, rgba(18,20,23,.55) 38%, rgba(18,20,23,.08) 65%, rgba(18,20,23,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,.45) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-top: 6rem;
  padding-bottom: 7rem;
  width: 100%;
}
.hero__grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 3rem; align-items: end; }
.hero__content { max-width: 760px; }
.hero__counter {
  display: inline-flex; align-items: center; gap: .75rem;
  color: var(--c-yellow);
  font-family: var(--ff-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero__counter::before {
  content: ''; width: 38px; height: 2px; background: var(--c-mango);
}
.hero__title {
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin: 0 0 1.25rem;
}
.hero__title em { font-style: normal; color: var(--c-mango); }

/* Since-2008 circular emblem (top-right of hero) */
.hero__since-circle {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 5;
  width: 138px; height: 138px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero__since-svg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  animation: sinceSpin 28s linear infinite;
}
.hero__since-text {
  text-transform: uppercase;
  letter-spacing: .25em;
}
.hero__since-center {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--ff-head);
  color: var(--c-white);
  line-height: 1;
}
.hero__since-since {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .25rem;
}
.hero__since-year {
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--c-mango);
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero__since-rule {
  width: 28px; height: 1px;
  background: rgba(255,255,255,.5);
  margin: .35rem 0;
  display: block;
}
.hero__since-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .75;
}
@keyframes sinceSpin {
  0%   { transform: rotate(0deg);   }
  100% { transform: rotate(360deg); }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.1rem .55rem .85rem;
  background: rgba(255,193,7,.12);
  border: 1px solid rgba(255,193,7,.45);
  border-radius: 999px;
  color: var(--c-white);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__badge strong {
  color: var(--c-yellow);
  font-weight: 800;
  letter-spacing: .1em;
  margin-left: .2rem;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--c-yellow);
  box-shadow: 0 0 0 4px rgba(255,193,7,.25), 0 0 12px rgba(255,193,7,.6);
  animation: heroBadgePulse 2.2s ease-in-out infinite;
}
@keyframes heroBadgePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,193,7,.25), 0 0 12px rgba(255,193,7,.6); }
  50%      { box-shadow: 0 0 0 7px rgba(255,193,7,.1),  0 0 18px rgba(255,193,7,.85); }
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin: 0 0 2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__nav {
  position: absolute; bottom: 2rem; right: 1.5rem;
  display: flex; gap: .6rem; z-index: 3;
}
.hero__dot {
  width: 38px; height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 1px;
  transition: background .25s;
}
.hero__dot.active { background: var(--c-mango); }

.hero__meta {
  position: absolute; left: 1.5rem; bottom: 2rem; z-index: 3;
  display: flex; gap: 2rem;
  font-family: var(--ff-head); color: rgba(255,255,255,.55);
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
}
.hero__meta span strong { color: var(--c-white); font-weight: 700; }

/* Page hero (non-slider) */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  background: var(--c-charcoal);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .55;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,20,17,.72) 0%, rgba(15,20,17,.35) 55%, rgba(15,20,17,.08) 100%);
}
.page-hero__content { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 5rem; max-width: 820px; }
.page-hero__title {
  color: var(--c-white); font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  text-transform: uppercase; line-height: 1.05; margin-bottom: 1rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.page-hero__sub { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 640px; text-shadow: 0 1px 10px rgba(0,0,0,.45); }
/* Forced two-line variant: each child span occupies its own line */
.page-hero__title--two-lines { display: flex; flex-direction: column; gap: 0; }
.page-hero__title--two-lines span { display: block; white-space: nowrap; }
@media (max-width: 640px) {
  .page-hero__title--two-lines span { white-space: normal; }
}
.page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-head);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: .5rem .9rem .5rem .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,193,7,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}
.page-hero__crumb-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--c-yellow);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.page-hero__crumb-link:hover { color: var(--c-white); }
.page-hero__crumb-link svg { opacity: .85; }
.page-hero__crumb-sep {
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.page-hero__crumb-current {
  color: var(--c-white);
  font-weight: 600;
  opacity: .95;
}

/* =========================================================
   CERTIFICATION STRIP
   ========================================================= */
.cert-strip {
  background: var(--c-white);
  padding: 3rem 0;
  border-top: 1px solid var(--c-light);
  border-bottom: 1px solid var(--c-light);
}
.cert-strip__head { text-align: center; max-width: 920px; margin: 0 auto 2rem; }
.cert-strip__eyebrow {
  display: block;
  font-family: var(--ff-head); font-weight: 600; font-size: .75rem;
  letter-spacing: .25em; color: var(--c-mango); margin-bottom: .5rem;
}
.cert-strip__title {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin: 0;
  color: var(--c-mango);
}
.cert-strip__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.cert-badge {
  background: var(--c-white);
  border: 1px solid rgba(15,40,24,.08);
  border-radius: 10px;
  padding: 1rem .7rem .85rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow:
    0 1px 2px rgba(15,40,24,.06),
    0 6px 14px rgba(15,40,24,.08),
    0 18px 36px rgba(15,40,24,.07);
}
.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(15,40,24,.08),
    0 10px 22px rgba(15,40,24,.12),
    0 26px 50px rgba(15,40,24,.12);
  border-color: rgba(15,40,24,.14);
}
.cert-badge--dark { background: #0F0F0F; border-color: #0F0F0F; }
.cert-badge--dark .cert-badge__label { color: var(--c-white); }

.cert-badge__logo {
  width: 100%;
  height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .4rem;
}
.cert-badge__logo img {
  max-width: 80%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.cert-badge__label {
  display: block;
  font-family: var(--ff-head); font-weight: 700; font-size: .68rem;
  color: var(--c-charcoal); letter-spacing: .1em;
  text-transform: uppercase;
}

/* =========================================================
   FEATURE CARDS / PROCESSING CAPABILITY
   ========================================================= */
.section-head { max-width: 780px; margin: 0 auto 3rem; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cap-card {
  background: var(--c-white);
  border: 1px solid var(--c-light);
  border-radius: var(--r-card);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cap-card::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 100%; height: 4px; background: var(--c-mango);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cap-card:hover::before { transform: scaleX(1); }
.cap-card__num {
  font-family: var(--ff-head); font-weight: 800; font-size: 2.6rem;
  color: var(--c-mango); line-height: 1; opacity: .22;
  margin-bottom: 1rem;
}
.cap-card__title {
  font-family: var(--ff-head); font-weight: 700; font-size: 1.2rem;
  color: var(--c-charcoal); margin: 0 0 .6rem;
}
.cap-card__text { color: var(--c-text-mute); font-size: .95rem; margin: 0; }

/* =========================================================
   PRODUCT HIGHLIGHT CARDS
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-light);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card__image {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  position: relative;
}
.product-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(18,20,23,.85); color: var(--c-yellow);
  font-family: var(--ff-head); font-weight: 600; font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .35rem .65rem; border-radius: 2px;
}
.product-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card__title { margin: 0 0 .5rem; font-size: 1.35rem; }
.product-card__desc { color: var(--c-text-mute); margin: 0 0 1.25rem; font-size: .95rem; flex: 1; }
.product-card__ctas { display: flex; gap: .5rem; }
.product-card__ctas .btn { flex: 1; justify-content: center; padding: .7rem .8rem; font-size: .75rem; }

/* =========================================================
   WHY PARTNER / DARK SECTION
   ========================================================= */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.partner-item {
  padding: 1.75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.partner-item:hover {
  background: rgba(245,130,32,.08);
  border-color: rgba(245,130,32,.35);
  transform: translateY(-4px);
}
.partner-item__num {
  font-family: var(--ff-head); font-weight: 700; font-size: .75rem;
  color: var(--c-mango); letter-spacing: .25em; margin-bottom: .75rem;
}
.partner-item__title {
  color: var(--c-white); font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem;
  margin: 0 0 .4rem;
}
.partner-item__text { font-size: .9rem; color: rgba(248,249,250,.7); margin: 0; }

/* =========================================================
   SOURCING / SPLIT
   ========================================================= */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.split__image {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  border-radius: 6px;
  position: relative;
}
.split__image::after {
  content: ''; position: absolute; left: -16px; bottom: -16px;
  width: 50%; height: 50%;
  border-left: 4px solid var(--c-mango);
  border-bottom: 4px solid var(--c-mango);
  z-index: -1;
}
.split--reverse { grid-template-columns: 1fr 1.05fr; }
.split--reverse .split__image::after {
  left: auto; right: -16px;
  border-left: 0; border-right: 4px solid var(--c-mango);
}

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat { border-left: 3px solid var(--c-mango); padding-left: 1rem; }
.stat strong {
  display: block; font-family: var(--ff-head); font-weight: 800; font-size: 2rem;
  color: var(--c-charcoal); line-height: 1;
}
.stat span { font-size: .8rem; color: var(--c-text-mute); text-transform: uppercase; letter-spacing: .1em; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(95deg, var(--c-mango) 0%, #F0A535 100%);
  color: var(--c-charcoal);
  padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; right: -80px; top: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.07);
  transform: rotate(45deg);
}
.cta-banner__inner { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: center; position: relative; z-index: 2; }
.cta-banner h2 { color: var(--c-charcoal); margin: 0 0 .5rem; }
.cta-banner p { color: rgba(18,20,23,.78); margin: 0; }
.cta-banner__ctas { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }

.cta-dark { background: var(--c-charcoal); color: var(--c-white); padding: 4rem 0; }
.cta-dark__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.cta-dark h2 { color: var(--c-white); margin: 0 0 .5rem; }
.cta-dark p { color: rgba(255,255,255,.7); margin: 0; }
.cta-dark__ctas { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.what-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.what-card {
  background: var(--c-white);
  border: 1px solid var(--c-light);
  border-radius: var(--r-card);
  padding: 1.75rem 1.4rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.what-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-mango); }
.what-card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-charcoal); color: var(--c-yellow);
  border-radius: 4px; margin-bottom: 1rem;
}
.what-card h3 { font-size: 1.05rem; margin: 0 0 .35rem; }
.what-card p { margin: 0; font-size: .9rem; }

.process-timeline {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: .5rem;
  margin-top: 3rem; position: relative;
}
.process-step {
  background: var(--c-white);
  border: 1px solid var(--c-light);
  border-radius: 4px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.process-step:hover { transform: translateY(-4px); border-color: var(--c-mango); }
.process-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-mango); color: var(--c-white);
  font-family: var(--ff-head); font-weight: 700; font-size: .9rem;
  margin-bottom: .75rem;
}
.process-step__title {
  font-family: var(--ff-head); font-weight: 600; font-size: .85rem;
  color: var(--c-charcoal); text-transform: uppercase; letter-spacing: .04em; margin: 0;
}

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card {
  background: var(--c-charcoal); color: var(--c-white);
  border-radius: var(--r-card);
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.mv-card--green { background: var(--c-green); }
.mv-card__label {
  font-family: var(--ff-head); font-size: .75rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-yellow); margin-bottom: 1rem;
}
.mv-card h3 { color: var(--c-white); font-size: 1.6rem; margin: 0 0 .75rem; }
.mv-card p { color: rgba(255,255,255,.78); margin: 0; }

/* =========================================================
   ABOUT — SUNNY PROCESSORS PILLARS
   ========================================================= */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.pillar-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--c-mango);
  border-radius: var(--r-card);
  padding: 2rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  overflow: hidden;
}
.pillar-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,193,7,.4);
  border-top-color: var(--c-yellow);
}
.pillar-card__num {
  position: absolute;
  top: 1rem; right: 1.1rem;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(255,193,7,.18);
  letter-spacing: -.02em;
  line-height: 1;
}
.pillar-card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245,130,32,.14);
  color: var(--c-mango);
  border-radius: 8px;
  margin-bottom: .5rem;
}
.pillar-card h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-white);
  margin: 0;
  letter-spacing: .005em;
}
.pillar-card p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.74);
  margin: 0;
}

/* =========================================================
   CSR — RECOGNITION CARD (Murang'a County award callout)
   ========================================================= */
.recognition {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(245,166,35,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(245,166,35,.35);
  border-left: 4px solid var(--c-mango);
  border-radius: var(--r-card);
  padding: 2.25rem 2.25rem;
}
.recognition__icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245,166,35,.18);
  color: var(--c-mango);
  border-radius: 50%;
  flex-shrink: 0;
}
.recognition__body { min-width: 0; }
.recognition__label {
  font-family: var(--ff-head);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-yellow);
}
@media (max-width: 768px) {
  .recognition { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.75rem 1.5rem; }
  .recognition__icon { width: 56px; height: 56px; }
}

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */
.product-row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
  padding: 4rem 0; border-bottom: 1px solid var(--c-light);
}
.product-row:nth-child(even) { grid-template-columns: 1fr 1.1fr; }
.product-row:nth-child(even) .product-row__image { order: 2; }
.product-row:nth-child(even) .product-row__content { order: 1; }
.product-row__image {
  aspect-ratio: 5 / 4;
  background-size: cover; background-position: center;
  border-radius: var(--r-card);
  position: relative;
}
.product-row__tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--c-mango); color: var(--c-white);
  padding: .4rem .75rem; border-radius: 2px;
  font-family: var(--ff-head); font-weight: 700; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
}
.product-row__sku {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(18,20,23,.85); color: var(--c-yellow);
  padding: .35rem .65rem; border-radius: 2px;
  font-family: var(--ff-head); font-weight: 600; font-size: .68rem;
  letter-spacing: .15em;
}
.product-row__title { font-size: 2.25rem; margin: 0 0 1rem; }
.product-row__desc { margin: 0 0 1.5rem; font-size: 1.02rem; }

.attr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.attr-block h4 {
  font-family: var(--ff-head); font-weight: 700; font-size: .8rem;
  color: var(--c-charcoal); text-transform: uppercase; letter-spacing: .15em;
  margin: 0 0 .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--c-mango);
  display: inline-block;
}
.attr-block ul li {
  position: relative; padding-left: 1.25rem;
  font-size: .92rem; color: var(--c-text); margin-bottom: .35rem;
}
.attr-block ul li::before {
  content: ''; position: absolute; left: 0; top: .55rem;
  width: 6px; height: 6px; background: var(--c-mango);
  border-radius: 1px;
}
.product-row__ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem;
  align-items: start;
}
.contact-form {
  background: var(--c-white);
  border: 1px solid var(--c-light);
  border-radius: var(--r-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-notice {
  background: linear-gradient(95deg, rgba(245,130,32,.08), rgba(255,194,14,.05));
  border: 1px solid rgba(245,130,32,.3);
  border-left: 4px solid var(--c-mango);
  border-radius: 4px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex; align-items: flex-start; gap: .75rem;
}
.contact-notice strong { display: block; color: var(--c-charcoal); margin-bottom: .25rem; font-family: var(--ff-head); }
.contact-notice p { margin: 0; font-size: .9rem; color: var(--c-text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--ff-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-charcoal); margin-bottom: .5rem;
}
.form-group label .req { color: var(--c-mango); }
.form-control {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: 3px;
  font-family: var(--ff-body); font-size: .95rem;
  background: var(--c-white);
  color: var(--c-text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--c-mango);
  box-shadow: 0 0 0 3px rgba(245,130,32,.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23121417'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 22px;
  padding-right: 2.5rem;
}

.contact-info {
  background: var(--c-charcoal);
  color: var(--c-white);
  border-radius: var(--r-card);
  padding: 2.5rem;
  position: sticky; top: 110px;
}
.contact-info h3 { color: var(--c-white); font-size: 1.3rem; margin: 0 0 .25rem; }
.contact-info > p { color: rgba(255,255,255,.7); margin: 0 0 1.75rem; }
.info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.08);
}
.info-item:first-of-type { border-top: 0; padding-top: 0; }
.info-item__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 4px;
  background: rgba(245,130,32,.15); color: var(--c-mango);
  display: inline-flex; align-items: center; justify-content: center;
}
.info-item__label {
  font-family: var(--ff-head); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-yellow); margin-bottom: .25rem;
}
.info-item__value { color: var(--c-white); font-size: .95rem; }
.info-item__value a { color: var(--c-white); }
.info-item__value a:hover { color: var(--c-mango); }

.map-section {
  background: var(--c-off);
  border: 1px solid var(--c-light);
  border-radius: var(--r-card);
  overflow: hidden;
  min-height: 380px;
  position: relative;
}
.map-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  background:
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(18,20,23,.04) 16px 17px),
    var(--c-off);
}
.map-placeholder__pin {
  width: 56px; height: 56px;
  background: var(--c-mango); color: var(--c-white);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,130,32,.5); }
  50%      { box-shadow: 0 0 0 18px rgba(245,130,32,0); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--c-charcoal-2); color: var(--c-steel); padding-top: 4.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.footer__col h4 {
  color: var(--c-white);
  font-family: var(--ff-head); font-size: .85rem;
  letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 1.25rem;
  padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.footer__col h4::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 30px; height: 2px; background: var(--c-mango);
}
.footer__col ul li { margin-bottom: .55rem; font-size: .9rem; }
.footer__col a:hover { color: var(--c-mango); }
.footer__desc { font-size: .9rem; line-height: 1.7; color: rgba(163,171,177,.85); margin: 0 0 1rem; }
.footer__brand-title {
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--c-mango);
  letter-spacing: .04em;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.footer__copy { font-size: .78rem; line-height: 1.55; color: rgba(163,171,177,.7); margin: 0 0 1.4rem; letter-spacing: .02em; }
.footer__certs li {
  display: inline-block; margin: 0 .25rem .35rem 0;
  background: rgba(245,130,32,.1); color: var(--c-yellow);
  padding: .3rem .55rem; border-radius: 2px;
  font-family: var(--ff-head); font-weight: 600; font-size: .7rem;
  letter-spacing: .12em;
}
.footer__contact li { color: rgba(248,249,250,.78); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  background: rgba(0,0,0,.25);
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--c-steel-2);
  flex-wrap: wrap; gap: .5rem;
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
/* JS-off fallback: keep approved content visible when JS is unavailable */
.no-js .fade-up { opacity: 1 !important; transform: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .header__inner { gap: 1rem; flex-wrap: nowrap; }
  .main-nav { gap: 1.25rem; flex-wrap: nowrap; }
  .nav-link { font-size: .92rem; letter-spacing: .06em; }
  .header__emblem { width: 60px; height: 60px; margin-left: .35rem; }
  .header__emblem-svg { width: 60px; height: 60px; }
  .header__emblem-since { font-size: .5rem; letter-spacing: .2em; margin-bottom: .1rem; }
  .header__emblem-year { font-size: .78rem; }
  .capability-grid, .product-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; }
  /* 3 cards in row 1, 2 centered in row 2 */
  .pillar-card { grid-column: span 2; }
  .pillar-card:nth-child(4) { grid-column: 2 / span 2; }
  .pillar-card:nth-child(5) { grid-column: 4 / span 2; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  /* Cert strip: 6-col grid lets us center the 2-item second row */
  .cert-strip__list { grid-template-columns: repeat(6, 1fr); gap: .75rem; }
  .cert-badge { grid-column: span 2; padding: .7rem .55rem .55rem; }
  /* Items 4 & 5 land centered in second row (cols 2-3 and 4-5) */
  .cert-badge:nth-child(4) { grid-column: 2 / span 2; }
  .cert-badge:nth-child(5) { grid-column: 4 / span 2; }
  .cert-badge__logo { height: 42px; margin-bottom: .4rem; }
  .cert-badge__label { font-size: .64rem; letter-spacing: .06em; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__col:nth-child(4), .footer__col:nth-child(5) { grid-column: span 1; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .product-row, .product-row:nth-child(even) { grid-template-columns: 1fr; gap: 2rem; }
  .product-row:nth-child(even) .product-row__image,
  .product-row:nth-child(even) .product-row__content { order: initial; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .cta-banner__inner, .cta-dark__inner { grid-template-columns: 1fr; }
  .cta-banner__ctas, .cta-dark__ctas { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-light);
    box-shadow: var(--shadow-md);
    flex-direction: column; gap: 0;
    padding: 1rem 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 99;
    pointer-events: none;
  }
  .main-nav.open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .header__cta { display: none; }
  .nav-link { padding: 1rem 1.5rem; width: 100%; border-bottom: 1px solid var(--c-light); }
  .nav-link::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .lang__toggle span:not(#langLabel) { display: none; }
  .search__panel { right: -60px; }
  .header__inner { min-height: 70px; }
  .top-bar__info { font-size: .72rem; gap: 1rem; }
  .top-bar__info span:first-child { display: none; }

  .hero { min-height: 78vh; }
  .hero__inner { padding-top: 4rem; padding-bottom: 5rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1rem; }
  .hero__meta span { font-size: .65rem; }

  .capability-grid, .product-grid, .partner-grid, .what-grid {
    grid-template-columns: 1fr;
  }
  .pillar-grid { grid-template-columns: 1fr; gap: .9rem; }
  .pillar-card, .pillar-card:nth-child(4), .pillar-card:nth-child(5) { grid-column: auto; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  /* Cert strip on mobile: 3 columns (3+2 wrap), bigger logos, last row centered */
  .cert-strip__list {
    grid-template-columns: repeat(6, 1fr);
    gap: .6rem;
  }
  .cert-badge { grid-column: span 2; padding: .6rem .45rem .5rem; }
  /* 4th and 5th badges (4 logos in row 1, 2 in row 2 with 1 col offset) */
  .cert-badge:nth-child(4) { grid-column: 2 / span 2; }
  .cert-badge:nth-child(5) { grid-column: 4 / span 2; }
  .cert-badge__logo { height: 38px; margin-bottom: .35rem; }
  .cert-badge__label { font-size: .6rem; letter-spacing: .04em; }
  .stat-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col:first-child { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .attr-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .logo__name { font-size: 1rem; }
  .logo__sub { font-size: .55rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col:first-child { grid-column: span 1; }
  .contact-form { padding: 1.5rem; }
  .contact-info { padding: 1.75rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* =========================================================
   LET'S CONNECT — section above footer (every page)
   ========================================================= */
.lets-connect {
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-dark) 100%);
  color: var(--c-white);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.lets-connect::before {
  content: ''; position: absolute; left: -120px; top: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,193,7,.12) 0%, transparent 70%);
}
.lets-connect::after {
  content: ''; position: absolute; right: -80px; bottom: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
}
.lets-connect__head {
  text-align: center;
  max-width: 720px; margin: 0 auto 2.5rem;
  position: relative; z-index: 2;
}
.lets-connect__head h2 { color: var(--c-white); margin-bottom: .75rem; }
.lets-connect__head p { color: rgba(255,255,255,.75); margin: 0; }
.lets-connect__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  position: relative; z-index: 2;
}
.connect-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  color: var(--c-white);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.connect-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,193,7,.4);
}
.connect-card__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  color: var(--c-yellow);
}
.connect-card--whatsapp .connect-card__icon { background: #25D366; color: #FFFFFF; }
.connect-card--email .connect-card__icon { background: rgba(245,166,35,.18); color: var(--c-mango); }
.connect-card--phone .connect-card__icon { background: rgba(255,193,7,.15); color: var(--c-yellow); }
.connect-card__body { flex: 1; min-width: 0; }
.connect-card__label {
  font-family: var(--ff-head); font-size: .7rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-yellow); margin-bottom: .25rem;
}
.connect-card__value {
  font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem;
  color: var(--c-white);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.connect-card__hint {
  font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .25rem;
}
.connect-card__arrow {
  flex-shrink: 0; color: rgba(255,255,255,.4);
  transition: transform .25s ease, color .25s ease;
}
.connect-card:hover .connect-card__arrow {
  transform: translateX(4px); color: var(--c-yellow);
}

/* =========================================================
   STICKY BOTTOM BAR — every page
   ========================================================= */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--c-charcoal);
  border-top: 2px solid var(--c-mango);
  box-shadow: 0 -8px 28px rgba(0,0,0,.18);
  color: var(--c-white);
  transform: translateY(100%);
  transition: transform .35s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar.dismissed { display: none; }
.sticky-bar__inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .75rem 1.5rem;
  position: relative;
}
.sticky-bar__brand {
  display: flex; align-items: center; gap: .75rem;
  flex-shrink: 0;
}
.sticky-bar__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(245,166,35,.18); color: var(--c-mango);
  border-radius: 4px;
}
.sticky-bar__label {
  font-family: var(--ff-head); font-weight: 700; font-size: .9rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-yellow);
}
.sticky-bar__sub {
  font-size: .82rem; color: rgba(255,255,255,.62);
  white-space: nowrap;
}
.sticky-bar__actions {
  display: flex; align-items: center; gap: .5rem;
  margin-left: auto; flex-wrap: wrap;
}
.sticky-bar__btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .85rem;
  border-radius: 3px;
  font-family: var(--ff-head); font-weight: 600; font-size: .8rem;
  background: rgba(255,255,255,.08);
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.sticky-bar__btn:hover {
  background: rgba(255,255,255,.12); transform: translateY(-1px);
}
.sticky-bar__btn--wa { background: #25D366; border-color: #25D366; color: #fff; }
.sticky-bar__btn--wa:hover { background: #1FB856; border-color: #1FB856; }
.sticky-bar__btn--cta {
  background: var(--c-mango); border-color: var(--c-mango); color: var(--c-charcoal);
  font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.sticky-bar__btn--cta:hover { background: var(--c-yellow); border-color: var(--c-yellow); color: var(--c-charcoal); }
.sticky-bar__close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  color: var(--c-steel);
  transition: background .2s, color .2s, transform .2s;
  flex-shrink: 0;
}
.sticky-bar__close:hover {
  background: rgba(245,166,35,.2); color: var(--c-mango);
  transform: rotate(90deg);
}

/* Floating WhatsApp button */
.wa-fab {
  position: fixed; right: 22px; bottom: 90px; /* above sticky bar */
  z-index: 95;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366; color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-fab::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; background: rgba(37,211,102,.3);
  animation: wa-pulse 2.2s infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1);   opacity: .55; }
  50%      { transform: scale(1.25); opacity: 0; }
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 28px rgba(37,211,102,.6); }
.wa-fab__tip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-charcoal); color: var(--c-white);
  padding: .45rem .8rem;
  border-radius: 3px;
  font-family: var(--ff-head); font-weight: 600; font-size: .75rem;
  letter-spacing: .05em; white-space: nowrap;
  opacity: 0; visibility: hidden;
  transition: all .2s ease;
}
.wa-fab__tip::after {
  content: ''; position: absolute; right: -4px; top: 50%;
  width: 8px; height: 8px;
  background: var(--c-charcoal);
  transform: translateY(-50%) rotate(45deg);
}
.wa-fab:hover .wa-fab__tip {
  opacity: 1; visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* When sticky bar is hidden/dismissed, drop fab lower */
body.sticky-bar-hidden .wa-fab { bottom: 22px; }

/* Add bottom padding to footer so sticky-bar doesn't cover content */
body:not(.sticky-bar-hidden) .site-footer { padding-bottom: 80px; }

@media (max-width: 1024px) {
  .lets-connect__grid { grid-template-columns: 1fr; }
  .sticky-bar__sub { display: none; }
  .sticky-bar__label { font-size: .8rem; }
}
@media (max-width: 768px) {
  /* Mobile sticky bar styles handled by the consolidated rule near end of file (search for "Sticky bar: 3 full-width labeled buttons") */
  body:not(.sticky-bar-hidden) .site-footer { padding-bottom: 90px; }
  .wa-fab { right: 14px; bottom: 80px; width: 52px; height: 52px; }
  body.sticky-bar-hidden .wa-fab { bottom: 16px; }
}

/* =========================================================
   CAROUSEL — product highlights (home page)
   ========================================================= */
.carousel {
  position: relative;
  padding: 0 60px;
}
.carousel__viewport {
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform .55s cubic-bezier(.4, .0, .2, 1);
  will-change: transform;
}
.carousel__slide {
  /* 3 full + ~25% peek of 4th card on desktop = "reveal" effect */
  flex: 0 0 calc((100% - 1.5rem * 3.25) / 3.25);
  min-width: 0;
}
.carousel__nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-charcoal);
  border: 1px solid var(--c-light);
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background .25s, color .25s, transform .25s, opacity .25s;
}
.carousel__nav:hover {
  background: var(--c-mango);
  color: var(--c-white);
  transform: translateY(-50%) scale(1.06);
}
.carousel__nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.carousel__nav:disabled:hover {
  background: var(--c-white);
  color: var(--c-charcoal);
  transform: translateY(-50%);
}
.carousel__nav--prev { left: 0; }
.carousel__nav--next { right: 0; }

.carousel__dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 2rem;
}
.carousel__dot {
  width: 28px; height: 3px;
  background: var(--c-border);
  border-radius: 1px;
  transition: background .25s, transform .25s;
}
.carousel__dot.active {
  background: var(--c-mango);
  transform: scaleX(1.3);
}

@media (max-width: 1024px) {
  .carousel { padding: 0 50px; }
  /* 2 full + ~25% peek of 3rd card on tablet */
  .carousel__slide { flex: 0 0 calc((100% - 1.5rem * 2.25) / 2.25); }
}
@media (max-width: 640px) {
  .carousel { padding: 0 0; }
  .carousel__nav { width: 40px; height: 40px; }
  .carousel__nav--prev { left: -4px; }
  .carousel__nav--next { right: -4px; }
  /* 1 full + ~20% peek of next card on mobile */
  .carousel__slide { flex: 0 0 calc((100% - 1rem * 1.2) / 1.2); }
  .carousel__track { gap: 1rem; }
}

/* =========================================================
   MOBILE SPACING & PADDING REFINEMENTS
   ========================================================= */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .section-head { margin-bottom: 2rem; }

  /* ---- HERO redesign for mobile ---- */
  .hero {
    min-height: 60vh;
    max-height: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  /* Uniform full-width dark overlay so image is visible behind text */
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(15,40,24,.65) 0%, rgba(15,40,24,.78) 50%, rgba(15,40,24,.92) 100%);
  }
  .hero__inner {
    padding-top: 2rem;
    padding-bottom: 1rem;
    width: 100%;
  }
  .hero__content {
    max-width: 100%;
    text-align: center;
  }
  .hero__counter {
    display: inline-flex;
    margin: 0 auto 1.25rem;
    padding: .35rem .9rem;
    background: rgba(255,193,7,.14);
    border: 1px solid rgba(255,193,7,.35);
    border-radius: 999px;
    color: var(--c-yellow);
    font-size: .68rem;
    letter-spacing: .25em;
  }
  .hero__counter::before { display: none; }
  .hero__title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    line-height: 1.1;
    text-align: center;
    margin-bottom: 1rem;
  }
  .hero__sub {
    font-size: .92rem;
    line-height: 1.55;
    text-align: center;
    margin: 0 auto 1.75rem;
    max-width: 420px;
    color: rgba(255,255,255,.82);
  }
  .hero__badge {
    font-size: .66rem;
    letter-spacing: .06em;
    padding: .42rem .85rem .42rem .65rem;
    margin-bottom: 1rem;
    align-self: center;
  }
  .hero__since-circle {
    position: relative;
    top: auto; right: auto; left: auto;
    width: 120px; height: 120px;
    margin: 0 auto 1.25rem;
  }
  .hero__since-text { font-size: 10px !important; letter-spacing: .18em !important; }
  .hero__since-since { font-size: .55rem; letter-spacing: .22em; margin-bottom: .2rem; }
  .hero__since-year  { font-size: 1.7rem; }
  .hero__since-rule  { width: 22px; margin: .2rem 0; }
  .hero__since-tag   { font-size: .5rem; letter-spacing: .3em; }
  /* hero content stacks: emblem on top, then title, ctas */
  .hero__content { padding-top: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero__inner { flex-direction: column; }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
    max-width: 320px;
    margin: 0 auto 2rem;
    width: 100%;
  }
  .hero__ctas .btn { padding: .85rem 1rem; font-size: .78rem; justify-content: center; }

  /* Meta pills below CTAs (not absolute, no overlap with image) */
  .hero__meta {
    position: static;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: .5rem;
    padding: 0 1rem 1rem;
    font-size: .65rem;
  }
  .hero__meta span {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .4rem .75rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    letter-spacing: .14em;
    color: rgba(255,255,255,.85);
  }
  .hero__meta span strong { color: var(--c-yellow); font-weight: 700; }

  /* Slider dots centered at bottom */
  .hero__nav {
    bottom: 1.25rem; right: 50%; transform: translateX(50%);
    justify-content: center;
  }
  .hero__dot { width: 24px; }

  /* Page-hero (about/products/contact) */
  .page-hero { min-height: 48vh; }
  .page-hero__content { padding-top: 3rem; padding-bottom: 3rem; }
  .page-hero__title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .page-hero__sub { font-size: .95rem; }

  /* Top bar */
  .top-bar__info span:nth-child(2) {
    /* email is too long on mobile; keep only address */
    display: none;
  }
  .top-bar__inner { padding: .25rem 1rem; min-height: 32px; font-size: .7rem; }

  /* Cert strip head */
  .cert-strip { padding: 2.25rem 0 2rem; }
  .cert-strip__head { margin-bottom: 1.5rem; }
  .cert-strip__eyebrow { font-size: .68rem; letter-spacing: .18em; }
  .cert-strip__title { font-size: 1.15rem; }

  /* Capability + cards */
  .cap-card { padding: 1.5rem 1.25rem; }
  .cap-card__num { font-size: 2rem; margin-bottom: .5rem; }
  .cap-card__title { font-size: 1.05rem; }

  /* Product cards / carousel */
  .product-card__body { padding: 1.25rem; }
  .product-card__title { font-size: 1.15rem; }
  .product-card__ctas { flex-direction: column; gap: .5rem; }
  .product-card__ctas .btn { width: 100%; padding: .65rem .8rem; font-size: .72rem; }

  /* Why partner */
  .partner-item { padding: 1.25rem; }

  /* CTA banners */
  .cta-banner, .cta-dark { padding: 2.5rem 0; }
  .cta-banner h2, .cta-dark h2 { font-size: 1.5rem; }
  .cta-banner__ctas, .cta-dark__ctas { gap: .5rem; }

  /* Mission & vision cards */
  .mv-card { padding: 1.75rem; }
  .mv-card h3 { font-size: 1.3rem; }

  /* Process steps */
  .process-step { padding: 1.1rem .75rem; }
  .process-step__title { font-size: .75rem; }

  /* Split sections */
  .split, .split--reverse { gap: 1.5rem; }
  .split__image { aspect-ratio: 16 / 11; }
  .split__image::after { display: none; }

  /* Product detail rows */
  .product-row { padding: 2.5rem 0; gap: 1.5rem; }
  .product-row__title { font-size: 1.6rem; }

  /* Forms / contact */
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Sticky bar very-small phones handled by the consolidated rule near end of file */

  /* Stats row mobile */
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat strong { font-size: 1.4rem; }
  .stat span { font-size: .7rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 .875rem; }
  .section { padding: 2.5rem 0; }

  /* Hero refinement on tiny screens */
  .hero__title { font-size: 1.7rem; line-height: 1.1; }
  .hero__sub { font-size: .85rem; }
  .hero__counter { font-size: .62rem; letter-spacing: .22em; padding: .3rem .8rem; }
  .hero__meta { gap: .35rem; font-size: .6rem; }
  .hero__meta span { padding: .3rem .55rem; }

  /* Cert strip mobile — slightly tighter but stays 3+2 wrap */
  .cert-strip__list { gap: .45rem; }
  .cert-badge { padding: .55rem .35rem .45rem; }
  .cert-badge__logo { height: 34px; }
  .cert-badge__label { font-size: .56rem; }

  /* Page hero crumb */
  .page-hero__crumb { font-size: .68rem; }
  .eyebrow { font-size: .88rem; padding-left: 1.85rem; }

  /* Section heads */
  .section-head h2, h2 { font-size: 1.25rem; }
  h1 { font-size: 1.65rem; }
  h3 { font-size: 1rem; }

  /* Process step grid 2-cols */
  .process-step__num { width: 30px; height: 30px; font-size: .8rem; }

  /* Stat single col */
  .stat-row { grid-template-columns: 1fr; }
}

/* =========================================================
   PRODUCT SCROLL TICKER — under header, above hero
   ========================================================= */
.product-ticker {
  background: var(--c-charcoal);
  color: var(--c-white);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.product-ticker::before,
.product-ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 64px; z-index: 2;
  pointer-events: none;
}
.product-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--c-charcoal) 0%, rgba(15,40,24,0) 100%);
}
.product-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--c-charcoal) 0%, rgba(15,40,24,0) 100%);
}
.product-ticker__inner {
  display: flex; overflow: hidden;
  padding: .8rem 0;
}
.product-ticker__track {
  display: flex; flex-shrink: 0;
  gap: 3rem;
  padding-right: 3rem;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
.product-ticker:hover .product-ticker__track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.product-ticker__item {
  display: inline-flex; align-items: center; gap: .75rem;
  white-space: nowrap;
  font-family: var(--ff-head); font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--c-white);
  text-decoration: none;
  transition: color .2s ease;
}
.product-ticker__item:hover { color: var(--c-yellow); }
.product-ticker__dot {
  width: 8px; height: 8px;
  background: var(--c-mango);
  border-radius: 50%;
  flex-shrink: 0;
}
.product-ticker__meta {
  font-family: var(--ff-body); font-weight: 500;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
  padding: .15rem .55rem;
  border: 1px solid rgba(255,193,7,.4);
  border-radius: 999px;
  text-transform: uppercase;
}

/* =========================================================
   STICKY BAR — yellow themed, single-line layout
   ========================================================= */
.sticky-bar {
  background: var(--c-white);
  border-top: 4px solid var(--c-charcoal);
  color: var(--c-charcoal);
  box-shadow: 0 -12px 32px rgba(0,0,0,.1);
}
.sticky-bar__inner {
  padding: .7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  position: relative;
}
.sticky-bar__brand-text {
  display: flex; flex-direction: column; gap: .12rem;
  min-width: 0; flex: 1 1 auto;
  padding-left: 1rem;
  border-left: 3px solid var(--c-mango);
  position: relative; z-index: 1;
}
.sticky-bar__label {
  font-family: var(--ff-head); font-weight: 600;
  font-size: .95rem;
  color: var(--c-charcoal);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .01em;
}
.sticky-bar__sub {
  font-family: var(--ff-body); font-weight: 500;
  font-size: .76rem;
  color: rgba(15,40,24,.6);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: .02em;
}
.sticky-bar__actions {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
  position: relative; z-index: 1;
}
.sticky-bar__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem .95rem;
  border-radius: 999px;
  font-family: var(--ff-head); font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  background: transparent;
  color: var(--c-charcoal);
  border: 1px solid rgba(15,40,24,.22);
  white-space: nowrap;
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-transform: uppercase;
}
.sticky-bar__btn:hover {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: var(--c-yellow);
  transform: translateY(-1px);
}
.sticky-bar__btn--wa {
  background: #25D366; border-color: #1FB856; color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.28);
}
.sticky-bar__btn--wa:hover { background: #1FB856; border-color: #168F45; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.4); }
.sticky-bar__btn--phone {
  background: transparent; border-color: rgba(15,40,24,.22);
  color: var(--c-charcoal);
}
.sticky-bar__btn--phone:hover {
  background: var(--c-charcoal); border-color: var(--c-charcoal); color: var(--c-yellow);
}
.sticky-bar__btn--cta {
  background: var(--c-mango);
  border-color: var(--c-mango);
  color: var(--c-white);
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 4px 14px rgba(248,160,27,.32);
}
.sticky-bar__btn--cta:hover {
  background: #e08e15;
  color: var(--c-white);
  border-color: #e08e15;
  box-shadow: 0 6px 20px rgba(248,160,27,.45);
  transform: translateY(-1px);
}

/* Footer cert strip wrapping (different bg from before) */
.site-footer .cert-strip {
  background: var(--c-white);
  border-top: 0;
  border-bottom: 1px solid var(--c-light);
  padding: 3rem 0 2.5rem;
}
.site-footer .cert-strip__eyebrow { color: var(--c-yellow); }
.site-footer .cert-strip__title { color: var(--c-mango); }
.site-footer .cert-strip__list .cert-badge { background: var(--c-white); }
.site-footer { padding-top: 0; }

@media (max-width: 768px) {
  .product-ticker__item { font-size: .82rem; gap: .5rem; }
  .product-ticker__meta { font-size: .65rem; padding: .1rem .45rem; }
  .product-ticker__track { gap: 2rem; padding-right: 2rem; }
  .product-ticker__inner { padding: .6rem 0; }
  .product-ticker::before,
  .product-ticker::after { width: 36px; }

  /* --- Sticky bar: 3 full-width labeled buttons, brand-text hidden --- */
  .sticky-bar { border-top: 3px solid var(--c-mango); }
  .sticky-bar__inner {
    padding: .55rem .55rem;
    gap: .4rem;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .sticky-bar__brand-text { display: none; }
  .sticky-bar__actions {
    display: flex;
    width: 100%;
    gap: .4rem;
    flex-wrap: nowrap;
    flex-shrink: 1;
  }
  .sticky-bar__btn {
    flex: 1 1 0;
    min-width: 0;
    height: 50px;
    padding: 0 .45rem;
    border-radius: 8px;
    gap: .35rem;
    font-size: .62rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  .sticky-bar__btn svg { width: 16px; height: 16px; flex-shrink: 0; }
  .sticky-bar__btn-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  /* Toggle desktop/mobile labels */
  .sticky-bar__btn-label--desktop { display: none; }
  .sticky-bar__btn-label--mobile { display: inline-block; }
  .sticky-bar__btn--cta svg { width: 12px; height: 12px; }
}
/* On desktop, hide mobile-only label spans */
@media (min-width: 769px) {
  .sticky-bar__btn-label--mobile { display: none; }
}

@media (max-width: 420px) {
  /* Very narrow phones: tighten button padding/font (labels stay visible) */
  .sticky-bar__inner { padding: .5rem .5rem; gap: .35rem; }
  .sticky-bar__btn { height: 48px; padding: 0 .4rem; gap: .3rem; border-radius: 7px; font-size: .6rem; }
  .sticky-bar__btn svg { width: 16px; height: 16px; }
  .sticky-bar__btn--cta svg { width: 12px; height: 12px; }
}


/* =========================================================
   LEGAL PAGES (Terms / Privacy / Cookie) + Sitemap
   ========================================================= */
.page-hero--legal { min-height: 320px; background: linear-gradient(135deg, #0F2818 0%, #1A3A24 100%); }
.page-hero--legal .page-hero__overlay { background: radial-gradient(circle at 20% 30%, rgba(248,160,27,.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,193,7,.08) 0%, transparent 55%); }

.legal-doc { max-width: 880px; margin: 0 auto; font-family: var(--ff-body); color: var(--c-charcoal); line-height: 1.75; }
.legal-doc__meta { font-size: .82rem; color: var(--c-steel-2); letter-spacing: .04em; margin: 0 0 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--c-light); text-transform: uppercase; font-weight: 600; }
.legal-doc h2 { font-family: var(--ff-head); font-weight: 800; font-size: 1.4rem; color: var(--c-green); margin: 2.25rem 0 .85rem; letter-spacing: .005em; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p { margin: 0 0 1.1rem; font-size: 1rem; color: #2A3F33; }
.legal-doc ul { margin: 0 0 1.4rem; padding-left: 1.4rem; }
.legal-doc ul li { margin-bottom: .55rem; font-size: 1rem; color: #2A3F33; }
.legal-doc a { color: var(--c-mango); text-decoration: underline; text-decoration-color: rgba(248,160,27,.4); text-underline-offset: 3px; transition: color .2s, text-decoration-color .2s; }
.legal-doc a:hover { color: var(--c-green); text-decoration-color: var(--c-green); }
.legal-doc__notice { margin-top: 2.5rem; padding: 1.1rem 1.25rem; background: #FFF8E1; border-left: 4px solid var(--c-yellow); border-radius: 4px; font-size: .9rem; color: #5A4A0E; }
.legal-doc__notice strong { color: var(--c-charcoal); }

.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.sitemap-col h3 { font-family: var(--ff-head); font-weight: 800; font-size: 1.1rem; color: var(--c-green); margin: 0 0 1rem; padding-bottom: .55rem; border-bottom: 2px solid var(--c-yellow); letter-spacing: .02em; text-transform: uppercase; }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; }
.sitemap-col li { margin-bottom: .65rem; }
.sitemap-col a { color: var(--c-charcoal); text-decoration: none; font-size: .95rem; transition: color .2s, padding-left .2s; display: inline-block; }
.sitemap-col a::before { content: "→"; color: var(--c-mango); margin-right: .4rem; opacity: .55; transition: opacity .2s, transform .2s; display: inline-block; }
.sitemap-col a:hover { color: var(--c-green); padding-left: .15rem; }
.sitemap-col a:hover::before { opacity: 1; }

@media (max-width: 900px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .legal-doc h2 { font-size: 1.2rem; }
}
@media (max-width: 560px) {
  .sitemap-grid { grid-template-columns: 1fr; }
  .legal-doc p, .legal-doc ul li { font-size: .95rem; }
}

/* =========================================================
   FLOATING REQUEST SPECIFICATION CTA (products page)
   ========================================================= */
.floating-spec-cta {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--c-mango);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(248,160,27,.55), 0 0 0 6px rgba(248,160,27,.16);
  overflow: hidden;
  white-space: nowrap;
  z-index: 950;
  transition: width .35s cubic-bezier(.4,0,.2,1), background .25s, box-shadow .25s, padding .35s cubic-bezier(.4,0,.2,1);
  padding: 0;
}
.floating-spec-cta:hover,
.floating-spec-cta:focus-visible {
  width: 260px;
  padding: 0 1.25rem 0 0;
  background: #e08e15;
  box-shadow: 0 16px 40px rgba(248,160,27,.7), 0 0 0 8px rgba(248,160,27,.22);
  color: var(--c-white);
}
.floating-spec-cta__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.floating-spec-cta__label {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease .12s, transform .3s ease .12s;
  position: relative;
  z-index: 2;
}
.floating-spec-cta:hover .floating-spec-cta__label,
.floating-spec-cta:focus-visible .floating-spec-cta__label {
  opacity: 1;
  transform: translateX(0);
}
.floating-spec-cta__pulse,
.floating-spec-cta__pulse--2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--c-mango);
  opacity: .55;
  animation: floatingPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}
.floating-spec-cta__pulse--2 { animation-delay: 1.2s; }
@keyframes floatingPulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
.floating-spec-cta:hover .floating-spec-cta__pulse,
.floating-spec-cta:hover .floating-spec-cta__pulse--2 { animation-play-state: paused; opacity: 0; }

/* Lift above sticky bar when sticky bar shown */
body:not(.sticky-bar-hidden) .floating-spec-cta { top: calc(50% - 30px); }

@media (max-width: 768px) {
  .floating-spec-cta { right: 1rem; width: 56px; height: 56px; }
  .floating-spec-cta__icon { flex: 0 0 56px; width: 56px; height: 56px; }
  .floating-spec-cta__pulse,
  .floating-spec-cta__pulse--2 { width: 56px; height: 56px; }
  .floating-spec-cta:hover,
  .floating-spec-cta:focus-visible { width: 56px; padding: 0; }
  .floating-spec-cta__label { display: none; }
}


/* Contact page playful sun emoji bob */
.page-hero__emoji {
  display: inline-block;
  margin-left: .35rem;
  font-size: .9em;
  animation: sunBob 3.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes sunBob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-6px) rotate(6deg); }
}


/* =========================================================
   STAT STRIP — capability credibility strip
   ========================================================= */
.stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--c-light);
  border-bottom: 1px solid var(--c-light);
  background:
    radial-gradient(circle at 50% 50%, rgba(248,160,27,.04) 0%, transparent 70%),
    #fff;
}
.stat-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .35rem;
  padding: 0 1rem;
}
.stat-strip__num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--c-green);
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: flex-start;
}
.stat-strip__unit {
  font-size: .55em;
  font-weight: 700;
  color: var(--c-mango);
  margin-left: .15em;
  margin-top: .25em;
  letter-spacing: 0;
}
.stat-strip__label {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  opacity: .75;
}
.stat-strip__divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent 0%, var(--c-light) 30%, var(--c-light) 70%, transparent 100%);
  display: inline-block;
}

/* =========================================================
   SECTION TITLE — small decorative line underneath
   ========================================================= */
.section-head h2,
.cert-strip__title,
.product-row__title {
  position: relative;
}
.section-head h2::after,
.cert-strip__title::after,
.product-row__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--c-mango);
  margin: .9rem auto 0;
  border-radius: 2px;
}
/* Left-aligned variants */
.section-head--left h2::after,
.product-row__title::after { margin-left: 0; margin-right: auto; }

@media (max-width: 720px) {
  .stat-strip { gap: 1.25rem; padding: 1.5rem 1rem; }
  .stat-strip__divider { display: none; }
  .stat-strip__item { flex: 1 1 30%; padding: 0; }
  .stat-strip__label { font-size: .68rem; letter-spacing: .12em; }
}

/* Utility: prevent word-break inside a phrase (used on CSR hero for brand name) */
.nowrap { white-space: nowrap; }


/* Brighter hero images on CSR and Contact pages (image was too dark) */
[data-testid="csr-hero"] .page-hero__bg,
[data-testid="contact-hero"] .page-hero__bg {
  opacity: .9;
}
[data-testid="csr-hero"] .page-hero__overlay,
[data-testid="contact-hero"] .page-hero__overlay {
  background: linear-gradient(110deg, rgba(15,20,17,.55) 0%, rgba(15,20,17,.22) 55%, rgba(15,20,17,.05) 100%);
}

/* Contact form: success state (form hidden, link to re-open) */
.contact-form.is-hidden { display: none; }
.contact-success {
  position: relative;
  padding: 2.4rem 2rem;
  background: linear-gradient(140deg, rgba(21,58,38,.06), rgba(245,130,32,.05));
  border: 1px solid rgba(21,58,38,.18);
  border-left: 4px solid var(--c-green);
  border-radius: 6px;
  text-align: center;
}
.contact-success__icon {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: 0 8px 24px rgba(21,58,38,.25);
}
.contact-success__title {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-green);
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-success__body {
  color: var(--c-charcoal);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 1.4rem;
  line-height: 1.55;
}
.contact-success__cta {
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(21,58,38,.2);
  font-size: .95rem;
  color: #555;
}
.contact-success__cta a {
  color: var(--c-mango);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--c-mango);
  padding-bottom: 1px;
  margin-left: .3rem;
  transition: color .18s ease, border-color .18s ease;
}
.contact-success__cta a:hover {
  color: var(--c-charcoal);
  border-bottom-color: var(--c-charcoal);
}

/* Anti-spam honeypot on contact form — visually hidden from humans but bots see it */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Preserve visual parity after h4→h3 semantic upgrade on product specs / applications */
.product-row__body h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; }

/* Utility: keep multi-word phrases together (e.g. hero title "Avocado Oil" on mobile) */
.nowrap { white-space: nowrap; }

/* Semantic <picture> replaces background-image on hero / page-hero / product / split wrappers.
   NOTE: do NOT set overflow:hidden on the wrappers themselves — the split/product wrappers
   rely on overflow being visible so their ::after corner brackets (which sit at -16px)
   remain visible. Clip the <picture> instead so image corners still honour border-radius. */
.bg-picture,
.hero__slide picture, .page-hero__bg picture,
.product-row__image picture, .split__image picture {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.bg-picture img,
.hero__slide img, .page-hero__bg img,
.product-row__image img, .split__image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
