/* =====================================================
   site_09_vent_dom — «Home Breath»
   Nunito · Warm Green #16A34A · Beige #FEF3C7
   Soft Rounded Cards · Warm Gradient Hero
   ===================================================== */

/* ─── TOKENS ─── */
:root {
  --green: #16A34A;
  --green-dark: #15803D;
  --green-light: #F0FDF4;
  --green-mid: #DCFCE7;
  --beige: #FEF3C7;
  --beige-dark: #FDE68A;
  --beige-mid: #FFFBEB;
  --bg: #ffffff;
  --bg-alt: #FAFAF8;
  --text: #1C1917;
  --text-mid: #44403C;
  --muted: #78716C;
  --border: #E7E5E4;
  --border-soft: #F5F5F4;
  --success: #16A34A;
  --danger: #DC2626;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(28,25,23,0.06);
  --shadow: 0 4px 20px rgba(28,25,23,0.09);
  --shadow-md: 0 8px 32px rgba(28,25,23,0.12);
  --shadow-lg: 0 20px 56px rgba(28,25,23,0.14);
  --container: 1200px;
  --t: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(28px, 4.5vw, 50px); }
h2 { font-size: clamp(24px, 3vw, 38px); }
h3 { font-size: clamp(16px, 1.5vw, 20px); }

