/* ═══════════════════════════════════════════════════════════
   ЛЕНЕКС АГРО — style.css
   Accent: #4CAF50 (green) · Dark: #15181D · Font: Russo One + DejaVu
   ═══════════════════════════════════════════════════════════ */

:root {
  --brand-green:    #4CAF50;
  --brand-green-dk: #388E3C;
  --brand-green-lt: #81C784;
  --brand-dark:     #15181D;
  --brand-dark2:    #1E2229;
  --brand-mid:      #252B33;
  --brand-card:     #2A3040;
  --brand-border:   #323A45;
  --text-primary:   #FFFFFF;
  --text-muted:     #9AA5B4;
  --text-faint:     #5A6575;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 4px 24px rgba(0,0,0,0.35);
  --trans:     0.22s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DejaVu Sans', 'Arial', sans-serif;
  font-weight: 400;
  background: var(--brand-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Russo One', 'DejaVu Sans', sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #000000;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.header__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.header__logo {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.logo-svg { height: 32px; width: auto; }
.header__logo-sub {
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--brand-green);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0 0 0 2px;
  letter-spacing: 2px;
  line-height: 1;
}
.footer__brand-sub {
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: var(--brand-green);
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: inline-block;
}

.nav {
  display: flex; align-items: center; gap: 28px;
}
.nav__link {
  font-size: 14px; color: var(--text-muted);
  transition: color var(--trans);
}
.nav__link:hover { color: var(--text-primary); }
.nav__phone {
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--brand-green);
  transition: color var(--trans);
}
.nav__phone:hover { color: var(--brand-green-lt); }

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

@media (max-width: 768px) {
  .header__inner { padding: 0 20px; }
  .nav {
    display: none; flex-direction: column; align-items: flex-start;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--brand-dark2);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--brand-border);
  }
  .nav.open { display: flex; }
  .nav__phone { order: -1; font-size: 16px; }
  .burger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(76,175,80,0.08) 0%, transparent 70%),
    url('assets/images/pshenica.jpg') center/cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(21,24,29,0.97) 0%,
    rgba(21,24,29,0.92) 50%,
    rgba(21,24,29,0.7) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 680px;
}

.hero__geo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--brand-green-lt);
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero__label {
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title { margin-bottom: 24px; }
.hero__title-word {
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--brand-green);
  display: block;
}
.hero__title-main {
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--text-primary);
  display: block;
}
.hero__title-sub {
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: clamp(22px, 3.5vw, 38px);
  color: var(--text-muted);
  display: block;
}

.hero__desc {
  font-size: 16px; color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-top: 1px solid var(--brand-border);
  padding-top: 32px;
}
.hero__stat {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 20px;
}
.hero__stat:not(:last-child) { border-right: 1px solid var(--brand-border); }
.hero__stat-val {
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: 24px; color: var(--brand-green);
}
.hero__stat-label { font-size: 12px; color: var(--text-muted); }

@media (max-width: 768px) {
  .hero { padding: 110px 20px 100px; min-height: auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero__stat:not(:last-child) { border-right: none; }
  .hero__stat:nth-child(odd) { border-right: 1px solid var(--brand-border); }
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════════ */
.section { padding: 80px 0; }
.section__header { text-align: center; margin-bottom: 52px; }
.section__label {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px;
  color: var(--brand-green);
  margin-bottom: 12px;
}
.section__title {
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--text-primary);
  margin-bottom: 12px;
}
.section__desc { font-size: 15px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════
   CATALOG
═══════════════════════════════════════════════════════════════ */
.catalog { background: var(--brand-dark2); }

/* Sugar highlight */
.sugar-highlight {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  border: 1px solid var(--brand-green);
  box-shadow: 0 0 40px rgba(76,175,80,0.12);
}
.sugar-highlight__img { overflow: hidden; }
.sugar-highlight__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sugar-highlight:hover .sugar-highlight__img img { transform: scale(1.04); }
.sugar-highlight__content {
  background: var(--brand-mid);
  padding: 40px 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.sugar-highlight__badge {
  display: inline-block;
  font-size: 11px; letter-spacing: 2px;
  background: rgba(76,175,80,0.15);
  color: var(--brand-green-lt);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  width: fit-content;
}
.sugar-highlight__title {
  font-size: 36px; color: var(--text-primary);
}
.sugar-highlight__text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.sugar-highlight__features {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.sugar-highlight__features li {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.sugar-highlight__features li::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--brand-green);
  border-radius: 50%; flex-shrink: 0;
}

@media (max-width: 768px) {
  .sugar-highlight { grid-template-columns: 1fr; }
  .sugar-highlight__img { height: 220px; }
  .sugar-highlight__content { padding: 28px 24px; }
}

/* Group title */
.catalog__group-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: 18px; color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brand-border);
}

/* Cards grid */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .catalog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .catalog__grid { grid-template-columns: 1fr; } }

