/* ==========================================================================
   OCS GREEN POWER OORJA
   Premium Design System — Mobile First
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --neutral-0:   #ffffff;
  --neutral-50:  #fafafa;
  --neutral-100: #f4f4f5;
  --neutral-200: #e4e4e7;
  --neutral-300: #d4d4d8;
  --neutral-400: #a1a1aa;
  --neutral-500: #71717a;
  --neutral-600: #52525b;
  --neutral-700: #3f3f46;
  --neutral-800: #27272a;
  --neutral-900: #18181b;
  --neutral-950: #09090b;

  --bg-page:        var(--neutral-0);
  --bg-subtle:      var(--neutral-50);
  --bg-muted:       var(--neutral-100);
  --text-primary:   var(--neutral-950);
  --text-secondary: var(--neutral-500);
  --text-tertiary:  var(--neutral-400);
  --border-subtle:  var(--neutral-200);
  --accent:         var(--green-600);
  --accent-hover:   var(--green-700);
  --accent-light:   var(--green-500);

  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;

  --space-1: 4px;  --space-2: 8px;   --space-3: 12px;
  --space-4: 16px; --space-5: 20px;  --space-6: 24px;
  --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px; --space-40: 160px;

  --r-sm:   6px;  --r-md:  12px; --r-lg:  20px;
  --r-xl:  28px;  --r-2xl: 40px; --r-full: 9999px;

  --shadow-xs:    0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.1);
  --shadow-xl:    0 24px 60px rgba(0,0,0,.12);
  --shadow-green: 0 4px 24px rgba(22,163,74,.2);

  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .3s var(--ease-out); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --------------------------------------------------------------------------
   3. Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* --------------------------------------------------------------------------
   4. Navigation (Mobile-First)
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  transition: all .4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: .01em;
}
.nav__links a:hover { color: var(--accent); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--r-sm);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
/* Mobile Drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 113px; left: 0; right: 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: var(--space-1);
  z-index: 999;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  display: block;
  padding: var(--space-4) var(--space-4);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--r-md);
  transition: background .2s;
}
.nav__drawer a:hover { background: var(--bg-subtle); }
.nav__drawer .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-3);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .35s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(22,163,74,.3);
}
.btn-dark {
  background: var(--neutral-950);
  color: #fff;
}
.btn-dark:hover { background: var(--neutral-800); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-subtle) !important;
}
.btn-outline:hover { border-color: var(--neutral-400) !important; background: var(--bg-subtle); }
.btn-outline-light {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.25) !important;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.4) !important;
  color: #fff !important;
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 18px;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--text-primary); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 var(--space-20);
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(22,163,74,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(22,163,74,.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-6);
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}
.hero__title mark {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid var(--border-subtle);
}
.hero__stat h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text-primary);
}
.hero__stat p {
  font-size: .78rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 500;
  margin: 0;
}
.hero__divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Logos / Marquee
   -------------------------------------------------------------------------- */
