/* ═══════════════════════════════════
   RECOVERSE v5 — Bold & Warm
   ═══════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g:          #3cb53a;
  --g-dark:     #2c8c2a;
  --g-glow:     rgba(60,181,58,.20);
  --g-pale:     rgba(60,181,58,.06);

  /* Hero dark side */
  --hero-dark:  #0f2218;
  --hero-dark2: #162d1e;

  /* Light palette */
  --cream:      #f8f6f1;
  --white:      #ffffff;
  --paper:      #f2f0eb;

  /* Ink */
  --ink:        #111811;
  --ink2:       #2c3a2c;
  --ink3:       #4c5e4c;
  --ink4:       #7a8a7a;

  /* Borders */
  --b:          #e0ddd6;
  --b2:         #cac7be;

  /* Dark sections */
  --dark:       #0e1c0e;
  --dark2:      #162018;

  --r:          16px;
  --r-lg:       24px;
  --ff-d:       'Bebas Neue', sans-serif;
  --ff-b:       'Inter', sans-serif;
  --ease:       cubic-bezier(.4,0,.2,1);

  --sh0:  0 1px 4px rgba(0,18,0,.05);
  --sh1:  0 4px 16px rgba(0,18,0,.08);
  --sh2:  0 10px 32px rgba(0,18,0,.11);
  --sh3:  0 20px 56px rgba(0,18,0,.14);
  --sh4:  0 36px 80px rgba(0,18,0,.17);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); background: var(--cream); color: var(--ink); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── SHARED TYPE ── */
.sec-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  color: var(--g); text-transform: uppercase; margin-bottom: 14px; display: block;
}
.sec-label--light { color: rgba(60,181,58,.75); }

.sec-title {
  font-family: var(--ff-d);
  font-size: clamp(36px,4.8vw,58px);
  line-height: 1.02; letter-spacing: 1.5px;
  color: var(--ink); margin-bottom: 24px;
}
.sec-title em { color: var(--g); font-style: normal; }
.sec-title--white { color: var(--white); }
.sec-title--white em { color: rgba(60,181,58,.85); }

/* ── BUTTONS ── */
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g); color: var(--white);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  box-shadow: 0 4px 18px var(--g-glow);
  transition: background .2s, transform .25s var(--ease), box-shadow .25s;
}
.btn-main:hover { background: var(--g-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(60,181,58,.32); }
.btn-main--sm { padding: 11px 22px; font-size: 14px; }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: var(--ink3);
  border-bottom: 1px solid var(--b2);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-text:hover { color: var(--g); border-color: var(--g); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(248,246,241,.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--b);
  box-shadow: var(--sh0);
}
.nav__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  height: 70px; display: flex; align-items: center; gap: 36px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--g); color: var(--white);
  font-family: var(--ff-d); font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
}
.logo:hover .logo__mark { background: var(--g-dark); }
.logo__name {
  font-family: var(--ff-d); font-size: 22px; letter-spacing: 4px;
  color: var(--white); transition: color .3s;
}
.nav.solid .logo__name { color: var(--ink); }

.nav__links { display: flex; gap: 32px; margin-left: auto; }
.nav__links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.7); transition: color .2s; position: relative;
}
.nav__links a::after {
  content:''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--g); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav.solid .nav__links a { color: var(--ink3); }
.nav.solid .nav__links a:hover { color: var(--g); }

.nav__cta {
  background: var(--g); color: var(--white);
  padding: 10px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: var(--g-dark); transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: white; transition: background .3s; }
.nav.solid .nav__burger span { background: var(--ink); }

.nav__drawer {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--b);
  padding: 16px 40px;
}
.nav__drawer a { padding: 13px 0; font-size: 16px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--b); }
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer.open { display: flex; }

/* ══════════════════════════════
   HERO — IMPACT / Cold Start
══════════════════════════════ */
.hero {
  display: flex; min-height: 100vh;
  position: relative; overflow: hidden;
}