/* ─── LAYOUT ─── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; border-radius: var(--radius); }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--t), border-color var(--t);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(28,25,23,0.08);
  border-bottom-color: transparent;
}
.site-header__inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo__mark {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; }
.logo__name { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.2; letter-spacing: -0.01em; }
.logo__tag { font-size: 11px; color: var(--muted); line-height: 1.3; letter-spacing: 0.04em; text-transform: uppercase; }
.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 7px 14px;
  border-radius: 50px;
  transition: all var(--t);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--green); background: var(--green-light); }
.header-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; margin-left: auto; }
.header-phone { display: flex; flex-direction: column; text-decoration: none; }
.header-phone__num { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.2; }
.header-phone__hint { font-size: 11px; color: var(--muted); line-height: 1.3; }
.header-phone:hover .header-phone__num { color: var(--green); }
.burger {
  display: none; background: none; border: 1px solid var(--border); cursor: pointer;
  padding: 7px; color: var(--text); margin-left: auto; border-radius: 8px;
  transition: background var(--t); align-items: center; justify-content: center;
}
.burger:hover { background: var(--green-light); }
.burger svg { width: 20px; height: 20px; }

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .header-cta { display: none; }
  .burger { display: flex; }
  .header-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border-soft);
    padding: 12px 16px 16px; flex-direction: column; align-items: flex-start;
    gap: 2px; box-shadow: 0 12px 32px rgba(28,25,23,0.1); z-index: 499;
    backdrop-filter: blur(12px);
  }
  .header-nav.is-open { display: flex; }
  .header-nav a { padding: 10px 14px; font-size: 15px; width: 100%; }
  .site-header { position: relative; }
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(150deg, #14532D 0%, #16A34A 45%, #86EFAC 80%, #FEF3C7 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 40%, rgba(254,243,199,0.25) 0%, transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.1) 0%, transparent 40%);
  pointer-events: none;
}
/* Leaf-like decorative dots */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 Q300 40 600 60 Q900 80 1200 40 L1200 80 Z' fill='white'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.hero__grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.95); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 16px;
  border-radius: 50px; margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero__badge .dot {
  width: 6px; height: 6px; background: #FEF3C7; border-radius: 50%; flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { color: #fff; margin-bottom: 20px; line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.hero h1 span { color: var(--beige); }
.hero__sub { color: rgba(255,255,255,0.88); font-size: 17px; line-height: 1.75; margin-bottom: 36px; max-width: 540px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.hero__metrics > div {
  padding: 16px 20px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.hero__metric-num { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 4px; }
.hero__metric-label { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.4; }
.hero__visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero__visual-blob {
  position: absolute; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(254,243,199,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__visual svg { width: 100%; max-width: 380px; height: auto; filter: drop-shadow(0 8px 40px rgba(0,0,0,0.15)); }

@media (max-width: 900px) {
  .hero { padding: 56px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { display: none; }
}
@media (max-width: 600px) {
  .hero__metrics { grid-template-columns: 1fr; gap: 8px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms cubic-bezier(0.4,0,0.2,1), transform 600ms cubic-bezier(0.4,0,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── PAINS ─── */
.pains { background: var(--beige-mid); }
.pains__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pain {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.pain:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pain__icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--green);
}
.pain__icon svg { width: 24px; height: 24px; }
.pain h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text); line-height: 1.35; }
.pain p { font-size: 13px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px) { .pains__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .pains__grid { grid-template-columns: 1fr; } }

/* ─── SERVICES ─── */
.services { background: var(--bg); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service {
  display: flex; flex-direction: column; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--bg); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t); overflow: hidden;
}
.service:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service__visual {
  height: 120px;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); padding: 24px;
}
.service__visual svg { width: 56px; height: 56px; }
.service__body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.service__body h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.service__desc { font-size: 14px; color: var(--muted); margin-bottom: 14px; line-height: 1.7; flex: 1; }
.service__features { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.service__features li { font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.service__features li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5 6.5-6.5' stroke='%2316A34A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.service__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border-soft); margin-top: auto; }
.service__price { font-size: 13px; color: var(--muted); }
.service__price strong { font-size: 14px; font-weight: 700; color: var(--text); }
.service__btn { font-size: 13px; font-weight: 700; color: var(--green); transition: color var(--t); }
.service__btn:hover { color: var(--green-dark); }
@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

/* ─── ADVANTAGES ─── */
.advantages { background: var(--beige-mid); }
.advantages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.advantage {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.advantage:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.advantage__num {
  font-size: 38px; font-weight: 700; color: var(--green); line-height: 1;
  margin-bottom: 10px; letter-spacing: -0.03em;
}
.advantage h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.advantage p { font-size: 14px; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .advantages__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .advantages__grid { grid-template-columns: 1fr; } }

/* ─── STEPS ─── */
.steps { background: var(--bg); }
.steps__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  counter-increment: step;
  position: relative;
}
.step::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff; font-size: 14px; font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
}
.step h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.35; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.65; }
@media (max-width: 1000px) { .steps__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .steps__list { grid-template-columns: 1fr; } }

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--bg-alt); }
.portfolio__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.portfolio-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg);
  transition: box-shadow var(--t), transform var(--t);
}
.portfolio-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.portfolio-item__visual { position: relative; height: 200px; background: var(--green-light); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.portfolio-item__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.portfolio-item:hover .portfolio-item__visual img { transform: scale(1.04); }
.portfolio-item__visual > svg { width: 80px; height: 80px; color: #86EFAC; }
.portfolio-item__label {
  position: absolute; top: 12px; left: 12px;
  background: var(--green);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px; z-index: 1;
}
.portfolio-item__body { padding: 22px; }
.portfolio-item__body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
.portfolio-item__meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.portfolio-item__result {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 50px;
  border: 1px solid var(--green-mid);
}
@media (max-width: 680px) { .portfolio__grid { grid-template-columns: 1fr; } }

/* ─── REVIEWS ─── */
.reviews { background: var(--bg); }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--t), transform var(--t);
}
.review:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review__stars { color: #FBBF24; font-size: 18px; letter-spacing: 3px; line-height: 1; }
.review__text { font-size: 14px; color: var(--text-mid); line-height: 1.8; flex: 1; }
.review__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.review__avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 18px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review__meta { display: flex; flex-direction: column; }
.review__meta strong { font-size: 14px; font-weight: 700; color: var(--text); }
.review__meta span { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media (max-width: 680px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ─── FORM ─── */
.form-section {
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green) 60%, #4ADE80 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 70% 50%, rgba(254,243,199,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.form-section__grid { display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: start; position: relative; z-index: 1; }
.form-section__text h2 { color: #fff; margin-bottom: 16px; }
.form-section__lead { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
.form-section__perks { display: flex; flex-direction: column; gap: 12px; }
.form-section__perks li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 600; }
.form-section__perks li::before {
  content: '';
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.form-card { background: var(--bg); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-card__sub { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-group input, .form-group textarea {
  font-family: inherit; font-size: 15px; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--bg); color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none; resize: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.12); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-policy { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.5; }
.form-policy a { color: var(--green); }
.form-success { text-align: center; padding: 24px 0; }
.form-success__icon { width: 60px; height: 60px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--green); margin: 0 auto 16px; }
.form-success h3 { color: var(--text); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }
#form-error { color: var(--danger); font-size: 13px; margin-top: 8px; text-align: center; }
@media (max-width: 900px) { .form-section__grid { grid-template-columns: 1fr; gap: 36px; } .form-card { padding: 28px; } }

/* ─── FAQ ─── */
.faq { background: var(--bg-alt); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
.faq-item.is-open { box-shadow: var(--shadow); }
.faq-item__q {
  width: 100%; background: none; border: none; cursor: pointer; padding: 18px 22px;
  font-family: inherit; font-size: 15px; font-weight: 700; color: var(--text);
  text-align: left; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: background var(--t), color var(--t);
}
.faq-item__q-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--muted); transition: transform var(--t), color var(--t); }
.faq-item.is-open .faq-item__q { color: var(--green); background: var(--green-light); }
.faq-item.is-open .faq-item__q-icon { transform: rotate(180deg); color: var(--green); }
.faq-item__q:hover { background: var(--green-light); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 320ms cubic-bezier(0.4,0,0.2,1); }
.faq-item__a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.78; }

/* ─── SEO TEXT ─── */
.seo-text { background: var(--bg); border-top: 1px solid var(--border); }
.seo-text__inner { max-width: 800px; margin: 0 auto; }
.seo-text__inner h2 { font-size: 26px; margin-bottom: 24px; }
.seo-text__inner p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.seo-text__inner p:last-child { margin-bottom: 0; }
.seo-text__inner strong { color: var(--text); }

/* ─── FOOTER ─── */
.site-footer { background: #1C1917; color: #A8A29E; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #F5F5F4; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 16px; }
.footer-col p { font-size: 14px; color: #78716C; line-height: 1.75; }
.footer-col a { font-size: 14px; color: #78716C; display: block; margin-bottom: 6px; transition: color var(--t); line-height: 1.5; }
.footer-col a:hover { color: #86EFAC; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #78716C; line-height: 1.5; }
.footer-contacts li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--green); margin-top: 2px; }
.footer-contacts a { color: #78716C; display: inline; margin-bottom: 0; }
.footer-contacts a:hover { color: #86EFAC; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; color: #44403C; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: #44403C; transition: color var(--t); }
.footer-bottom a:hover { color: #86EFAC; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ─── POPUP ─── */
.popup-overlay { position: fixed; inset: 0; background: rgba(28,25,23,0.6); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 300ms, visibility 300ms; backdrop-filter: blur(4px); }
.popup-overlay.is-visible { opacity: 1; visibility: visible; }
.popup { background: var(--bg); border-radius: var(--radius-xl); padding: 40px; max-width: 420px; width: 100%; position: relative; text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--border); transform: scale(0.95) translateY(10px); transition: transform 320ms cubic-bezier(0.34,1.56,0.64,1); }
.popup-overlay.is-visible .popup { transform: scale(1) translateY(0); }
.popup__close { position: absolute; top: 14px; right: 14px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; width: 32px; height: 32px; cursor: pointer; font-size: 18px; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: all var(--t); line-height: 1; }
.popup__close:hover { background: var(--border); color: var(--text); }
.popup__icon { width: 64px; height: 64px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--green); }
.popup__icon svg { width: 30px; height: 30px; }
.popup__title { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.popup__text { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.popup__btn { margin-bottom: 12px; }
.popup__note { font-size: 12px; color: var(--muted); }

/* ─── MESSENGER BUTTONS ─── */
.messenger-buttons { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.messenger-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; transition: transform var(--t), box-shadow var(--t); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.messenger-btn:hover { transform: scale(1.1); color: #fff; }
.messenger-btn--tg { background: #2AABEE; }
.messenger-btn--tg svg { width: 26px; height: 26px; }
.messenger-btn--max { background: var(--green); letter-spacing: -0.02em; }
@media (max-width: 560px) { .messenger-buttons { bottom: 16px; right: 16px; } }
