/* ═══════════════════════════════════════════════
   SEVRUGIN.PRO — Main Stylesheet
   Concept: Warm cream + Dark forest green
   ═══════════════════════════════════════════════ */

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

:root {
  --bg:           #F8F5F0;
  --bg-alt:       #EDEAE3;
  --bg-dark:      #0F1F16;
  --green:        #1C3A28;
  --green-mid:    #2A5238;
  --green-light:  #4A7A5A;
  --green-muted:  #8FAF8A;
  --green-pale:   #E8EDE6;
  --text:         #1A1A1A;
  --text-2:       #5A5A50;
  --text-3:       #9A9A8A;
  --border:       #DDD9D0;
  --white:        #FFFFFF;
  --gold:         #C9A84C;

  --font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-xl:   40px;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t:      0.3s;
  --t-slow: 0.6s;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

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

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

/* Selection */
::selection { background: var(--green); color: var(--white); }

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

/* ── TYPOGRAPHY ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 58, 40, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--ghost:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; border-radius: var(--r-md); }

/* ── SECTION BASE ─────────────────────────────── */
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  transition: box-shadow var(--t) var(--ease);
}
.header.scrolled {
  box-shadow: 0 1px 0 var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__img {
  height: 144px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.logo__img--footer {
  height: 28px;
  mix-blend-mode: normal;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ── NAV ──────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
@media (max-width: 900px) { .nav { display: none; } }

.nav__link {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--t), background var(--t);
}
.nav__link:hover,
.nav__link.active {
  color: var(--green);
  background: var(--green-pale);
}

/* ── LANGUAGE SWITCHER ────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
@media (max-width: 900px) { .lang-switcher { display: none; } }

.lang-divider {
  width: 1px;
  height: 12px;
  background: var(--border);
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-3);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color var(--t), background var(--t);
}
.lang-btn:hover { color: var(--green); background: var(--green-pale); }
.lang-btn.active { color: var(--green); }

/* ── BURGER ───────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 900px) { .burger { display: flex; } }

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.burger.open span:first-child { transform: translateY(7px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ───────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--t) var(--ease), opacity var(--t);
  pointer-events: none;
}
.mobile-nav.open {
  transform: none;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__link:last-of-type { border-bottom: none; }

.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 220px 0 80px;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero__content { max-width: 620px; }

/* ── HERO PHOTO ───────────────────────────────── */
.hero__photo { flex-shrink: 0; }

.hero__photo-wrap {
  width: 340px;
  height: 420px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--green-pale);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 1px solid rgba(28, 58, 40, 0.08);
  pointer-events: none;
}

.hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 900px) {
  .hero__photo-wrap {
    width: 240px;
    height: 300px;
    margin: 0 auto;
    border-radius: var(--r-lg);
  }
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-muted);
  margin-bottom: 24px;
}

.hero__name {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero__tagline {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--text-2);
  margin-bottom: 44px;
}

.hero__tagline strong {
  font-weight: 700;
  color: var(--green);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ── SCROLL HINT ──────────────────────────────── */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about { background: var(--bg-alt); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__visual { order: -1; }
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about__body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(28, 58, 40, 0.12);
}

/* ── ABOUT VISUAL ─────────────────────────────── */
.about__visual {
  position: relative;
  flex-shrink: 0;
}

.about__img {
  width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about__badge--standalone {
  position: static;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 48px;
  border-radius: var(--r-lg);
  font-size: 1.2em;
}
.badge__num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.badge__text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 4px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .about__img { width: 220px; height: 270px; margin: 0 auto; }
  .about__badge { right: 0; }
}

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .services__grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--accent {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.service-card--accent::before { background: var(--green-muted); }
.service-card--accent .service-card__num { color: rgba(255,255,255,0.3); }
.service-card--accent .service-card__title { color: var(--white); }
.service-card--accent .service-card__desc { color: rgba(255,255,255,0.75); }
.service-card--accent .service-card__tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }
.service-card--accent .service-card__icon { color: rgba(255,255,255,0.7); }

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--green);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 10px;
}

.service-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 24px;
}

.service-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(28,58,40,0.1);
}

.badge-new {
  display: inline-block;
  padding: 2px 10px;
  background: var(--gold);
  color: var(--white);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════ */
.portfolio { background: var(--bg-alt); }

.portfolio__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--bg);
  padding: 4px;
  border-radius: 100px;
  width: fit-content;
  border: 1px solid var(--border);
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.tab-btn.active {
  background: var(--green);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── MEDIA GRID ───────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .media-grid { grid-template-columns: 1fr; } }

.media-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.media-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── VIDEO PLAYER ─────────────────────────────── */
.video-player {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  overflow: hidden;
}
.video-player--ai {
  background: linear-gradient(135deg, var(--green) 0%, #0D3D20 100%);
}

.video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Обложка до нажатия Play */
.video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s;
}
.video-cover.hidden { opacity: 0; pointer-events: none; }

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--green);
  transition: transform var(--t), box-shadow var(--t);
}
.play-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.video-placeholder--ai .play-btn { background: rgba(255,255,255,0.15); color: var(--white); }
.play-btn svg { width: 20px; height: 20px; margin-left: 2px; }

