/* ═══════════ RESET & VARIABLES ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #1a3c28;
  --green-800: #1e5631;
  --green-700: #276738;
  --green-600: #2d7a3e;
  --green-500: #38a154;
  --green-400: #5ec476;
  --green-300: #86d89b;
  --green-200: #b6eac5;
  --green-100: #e3f7ea;
  --green-50:  #f0faf3;

  --terra-600: #b5632e;
  --terra-500: #c4784a;
  --terra-400: #d49a6c;
  --terra-300: #e4bfa0;

  --gold-500: #d4a017;
  --gold-400: #e6b422;
  --gold-300: #f0d060;

  --cream: #faf7f0;
  --cream-dark: #f0ebe0;
  --sand: #e8e2d4;

  --dark: #1a1a1a;
  --dark-soft: #2a2a2a;
  --dark-muted: #555;
  --text: #333;
  --text-secondary: #666;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Comfortaa', 'Inter', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.header--scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease);
}
.logo:hover { transform: scale(1.03); }
.logo__icon { font-size: 1.6rem; }
.logo__accent { color: var(--green-600); }

.nav { display: flex; gap: 32px; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s ease;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-500);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--green-700); }
.nav__link:hover::after { width: 100%; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .header__burger { display: flex; }
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(250, 247, 240, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav.open { transform: translateY(0); }
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: #fff;
  box-shadow: 0 4px 16px rgba(45, 122, 62, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 122, 62, 0.4);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-300);
}
.btn--ghost:hover {
  background: var(--green-100);
  border-color: var(--green-400);
}
.btn--full { width: 100%; }

/* ═══════════ SECTION HEADERS ═══════════ */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: var(--green-200);
  background: rgba(255,255,255,0.15);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
