:root {
  --green-dark: #1a5c2a;
  --green: #2d8a3e;
  --green-light: #5db86a;
  --yellow: #f5c800;
  --yellow-light: #fff3b0;
  --yellow-warm: #e6a800;
  --cream: #f8f4ec;
  --black: #0e0e0e;
  --charcoal: #1c1c1c;
  --white: #ffffff;
  --pink-bg: #fff0f3;
  --mango: #ffb830;
  --max-w: 1180px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── NAV ── */
nav {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 94px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(245, 200, 0, 0.3));
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--yellow);
}
.nav-cta {
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  background: var(--yellow-warm);
  transform: scale(1.04);
}
.nav-cta::after {
  content: "→";
}
.nav-burger {
  display: none;
}

/* ── HERO ── */
.hero {
  background: var(--black);
  padding: 0 48px;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--green-dark);
  opacity: 0.12;
  right: -100px;
  top: -100px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 138, 62, 0.15);
  border: 1px solid rgba(45, 138, 62, 0.4);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.hero-title {
  font-family: "Paytone One", sans-serif;
  font-size: clamp(42px, 5.5vw, 68px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent {
  color: var(--yellow);
}
.hero-title .italic {
  font-family: "Playfair Display", serif;
  color: var(--yellow);
  font-style: italic;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--yellow-warm);
  transform: scale(1.03);
}
.btn-secondary {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-secondary:hover {
  color: var(--white);
}
.btn-secondary::after {
  content: "↗";
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat-num {
  font-family: "Paytone One", sans-serif;
  font-size: 32px;
  color: var(--yellow);
}
.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.9s 0.2s ease both;
  position: relative;
  min-height: 500px;
}
.hero-visual-bg {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--green-dark);
  opacity: 0.18;
  position: absolute;
}
.hero-photo {
  width: 340px;
  height: 440px;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-float-tag {
  position: absolute;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  z-index: 2;
}
.hero-float-tag.top {
  top: 60px;
  right: 20px;
}
.hero-float-tag.bot {
  bottom: 80px;
  left: 10px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── SECTION HEADER ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: "Paytone One", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-title .italic {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--green);
}
.section-sub {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  max-width: 480px;
}

/* ── PRODUCTS ── */
.products-section {
  background: var(--white);
  padding: 80px 48px;
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.filter-tabs {
  display: flex;
  gap: 8px;
}
.filter-tab {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid #e0e0e0;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  background: var(--white);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.prod-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}
.prod-card:hover .prod-img img {
  transform: scale(1.07);
}
.prod-badge-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.prod-body {
  padding: 16px 18px 20px;
}
.prod-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}
.prod-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 12px;
}
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}
.prod-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.15s;
}
.prod-btn:hover {
  background: var(--green-dark);
  transform: scale(1.12);
}

/* ── BENEFITS ── */
.benefits-section {
  background: var(--cream);
  padding: 80px 48px;
  text-align: center;
}
.benefits-grid {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  cursor: default;
  transition: transform 0.2s;
}
.benefit-item:last-child {
  border-right: none;
}
.benefit-item:hover {
  transform: translateY(-4px);
}
.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg {
  width: 36px;
  height: 36px;
}
.benefit-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