.media-card__info { padding: 20px; }
.media-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.media-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t) var(--ease);
}
.media-card__title a:hover {
  color: var(--green);
}
.media-card__meta {
  font-size: 13px;
  color: var(--text-3);
}

/* ── AUDIO PLAYER ─────────────────────────────── */
.audio-list { display: flex; flex-direction: column; gap: 12px; }

.audio-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.audio-card:hover { box-shadow: var(--shadow-sm); }

.audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

.audio-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  transition: background var(--t), transform var(--t);
}
.audio-play-btn:hover { background: var(--green-mid); transform: scale(1.05); }
.audio-play-btn svg { width: 18px; height: 18px; }
.audio-play-btn .icon-play { margin-left: 2px; }

.audio-info { flex: 1; min-width: 0; }

.audio-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Зона визуализации: логотип + волна */
.audio-visual {
  position: relative;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
}

.audio-visual__logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.audio-visual__logo img {
  height: 28px;
  width: auto;
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.audio-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 8px;
}
.audio-bars i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.25;
  height: 4px;
  transition: height 0.1s;
}
.audio-bars.playing i {
  opacity: 0.7;
  animation: bar-dance 0.8s ease-in-out infinite alternate;
}
.audio-bars.playing i:nth-child(2n)   { animation-delay: -0.4s; }
.audio-bars.playing i:nth-child(3n)   { animation-delay: -0.2s; }
.audio-bars.playing i:nth-child(4n)   { animation-delay: -0.6s; }
.audio-bars.playing i:nth-child(5n)   { animation-delay: -0.1s; }
.audio-bars.playing i:nth-child(7n)   { animation-delay: -0.3s; }
.audio-bars.playing i:nth-child(11n)  { animation-delay: -0.5s; }

@keyframes bar-dance {
  from { height: 4px; }
  to   { height: 32px; }
}

.audio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-progress {
  flex: 1;
  height: 4px;
  background: var(--bg-alt);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.audio-progress__fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.audio-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
}

.audio-duration {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  flex-shrink: 0;
}

/* ── AI INTRO ─────────────────────────────────── */
.ai-intro {
  background: var(--green);
  border-radius: var(--r-lg);
  padding: 40px 48px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.ai-intro__icon {
  font-size: 36px;
  color: var(--green-muted);
  flex-shrink: 0;
  line-height: 1;
}
.ai-intro__text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}
@media (max-width: 600px) { .ai-intro { flex-direction: column; gap: 16px; padding: 28px 24px; } }

.ai-coming-soon {
  text-align: center;
  padding: 64px 24px;
  border: 1px dashed var(--green-muted);
  border-radius: var(--r-lg);
  margin-top: 8px;
}
.ai-coming-soon__icon {
  font-size: 40px;
  color: var(--green-muted);
  margin-bottom: 20px;
}
.ai-coming-soon__text {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════ */
.process__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .process__steps { flex-direction: column; gap: 0; }
}

.process__step {
  flex: 1;
  padding: 40px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process__connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}
.process__connector::before {
  content: '';
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--green-muted);
}
.process__connector::after {
  content: '';
  position: absolute;
  right: 4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--green-muted);
}
@media (max-width: 800px) {
  .process__connector {
    width: 100%;
    height: 40px;
    margin-top: 0;
    margin-left: 40px;
  }
  .process__connector::before {
    left: 0; right: 0;
    top: 50%; bottom: auto;
    height: 1.5px;
    width: auto;
  }
}

.process__step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-muted);
  margin-bottom: 16px;
}

.process__step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.process__step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   PRICES
   ═══════════════════════════════════════════════ */
.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.4;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}

.price-card__from {
  font-size: 0.875rem;
  color: var(--text-3);
}

.price-card__num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.prices__note {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-3);
  text-align: center;
}

@media (max-width: 900px) {
  .prices__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .prices__grid { grid-template-columns: 1fr; }
}

.contact { background: var(--bg-alt); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 800px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.contact__link:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green);
  color: var(--green);
}
.contact__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green);
}

/* ── CONTACT FORM ─────────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 500px) { .contact-form { padding: 24px 20px; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.form-input {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  resize: none;
}
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28, 58, 40, 0.08);
}

.form-note {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  margin-top: -4px;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--green);
  color: var(--white);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer__seo {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  padding: 16px 0 0;
  letter-spacing: 0.01em;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer__langs { display: flex; gap: 4px; }
.footer .lang-btn { color: rgba(255,255,255,0.5); }
.footer .lang-btn:hover,
.footer .lang-btn.active { color: var(--white); background: rgba(255,255,255,0.1); }
