/* ===== Variables ===== */
:root {
  --bg-main: #F7F8F3;
  --bg-alt: #F5F7EF;
  --text-primary: #1F2933;
  --text-secondary: #647067;
  --accent: #2F7D32;
  --accent-hover: #3C8D40;
  --accent-dark: #1F5E2A;
  --accent-lime: #B8D432;
  --bg-dark: #102A1C;
  --bg-dark-alt: #14351F;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(31, 41, 51, 0.06);
  --shadow-md: 0 8px 30px rgba(31, 41, 51, 0.08);
  --shadow-lg: 0 16px 48px rgba(31, 41, 51, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --transition: 0.25s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-main);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(47, 125, 50, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 212, 50, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232F7D32' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(47, 125, 50, 0.35);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 125, 50, 0.4);
}

.btn--lime {
  background: var(--accent-lime);
  color: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(184, 212, 50, 0.4);
}

.btn--lime:hover {
  background: #c5de3a;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--accent-dark);
}

.btn--white:hover {
  background: var(--accent-lime);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--full { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 41, 51, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--accent);
  background: rgba(47, 125, 50, 0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  transition: color var(--transition);
}

.header__phone:hover { color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg-main);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav__link {
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-nav__link:hover {
  background: rgba(47, 125, 50, 0.08);
  color: var(--accent);
}

.mobile-nav__phone {
  margin-top: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  padding: 16px;
}

/* ===== Hero ===== */
.hero {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(247, 248, 243, 0.97) 0%,
      rgba(247, 248, 243, 0.88) 38%,
      rgba(247, 248, 243, 0.45) 62%,
      rgba(247, 248, 243, 0.15) 100%
    ),
    linear-gradient(180deg,
      rgba(247, 248, 243, 0.3) 0%,
      transparent 35%,
      transparent 70%,
      rgba(247, 248, 243, 0.5) 100%
    );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--bg-main));
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.badge svg { flex-shrink: 0; }

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero__title span { color: var(--accent); }

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.hero__feature svg { color: var(--accent); flex-shrink: 0; }

.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero__cta-card {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  font-family: inherit;
  color: inherit;
}

.hero__cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(31, 41, 51, 0.15);
  border-color: var(--accent);
}

.hero__cta-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.hero__cta-card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-right: 40px;
}

.hero__cta-card-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(47, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--transition);
}

.hero__cta-card:hover .hero__cta-card-arrow {
  background: var(--accent);
  color: var(--white);
}

/* ===== Forms ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(31, 41, 51, 0.06);
}

.form-card--sticky { position: relative; z-index: 2; }

.form-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-card__subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(31, 41, 51, 0.12);
  border-radius: 10px;
  background: var(--bg-main);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 12px;
  text-align: center;
}

.form-body {
  display: block;
}

.form-body.is-hidden {
  display: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: rgba(47, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(31, 41, 51, 0.04);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(47, 125, 50, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.card__meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* ===== Choice Cards (Gazelle vs Container) ===== */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.choice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.choice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.choice-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.choice-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(47, 125, 50, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.choice-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.choice-card__text {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.choice-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px 32px;
  background: rgba(47, 125, 50, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== Container price cards ===== */
.containers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.container-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(31, 41, 51, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition);
}

.container-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47, 125, 50, 0.2);
}

.container-card__img {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
  background: linear-gradient(180deg, #F5F7EF 0%, #FFFFFF 70%);
  border-radius: 12px;
  padding: 12px;
}

.container-card__img img {
  max-height: 170px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
  transition: transform var(--transition);
}

.container-card:hover .container-card__img img {
  transform: scale(1.05);
}

.container-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.container-card__spec {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  width: 100%;
}

.container-card__spec strong {
  color: var(--text-primary);
  font-weight: 600;
}

.container-card__price {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 16px 0 20px;
  width: 100%;
}

.container-card__price strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.container-card .btn {
  border-radius: 100px;
  padding: 14px 20px;
  margin-top: auto;
}

.equipment-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.prices-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

/* ===== Locations ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.location-card {
  background: var(--white);
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
}

.location-card:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.location-card svg {
  display: block;
  margin: 0 auto 10px;
  color: var(--accent);
}

.location-card:hover svg { color: var(--white); }

/* ===== Extra Services ===== */
.extra-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  font-size: 0.9rem;
}

.extra-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-item svg {
  color: var(--accent-lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item__text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.promo-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.promo-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.promo-badge__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-lime);
  margin-bottom: 6px;
}

.promo-badge__label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ===== Equipment ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.equipment-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.equipment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.equipment-card__img {
  height: 180px;
  background: linear-gradient(180deg, #F5F7EF 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.equipment-card__img img {
  max-height: 150px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.equipment-card__body {
  padding: 20px;
}

.equipment-card__title {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===== Portfolio ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}

.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition);
}

.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.05);
}

.portfolio-card__body {
  padding: 24px;
}

.portfolio-card__title {
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ===== Steps ===== */
.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 16px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: rgba(47, 125, 50, 0.2);
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(47, 125, 50, 0.35);
}

