/* ---------- Tokens ---------- */
:root {
  --bg: #0c0d0a;
  --bg-alt: #111309;
  --surface: #17190f;
  --border: #262a1a;
  --text: #f4f3ee;
  --text-muted: #a8a89c;

  --green: #4CAF23;
  --green-light: #8BD957;
  --green-dark: #1f5c0d;
  --gold: #D9A441;
  --gold-light: #F0CA7A;
  --gold-dark: #9c7423;

  --radius: 14px;
  --container: 1180px;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Watermark ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  background-image: url('../assets/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(520px, 65vw);
  opacity: 0.045;
}

@media (max-width: 760px) {
  body::before { background-size: min(320px, 75vw); }
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p { margin: 0 0 16px; color: var(--text-muted); }

.text-green { color: var(--green-light); }
.text-gold { color: var(--gold); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow.center { text-align: center; }

.section-title { text-align: center; font-size: clamp(26px, 4vw, 40px); }
.section-title.center { text-align: center; }
.section-subtitle {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 17px;
}
.section-subtitle.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #0c0d0a;
  box-shadow: 0 8px 24px rgba(76, 175, 35, 0.35);
}
.btn--primary:hover { box-shadow: 0 12px 30px rgba(76, 175, 35, 0.5); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--outline {
  background: transparent;
  color: var(--green-light);
  border-color: var(--green-dark);
  width: 100%;
}
.btn--outline:hover { background: rgba(76,175,35,0.1); }

.btn--full { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 13, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand__logo { height: 52px; width: auto; border-radius: 8px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.nav a:hover { color: var(--green-light); }
.nav__cta {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #0c0d0a !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,175,35,0.25), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero__title { font-size: clamp(34px, 6vw, 58px); }
.hero__subtitle { font-size: 18px; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 56px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  max-width: 760px;
}
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
}
.stat__label { font-size: 13px; color: var(--text-muted); }

/* ---------- Services strip ---------- */
.services { padding: 40px 0; background: var(--bg-alt); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.service-card__icon {
  width: 40px; height: 40px;
  margin: 0 auto 14px;
  color: var(--green-light);
}
.service-card__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.service-card h3 { margin: 0 0 4px; font-size: 16px; }
.service-card p { margin: 0; font-size: 14px; color: var(--gold-light); font-weight: 600; }

/* ---------- About ---------- */
.about { padding: 100px 0; }
.about__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.photo-placeholder {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}
.photo-placeholder svg { width: 64px; height: 64px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.photo-placeholder span { font-size: 13px; }

.about__text h2 { font-size: clamp(24px, 3.2vw, 32px); }
.lead { font-size: 17px; }
.credentials { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.credentials li {
  padding-left: 24px;
  position: relative;
  color: var(--text);
  font-size: 15px;
}
.credentials li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}
.credentials strong { color: var(--gold-light); }

/* ---------- Pillars ---------- */
.pillars { padding: 100px 0; background: var(--bg-alt); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.pillar-card:hover { transform: translateY(-6px); border-color: var(--green-dark); }
.pillar-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid currentColor;
}
.pillar-card__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.icon-green { color: var(--green-light); }
.icon-gold { color: var(--gold); }
.pillar-card h3 { font-size: 20px; }
.pillar-card p { font-size: 15px; margin: 0; }

/* ---------- Audience ---------- */
.audience { padding: 100px 0; }
.audience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.audience h2 { font-size: clamp(24px, 3.2vw, 32px); }
.audience__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.audience__list li {
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  position: relative;
  padding-left: 44px;
}
.audience__list li::before {
  content: "✓";
  position: absolute;
  left: 16px; top: 15px;
  color: var(--green-light);
  font-weight: 700;
}

/* ---------- Steps ---------- */
.steps { padding: 100px 0; background: var(--bg-alt); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step-card__num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 18px; }
.step-card p { font-size: 15px; margin: 0; }

/* ---------- Results ---------- */
.results { padding: 100px 0; }
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.result-card__photo {
  display: flex;
  aspect-ratio: 3/4;
}
.ba-half {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: linear-gradient(160deg, #1c1f13, #14160d);
  overflow: hidden;
}
.ba-half--after { background: linear-gradient(160deg, #16220d, #101a08); color: var(--green-light); }
.ba-half img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-half span { position: relative; z-index: 1; }
.result-card__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.result-card__info strong { font-size: 15px; }
.result-card__info span { font-size: 13px; color: var(--text-muted); }
.result-card__kg {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--gold) !important;
  font-size: 18px !important;
  margin-top: 4px;
}
.results__note { text-align: center; font-size: 13px; font-style: italic; }

.quote {
  margin: 48px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--text);
  padding: 0;
  border: none;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 100px 0; background: var(--bg-alt); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card p { font-size: 15px; color: var(--text); font-style: italic; }
.testimonial-card strong { color: var(--gold-light); font-size: 14px; }

/* ---------- Pricing ---------- */
.pricing { padding: 100px 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  position: relative;
}
.price-card--highlight { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0c0d0a;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
}
.price-card h3 { font-size: 18px; }
.price-card__value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--green-light);
  margin-bottom: 20px;
}
.price-card__value span { font-size: 40px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; display: grid; gap: 10px; }
.price-card ul li {
  font-size: 14px; color: var(--text);
  padding-left: 22px; position: relative;
}
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green-light); }

/* ---------- CTA Final / Contact ---------- */
.cta-final { padding: 100px 0; background: var(--bg-alt); }
.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-final__text h2 { font-size: clamp(26px, 3.6vw, 38px); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  font-size: 13px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
}
.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.hidden-field { display: none; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__logo { height: 40px; border-radius: 6px; }
.footer__nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__nav a, .footer__social a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}
.footer__nav a:hover, .footer__social a:hover { color: var(--green-light); }
.footer__social { display: flex; gap: 16px; }
.footer__legal {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 8px 0 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid, .steps__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .about__inner, .audience__inner, .cta-final__inner { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .services__grid { grid-template-columns: 1fr 1fr; }
}