/* ── SPLIT SECTION ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-visual {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
}
.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 60%,
      rgba(93, 184, 106, 0.18) 0%,
      transparent 65%
    ),
    radial-gradient(
      circle at 75% 20%,
      rgba(245, 200, 0, 0.08) 0%,
      transparent 50%
    );
}
.split-visual-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 4px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 3/4;
}
.split-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.split-section:hover .split-visual-card img {
  transform: scale(1.04);
}
.split-visual-badge {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 24px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.split-visual-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.split-visual-dot.a {
  width: 220px;
  height: 220px;
  bottom: -60px;
  right: -60px;
}
.split-visual-dot.b {
  width: 120px;
  height: 120px;
  top: 20px;
  left: -30px;
}
.split-content {
  background: var(--white);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checklist {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg {
  width: 14px;
  height: 14px;
}

/* ── REVENDEURS ── */
.packs-section {
  background: #0d1710;
  padding: 96px 48px;
}
.packs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.packs-header .section-eyebrow {
  color: var(--green-light);
  opacity: 0.8;
}
.packs-header .section-title {
  color: var(--white);
}
.packs-header .section-title .italic {
  color: var(--yellow);
}
.packs-header .section-sub {
  color: rgba(255, 255, 255, 0.45);
  max-width: 360px;
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.pack-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 22px;
  transition:
    background 0.25s,
    transform 0.25s,
    border-color 0.25s;
  position: relative;
  cursor: pointer;
}
.pack-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-5px);
}
.pack-card.featured {
  background: var(--green-dark);
  border-color: rgba(93, 184, 106, 0.35);
  box-shadow:
    0 8px 32px rgba(26, 92, 42, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.pack-card.featured:hover {
  background: #226634;
  border-color: rgba(93, 184, 106, 0.5);
}
.pack-card.featured .pack-name {
  color: rgba(255, 255, 255, 0.5);
}
.pack-card.featured .pack-price {
  color: var(--yellow);
}
.pack-card.featured .pack-detail {
  color: rgba(255, 255, 255, 0.6);
}
.pack-card.featured .pack-benef {
  color: var(--green-light);
  border-color: rgba(255, 255, 255, 0.12);
}
.pack-pop-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pack-name {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}
.pack-price {
  font-family: "Paytone One", sans-serif;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pack-detail {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  margin-bottom: 16px;
}
.pack-benef {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-light);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 14px;
  letter-spacing: 0.01em;
}
.packs-note {
  text-align: center;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

/* ── SOCIAL ── */
.social-section {
  background: var(--cream);
  padding: 80px 48px;
}
.social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.social-handle {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.social-handle::before {
  content: "@";
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.social-tile {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.social-tile:hover .social-overlay {
  opacity: 1;
}
.social-inner {
  width: 100%;
  height: 100%;
  display: block;
}
.social-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.social-tile:hover .social-inner img {
  transform: scale(1.08);
}
.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.social-overlay span {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--pink-bg);
  padding: 80px 48px;
}
.testi-section .section-title .italic {
  color: #e85d7e;
}
.testi-section .section-eyebrow {
  color: #e85d7e;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1.5px solid #fde0e8;
  transition: transform 0.2s;
}
.testi-card:hover {
  transform: translateY(-4px);
}
.testi-stars {
  color: var(--yellow-warm);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}
.testi-text {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 700;
}
.testi-role {
  font-size: 11px;
  color: #aaa;
}
.testi-rating {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--yellow);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-banner-title {
  font-family: "Paytone One", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--green-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-banner-sub {
  font-size: 15px;
  color: rgba(26, 92, 42, 0.7);
  margin-top: 10px;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-dark:hover {
  background: #333;
  transform: scale(1.03);
}
.cta-phone {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
}
.cta-phone-label {
  font-size: 11px;
  color: rgba(26, 92, 42, 0.6);
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 56px 48px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  font-family: "Paytone One", sans-serif;
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-social-btn:hover {
  background: var(--yellow);
  color: var(--green-dark);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-contact-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.footer-contact-info strong {
  color: var(--yellow);
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 14px;
  transition: background 0.2s;
}
.footer-wa-btn:hover {
  background: var(--green-dark);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}
.footer-copy span {
  color: var(--yellow);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* Affiliation / filiale */
.footer-affiliation {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}
.affiliate-pill {
  display: inline-block;
  background: rgba(45, 138, 62, 0.06);
  color: var(--green-dark);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  margin-top: 12px;
  font-weight: 700;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE HERO (sous-pages) ── */
.page-hero {
  background: var(--black);
  padding: 72px 48px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(26, 92, 42, 0.25) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(245, 200, 0, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-light);
  margin-bottom: 14px;
  animation: fadeUp 0.5s ease both;
}
.page-hero-title {
  font-family: "Paytone One", sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.page-hero-title .accent {
  color: var(--yellow);
}
.page-hero-title .italic {
  font-family: "Playfair Display", serif;
  color: var(--yellow);
  font-style: italic;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
  animation: fadeUp 0.6s 0.2s ease both;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
}
.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover {
  color: var(--yellow);
}
.page-breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

/* ── LEGAL LAYOUT ── */
.legal-page {
  background: var(--white);
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  padding: 72px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.legal-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}
.legal-sidebar-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
  margin-bottom: 14px;
}
.legal-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-nav a {
  display: block;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  border-left: 2px solid transparent;
}
.legal-nav a:hover,
.legal-nav a.active {
  background: var(--cream);
  color: var(--green-dark);
  border-left-color: var(--green);
}
.legal-main {
  min-width: 0;
}
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #f0f0f0;
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2 {
  font-family: "Paytone One", sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 16px;
}
.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin: 20px 0 8px;
}
.legal-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.legal-section ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.legal-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.legal-section a {
  color: var(--green);
  text-decoration: none;
}
.legal-section a:hover {
  text-decoration: underline;
}
.legal-date {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(45, 138, 62, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── ABOUT PAGE ── */
.about-story {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-story-img {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: luminosity;
  opacity: 0.7;
}
.about-story-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 92, 42, 0.6) 0%,
    rgba(45, 138, 62, 0.3) 100%
  );
}
.about-story-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: var(--yellow);
  color: var(--green-dark);
  font-family: "Paytone One", sans-serif;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
}
.about-story-content {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-values {
  background: var(--cream);
  padding: 80px 48px;
  text-align: center;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid #f0f0f0;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
}
.about-value-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}
.about-value-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
}
.about-team {
  background: var(--white);
  padding: 80px 48px;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-team-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1.5px solid #f0f0f0;
  transition: transform 0.2s;
}
.about-team-card:hover {
  transform: translateY(-4px);
}
.about-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: "Paytone One", sans-serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.about-team-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}
.about-team-role {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}
.about-team-bio {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
  line-height: 1.6;
}
.about-numbers {
  background: var(--black);
  padding: 80px 48px;
  text-align: center;
}
.about-numbers .section-title {
  color: var(--white);
}
.about-numbers .section-title .italic {
  color: var(--yellow);
}
.about-numbers .section-eyebrow {
  color: var(--green-light);
}
.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about-number-item {
}
.about-number-val {
  font-family: "Paytone One", sans-serif;
  font-size: 48px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.about-number-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE sous-pages ── */
@media (max-width: 1024px) {
  .legal-layout {
    padding: 56px 32px;
    gap: 40px;
  }
  .about-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 56px 20px 48px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 40px;
  }
  .legal-sidebar {
    position: static;
  }
  .about-story {
    grid-template-columns: 1fr;
  }
  .about-story-img {
    min-height: 300px;
  }
  .about-story-content {
    padding: 40px 24px;
  }
  .about-values {
    padding: 60px 20px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-team {
    padding: 60px 20px;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-numbers {
    padding: 60px 20px;
  }
  .about-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: 48px 16px 40px;
  }
  .legal-layout {
    padding: 40px 16px;
  }
  .about-numbers-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-number-val {
    font-size: 40px;
  }
}

/* ═══════════════════════════════════════
     RESPONSIVE — Tablet (≤ 1024px)
  ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Nav */
  nav {
    padding: 0 32px;
  }

  /* Hero */
  .hero {
    padding: 0 32px;
  }

  /* Sections padding */
  .products-section,
  .benefits-section,
  .social-section,
  .testi-section,
  .packs-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  .cta-banner {
    padding: 56px 32px;
  }
  footer {
    padding: 48px 32px 28px;
  }

  /* Products — 2 colonnes */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Benefits — flex wrap */
  .benefits-grid {
    gap: 24px;
  }
  .benefit-item {
    padding: 0 20px;
  }

  /* Social — 3 colonnes */
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Testimonials — 1 colonne */
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════
     RESPONSIVE — Mobile large (≤ 768px)
  ═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── NAV ── */
  nav {
    padding: 0 20px;
    height: 64px;
  }
  .nav-links {
    display: none;
  }
  .nav-logo img {
    height: 48px;
  }

  /* Hamburger button */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
  }
  .nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition:
      transform 0.25s,
      opacity 0.25s;
    transform-origin: center;
  }
  .nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-burger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile menu overlay */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 24px 20px 32px;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 99;
    animation: slideDown 0.25s ease;
  }
  .nav-links.mobile-open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links.mobile-open a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── HERO ── */
  .hero {
    padding: 60px 20px 48px;
  }
  .container[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column;
    min-height: auto !important;
    gap: 40px;
  }
  .hero-visual {
    min-height: auto;
    width: 100%;
    justify-content: center;
  }
  .hero-photo {
    width: 280px;
    height: 360px;
  }
  .hero-float-tag.top {
    top: 20px;
    right: 0;
  }
  .hero-float-tag.bot {
    bottom: 30px;
    left: 0;
  }
  .hero-stats {
    gap: 24px;
  }

  /* ── SECTIONS padding ── */
  .products-section,
  .benefits-section,
  .social-section,
  .testi-section {
    padding: 60px 20px;
  }
  .packs-section {
    padding: 60px 20px;
  }
  .cta-banner {
    padding: 48px 20px;
  }
  footer {
    padding: 48px 20px 24px;
  }

  /* ── PRODUCTS ── */
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* ── BENEFITS ── */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
  }
  .benefit-item {
    padding: 0;
    border-right: none;
  }
  .benefit-icon {
    width: 64px;
    height: 64px;
  }
  .benefit-icon img,
  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  /* ── SPLIT ── */
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-visual {
    min-height: 340px;
    padding: 36px 20px;
  }
  .split-visual-card {
    max-width: 240px;
  }
  .split-content {
    padding: 40px 24px;
  }

  /* ── SOCIAL ── */
  .social-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* ── TESTIMONIALS ── */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* ── CTA BANNER ── */
  .cta-banner > .container,
  .container[style*="grid-template-columns:1fr auto"] {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 28px !important;
  }
  .cta-banner-actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════
     RESPONSIVE — Mobile (≤ 480px)
  ═══════════════════════════════════════ */
@media (max-width: 480px) {
  /* ── NAV ── */
  nav {
    padding: 0 16px;
  }
  .nav-cta {
    padding: 8px 16px;
    font-size: 12px;
  }
  .nav-logo img {
    height: 40px;
  }
  .nav-burger {
    width: 32px;
    height: 32px;
  }

  /* ── HERO ── */
  .hero {
    padding: 48px 16px 40px;
  }
  .hero-photo {
    width: 240px;
    height: 310px;
  }
  .hero-visual-bg {
    width: 280px;
    height: 280px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    margin-top: 32px;
  }
  .stat-num {
    font-size: 26px;
  }

  /* ── SECTIONS ── */
  .products-section,
  .benefits-section,
  .social-section,
  .testi-section,
  .packs-section {
    padding: 48px 16px;
  }
  .cta-banner {
    padding: 40px 16px;
  }
  footer {
    padding: 40px 16px 20px;
  }

  /* ── PRODUCTS ── */
  .products-grid {
    grid-template-columns: 1fr;
  }
  .prod-img {
    height: 220px;
  }

  /* ── BENEFITS ── */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* ── SPLIT ── */
  .split-content {
    padding: 32px 16px;
  }
  .split-visual {
    min-height: 280px;
  }
  .split-visual-card {
    max-width: 200px;
  }

  /* ── SOCIAL ── */
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  /* ── CTA BANNER ── */
  .cta-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-dark {
    justify-content: center;
  }

  /* ── FOOTER ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand-desc {
    max-width: 100%;
  }
}
