/* =========================================================
   Perfecto Group — базовая концепция
   Цвета: #cef4d9 (мята), #24d041 (зелёный), #3f3f3f (графит)
   ========================================================= */

:root {
  --mint: #cef4d9;
  --green: #24d041;
  --green-dark: #17a832;
  --dark: #3f3f3f;
  --white: #ffffff;
  --off-white: #f7fbf8;         /* тёплый бело-зеленоватый */
  --text-muted: #6f7a72;
  --border: #e4efe7;

  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 10px 40px rgba(36, 208, 65, 0.10);
  --shadow-lg: 0 25px 60px rgba(36, 208, 65, 0.16);

  --nav-h: 76px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Сброс ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: 'Heebo', sans-serif;
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- Типографика ---------- */
.section-title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.accent-text {
  color: var(--green);
  position: relative;
  white-space: nowrap;
}

.section-sub { color: var(--text-muted); font-size: 17px; max-width: 560px; }

.section { padding: 90px 0; }
.section--mint { background: var(--mint); }

.section-head { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; }

.pill {
  display: inline-block;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.section--mint .pill { background: var(--white); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 15px 30px;
  transition: var(--transition);
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(36, 208, 65, 0.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(36, 208, 65, 0.45);
}

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

.btn--white { background: var(--white); color: var(--green-dark); }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

.btn--small { padding: 11px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* =========================================================
   НАВБАР
   ========================================================= */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(63, 63, 63, 0.06);
}

.navbar__inner { display: flex; align-items: center; gap: 28px; height: 100%; }

.navbar__brand { display: flex; align-items: center; gap: 10px; }
.navbar__logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(36,208,65,0.35);
}
.navbar__logo svg { width: 22px; height: 22px; }
.navbar__name { font-size: 20px; font-weight: 500; }
.navbar__name b { font-weight: 800; }

/* пробел → меню прижимается к центру-лево */
.navbar__menu { display: flex; gap: 34px; margin-inline-start: auto; }
.navbar__link {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 2.5px;
  border-radius: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.navbar__link:hover::after { width: 100%; }

.navbar__cta { color: var(--white); background: linear-gradient(135deg, var(--green), var(--green-dark)); box-shadow: 0 8px 20px rgba(36,208,65,0.3); }
.navbar__cta:hover { transform: translateY(-2px); }

/* Бургер */
.navbar__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.navbar__burger span { width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-130%);
  transition: transform var(--transition);
  z-index: 99;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__link { font-weight: 700; font-size: 17px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 0;
  background: linear-gradient(180deg, var(--mint) 0%, var(--off-white) 100%);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}
.hero__blob--1 { width: 480px; height: 480px; background: var(--green); top: -160px; left: -120px; opacity: 0.18; }
.hero__blob--2 { width: 380px; height: 380px; background: var(--mint); bottom: 40px; right: -100px; opacity: 0.8; }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.hero__badge .dot {
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(36,208,65,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(36,208,65,0); }
  100% { box-shadow: 0 0 0 0 rgba(36,208,65,0); }
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero__subtitle { font-size: 18px; color: var(--text-muted); max-width: 480px; margin-bottom: 32px; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: 30px; font-weight: 800; color: var(--green-dark); }
.stat__label { font-size: 13px; color: var(--text-muted); }

/* Медиа-зона */
.hero__media { position: relative; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: floaty 5s ease-in-out infinite;
}
.float-card b { display: block; font-size: 14px; }
.float-card small { color: var(--text-muted); font-size: 12px; }
.float-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
}
.float-card--1 { top: -24px; right: -14px; }
.float-card--2 { bottom: -22px; left: 10px; animation-delay: 2.5s; }

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

/* =========================================================
   ЗАГЛУШКИ ДЛЯ КАРТИНОК
   ========================================================= */
.img-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  background: linear-gradient(135deg, var(--mint), #eafbef);
  border: 2px dashed rgba(36, 208, 65, 0.45);
  border-radius: var(--radius);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.img-placeholder svg { width: 42px; height: 42px; opacity: 0.6; }
.img-placeholder:hover { border-color: var(--green); background: linear-gradient(135deg, #eafbef, var(--mint)); }

.img-placeholder--hero { min-height: 460px; border-radius: 32px; box-shadow: var(--shadow-lg); }
.img-placeholder--tall { min-height: 520px; }

/* Когда внутрь заглушки добавлен <img> — она становится фоторамкой */
.img-placeholder:has(img) { border-color: transparent; background: none; }
.img-placeholder:has(img) > svg,
.img-placeholder:has(img) > span { display: none; }
.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* =========================================================
   БЕГУЩАЯ СТРОКА
   ========================================================= */
.ticker {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1deg) scale(1.02);
}
.ticker__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.ticker__track i { color: var(--green); font-style: normal; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }  /* RTL: едет вправо */
}

/* =========================================================
   УСЛУГИ
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(36, 208, 65, 0.4);
}

.service-card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card:hover .service-card__icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(-8deg) scale(1.06);
}

.service-card h3 { font-size: 19px; font-weight: 800; }
.service-card p { color: var(--text-muted); font-size: 15px; flex-grow: 1; }

.service-card__link { color: var(--green-dark); font-weight: 700; font-size: 14px; }
.service-card__link:hover { text-decoration: underline; }

/* Главная карточка — на всю ширину, горизонтальная */
.service-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.service-card--featured .img-placeholder {
  border: none;
  border-radius: 0;
  min-height: 100%;
}
.service-card--featured .service-card__body { padding: 40px; display: flex; flex-direction: column; gap: 14px; }
.service-card--featured h3 { font-size: 26px; }

/* =========================================================
   ПОЧЕМУ МЫ
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 22px; margin: 30px 0 36px; }
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(63,63,63,0.06);
  transition: var(--transition);
}
.why-list li:hover { transform: translateX(-6px); }
.why-list b { display: block; font-size: 16px; margin-bottom: 2px; }
.why-list small { color: var(--text-muted); }

.why-list__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* =========================================================
   ГАЛЕРЕЯ
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery__item { min-height: 240px; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item:hover { transform: scale(1.02); }

/* =========================================================
   CTA-ПОЛОСА
   ========================================================= */
.cta-strip {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 70px 0;
}
.cta-strip__inner { text-align: center; }
.cta-strip h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 10px; }
.cta-strip p { opacity: 0.9; margin-bottom: 28px; font-size: 17px; }

/* =========================================================
   КОНТАКТЫ
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field label { font-weight: 600; font-size: 14px; }
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: var(--transition);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(36, 208, 65, 0.14);
}

.form-success { margin-top: 16px; color: var(--green-dark); font-weight: 700; }

.contact-info__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.contact-info__card h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }

.contact-info__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.contact-info__row:last-child { border-bottom: none; }
.contact-info__row:hover { transform: translateX(-4px); }
.contact-info__icon { font-size: 22px; }
.contact-info__row b { display: block; font-size: 15px; }
.contact-info__row small { color: var(--text-muted); }

.contact-info__map { min-height: 200px; }

/* =========================================================
   ФУТЕР + WHATSAPP
   ========================================================= */
.footer { background: var(--dark); color: var(--white); padding: 34px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__brand .navbar__name { color: var(--white); }
.footer__copy { font-size: 13px; opacity: 0.7; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: var(--transition);
  animation: floaty 4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* =========================================================
   АНИМАЦИИ ПОЯВЛЕНИЯ (управляются из animations.js)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   АДАПТИВ
   ========================================================= */
/* =========================================================
   АДАПТИВ (улучшенный)
   ========================================================= */
@media (max-width: 992px) {
  .hero { padding-top: calc(var(--nav-h) + 36px); }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .hero__media { order: -1; }
  .img-placeholder--hero { min-height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-template-columns: 1fr; }
  .service-card--featured .img-placeholder { min-height: 220px; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .img-placeholder--tall { min-height: 320px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .navbar__inner { gap: 14px; }
  .navbar__logo-img { height: 38px; }
  .navbar__name { font-size: 17px; }
  .navbar__menu, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }

  .hero__subtitle { font-size: 16px; }
  .hero__stats { gap: 20px; }
  .stat__num { font-size: 24px; }

  /* компактные плавающие карточки */
  .float-card { padding: 10px 14px; gap: 8px; border-radius: 12px; }
  .float-card__icon { width: 34px; height: 34px; font-size: 15px; }
  .float-card b { font-size: 13px; }
  .float-card small { font-size: 11px; }
  .float-card--1 { top: -14px; right: 6px; }
  .float-card--2 { bottom: -14px; left: 6px; }

  .ticker__track { font-size: 13px; gap: 24px; }

  .contact-cta__card { padding: 28px 22px; }
  .contact-phone { font-size: 21px; }

  .footer__inner { justify-content: center; text-align: center; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; left: 18px; }
}

@media (max-width: 560px) {
  .container { width: 90%; }
  .services-grid, .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { justify-content: space-between; }
  .service-card { padding: 26px 22px; }
}

/* Логотип-картинка */
.navbar__logo-img {
  height: 46px;
  width: auto;
  display: block;
}

/* --- Контактный CTA (вместо формы) --- */
.contact-cta__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-cta__text { color: var(--text-muted); font-size: 17px; margin-bottom: 28px; }

.contact-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  background: var(--mint);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-phone:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-phone__icon { font-size: 24px; }

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45); }

/* =========================================================
   СОЦСЕТИ (круглые иконки в конце секции контактов)
   ========================================================= */
.socials {
  grid-column: 1 / -1;            /* на всю ширину contact-grid */
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px dashed var(--border);
}

.socials__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.socials__sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.socials__list {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.social-btn {
  --size: 68px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.social-btn img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-btn:hover {
  transform: translateY(-6px) scale(1.08);
  border-color: var(--green);
  background: linear-gradient(135deg, var(--mint), #eafbef);
  box-shadow: 0 18px 36px rgba(36, 208, 65, 0.35);
}

.social-btn:hover img {
  transform: rotate(-10deg) scale(1.15);
}

/* Лёгкая «волна» при появлении */
.social-btn {
  animation: socialPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.social-btn:nth-child(1) { animation-delay: 0.1s; }
.social-btn:nth-child(2) { animation-delay: 0.2s; }
.social-btn:nth-child(3) { animation-delay: 0.3s; }

@keyframes socialPop {
  from { opacity: 0; transform: translateY(20px) scale(0.6); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .socials { margin-top: 36px; padding-top: 32px; }
  .socials__title { font-size: 20px; }
  .social-btn { --size: 60px; }
  .social-btn img { width: 30px; height: 30px; }
  .socials__list { gap: 16px; }
}

/* Добавить в конец style.css перед @media */

.footer__company-info {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__company-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
}

.footer__company-details {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__company-details p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.footer__company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
  text-align: right;
}

.footer__company-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__company-label {
  font-size: 12px;
  opacity: 0.6;
  font-weight: 600;
}

.footer__company-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--mint);
}

.footer__verify-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(36, 208, 65, 0.3);
}

.footer__verify-link svg {
  width: 20px;
  height: 20px;
}

.footer__verify-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(36, 208, 65, 0.45);
}

@media (max-width: 768px) {
  .footer__company-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__company-details {
    padding: 20px;
  }
  
  .footer__company-details p {
    font-size: 16px;
  }
}

/* Добавить после стилей navbar__cta */

/* ---------- Переключатель языков ---------- */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.lang-switcher__btn:hover {
  border-color: var(--green);
  background: rgba(36, 208, 65, 0.05);
}

.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switcher__flag {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.lang-switcher__code {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.lang-switcher__arrow {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.lang-switcher__btn.active .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 101;
}

.lang-switcher__menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  text-align: start;
}

.lang-switcher__item:hover {
  background: var(--mint);
  color: var(--green-dark);
}

.lang-switcher__item:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.lang-switcher__item:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.lang-switcher__item .lang-switcher__flag {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .lang-switcher__btn {
    padding: 8px 12px;
  }
  
  .lang-switcher__flag {
    width: 20px;
    height: 20px;
  }
  
  .lang-switcher__code {
    font-size: 12px;
  }
  
  .lang-switcher__menu {
    right: auto;
    left: 0;
    min-width: 140px;
  }
}

/* =========================================================
   МОДАЛЬНОЕ ОКНО ГАЛЕРЕИ (LIGHTBOX)
   ========================================================= */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  user-select: none;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--green);
}