.catalog__card {
  background: var(--brand-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-border);
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.catalog__card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green);
  box-shadow: 0 8px 32px rgba(76,175,80,0.15);
}
.catalog__card-img {
  height: 180px; overflow: hidden;
}
.catalog__card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.catalog__card:hover .catalog__card-img img { transform: scale(1.06); }
.catalog__card-body { padding: 20px; }
.catalog__card-title {
  font-size: 16px; color: var(--text-primary);
  margin-bottom: 8px;
}
.catalog__card-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.catalog__card-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.catalog__card-tags span {
  font-size: 11px; color: var(--brand-green-lt);
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 4px;
  padding: 2px 8px;
}

.catalog__cta {
  text-align: center;
  background: var(--brand-mid);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--brand-border);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.catalog__cta p { font-size: 16px; color: var(--text-muted); }
@media (max-width: 600px) {
  .catalog__cta { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about { background: var(--brand-dark); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }

.about__text .section__label { text-align: left; }
.about__text .section__title { text-align: left; margin-bottom: 20px; }
.about__p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }

.about__facts {
  display: flex; gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--brand-border);
}
.about__fact { display: flex; flex-direction: column; gap: 4px; }
.about__fact-val {
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: 26px; color: var(--brand-green);
}
.about__fact-label { font-size: 12px; color: var(--text-muted); }

.about__features {
  display: flex; flex-direction: column; gap: 20px;
}
.about__feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--brand-mid);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--brand-border);
  transition: border-color var(--trans);
}
.about__feature:hover { border-color: rgba(76,175,80,0.4); }
.about__feature-icon {
  width: 44px; height: 44px;
  background: rgba(76,175,80,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about__feature h4 { font-size: 14px; color: var(--text-primary); margin-bottom: 5px; }
.about__feature p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   GEOGRAPHY
═══════════════════════════════════════════════════════════════ */
.geography {
  background: var(--brand-dark2);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.geo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .geo__grid { grid-template-columns: 1fr; } }

.geo__block {
  background: var(--brand-mid);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--brand-border);
}
.geo__region-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; color: var(--text-primary);
  margin-bottom: 14px;
}
.geo__cities { font-size: 13px; color: var(--text-muted); line-height: 1.9; }

/* ══════════════════════════════════════════════════════════════
   DELIVERY
═══════════════════════════════════════════════════════════════ */
.delivery { background: var(--brand-dark); }
.delivery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .delivery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .delivery__grid { grid-template-columns: 1fr; } }