.section-title--light { color: #fff; }
.text--accent { color: var(--green-600); }

.section-subtitle {
  margin-top: 12px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(170deg, var(--cream) 0%, var(--green-50) 40%, var(--cream) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__leaf {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.hero__leaf--1 {
  width: 400px; height: 400px;
  background: var(--green-500);
  top: -100px; right: -80px;
  animation: float 8s ease-in-out infinite;
}
.hero__leaf--2 {
  width: 300px; height: 300px;
  background: var(--terra-500);
  bottom: -60px; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero__leaf--3 {
  width: 200px; height: 200px;
  background: var(--gold-400);
  top: 30%; left: 10%;
  animation: float 12s ease-in-out infinite 2s;
}

.hero__bubble {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  opacity: 0.2;
}
.hero__bubble--1 { top: 20%; left: 15%; animation: rise 6s ease-in-out infinite; }
.hero__bubble--2 { top: 50%; right: 20%; animation: rise 8s ease-in-out infinite 1s; }
.hero__bubble--3 { bottom: 30%; left: 40%; animation: rise 7s ease-in-out infinite 3s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { opacity: 0.4; }
  100% { transform: translateY(-80px) scale(1.5); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 640px;
}

.hero__badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--green-200);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero__title--accent {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.hero__stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-600);
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Terrarium CSS art */
.hero__terrarium {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.terrarium {
  position: relative;
  width: 280px;
  height: 320px;
  animation: terrarium-bob 4s ease-in-out infinite;
}

@keyframes terrarium-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.terrarium__glass {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 240px;
  border: 3px solid rgba(45, 122, 62, 0.25);
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(180deg,
    rgba(182, 234, 197, 0.15) 0%,
    rgba(134, 216, 155, 0.1) 60%,
    rgba(228, 191, 160, 0.15) 60%,
    rgba(181, 99, 46, 0.12) 100%
  );
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.terrarium__soil {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, #8B6914 0%, #6B4F12 40%, #5C4010 100%);
  border-radius: 0 0 13px 13px;
}
.terrarium__soil::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, #a07820, #8B6914, #9a7418);
  border-radius: 4px;
}

.terrarium__plant {
  position: absolute;
  z-index: 2;
}
.terrarium__plant--1 {
  bottom: 38%;
  left: 30%;
  width: 4px;
  height: 50px;
  background: linear-gradient(to top, #4a8c2a, #6ab840);
  border-radius: 2px;
}
.terrarium__plant--1::before {
  content: '';
  position: absolute;
  top: -10px; left: -12px;
  width: 28px;
  height: 28px;
  background: #5ec476;
  border-radius: 50% 0 50% 50%;
  transform: rotate(-30deg);
}
.terrarium__plant--1::after {
  content: '';
  position: absolute;
  top: -6px; right: -16px;
  width: 24px;
  height: 24px;
  background: #72d88a;
  border-radius: 0 50% 50% 50%;
  transform: rotate(20deg);
}

.terrarium__plant--2 {
  bottom: 36%;
  right: 25%;
  width: 3px;
  height: 35px;
  background: linear-gradient(to top, #3a7a20, #52a830);
  border-radius: 2px;
}
.terrarium__plant--2::before {
  content: '';
  position: absolute;
  top: -8px; left: -10px;
  width: 22px;
  height: 18px;
  background: #4ea83a;
  border-radius: 50%;
}

.terrarium__moss {
  position: absolute;
  bottom: 37%;
  left: 10%;
  width: 30px;
  height: 14px;
  background: radial-gradient(ellipse, #7ed88e 0%, #52a848 100%);
  border-radius: 50%;
  opacity: 0.8;
}

.terrarium__bug {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
}
.terrarium__bug--1 {
  bottom: 42%;
  left: 50%;
  width: 10px;
  height: 8px;
  background: #4a3520;
  border-radius: 50% 50% 40% 40%;
  animation: bug-walk 6s ease-in-out infinite;
}
.terrarium__bug--1::before {
  content: '';
  position: absolute;
  top: -3px; left: 2px;
  width: 6px;
  height: 6px;
  background: #3a2a18;
  border-radius: 50%;
}
.terrarium__bug--2 {
  bottom: 44%;
  right: 30%;
  width: 8px;
  height: 6px;
  background: #666;
  border-radius: 50%;
  animation: bug-walk 8s ease-in-out infinite reverse;
}

@keyframes bug-walk {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(12px); }
  50% { transform: translateX(6px) translateY(-3px); }
  75% { transform: translateX(-4px); }
}

.terrarium__lid {
  position: absolute;
  bottom: 252px;
  left: 14px;
  right: 14px;
  height: 14px;
  background: linear-gradient(180deg, #4ea83a, #3a8a28);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}
.terrarium__lid::before {
  content: '';
  position: absolute;
  top: 3px; left: 15%;
  right: 15%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.terrarium__steam {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  z-index: 4;
}
.terrarium__steam--1 { top: 40%; left: 40%; animation: steam 3s ease-in-out infinite; }
.terrarium__steam--2 { top: 35%; left: 55%; animation: steam 4s ease-in-out infinite 1s; }
.terrarium__steam--3 { top: 38%; left: 65%; animation: steam 3.5s ease-in-out infinite 2s; }

@keyframes steam {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.3; }
  100% { transform: translateY(-30px) scale(2); opacity: 0; }
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 120px 0 100px;
  }
}

@media (max-width: 899px) {
  .hero__content { text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__terrarium { margin: 0 auto; }
  .terrarium { width: 200px; height: 230px; }
  .terrarium__glass { height: 170px; left: 14px; right: 14px; bottom: 16px; }
  .terrarium__lid { bottom: 180px; left: 10px; right: 10px; }
  .terrarium__plant--1 { height: 35px; }
  .terrarium__plant--2 { height: 25px; }
}

/* ═══════════ ABOUT ═══════════ */
.about {
  padding: 100px 0;
  background: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about__card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  border: 1px solid var(--sand);
}
.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about__card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.about__card-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ═══════════ WHATS INSIDE ═══════════ */
.inside {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--green-50) 100%);
}

.inside__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.box-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--sand);
}

.box-visual__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease);
}
.box-visual__item:hover { transform: scale(1.05); }
.box-visual__item:nth-child(5) { grid-column: 1 / -1; }

.box-visual__emoji {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.box-visual__item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

.inside__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inside__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  transition: background 0.25s ease;
}
.inside__item:hover { background: rgba(255,255,255,0.6); }

.inside__check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--green-500);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.inside__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.inside__item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .inside__layout {
    grid-template-columns: 1fr;
  }
}

/* ═══════════ FOR WHOM ═══════════ */
.forwhom {
  padding: 100px 0;
  background: #fff;
}

.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.forwhom__card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--green-50), var(--cream));
  border: 1px solid var(--green-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.forwhom__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.forwhom__card-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.forwhom__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.forwhom__card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════ KITS / PRODUCTS ═══════════ */
.kits {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--green-50) 100%);
}