/* ── DARK HALF ── */
.hero__dark {
  flex: 0 0 50%;
  background: var(--hero-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 90px 32px 70px;
  position: relative; overflow: hidden;
  animation: darkFadeIn .63s ease both;
}
@keyframes darkFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Tech grid */
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(60,181,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,181,58,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Diagonal watermark */
.hero__watermark {
  position: absolute;
  font-family: var(--ff-d);
  font-size: clamp(100px, 14vw, 190px);
  letter-spacing: 14px;
  color: rgba(255,255,255,.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  white-space: nowrap; pointer-events: none; user-select: none;
}

/* Radial glow centre */
.hero__dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 52%, rgba(60,181,58,.12) 0%, transparent 68%);
}

/* ── SCENE ── */
.hero__scene {
  position: relative;
  width: min(520px, 88%);
  aspect-ratio: 1 / 1;
}

/* ── CORNER BRACKETS (celownik) ── */
.hero__corners {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  pointer-events: none; z-index: 3; overflow: visible;
}
#cTL, #cTR, #cBL, #cBR {
  transition: stroke-dashoffset .59s cubic-bezier(.4,0,.2,1);
}
#cH, #cV { transition: opacity .42s ease .05s; }
#cInner { transition: stroke-dashoffset .7s cubic-bezier(.4,0,.2,1), opacity .42s ease; }

/* ── PHOTO ── */
.hero__photo-wrap {
  position: relative; width: 100%; height: 100%;
  opacity: 0;
}
.hero__photo-wrap.slam {
  animation: photoSlam .85s cubic-bezier(.2,0,.25,1.6) both;
}
.hero__photo-wrap.floating {
  animation: photoFloat 7s ease-in-out infinite;
}
@keyframes photoSlam {
  0%   { opacity: 0; transform: scale(.55); filter: brightness(2.5); }
  55%  { opacity: 1; transform: scale(1.05); filter: brightness(1.05); }
  75%  { transform: scale(.97); }
  90%  { transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); filter: brightness(1); }
}
@keyframes photoFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-13px); }
}
.hero__photo {
  width: 100%; height: 100%; object-fit: contain; padding: 12px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.65))
          drop-shadow(0 0 40px rgba(60,181,58,.15));
}

/* ── SCAN LINE ── */
.hero__scan {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(60,181,58,.06) 45%,
    rgba(60,181,58,.28) 50%,
    rgba(60,181,58,.06) 55%,
    transparent 100%
  );
  transform: translateY(-110%);
}
.hero__scan.sweep {
  animation: scanSweep 1.05s cubic-bezier(.4,0,.5,1) both;
}
@keyframes scanSweep {
  from { transform: translateY(-110%); }
  to   { transform: translateY(110%); }
}

/* ── BADGE ── */
.hero__float-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--g); color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  padding: 9px 18px; border-radius: 8px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(60,181,58,.5);
  white-space: nowrap; z-index: 5;
  opacity: 0; transform: translateX(-50%) scale(.8);
  transition: opacity .49s var(--ease), transform .49s cubic-bezier(.34,1.5,.64,1);
}
.hero__float-badge.in {
  opacity: 1; transform: translateX(-50%) scale(1);
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: white;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{ opacity:1; } 50%{ opacity:.35; } }

/* ── DIVIDER ── */
.hero__divider {
  flex: 0 0 5px;
  background: rgba(60,181,58,.12);
  position: relative; z-index: 10;
  overflow: visible;
}
.hero__divider-fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--g);
  box-shadow: 0 0 20px rgba(60,181,58,.7), 0 0 50px rgba(60,181,58,.3);
  transition: height .39s cubic-bezier(.4,0,.2,1);
}
.hero__divider-fill.drawn { height: 100%; }

/* spark bolt shooting down the divider */
.hero__divider-spark {
  position: absolute; left: -4px; right: -4px;
  height: 100px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(60,181,58,.3) 20%,
    rgba(255,255,255,.95) 50%,
    rgba(60,181,58,.3) 80%,
    transparent 100%);
  top: -100px; opacity: 0;
  pointer-events: none; z-index: 3;
  border-radius: 4px;
}
.hero__divider-spark.bolt {
  animation: sparkBolt .45s ease-in both;
}
@keyframes sparkBolt {
  0%   { top: -100px; opacity: 1; }
  70%  { opacity: 1; }
  100% { top: calc(100% + 10px); opacity: 0; }
}

/* ── LIGHT HALF ── */
.hero__light {
  flex: 1; background: var(--white);
  display: flex; align-items: center;
  padding: 100px 64px 60px;
  opacity: 0; transform: translateX(28px);
  animation: lightSlide .77s var(--ease) .25s both;
}
@keyframes lightSlide {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: none; }
}
.hero__light-inner { max-width: 520px; }

/* Eyebrow */
.hero__eyebrow {
  font-size: 13px; font-weight: 500;
  color: var(--ink4); letter-spacing: .5px; margin-bottom: 20px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s ease, transform .45s var(--ease);
}
.hero__eyebrow.in { opacity: 1; transform: none; }