.logos {
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  background: var(--bg-page);
}
.logos__label {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-5);
}
.logos__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  align-items: center;
}
.logos__track img {
  height: 22px;
  margin: 0 var(--space-10);
  opacity: .2;
  filter: grayscale(1);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   8. Section Base
   -------------------------------------------------------------------------- */
.section { padding: var(--space-20) 0; }
.section--alt { background: var(--bg-subtle); }
.section--dark { background: var(--neutral-950); color: #fff; }
.section--dark .section__title { color: #fff; }
.section--dark .section__sub { color: var(--neutral-400); }
.section__header { text-align: center; max-width: 600px; margin: 0 auto var(--space-12); }
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}
.section__sub {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. Impact Strip
   -------------------------------------------------------------------------- */
.impact {
  padding: var(--space-20) 0;
  background: var(--neutral-950);
  text-align: center;
}
.impact__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.2;
  color: #fff;
  max-width: 800px;
  margin: 0 auto var(--space-5);
}
.impact__title span { color: var(--green-400); }
.impact__sub {
  font-size: .95rem;
  color: var(--neutral-500);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. Bento Grid
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}
.bento-cell {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: all .5s var(--ease-out);
  overflow: hidden;
  position: relative;
}
.bento-cell:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--neutral-300);
}
/* Base heading/para styles for ALL bento cells — must come BEFORE modifiers */
.bento-cell h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}
.bento-cell p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.bento-cell__icon {
  font-size: 1.2rem;
  margin-bottom: var(--space-6);
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-muted);
  color: var(--accent);
  flex-shrink: 0;
}
.col-span-5  { grid-column: span 5; }
.col-span-7  { grid-column: span 7; }
.col-span-4  { grid-column: span 4; }
.col-span-8  { grid-column: span 8; }
.col-span-6  { grid-column: span 6; }
/* Dark modifier — comes AFTER base so it wins specificity */
.bento-cell--dark {
  background: var(--neutral-950);
  border-color: rgba(255,255,255,.06);
}
.bento-cell--dark h3 { color: #fff !important; }
.bento-cell--dark p  { color: var(--neutral-400) !important; }
.bento-cell--dark .bento-cell__icon  { background: rgba(255,255,255,.08); color: var(--green-400); }
.bento-cell--dark:hover { border-color: rgba(22,163,74,.3); box-shadow: 0 12px 40px rgba(22,163,74,.12); }
/* Accent modifier */
.bento-cell--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.bento-cell--accent h3 { color: #fff !important; }
.bento-cell--accent p  { color: rgba(255,255,255,.85) !important; }
.bento-cell--accent .bento-cell__icon { background: rgba(255,255,255,.2); color: #fff; }
.bento-cell__bg-icon {
  position: absolute; right: -16px; bottom: -16px;
  font-size: 9rem; opacity: .04; pointer-events: none;
}


/* --------------------------------------------------------------------------
   11. Product Cards
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.product-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .5s var(--ease-out);
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--neutral-300);
}
.product-card__img {
  position: relative;
  overflow: hidden;
  background: var(--bg-subtle);
  height: 210px;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__img--icon {
  display: flex; align-items: center; justify-content: center;
  height: 210px;
  background: var(--green-50);
}
.product-card__chip {
  position: absolute; top: 12px; right: 12px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-xs);
}
.product-card__chip--green {
  background: var(--green-50);
  border-color: var(--green-100);
  color: var(--green-700);
}
.product-card__body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.product-card__body p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-5);
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-card__link i { font-size: .7rem; transition: transform .3s var(--ease-out); }
.product-card:hover .product-card__link { color: var(--accent); }
.product-card:hover .product-card__link i { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   12. Process Steps
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.process-step {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  border-radius: var(--r-xl);
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  transition: all .4s var(--ease-out);
}
.process-step:hover { border-color: var(--green-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.process-step p { font-size: .85rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* --------------------------------------------------------------------------
   13. Comparison Table
   -------------------------------------------------------------------------- */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 24px; text-align: left; font-size: .875rem; }
.compare-table thead tr { background: var(--neutral-950); }
.compare-table thead th { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: -.01em; }
.compare-table thead th.col-win { color: var(--green-400); }
.compare-table tbody tr { border-bottom: 1px solid var(--border-subtle); background: var(--bg-page); transition: background .2s; }
.compare-table tbody tr:hover { background: var(--green-50); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td:first-child { font-weight: 500; color: var(--text-primary); border-right: 1px solid var(--border-subtle); }
.compare-table td.win { color: var(--green-700); font-weight: 600; }
.compare-table td.lose { color: var(--text-tertiary); }

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.testi-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-6);
  transition: all .5s var(--ease-out);
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--neutral-300); }
.testi-card__stars { display: flex; gap: 4px; color: #f59e0b; font-size: .8rem; }
.testi-card__text { font-size: .9rem; line-height: 1.75; color: var(--text-primary); flex: 1; margin: 0; }
.testi-card__author { display: flex; align-items: center; gap: var(--space-4); padding-top: var(--space-5); border-top: 1px solid var(--border-subtle); }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.testi-card__name { font-size: .875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.testi-card__role { font-size: .72rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: .06em; }

/* --------------------------------------------------------------------------
   15. CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--neutral-950);
  border-radius: var(--r-2xl);
  padding: var(--space-16) var(--space-10);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(22,163,74,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -.04em; color: #fff;
  margin-bottom: var(--space-4); position: relative;
}
.cta-banner p { font-size: .95rem; color: var(--neutral-400); max-width: 480px; margin: 0 auto var(--space-8); position: relative; }
.cta-banner__btns { display: flex; align-items: center; justify-content: center; gap: var(--space-4); flex-wrap: wrap; position: relative; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--neutral-950);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--space-16) 0 var(--space-8);
  color: var(--neutral-400);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: var(--space-8);
}
.footer__brand img { height: 34px; filter: brightness(0) invert(1); margin-bottom: var(--space-5); }
.footer__brand p { font-size: .875rem; line-height: 1.7; color: var(--neutral-600); margin-bottom: var(--space-6); }
.footer__socials { display: flex; gap: var(--space-3); }
.footer__socials a {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--neutral-500); font-size: .8rem; transition: all .3s var(--ease-out);
}
.footer__socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer__col h5 {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--neutral-400); margin-bottom: var(--space-5);
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__links a { font-size: .875rem; color: var(--neutral-600); transition: color .25s; }
.footer__links a:hover { color: #fff; }
.footer__contact { list-style: none; display: flex; flex-direction: column; gap: var(--space-4); }
.footer__contact li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: .875rem; color: var(--neutral-600); }
.footer__contact i { color: var(--green-500); margin-top: 3px; font-size: .82rem; flex-shrink: 0; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: var(--space-3); font-size: .8rem; color: var(--neutral-700);
}

/* --------------------------------------------------------------------------
   17. Page Hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 140px 0 var(--space-16);
  background: var(--neutral-950);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(22,163,74,.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--green-400); position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--space-5); position: relative;
}
.page-hero p { font-size: .95rem; color: var(--neutral-400); max-width: 480px; margin: 0 auto; position: relative; line-height: 1.7; }

/* --------------------------------------------------------------------------
   18. Animations — FIXED: uses visible class, not active
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   19. Responsive — Mobile First
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .col-span-5, .col-span-7 { grid-column: span 2; }
  .col-span-4, .col-span-8 { grid-column: span 2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav__links { display: none; }
  .nav__cta .btn-ghost { display: none; }
  .nav__cta .btn-primary { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 var(--space-16); min-height: auto; }
  .hero__stats { gap: var(--space-6); }
  .hero__divider { display: none; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero__sub { font-size: .95rem; }
  .hero__actions { gap: var(--space-3); }
  .hero__actions .btn { padding: 12px 20px; font-size: .85rem; }

  /* Impact */
  .impact__title { font-size: clamp(1.6rem, 7vw, 2.5rem); }

  /* Bento */
  .bento { grid-template-columns: 1fr; gap: var(--space-3); }
  .col-span-5, .col-span-7, .col-span-4, .col-span-8, .col-span-6 { grid-column: span 1; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; gap: var(--space-4); }

  /* Process */
  .process { grid-template-columns: 1fr 1fr; gap: var(--space-4); }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; text-align: center; gap: var(--space-2); }

  /* CTA Banner */
  .cta-banner { padding: var(--space-10) var(--space-6); border-radius: var(--r-xl); }
  .cta-banner h2 { font-size: 1.8rem; }

  /* Section */
  .section { padding: var(--space-16) 0; }
  .page-hero { padding: 120px 0 var(--space-12); }
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); }

  /* Compare table - scrollable */
  .table-wrap { overflow-x: auto; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
  .compare-table th, .compare-table td { padding: 14px 16px; font-size: .82rem; white-space: nowrap; }

  /* Two col grids */
  .two-col-grid { grid-template-columns: 1fr !important; }
  .two-col-grid > *:nth-child(1) { order: 1 !important; }
  .two-col-grid > *:nth-child(2) { order: 2 !important; }
  .two-col-grid img-col { height: 260px !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .process { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.2rem; letter-spacing: -.03em; }
  .section__title { font-size: 1.7rem; }
  .cta-banner__btns { flex-direction: column; }
  .cta-banner__btns .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   20. Text utils
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   21. About Page Specifics
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.about-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: all 0.3s var(--ease-out);
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green-200);
}
.about-card i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: var(--space-4);
  display: block;
}
.about-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.about-card p {
  font-size: .875rem;
  color: var(--text-secondary);
  margin: 0;
}

.about-image-wrapper {
  border-radius: var(--r-2xl);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .about-image-wrapper {
    height: 550px;
  }
}
.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 600px) {
  .vision-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
