:root {
  --green: #2E8B3E;
  --green-dark: #1E6B2E;
  --green-light: #E8F5E9;
  --yellow: #FFC107;
  --yellow-light: #FFF8E1;
  --bg: #FAFAF7;
  --text: #1A1A1A;
  --text-muted: #666;
  --border: #E0E0D8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46,139,62,0.3);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,139,62,0.4);
}
.btn--nav {
  background: var(--yellow);
  color: #1A1A1A;
  font-weight: 800;
  padding: 10px 24px;
  font-size: 0.9rem;
}
.btn--nav:hover { background: #FFB300; }
.btn--lg { font-size: 1.15rem; padding: 18px 42px; }
.btn--full { width: 100%; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img { width: 36px; height: 36px; object-fit: contain; }
.nav__logo span { font-weight: 800; font-size: 1.15rem; color: var(--green); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--green); background: var(--green-light); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.72) 0%, rgba(10,40,10,0.45) 60%, rgba(0,0,0,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 660px;
}
.hero__badge {
  display: inline-block;
  background: var(--yellow);
  color: #1A1A1A;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero__meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
}
.hero__meta svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero__note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.hero__element-tag {
  display: inline-block;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero__slogan {
  font-size: 1.4rem;
  color: var(--yellow);
  font-weight: 800;
  font-style: italic;
  margin-bottom: 16px;
  margin-top: -8px;
}

/* ─── LABELS ─── */
.label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.label--center { display: block; text-align: center; }

/* ─── SECTIONS ─── */
section { padding: 96px 0; }
h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
p { color: var(--text-muted); }
.text-center { text-align: center; }

/* ─── ABOUT ─── */
.about { background: #fff; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__text p { margin-bottom: 16px; font-size: 1.05rem; }
.about__stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  min-width: 80px;
}
.stat strong { font-size: 1.6rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat span { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.about__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ─── SCHEDULE ─── */
.schedule { background: var(--bg); }
.schedule h2 { margin-bottom: 56px; }

.timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline__item {
  display: grid;
  grid-template-columns: 72px 24px 1fr;
  align-items: flex-start;
  gap: 0 16px;
  padding-bottom: 32px;
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__time {
  text-align: right;
  font-weight: 800;
  color: var(--green);
  font-size: 0.95rem;
  padding-top: 2px;
  white-space: nowrap;
}
.timeline__dot {
  position: relative;
  display: flex;
  justify-content: center;
}
.timeline__dot::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}
.timeline__dot::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  bottom: -32px;
  background: var(--green-light);
}
.timeline__item:last-child .timeline__dot::after { display: none; }
.timeline__body { padding-top: 0; padding-bottom: 0; }
.timeline__body h4 { color: var(--text); margin-bottom: 4px; }
.timeline__body p { font-size: 0.92rem; }

/* ─── ACTIVITIES ─── */
.activities { background: #fff; }
.activities h2 { margin-bottom: 48px; }
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.activity-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.activity-card--big {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: unset;
}
.activity-card--wide {
  grid-column: 2 / 4;
  aspect-ratio: unset;
}
.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.activity-card:hover img { transform: scale(1.04); }
.activity-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ─── GETS ─── */
.gets { background: var(--green-light); }
.gets h2 { margin-bottom: 48px; }
.gets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.get-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.get-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.get-item__icon { font-size: 2.2rem; margin-bottom: 16px; }
.get-item h4 { color: var(--text); margin-bottom: 8px; }

/* ─── PARENTS ─── */
.parents { background: #fff; }
.parents__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.parents__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.parents__text h2 { margin-bottom: 24px; }
.parents__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.parents__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check {
  width: 24px;
  height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.parents__list div { font-size: 0.95rem; color: var(--text-muted); }
.parents__list strong { color: var(--text); }

.parents__phone { color: var(--green); font-weight: 700; text-decoration: underline; }
.parents__phone:hover { color: var(--green-dark); }

.donation-box {
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 24px;
}
.donation-box__title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.donation-box p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ─── FORM ─── */
.form-section { background: var(--bg); }
.form-section__sub {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.form {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form__group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.form__group input,
.form__group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form__group input:focus,
.form__group textarea:focus { border-color: var(--green); }
.form__group input.error { border-color: #e53935; }

.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.form__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.form__consent label {
  font-size: 0.84rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form__consent a { color: var(--green); text-decoration: underline; }

.form__success { display: none; max-width: 680px; margin: 0 auto; }
.success-box {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 60px 40px;
  box-shadow: var(--shadow);
}
.success-box__icon { font-size: 3rem; margin-bottom: 16px; }
.success-box h3 { font-size: 1.6rem; color: var(--green); margin-bottom: 8px; }
.success-box p { color: var(--text-muted); }

/* ─── FOOTER ─── */
.footer { background: #1A2E1A; color: rgba(255,255,255,0.8); }
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
  padding: 56px 24px 48px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand img { width: 44px; height: 44px; object-fit: contain; }
.footer__brand strong { display: block; color: #fff; font-size: 1.1rem; }
.footer__brand p { font-size: 0.82rem; margin: 0; }
.footer__info p { font-size: 0.88rem; line-height: 1.8; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ─── ACCENT ─── */
.accent { color: var(--green); }

/* ─── ABOUT QUOTE ─── */
.about__quote {
  margin: 20px 0 24px;
  padding: 16px 20px;
  border-left: 4px solid var(--green);
  background: var(--green-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about__quote p { font-style: italic; font-size: 1rem; color: var(--text); font-weight: 600; margin: 0; }
.about__quote span { font-size: 0.8rem; color: var(--text-muted); }

.about__img { position: relative; }
.about__img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(46,139,62,0.92);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ─── SCHEDULE SUB ─── */
.schedule__sub { color: var(--text-muted); margin-bottom: 48px; }

/* ─── PROJECT CARDS ─── */
.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.project-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.project-card:hover { border-color: var(--green); transform: translateY(-3px); }
.project-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.project-card h4 { color: var(--text); margin-bottom: 8px; }
.project-card p { font-size: 0.88rem; }
.project-card__days {
  display: inline-block;
  margin-top: 12px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ─── ECOFISHKI BANNER ─── */
.ecofishki-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.ecofishki-banner__icon { font-size: 2.4rem; flex-shrink: 0; }
.ecofishki-banner strong { display: block; font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.ecofishki-banner p { font-size: 0.9rem; margin: 0; }

/* ─── FLOWS ─── */
.flows { background: #0E1E0E; }
.flows .label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.flows h2 { color: #fff; }
.flows__sub { color: rgba(255,255,255,0.65); margin-bottom: 56px; line-height: 1.7; }
.flows__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.flow-card {
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.flow-card--active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 32px rgba(46,139,62,0.5);
}
.flow-card--active h3 { color: #fff; }
.flow-card--active .flow-card__slogan { color: rgba(255,255,255,0.85); }
.flow-card--active .flow-card__desc { color: rgba(255,255,255,0.75); }
.flow-card--active .flow-card__dates { color: var(--yellow); font-weight: 800; }
.flow-card--soon {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.flow-card--soon h3 { color: rgba(255,255,255,0.5); }
.flow-card--soon .flow-card__slogan { color: rgba(255,255,255,0.35); }
.flow-card--soon .flow-card__desc { color: rgba(255,255,255,0.3); }
.flow-card--soon .flow-card__dates { color: rgba(255,255,255,0.4); }
.flow-card--soon .flow-card__element { opacity: 0.45; }
.flow-card--next {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,200,60,0.25);
}
.flow-card--next h3 { color: rgba(255,255,255,0.9); }
.flow-card--next .flow-card__slogan { color: rgba(255,255,255,0.65); }
.flow-card--next .flow-card__desc { color: rgba(255,255,255,0.55); }
.flow-card--next .flow-card__dates { color: rgba(255,200,60,0.85); font-weight: 700; }
.flow-card__element { font-size: 2rem; }
.flow-card__num { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.flow-card--soon .flow-card__num,
.flow-card--next .flow-card__num { color: rgba(255,255,255,0.65); opacity: 1; }
.flow-card__name { font-size: 1.3rem; font-weight: 900; letter-spacing: 0.04em; margin: 4px 0; }
.flow-card__dates { font-size: 0.82rem; font-weight: 700; }
.flow-card__slogan { font-size: 0.85rem; font-style: italic; }
.flow-card__desc { font-size: 0.78rem; line-height: 1.5; margin-top: 4px; flex: 1; }
.flow-card__btn { margin-top: 12px; background: #fff; color: var(--green); font-size: 0.88rem; padding: 10px 20px; }
.flow-card__btn:hover { background: var(--yellow); color: #1A1A1A; }
.flow-card__coming {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-align: center;
}

/* ─── DISCOUNT ─── */
.discount { background: #fff; }
.discount__sub { color: var(--text-muted); margin-bottom: 48px; }
.discount__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.discount-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition);
}
.discount-card:hover { border-color: var(--green); }
.discount-card__badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(46,139,62,0.3);
}
.discount-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.discount-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.discount-card p { font-size: 0.92rem; margin-bottom: 16px; }
.discount-card__code {
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.discount-card__code strong { color: var(--green); font-size: 1rem; letter-spacing: 0.05em; }
.discount-card__note { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ─── QUIZ ─── */
.quiz {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 32px;
}
.quiz__inner { max-width: 640px; margin: 0 auto; }
.quiz__progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 32px;
}
.quiz__progress-bar {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
  transition: width 0.4s ease;
  width: 0%;
}
.quiz__question { margin-bottom: 12px; }
.quiz__question h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--text); }
.quiz__options { display: flex; flex-direction: column; gap: 10px; }
.quiz__option {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  text-align: left;
  background: #fff;
  transition: all var(--transition);
  font-weight: 600;
}
.quiz__option:hover { border-color: var(--green); background: var(--green-light); }
.quiz__option.correct { border-color: var(--green); background: var(--green-light); color: var(--green); }
.quiz__option.wrong { border-color: #e53935; background: #ffebee; color: #c62828; }
.quiz__result { text-align: center; padding: 24px 0; }
.quiz__result h3 { font-size: 1.4rem; margin-bottom: 8px; }
.quiz__result .quiz__code {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

/* ─── PRICING / DONATION ─── */
.pricing { background: var(--bg); padding: 80px 0; }
.pricing__sub { color: #666; max-width: 560px; margin: 12px auto 40px; }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pricing__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 2px solid var(--green);
}
.pricing__amount { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; margin-bottom: 6px; }
.pricing__rub { font-size: 2.6rem; font-weight: 900; color: var(--green); letter-spacing: -0.02em; line-height: 1; }
.pricing__per { font-size: 0.9rem; color: #666; }
.pricing__equiv { font-size: 0.8rem; color: #aaa; margin-bottom: 20px; }
.pricing__includes { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pricing__includes li { display: flex; gap: 10px; font-size: 0.9rem; color: #333; }
.pricing__includes li span { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing__not-included { font-size: 0.8rem; color: #999; margin-bottom: 20px; padding: 10px 14px; background: #f8f8f8; border-radius: 8px; }
.pricing__discounts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.pricing__discount-row { font-size: 0.88rem; color: #444; display: flex; align-items: center; gap: 8px; }
.pricing__discount-row small { color: var(--green); font-weight: 700; }
.promo-chip { background: #e8f5e9; color: var(--green); font-size: 0.75rem; font-weight: 800; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.04em; }
.pricing__discount-note { font-size: 0.75rem; color: #bbb; margin-top: 8px; font-style: italic; }
.pricing__value h3 { font-size: 1.2rem; margin-bottom: 20px; color: #1a1a1a; }
.value-item { display: flex; gap: 16px; margin-bottom: 20px; }
.value-item__icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.value-item p { font-size: 0.85rem; color: #666; line-height: 1.5; margin: 0; }
.value-compare { background: #f0f7f0; border-left: 3px solid var(--green); padding: 14px 16px; border-radius: 0 8px 8px 0; margin: 20px 0 16px; }
.value-compare p { font-size: 0.88rem; color: #333; line-height: 1.6; margin: 0; }
.value-legal { font-size: 0.78rem; color: #aaa; line-height: 1.6; }

/* ─── HERO UPDATES ─── */
.hero__title-accent { color: var(--yellow); }
.hero__flow-name {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: -12px;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.btn--tg {
  background: #229ED9;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,158,217,0.35);
}
.btn--tg:hover {
  background: #1a8cbf;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,158,217,0.45);
}

/* ─── NAV PHONE ─── */
.nav__phone {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green);
  white-space: nowrap;
  transition: background var(--transition);
}
.nav__phone:hover { background: var(--green-light); }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item__icon { font-size: 2rem; flex-shrink: 0; }
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── FIVE ELEMENTS ─── */
.five-el {
  background: #080F08;
  padding: 96px 0;
}
.five-el__label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.five-el__h2 { color: #fff; margin-bottom: 12px; }
.five-el__sub { color: rgba(255,255,255,0.5); margin-bottom: 48px; font-size: 1rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── WU XING MAP ─── */
.wuxing {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.wuxing__map-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.wuxing__svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}
.wx-node {
  cursor: pointer;
  transition: all 0.2s;
}
.wx-node circle {
  transition: fill 0.2s, stroke-width 0.2s;
}
.wx-node:hover circle,
.wx-node.active circle {
  fill: rgba(255,255,255,0.08);
  stroke-width: 3.5;
}
.wx-node.active circle { stroke-width: 4; }
.wx-node:focus { outline: none; }
.wx-node:focus circle { stroke-width: 4; }

/* Pulse rings */
@keyframes wxPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  65%  { transform: scale(1.48); opacity: 0; }
  100% { transform: scale(1.48); opacity: 0; }
}
.wx-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: wxPulse 2.8s ease-out infinite;
  pointer-events: none;
}
.wx-pulse-0 { animation-delay: 0s; }
.wx-pulse-1 { animation-delay: 0.56s; }
.wx-pulse-2 { animation-delay: 1.12s; }
.wx-pulse-3 { animation-delay: 1.68s; }
.wx-pulse-4 { animation-delay: 2.24s; }
.wx-arr { transition: opacity 0.3s; }
.wx-arr--active.wx-gen {
  opacity: 1 !important;
  animation: wx-arr-pulse 1.1s ease-in-out infinite;
}
.wx-arr--active.wx-ctrl {
  opacity: 0.75 !important;
  animation: wx-arr-pulse 1.6s ease-in-out infinite;
}
.wx-arr--dim { opacity: 0.07 !important; }
@keyframes wx-arr-pulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}

.wuxing__legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.wuxing__legend-item {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.wuxing__legend-gen { color: rgba(255,255,255,0.5); }

.wuxing__info {
  animation: fadeIn 0.3s ease;
}
.wuxing__info-inner {
  animation: fadeIn 0.25s ease;
}
.wuxing__el-emoji { font-size: 3.5rem; margin-bottom: 12px; }
.wuxing__el-name {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.wuxing__el-hint {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.65;
}
.wuxing__philosophy {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 24px;
}
.wuxing__flow-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wuxing__flow-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.wuxing__flow-motto {
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.wuxing__flow-dates {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 20px;
}
.wuxing__acts-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.wuxing__acts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.wuxing__acts li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.wuxing__acts li::before {
  content: '✦';
  color: var(--yellow);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 4px;
}
.wuxing__cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition);
}
.wuxing__cta--active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46,139,62,0.4);
}
.wuxing__cta--active:hover { background: var(--green-dark); transform: translateY(-2px); }
.wuxing__cta--soon {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: default;
}
.wuxing__connections {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.wuxing__conn-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .wuxing { grid-template-columns: 1fr; gap: 32px; }
  .wuxing__map-wrap { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .wuxing__map-wrap { max-width: 280px; }
}

/* ─── FORM TG BANNER ─── */
.form-tg-banner {
  max-width: 680px;
  margin: 0 auto 12px;
  background: #E8F4FC;
  border: 2px solid #229ED9;
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-tg-banner__icon {
  width: 48px;
  height: 48px;
  background: #229ED9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.form-tg-banner strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 2px; }
.form-tg-banner p { font-size: 0.85rem; margin: 0; color: var(--text-muted); }
.form-tg-banner__text { flex: 1; }
.form-divider {
  max-width: 680px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── FOOTER SOCIALS ─── */
.footer__phone { margin-top: 8px; }
.footer__phone a { color: rgba(255,255,255,0.7); font-weight: 600; font-size: 0.9rem; transition: color var(--transition); }
.footer__phone a:hover { color: #fff; }
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-link--tg { background: rgba(34,158,217,0.2); color: #4CC9F0; }
.social-link--tg:hover { background: #229ED9; color: #fff; }
.social-link--vk { background: rgba(0,119,255,0.15); color: #5E9CF3; }
.social-link--vk:hover { background: #0077FF; color: #fff; }
.social-link--max { background: rgba(85,51,238,0.15); color: #a07cf5; }
.social-link--max:hover { background: #5533ee; color: #fff; }
.footer__brand img { opacity: 0.9; }

/* ─── APPS TABLE (ecoclub dashboard reuse) ─── */
.apps-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-top: 16px; }
.apps-table th { text-align: left; padding: 8px 12px; background: #f5f5f5; color: #555; font-weight: 700; border-bottom: 2px solid #e0e0e0; }
.apps-table td { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; color: #333; vertical-align: top; }
.apps-table tr:hover td { background: #fafafa; }
.app-badge { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; background: #e8f5e9; color: #2e7d32; }
.app-comment { font-size: 0.8rem; color: #999; font-style: italic; margin-top: 2px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .flows__grid { grid-template-columns: repeat(3, 1fr); }
  .flow-card--soon:nth-child(n+4) { display: none; }
  .flows__grid .flow-card:nth-child(4),
  .flows__grid .flow-card:nth-child(5) { display: flex; }
}

@media (max-width: 900px) {
  .about__grid,
  .parents__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__img { order: -1; }
  .about__img img,
  .parents__img img { height: 280px; }
  .gets__grid { grid-template-columns: repeat(2, 1fr); }
  .activities__grid { grid-template-columns: 1fr 1fr; }
  .activity-card--big { grid-column: 1 / 3; grid-row: auto; }
  .activity-card--wide { grid-column: 1 / 3; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { text-align: left; }
  .flows__grid { grid-template-columns: repeat(2, 1fr); }
  .flow-card--active { grid-column: 1 / 3; }
  .project-cards { grid-template-columns: repeat(2, 1fr); }
  .discount__cards { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .form-tg-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav__links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--bg); padding: 24px; border-bottom: 1px solid var(--border); gap: 8px; box-shadow: var(--shadow); z-index: 99; }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .hero__content { padding-top: 88px; }
  .hero__element-tag { display: none; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .gets__grid { grid-template-columns: 1fr; }
  .activities__grid { grid-template-columns: 1fr; }
  .activity-card--big { grid-column: auto; }
  .activity-card--wide { grid-column: auto; aspect-ratio: 4/3; }
  .activity-card { aspect-ratio: 4/3; }
  .about__stats { gap: 12px; }
  .timeline__item { grid-template-columns: 56px 20px 1fr; gap: 0 12px; }
  .flows__grid { grid-template-columns: 1fr; }
  .flow-card--active { grid-column: auto; }
  .project-cards { grid-template-columns: 1fr; }
  .ecofishki-banner { flex-direction: column; text-align: center; }
  .quiz { padding: 24px 16px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item:nth-child(odd) { border-right: none; }
}