/* ── BRAND: SLAM letters ── */
.hero__brand {
  font-family: var(--ff-d);
  font-size: clamp(64px, 8.5vw, 124px);
  line-height: .88; letter-spacing: 5px;
  color: var(--ink); margin-bottom: 16px;
  display: flex; flex-wrap: nowrap; overflow: visible;
}
.hl {
  display: inline-block;
  opacity: 0;
  transform: scale(3.5);
  filter: blur(8px);
}
.hl.slam {
  animation: letterSlam .53s cubic-bezier(.2,0,.25,1.4) both;
}
@keyframes letterSlam {
  0%   { opacity: 0; transform: scale(3.5); filter: blur(8px); color: #3cb53a; }
  55%  { opacity: 1; transform: scale(.9); filter: blur(0); color: #3cb53a; }
  75%  { transform: scale(1.08); color: #111811; }
  90%  { transform: scale(.97); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); color: #111811; }
}
.hl:hover {
  color: var(--g);
  text-shadow: 0 0 20px rgba(60,181,58,.4);
  transition: color .18s, text-shadow .18s;
}

/* Tagline */
.hero__tagline {
  font-family: var(--ff-d);
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: 3px; color: var(--g); margin-bottom: 24px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s ease, transform .45s var(--ease);
}
.hero__tagline.in { opacity: 1; transform: none; }

/* Desc */
.hero__desc {
  font-size: 16px; line-height: 1.75;
  color: var(--ink3); max-width: 440px; margin-bottom: 36px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s ease, transform .45s var(--ease);
}
.hero__desc.in { opacity: 1; transform: none; }

/* Actions */
.hero__actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 52px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s ease, transform .45s var(--ease);
}
.hero__actions.in { opacity: 1; transform: none; }

/* Stats */
.hero__stats {
  display: flex; align-items: center; gap: 0;
  padding-top: 32px; border-top: 1.5px solid var(--b);
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s ease, transform .45s var(--ease);
}
.hero__stats.in { opacity: 1; transform: none; }
.hstat { display: flex; flex-direction: column; gap: 3px; padding: 0 28px; }
.hstat:first-child { padding-left: 0; }
.hstat__n { font-family: var(--ff-d); font-size: 36px; color: var(--g); line-height: 1; display: inline; }
.hstat__suf { font-family: var(--ff-d); font-size: 22px; color: var(--g); display: inline; }
.hstat__l { font-size: 12px; font-weight: 500; color: var(--ink4); letter-spacing: .5px; }
.hstat__sep { width: 1.5px; height: 40px; background: var(--b); flex-shrink: 0; }

/* ── GREEN BAND ── */
.green-band {
  background: var(--g); padding: 28px 0; overflow: hidden;
}
.green-band__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.green-band__big {
  font-family: var(--ff-d); font-size: clamp(22px,3vw,36px);
  letter-spacing: 2px; color: var(--white); white-space: nowrap;
}
.green-band__sep { color: rgba(255,255,255,.4); font-size: 24px; }
.green-band__sub { font-size: 15px; color: rgba(255,255,255,.8); font-weight: 400; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { padding: 110px 0; background: var(--white); }
.about__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__lead { font-size: 18px; font-weight: 400; color: var(--ink2); line-height: 1.7; margin-bottom: 16px; }
.about__text > p:not(.about__lead):not(.sec-label) { font-size: 16px; color: var(--ink3); line-height: 1.8; margin-bottom: 16px; }
.about__text > p strong { color: var(--ink); font-weight: 600; }

.about__checks {
  list-style: none; margin: 24px 0 36px;
  display: flex; flex-direction: column; gap: 13px;
}
.about__checks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--ink2);
}
.about__checks li svg { flex-shrink: 0; }

/* Image mosaic */
.about__media { position: relative; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 200px;
  gap: 12px;
}
.about__img {
  border-radius: var(--r); overflow: hidden;
  background: var(--paper); border: 1px solid var(--b);
  box-shadow: var(--sh1);
}
.about__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; transition: transform .4s var(--ease); }
.about__img:hover img { transform: scale(1.04); }
.about__img--tall { grid-row: 1 / 3; border-radius: var(--r-lg); }
.about__img--sq1  { grid-column: 2; }
.about__img--sq2  { grid-column: 2; }