.kits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.kit-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 2px solid var(--sand);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.kit-card--featured {
  border-color: var(--green-500);
  background: linear-gradient(160deg, #fff, var(--green-50));
}

.kit-card__badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--green-500);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.kit-card__badge--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}

.kit-card__header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand);
}

.kit-card__icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.kit-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.kit-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
.kit-card__price-old {
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}
.kit-card__price-current {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-600);
}

.kit-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.kit-card__features li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.kit-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}

.kit-card__animal {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding: 8px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

/* ═══════════ SUBSCRIPTION ═══════════ */
.subscription {
  padding: 100px 0;
}

.subscription__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: var(--radius-xl);
  padding: 60px;
  overflow: hidden;
  position: relative;
}
.subscription__inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.subscription__content { position: relative; z-index: 1; }

.subscription__text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.subscription__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
.subscription__price-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}
.subscription__price-period {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.subscription__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.subscription__features li {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
}
.subscription__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-300);
  font-weight: 700;
}

.subscription__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.sub-box {
  position: relative;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sub-box-pulse 3s ease-in-out infinite;
}

@keyframes sub-box-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.sub-box__item {
  position: absolute;
  font-size: 2.2rem;
  animation: sub-float 3s ease-in-out infinite;
}
.sub-box__item--1 { top: 10%; left: 10%; animation-delay: 0s; }
.sub-box__item--2 { top: 10%; right: 10%; animation-delay: 0.5s; }
.sub-box__item--3 { bottom: 30%; left: 10%; animation-delay: 1s; }
.sub-box__item--4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }

@keyframes sub-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sub-box__label {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .subscription__inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 40px;
  }
}

/* ═══════════ HOW IT WORKS ═══════════ */
.how {
  padding: 100px 0;
  background: #fff;
}

.how__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.how__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--sand);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.how__step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.how__step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.how__step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}
.how__step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.how__connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--green-300), var(--green-100));
  border-radius: 1px;
}

/* ═══════════ FAQ ═══════════ */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--green-50) 100%);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--sand);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq__item[open] {
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  list-style: none;
  transition: color 0.25s ease;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--green-600); }

.faq__icon {
  font-size: 1.4rem;
  color: var(--green-500);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }

.faq__answer {
  padding: 0 24px 18px;
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════ CONTACTS ═══════════ */
.contacts {
  padding: 100px 0;
  background: #fff;
}

.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contacts__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 16px 0 32px;
}

.contacts__channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts__channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--sand);
}
.contacts__channel-icon { font-size: 1.4rem; }
.contacts__channel strong {
  display: block;
  font-size: 0.85rem;
  color: var(--dark);
}
.contacts__channel-link {
  font-size: 0.82rem;
  color: var(--green-600);
  font-weight: 500;
}

.contacts__form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--sand);
}

.contacts__form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.contacts__form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 768px) {
  .contacts__inner {
    grid-template-columns: 1fr;
  }
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 60px 0 0;
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo--footer .logo__text { color: #fff; }
.logo--footer .logo__accent { color: var(--green-400); }

.footer__tagline {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s ease;
}
.footer__col a:hover { color: var(--green-400); }

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; }
  .footer__links { gap: 32px; }
}