.step__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  padding: 56px;
  display: block;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 212, 50, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section__text {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta-section .form-card {
  position: relative;
  z-index: 1;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.06);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-item__question:hover { color: var(--accent); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 125, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.choice-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.services-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-stat {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.about-stat__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.about-stat__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(16, 42, 28, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.modal.open .modal__dialog {
  transform: translateY(0) scale(1);
}

/* Modal form — референсный стиль */
.modal-form {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-lg);
}

.modal-form__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-main);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.modal-form__close:hover {
  background: rgba(31, 41, 51, 0.08);
  color: var(--text-primary);
}

.modal-form__title {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  padding-right: 44px;
  color: var(--text-primary);
}

.modal-form__subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 28px;
}

.modal-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.modal-form__field {
  margin-bottom: 12px;
}

.modal-form__field input {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 14px;
  background: #F0F2EE;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: background var(--transition), box-shadow var(--transition);
}

.modal-form__field input::placeholder {
  color: #9AA39C;
}

.modal-form__field input:focus {
  outline: none;
  background: #E8EBE4;
  box-shadow: 0 0 0 2px rgba(47, 125, 50, 0.25);
}

.modal-form__field--phone {
  position: relative;
}

.modal-form__phone-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 18px 0 16px;
  border-radius: 14px;
  background: #F0F2EE;
  transition: background var(--transition), box-shadow var(--transition);
}

.modal-form__phone-wrap:focus-within {
  background: #E8EBE4;
  box-shadow: 0 0 0 2px rgba(47, 125, 50, 0.25);
}

.modal-form__phone-prefix {
  flex-shrink: 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  user-select: none;
}

.modal-form__field--phone input {
  flex: 1;
  min-width: 0;
  padding: 16px 0 16px 2px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.modal-form__field--phone input:focus {
  background: transparent;
  box-shadow: none;
}

.modal-form__flag {
  flex-shrink: 0;
  margin-right: 8px;
  font-size: 1.1rem;
  line-height: 1;
  pointer-events: none;
}

.modal-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
  cursor: pointer;
}

.modal-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.modal-form__consent span {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.modal-form__submit {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 100px;
  background: var(--text-primary);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.modal-form__submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.modal-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-form__messengers {
  margin-top: 16px;
  text-align: center;
}

.modal-form__messengers-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.messenger-block {
  margin: 4px 0 20px;
}

.messenger-block__label {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.messenger-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.messenger-icons--center {
  justify-content: center;
}

.messenger-icon {
  display: block;
  flex-shrink: 0;
  border-radius: 12px;
  transition: transform var(--transition), opacity var(--transition);
  line-height: 0;
}

.messenger-icon:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 0.92;
}

.messenger-icon img {
  display: block;
  width: 48px;
  height: 48px;
}

.modal-form__messengers .messenger-icon img {
  width: 44px;
  height: 44px;
}

.modal-form .form-success {
  padding: 32px 16px;
}

/* ===== Contacts ===== */
.contacts-block {
  max-width: 560px;
  margin: 0 auto;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(47, 125, 50, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.contact-item__value {
  font-weight: 600;
  font-size: 1rem;
}

.contact-item__value a:hover { color: var(--accent); }

.map-placeholder {
  background: var(--bg-alt);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 2px dashed rgba(31, 41, 51, 0.12);
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer a { color: var(--accent-lime); }
.footer a:hover { text-decoration: underline; }

.footer__legal {
  margin-top: 12px;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer__legal span {
  margin: 0 8px;
  opacity: 0.5;
}

.modal-form__consent a {
  color: var(--accent);
  text-decoration: underline;
}

/* ===== Sticky Mobile Bar ===== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(31, 41, 51, 0.12);
  padding: 10px 12px;
  gap: 8px;
  border-top: 1px solid rgba(31, 41, 51, 0.08);
  align-items: center;
}

.sticky-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.sticky-bar__icon:hover {
  transform: scale(1.06);
}

.sticky-bar__icon img {
  width: 36px;
  height: 36px;
}

.sticky-bar .btn {
  flex: 1;
  padding: 12px 8px;
  font-size: 0.8rem;
}

.sticky-bar .btn--call {
  background: var(--accent);
  color: var(--white);
}

.sticky-bar .btn--order {
  background: var(--accent-lime);
  color: var(--accent-dark);
}

/* ===== Section CTA ===== */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(247, 248, 243, 0.94) 0%,
        rgba(247, 248, 243, 0.82) 45%,
        rgba(247, 248, 243, 0.55) 100%
      );
  }

  .hero__bg-img {
    object-position: center 30%;
  }

  .hero__visual .form-card { margin-top: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .containers-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-section { grid-template-columns: 1fr; padding: 40px 28px; }
  .services-grid--compact { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .nav, .header__actions .btn, .header__phone { display: none; }
  .burger { display: flex; }

  .choice-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .containers-grid { grid-template-columns: 1fr; }
  .extra-list { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-badges { grid-template-columns: 1fr; }

  .steps {
    flex-direction: column;
    gap: 0;
    padding-left: 28px;
  }

  .steps::before {
    top: 0;
    bottom: 0;
    left: 12px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding-bottom: 28px;
  }

  .step__num {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
    margin: 0;
    flex-shrink: 0;
  }

  .sticky-bar { display: flex; }
  body { padding-bottom: 64px; }

  .sticky-bar .btn {
    flex: 1;
    padding: 10px 6px;
    font-size: 0.72rem;
  }

  .hero__cta .btn { flex: 1; min-width: 140px; }
}

@media (max-width: 480px) {
  .modal-form {
    padding: 28px 20px 24px;
    border-radius: 20px;
  }

  .form-card { padding: 24px 20px; }
  .choice-card { padding: 28px 20px; }
  .hero__features { flex-direction: column; }
  .equipment-grid { grid-template-columns: 1fr; }
}