/* Spinning badge decoration */
.about__spinning-badge {
  position: absolute; top: -24px; right: -24px;
  width: 110px; height: 110px;
  animation: stampSpin 20s linear infinite;
  pointer-events: none;
}
.about__spinning-badge svg { width: 100%; height: 100%; }
.spinning-badge__center {
  position: absolute; inset: 28px;
  background: var(--g); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.spinning-badge__center span {
  font-family: var(--ff-d); font-size: 20px; color: var(--white); letter-spacing: 2px;
}

/* ══════════════════════════════
   PRODUCTS
══════════════════════════════ */
.products { padding: 100px 0; background: var(--cream); }
.products__inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.products__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 44px;
}
.products__desc { font-size: 15px; color: var(--ink4); margin-top: 6px; }

.products__tabs {
  display: flex; background: var(--white);
  border: 1.5px solid var(--b); border-radius: 10px; padding: 4px; gap: 4px;
  box-shadow: var(--sh0);
}
.ptab {
  padding: 10px 26px; border-radius: 7px;
  font-size: 14px; font-weight: 600; color: var(--ink4);
  transition: all .2s;
}
.ptab--active { background: var(--g); color: var(--white); box-shadow: 0 2px 10px var(--g-glow); }
.ptab:hover:not(.ptab--active) { color: var(--g); }

/* Grid */
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}
.pgrid--active { display: grid; }

.pcard {
  background: var(--white); border: 1.5px solid var(--b);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  box-shadow: var(--sh0);
}
.pcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh3);
  border-color: var(--g);
}
.pcard__img {
  position: relative; aspect-ratio: 4/3;
  background: var(--paper); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pcard__img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .4s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.07); }
.pcard__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--g); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 4px;
}
.pcard__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 5px; }
.pcard__ref { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--g); }
.pcard__body h3 { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.pcard__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--b);
}
.pcard__brand { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--g); }
.pcard__foot > span:last-child { font-size: 12px; color: var(--ink4); }

/* "more" card */
.pcard--more {
  background: var(--g); border-color: var(--g);
  display: flex; align-items: center; justify-content: center;
  cursor: default;
}
.pcard--more:hover { border-color: var(--g-dark); transform: translateY(-7px); }
.pcard__more-inner { text-align: center; padding: 32px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pcard__more-num { font-family: var(--ff-d); font-size: 56px; color: var(--white); line-height: 1; }
.pcard__more-txt { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); }
.pcard--more .btn-main { background: var(--white); color: var(--g); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.pcard--more .btn-main:hover { background: var(--paper); }

/* ══════════════════════════════
   REGENERACJA
══════════════════════════════ */
.regen { background: var(--dark); padding: 110px 0; }
.regen__inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.regen__header { margin-bottom: 72px; max-width: 500px; }

.regen__steps {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.regen__steps::before {
  content: ''; position: absolute;
  left: 31px; top: 48px; bottom: 48px; width: 2px;
  background: linear-gradient(to bottom, var(--g), rgba(60,181,58,.15));
}

.rstep {
  display: flex; gap: 40px; align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
.rstep:last-child { border-bottom: none; }

.rstep__num {
  flex-shrink: 0;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--dark2); border: 2px solid rgba(60,181,58,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-size: 20px; color: var(--g);
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.rstep:hover .rstep__num {
  border-color: var(--g);
  background: rgba(60,181,58,.1);
  box-shadow: 0 0 24px rgba(60,181,58,.25);
}

.rstep__content { padding-top: 12px; }
.rstep__content h3 { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.rstep__content p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 600px; }

/* ══════════════════════════════
   DLACZEGO MY
══════════════════════════════ */
.why { padding: 110px 0; background: var(--white); }
.why__inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.why__header { margin-bottom: 64px; }
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--b);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh1);
}
.why__item {
  background: var(--white); padding: 40px 36px;
  position: relative; transition: background .25s;
}
.why__item:hover { background: #fafef9; }
.why__num {
  font-family: var(--ff-d); font-size: 52px; color: var(--b);
  line-height: 1; display: block; margin-bottom: 16px;
  transition: color .3s;
}
.why__item:hover .why__num { color: rgba(60,181,58,.18); }
.why__item h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.why__item p  { font-size: 15px; color: var(--ink3); line-height: 1.7; }

/* ══════════════════════════════
   BRANDS
══════════════════════════════ */
.brands { padding: 80px 0; background: var(--cream); }
.brands__inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.brands__grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px;
}
.btag {
  padding: 11px 22px; border-radius: 40px;
  border: 1.5px solid var(--b2); background: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--ink4); transition: all .2s; box-shadow: var(--sh0);
}
.btag:hover { border-color: var(--g); color: var(--g); background: var(--g-pale); transform: translateY(-3px); box-shadow: var(--sh1); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact { background: var(--dark); }
.contact__inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; min-height: 600px;
}
.contact__info {
  padding: 80px 56px; display: flex; flex-direction: column;
  justify-content: center; gap: 24px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.contact__lead { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.75; }
.contact__details { display: flex; flex-direction: column; gap: 16px; }

.cdet {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.cdet:hover { color: rgba(255,255,255,.85); }
.cdet__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.cdet:hover .cdet__icon { background: var(--g-pale); border-color: rgba(60,181,58,.3); color: var(--g); }
.cdet div { display: flex; flex-direction: column; gap: 2px; }
.cdet strong { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); }
.cdet span   { font-size: 14px; }

.contact__product {
  width: 220px; border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03);
  margin-top: 8px;
}
.contact__product img { width: 100%; object-fit: contain; padding: 8px; }