/* ═══════════ TOAST ═══════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--dark);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transition: transform 0.4s var(--ease-back);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 480px) {
  .hero__stats { gap: 24px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .kits__grid { grid-template-columns: 1fr; }
  .kit-card { max-width: 400px; margin: 0 auto; width: 100%; }
}

/* ═══════════ LOGO SVG ═══════════ */
.logo__svg {
  height: 44px;
  width: auto;
  transition: transform 0.3s var(--ease);
}
.logo:hover .logo__svg { transform: scale(1.04); }

@media (max-width: 768px) {
  .logo__svg { height: 36px; }
}

/* ═══════════ WHO IS THIS FOR ═══════════ */
.whofor {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 50%, var(--green-50) 100%);
}

.whofor__audience {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.whofor__card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--sand);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.whofor__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.whofor__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px 0;
}

.whofor__card-emoji {
  font-size: 2.2rem;
  line-height: 1;
}

.whofor__card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.whofor__card-body {
  padding: 16px 28px 20px;
  flex: 1;
}

.whofor__card-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.whofor__card-body p:last-child { margin-bottom: 0; }
.whofor__card-body strong { color: var(--dark); }

.whofor__card-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-700);
}

.whofor__benefit-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ───── Summary block ───── */
.whofor__summary {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
}

.whofor__summary-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
  text-align: center;
}

.whofor__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.whofor__benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  transition: background 0.25s ease;
}
.whofor__benefit-item:hover { background: var(--green-50); }

.whofor__benefit-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}

.whofor__benefit-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.whofor__benefit-item p {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .whofor__audience {
    grid-template-columns: 1fr;
  }
  .whofor__benefits {
    grid-template-columns: 1fr;
  }
  .whofor__summary {
    padding: 32px 20px;
  }
}

/* ═══════════ WHY US ═══════════ */
.whyus {
  padding: 100px 0;
  background: #fff;
}

.whyus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.whyus__card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  border: 1px solid var(--sand);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.whyus__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}

.whyus__card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-100);
  line-height: 1;
  user-select: none;
}

.whyus__card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.whyus__card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.whyus__card-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.whyus__card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-100);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ───── Compare table ───── */
.whyus__compare {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  margin-bottom: 48px;
  border: 1px solid var(--sand);
}

.whyus__compare-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 28px;
}

.whyus__compare-table {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  background: #fff;
}

.whyus__compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.whyus__compare-row:not(:last-child) {
  border-bottom: 1px solid var(--sand);
}

.whyus__compare-row--header {
  background: var(--green-50);
}
.whyus__compare-row--header .whyus__compare-cell {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
}

.whyus__compare-cell {
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}
.whyus__compare-cell:first-child {
  font-weight: 600;
  color: var(--dark);
}

.whyus__compare-cell--us {
  color: var(--green-700) !important;
  font-weight: 600;
}
.whyus__compare-cell--them {
  color: var(--dark-muted) !important;
}

@media (max-width: 600px) {
  .whyus__compare-row {
    grid-template-columns: 1fr;
  }
  .whyus__compare-cell {
    padding: 10px 18px;
  }
  .whyus__compare-cell:first-child {
    background: var(--green-50);
    font-weight: 700;
  }
}

/* ───── Trust bar ───── */
.whyus__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.whyus__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.whyus__trust-icon {
  font-size: 1.2rem;
}

.whyus__trust-divider {
  width: 1px;
  height: 24px;
  background: var(--sand);
}

@media (max-width: 600px) {
  .whyus__trust { gap: 16px; }
  .whyus__trust-divider { display: none; }
  .whyus__trust-item { font-size: 0.8rem; }
}

@media (max-width: 768px) {
  .whyus__grid {
    grid-template-columns: 1fr;
  }
  .whyus__compare {
    padding: 28px 16px;
  }
}

/* ═══════════ SLOGAN ═══════════ */
.hero__slogan {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--green-600);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.logo__micro-slogan {
  display: none;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-left: 4px;
  opacity: 0.7;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .logo__micro-slogan {
    display: block;
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
  }
  .logo {
    position: relative;
  }
}

.footer__slogan {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-500);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