.delivery__card {
  background: var(--brand-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--brand-border);
  transition: border-color var(--trans), transform var(--trans);
}
.delivery__card:hover {
  border-color: rgba(76,175,80,0.35);
  transform: translateY(-3px);
}
.delivery__icon {
  width: 56px; height: 56px;
  background: rgba(76,175,80,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.delivery__card h3 { font-size: 15px; color: var(--text-primary); margin-bottom: 8px; }
.delivery__card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, var(--brand-green-dk), #2E7D32);
  padding: 60px 0;
}
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #fff; margin-bottom: 8px;
}
.cta-strip__text p { font-size: 15px; color: rgba(255,255,255,0.75); }
.cta-strip__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-strip .btn--primary {
  background: #fff; color: var(--brand-green-dk);
}
.cta-strip .btn--primary:hover { background: #f0f0f0; }
.cta-strip .btn--ghost {
  border-color: rgba(255,255,255,0.5); color: #fff;
}
.cta-strip .btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* ══════════════════════════════════════════════════════════════
   CONTACTS
═══════════════════════════════════════════════════════════════ */
.contacts { background: var(--brand-dark2); }
.contacts__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
@media (max-width: 900px) { .contacts__grid { grid-template-columns: 1fr; } }

.contacts__item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px;
  background: var(--brand-mid);
  border-radius: var(--radius);
  border: 1px solid var(--brand-border);
  margin-bottom: 12px;
  transition: border-color var(--trans);
}
.contacts__item:hover { border-color: rgba(76,175,80,0.3); }
.contacts__item svg { flex-shrink: 0; margin-top: 2px; }
.contacts__item span { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 1px; text-transform: uppercase; }
.contacts__item a, .contacts__item p { font-size: 15px; color: var(--text-primary); }
.contacts__item a:hover { color: var(--brand-green); }

/* Contact Form */
.contact-form {
  background: var(--brand-mid);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--brand-border);
}
.contact-form__title {
  font-size: 20px; color: var(--text-primary);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--brand-dark2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color var(--trans);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--brand-green);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-faint);
}
.form-note { font-size: 11px; color: var(--text-faint); margin-top: 8px; text-align: center; }
.form-success {
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.4);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px; color: var(--brand-green-lt);
  margin-top: 12px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: 14px; letter-spacing: 0.5px;
  border-radius: var(--radius);
  padding: 12px 28px;
  transition: all var(--trans);
  border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn--primary {
  background: var(--brand-green); color: #fff;
  border-color: var(--brand-green);
}
.btn--primary:hover { background: var(--brand-green-dk); border-color: var(--brand-green-dk); }
.btn--ghost {
  background: transparent; color: var(--text-primary);
  border-color: var(--brand-border);
}
.btn--ghost:hover { border-color: var(--text-muted); }
.btn--outline {
  background: transparent; color: var(--brand-green);
  border-color: rgba(76,175,80,0.4);
}
.btn--outline:hover { background: rgba(76,175,80,0.08); border-color: var(--brand-green); }
.btn--sm { padding: 8px 18px; font-size: 12px; }
.btn--full { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand { display: flex; flex-direction: column; gap: 8px; padding-left: 0; margin-left: 0; }
.footer__brand img { height: 40px; width: auto; display: block; max-width: 200px; }
.footer__brand-desc { font-size: 13px; color: var(--text-muted); margin-top: 8px; line-height: 1.65; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 13px; color: var(--text-primary); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.footer__col a, .footer__col p { font-size: 13px; color: var(--text-muted); transition: color var(--trans); }
.footer__col a:hover { color: var(--brand-green); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: 12px; color: var(--text-faint); }

/* ══════════════════════════════════════════════════════════════
   MOBILE CALL BAR
═══════════════════════════════════════════════════════════════ */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--brand-dark2);
  border-top: 1px solid var(--brand-border);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 12px;
}
.mobile-call-bar__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Russo One', sans-serif; font-weight: 400;
  font-size: 14px; padding: 13px 10px;
  border-radius: var(--radius);
  background: var(--brand-green); color: #fff;
  border: none; cursor: pointer;
}
.mobile-call-bar__btn--outline {
  background: transparent;
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
}
@media (max-width: 768px) { .mobile-call-bar { display: flex; } }

/* ══════════════════════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════════════════════ */
.modal {
  display: none; position: fixed; inset: 0; z-index: 500;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative; z-index: 1;
  background: var(--brand-mid);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal__close {
  position: absolute; top: 16px; right: 20px;
  font-size: 24px; color: var(--text-muted);
  transition: color var(--trans); line-height: 1;
}
.modal__close:hover { color: var(--text-primary); }
.modal__title { font-size: 22px; color: var(--text-primary); margin-bottom: 6px; }
.modal__subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   MOBILE EXTRA PADDING
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .section { padding: 56px 0; }
}