/* Form */
.contact__form-wrap { padding: 80px 56px; display: flex; align-items: center; }
.cform { width: 100%; display: flex; flex-direction: column; gap: 18px; }
.cform__title {
  font-family: var(--ff-d); font-size: 32px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 4px;
}
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform__group { display: flex; flex-direction: column; gap: 7px; }
.cform__group label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.45); letter-spacing: .3px;
}
.cform__group input,
.cform__group textarea {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px; color: var(--white);
  font-family: var(--ff-b); font-size: 15px; padding: 13px 16px;
  transition: border-color .2s, background .2s; resize: vertical;
}
.cform__group input::placeholder,
.cform__group textarea::placeholder { color: rgba(255,255,255,.22); }
.cform__group input:focus,
.cform__group textarea:focus {
  outline: none; border-color: var(--g);
  background: rgba(60,181,58,.06);
  box-shadow: 0 0 0 3px rgba(60,181,58,.12);
}
.cform__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--g); color: var(--white);
  padding: 15px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 600;
  box-shadow: 0 4px 20px var(--g-glow);
  transition: background .2s, transform .25s var(--ease), box-shadow .25s;
}
.cform__btn:hover { background: var(--g-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(60,181,58,.35); }
.cform__note { font-size: 13px; color: rgba(255,255,255,.25); text-align: center; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: #090f09; padding: 64px 0 32px; }
.footer__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px;
}
.footer__logo { margin-bottom: 18px; }
.footer__logo .logo__name { color: var(--white); }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer__tagline { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--g); margin-top: 14px; opacity: .7; text-transform: uppercase; }

.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col strong { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 4px; }
.footer__col a    { font-size: 14px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer__col a:hover { color: var(--g); }
.footer__col span { font-size: 14px; color: rgba(255,255,255,.2); }

.footer__bottom {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.2);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1200px) {
  .hero__dark { padding: 100px 40px 60px; }
  .hero__light { padding: 100px 48px 60px; }
  .hero__scene { width: min(380px, 88%); }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero { flex-direction: column; }
  .hero__dark { flex: 0; padding: 100px 40px 60px; min-height: 52vh; }
  .hero__divider { flex: 0 0 4px; }
  .hero__light { padding: 48px 40px 64px; }
  .hero__scene { width: min(320px, 80%); }
  .about__inner { grid-template-columns: 1fr; gap: 52px; }
  .about__grid { height: 300px; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__info { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 60px 40px; }
  .contact__form-wrap { padding: 60px 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__dark { padding: 90px 24px 48px; }
  .hero__light { padding: 40px 24px 56px; }
  .hero__scene { width: min(260px, 80%); }
  .hero__brand { font-size: clamp(52px, 12vw, 80px); }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hstat { padding: 0; }
  .hstat__sep { display: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; border-radius: var(--r); }
  .regen__steps::before { display: none; }
  .rstep { flex-direction: column; gap: 16px; padding: 28px 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .footer__bottom { padding: 0 24px; flex-direction: column; text-align: center; }
  .about__inner { padding: 0 24px; }
  .products__inner, .why__inner, .regen__inner, .brands__inner { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }
  .nav__drawer { padding: 16px 24px; }
  .green-band__inner { padding: 0 24px; }
  .cform__row { grid-template-columns: 1fr; }
  .contact__info, .contact__form-wrap { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .pgrid { grid-template-columns: 1fr; }
  .products__head { flex-direction: column; align-items: flex-start; }
  .about__grid { grid-template-rows: 200px 160px; }
  .hero__scene { width: min(220px, 85%); }
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-r {
  opacity: 0; transform: translateX(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-r.in { opacity: 1; transform: none; }
