/* ================= RESET + BASE ================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1d29;
  background: #fafaf7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Manrope', -apple-system, sans-serif; font-weight: 700; line-height: 1.2; margin: 0 0 16px; color: #0f1220; }
h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.01em; }
h3 { font-size: 22px; }
p { margin: 0 0 14px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ================= ПАЛИТРА ================= */
:root {
  --bg: #fafaf7;
  --bg-soft: #f0ece4;
  --dark: #0f1220;
  --primary: #1d3557;       /* глубокий синий */
  --primary-2: #2a4a7a;
  --gold: #c4a062;          /* приглушённый золотой */
  --gold-2: #d4b378;
  --purple: #6b46c1;        /* для WB-блока */
  --purple-2: #4c1d95;
  --muted: #5a5e6f;
  --line: #e5e2da;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(15,18,32,0.04);
  --shadow-md: 0 8px 30px rgba(15,18,32,0.08);
  --shadow-lg: 0 20px 60px rgba(15,18,32,0.12);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ================= КНОПКИ ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary { background: var(--primary); color: white; }
.btn--primary:hover { background: var(--primary-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { border-color: var(--dark); color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: white; }
.btn--ghost { background: var(--bg-soft); color: var(--dark); }
.btn--ghost:hover { background: var(--gold); color: white; }
.btn--white { background: white; color: var(--purple-2); }
.btn--white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ================= HEADER ================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header__inner { display: flex; align-items: center; gap: 32px; padding: 16px 24px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; flex-shrink: 0; }
.logo__img { height: 56px; width: auto; display: block; filter: brightness(0) invert(1); }
.logo--footer .logo__img { height: 64px; opacity: 0.95; }
.nav { display: flex; gap: 24px; margin-left: 24px; }
.nav + .header__socials { margin-left: auto; }
.nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); transition: color .2s; }
.nav a:hover { color: var(--gold); }
.btn--call { padding: 10px 20px; font-size: 14px; background: rgba(255,255,255,0.12); color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn--call:hover { background: var(--gold); color: white; border-color: var(--gold); }
.header__socials { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.nav-mobile-cta, .nav-mobile-socials { display: none; }
.hsoc { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; transition: transform .15s, box-shadow .2s; font-weight: 800; font-size: 12px; }
.hsoc:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.hsoc svg { width: 20px; height: 20px; }
.hsoc--wa { background: #25D366; }
.hsoc--tg { background: #229ED9; }
.hsoc--wb { background: linear-gradient(135deg, #b347b4, #6913a8); }
.hsoc--oz { background: #005bff; }
.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; margin-left: auto; flex-shrink: 0; border-radius: 10px; }
.burger:hover { background: rgba(255,255,255,0.1); }
.burger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

/* ================= HERO ================= */
.hero { position: relative; padding: 60px 0 80px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(29, 53, 87, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(196, 160, 98, 0.08) 0%, transparent 40%);
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: white; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
  border: 1px solid var(--line);
}
.badge__dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { margin-bottom: 24px; }
.accent { color: var(--gold); }
.hero__lead { font-size: 18px; color: var(--muted); margin-bottom: 32px; max-width: 580px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 6px 16px; padding-top: 32px; border-top: 1px solid var(--line); }
.stat { display: grid; grid-template-rows: subgrid; grid-row: span 2; align-content: start; }
.stat b { font-family: 'Manrope', sans-serif; font-size: 26px; color: var(--primary); font-weight: 700; line-height: 1.15; }
.stat span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; align-self: start; }

.hero__visual { position: relative; height: 540px; }
.hero__card { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--main { top: 0; left: 0; width: 75%; height: 75%; }
.hero__card--small { width: 45%; aspect-ratio: 4/5; }
.hero__card--s1 { bottom: 0; right: 0; border: 6px solid var(--bg); }
.hero__card--s2 { top: 8%; right: -3%; width: 32%; aspect-ratio: 3/4; border: 6px solid var(--bg); }
.hero__card-tag {
  position: absolute; bottom: 16px; left: 16px;
  padding: 6px 14px; background: rgba(15,18,32,0.85); color: white;
  border-radius: 999px; font-size: 12px; font-weight: 600;
  backdrop-filter: blur(8px);
}

/* ================= SECTION HEAD ================= */
.section-head { margin-bottom: 48px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section-head--center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.section-head--center > * { max-width: 720px; }
.eyebrow { display: inline-block; color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.eyebrow--light { color: var(--gold-2); }
.muted { color: var(--muted); font-size: 17px; }

/* ================= ВИДЕО ================= */
.video { padding: 80px 0; background: var(--white); }
.video__player {
  position: relative; max-width: 960px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #0f1220;
  cursor: pointer;
}
.video__player img, .video__media { width: 100%; height: 100%; object-fit: cover; display: block; }
.video__media { opacity: .92; transition: opacity .3s; }
.video__player.is-playing .video__media { opacity: 1; }
.video__player.is-playing .video__play { opacity: 0; pointer-events: none; }
.video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: white; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  animation: pulse-ring 2s infinite;
  transition: transform .3s;
}
.video__play:hover { transform: translate(-50%, -50%) scale(1.1); }
.video__play svg { margin-left: 4px; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  100% { box-shadow: 0 0 0 30px rgba(255,255,255,0); }
}

/* ================= ABOUT ================= */
.about { padding: 100px 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__text p { font-size: 17px; color: #2c3142; }
.about__list { list-style: none; padding: 0; margin: 24px 0 0; }
.about__list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 16px; }
.about__list svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.about__video { display: flex; justify-content: center; }
.about__video video { width: 100%; max-width: 420px; aspect-ratio: 720/963; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #0f1220; display: block; }

/* ================= КАЛЬКУЛЯТОР ================= */
.calc { padding: 100px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.calc__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: stretch; max-width: 1100px; margin: 0 auto; }
.calc__form { background: white; padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 20px; box-shadow: var(--shadow-sm); }
.calc__field select { background-color: var(--bg); }
.calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc__field { display: flex; flex-direction: column; gap: 8px; }
.calc__field > span { font-size: 13px; font-weight: 600; color: var(--muted); }
.calc__field select { padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: white; font-family: inherit; font-size: 15px; color: var(--dark); cursor: pointer; transition: border-color .2s; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231d3557' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.calc__field select:focus { outline: none; border-color: var(--primary); }
.calc__field--qty span b { color: var(--primary); font-size: 18px; }
.calc__field--qty input[type="range"] { -webkit-appearance: none; appearance: none; height: 6px; background: var(--line); border-radius: 999px; outline: none; cursor: pointer; }
.calc__field--qty input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; background: var(--primary); border-radius: 50%; cursor: pointer; box-shadow: 0 2px 6px rgba(29,53,87,0.3); }
.calc__field--qty input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; background: var(--primary); border-radius: 50%; cursor: pointer; border: none; }
.calc__range-marks { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }

.calc__presets { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 8px; }
.calc__presets button { padding: 8px 4px; background: var(--bg); border: 1.5px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--dark); cursor: pointer; transition: all .15s; }
.calc__presets button:hover { border-color: var(--primary); color: var(--primary); }
.calc__presets button.is-active { background: var(--primary); border-color: var(--primary); color: white; }

.calc__options { display: grid; gap: 8px; }
.calc__option { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; transition: all .15s; }
.calc__option:hover { border-color: var(--primary); }
.calc__option input[type="checkbox"] { margin-top: 3px; width: auto; flex-shrink: 0; }
.calc__option input[type="checkbox"]:checked ~ span b { color: var(--primary); }
.calc__option:has(input:checked) { border-color: var(--primary); background: rgba(29,53,87,0.04); }
.calc__option span { display: flex; flex-direction: column; gap: 2px; font-size: 14px; line-height: 1.35; }
.calc__option small { font-size: 12px; color: var(--muted); }

.calc__included { padding: 14px 16px; background: linear-gradient(135deg, rgba(196,160,98,0.08), rgba(29,53,87,0.04)); border-radius: 10px; border: 1px solid rgba(196,160,98,0.25); }
.calc__included-label { display: block; font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.calc__included ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.calc__included li { font-size: 13px; color: var(--dark); }

.calc__result { background: linear-gradient(135deg, var(--primary) 0%, #0a1d3a 100%); color: white; padding: 32px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px; }
.calc__metric { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.calc__metric:last-of-type { border-bottom: none; padding-bottom: 0; }
.calc__metric-label { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 6px; }
.calc__metric-value { font-size: 32px; font-weight: 800; color: white; display: block; }
.calc__metric--total .calc__metric-value { color: var(--gold-2); font-size: 40px; }
.calc__metric--save .calc__metric-save-value { font-size: 20px; color: #34d399; font-weight: 800; display: block; }
.calc__quick-facts { display: grid; gap: 8px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); margin: 4px 0; }
.calc__fact { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.92); }
.calc__fact svg { width: 18px; height: 18px; color: #34d399; flex-shrink: 0; }
.calc__metric small { display: block; margin-top: 4px; color: rgba(255,255,255,0.65); font-size: 13px; }
.calc__actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.calc__sub-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.calc__sub-actions .btn { font-size: 13px; padding: 10px 14px; background: rgba(255,255,255,0.12); color: white; border: 1.5px solid rgba(255,255,255,0.25); }
.calc__sub-actions .btn:hover { background: rgba(255,255,255,0.22); }
.calc__note { text-align: center; color: var(--muted); font-size: 13px; max-width: 800px; margin: 24px auto 0; }
@media (max-width: 1024px) { .calc__inner { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .calc { padding: 60px 0; }
  .calc__form, .calc__result { padding: 24px; }
  .calc__row { grid-template-columns: 1fr; }
  .calc__sub-actions { grid-template-columns: 1fr; }
}

/* Чекбоксы для образцов в модалке */
.form__group-label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.form__check-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.form__check--inline { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; transition: all .15s; font-size: 13px; }
.form__check--inline:hover { border-color: var(--primary); }
.form__check--inline input[type="checkbox"] { margin: 0; width: auto; }
.form__check--inline input[type="checkbox"]:checked + span { color: var(--primary); font-weight: 600; }

/* ================= WB MORE REVIEWS ================= */
.wb__more-reviews { margin-top: 50px; }
.wb__more-reviews h3 { color: white; text-align: center; font-size: 24px; margin-bottom: 24px; }
.wb__reviews-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .wb__reviews-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wb__reviews-row { grid-template-columns: 1fr; } }

/* ================= WORKSHOP ================= */
.workshop { padding: 100px 0; background: var(--white); }
.workshop__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.workshop__text .eyebrow { margin-bottom: 12px; }
.workshop__text p { color: var(--muted); font-size: 17px; margin-bottom: 20px; }
.workshop__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.workshop__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; }
.workshop__list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.workshop__photo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
@media (max-width: 1024px) { .workshop__inner { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .workshop { padding: 60px 0; } }

/* ================= MARQUEE ================= */
.marquee { padding: 40px 0; overflow: hidden; background: var(--bg-soft); }
.marquee__track {
  display: flex; gap: 20px;
  animation: marquee 60s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee__item { width: 280px; height: 200px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.marquee__item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - 10px), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track, .badge__dot, .float-btn, .video__play { animation: none !important; }
}

/* ================= ADVANTAGES ================= */
.advantages { padding: 100px 0; }
.advantages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  padding: 36px 28px; background: white; border-radius: var(--radius);
  border: 1px solid var(--line); transition: all .3s ease;
  opacity: 1 !important; transform: none !important;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }

/* Reveal-анимации удалены — давали jank на мобиле */
.feature__ico {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex; align-items: center; justify-content: center; color: white;
  margin-bottom: 20px;
}
.feature__ico svg { width: 32px; height: 32px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }

/* ================= PRODUCTS ================= */
.products { padding: 100px 0; background: var(--white); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 32px; }
.product { background: var(--bg); border-radius: var(--radius); overflow: hidden; transition: all .3s; border: 1px solid var(--line); }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product__img { aspect-ratio: 4/3; overflow: hidden; }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product:hover .product__img img { transform: scale(1.05); }
.product__body { padding: 24px; }
.product__tag {
  display: inline-block; padding: 4px 12px; background: var(--primary); color: white;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 999px; margin-bottom: 12px;
}
.product__tag--gold { background: var(--gold); }
.product__tag--blue { background: #3b82f6; }
.product__tag--green { background: #10b981; }
.product__body h3 { font-size: 20px; margin-bottom: 6px; }
.product__body p { font-size: 14px; color: var(--muted); min-height: 60px; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.product__price span { font-size: 12px; color: var(--muted); display: block; }
.product__price b { font-family: 'Manrope', sans-serif; font-size: 24px; color: var(--primary); }
.products__note { text-align: center; color: var(--muted); margin-top: 32px; font-size: 16px; }

/* ================= WB ================= */
.wb { position: relative; padding: 100px 0; overflow: hidden; color: white; }
.wb__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple-2) 0%, var(--purple) 50%, #8b5cf6 100%);
  z-index: 0;
}
.wb__bg::before, .wb__bg::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px);
}
.wb__bg::before { width: 400px; height: 400px; background: rgba(255,255,255,0.08); top: -100px; right: -100px; }
.wb__bg::after { width: 500px; height: 500px; background: rgba(196,160,98,0.15); bottom: -150px; left: -100px; }
.wb > .container { position: relative; z-index: 1; }
.wb__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.wb h2 { color: white; font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 16px; }
.wb__content p { font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.wb__logo {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: rgba(255,255,255,0.15);
  border-radius: 999px; margin-bottom: 24px; font-weight: 700; font-size: 16px;
  backdrop-filter: blur(10px);
}
.wb__logo svg { width: 32px; height: 16px; }
.wb__logo-mark { background: white; color: var(--purple-2); padding: 2px 10px; border-radius: 6px; font-weight: 800; }
.wb__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--white-ghost { background: rgba(255,255,255,0.12); color: white; border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(8px); }
.btn--white-ghost:hover { background: rgba(255,255,255,0.22); }
.wb__review--shot { position: relative; }
.wb__review--shot::before { content: '★ Отзыв WB'; position: absolute; top: -10px; right: 14px; background: white; color: var(--purple-2); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; letter-spacing: 0.05em; }
.wb__stars span { color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 0; }
.wb__cards-head { text-align: center; padding-top: 60px; margin-bottom: 24px; }
.wb__cards-head h3 { color: white; font-size: 24px; margin-bottom: 6px; }
.wb__cards-head p { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }
.wb__cards { display: grid; grid-auto-flow: column; grid-auto-columns: 230px; gap: 16px; overflow-x: auto; padding: 8px 4px 28px; scroll-snap-type: x mandatory; scroll-padding: 0 16px; -webkit-overflow-scrolling: touch; }
.wb__cards::-webkit-scrollbar { height: 6px; }
.wb__cards::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 4px; }
.wb__card { scroll-snap-align: start; background: white; border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; color: var(--dark); }
.wb__card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.wb__card-img { aspect-ratio: 3/4; overflow: hidden; background: #f0f0f0; }
.wb__card-img img { width: 100%; height: 100%; object-fit: cover; }
.wb__card-info { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.wb__card-info b { font-size: 14px; line-height: 1.3; min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wb__card-rating { font-size: 12px; color: #ffa800; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.wb__card-rating span { color: var(--muted); font-weight: 500; }
.wb__card-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.wb__card-price b { font-size: 18px; color: var(--purple-2); font-weight: 800; }
.wb__card-price s { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.wb__card-btn { display: block; text-align: center; padding: 10px; background: var(--purple); color: white; border-radius: 8px; font-weight: 700; font-size: 13px; text-decoration: none; transition: background .2s; margin-top: auto; }
.wb__card:hover .wb__card-btn { background: var(--purple-2); }
.wb__card-meta { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.wb__badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.wb__badge {
  padding: 20px 16px; background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}
.wb__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.wb__rating svg { width: 24px; height: 24px; }
.wb__rating b { font-family: 'Manrope', sans-serif; font-size: 28px; }
.wb__big { display: block; font-family: 'Manrope', sans-serif; font-size: 28px; margin-bottom: 4px; }
.wb__badge span { display: block; font-size: 13px; color: rgba(255,255,255,0.8); }
.wb__reviews { display: flex; flex-direction: column; gap: 14px; }
.wb__review { background: rgba(255,255,255,0.12); padding: 18px 20px; border-radius: var(--radius-sm); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); }
.wb__review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.wb__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.wb__stars { color: #FFD700; font-size: 13px; letter-spacing: 2px; }
.wb__review p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.92); }

/* ================= TRUST ================= */
.trust { padding: 100px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.trust__card { padding: 32px 28px; background: white; border-radius: var(--radius); border: 1px solid var(--line); transition: all .3s; }
.trust__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.trust__ico { font-size: 40px; margin-bottom: 16px; }
.trust__card h3 { font-size: 19px; margin-bottom: 10px; }
.trust__card p { color: var(--muted); font-size: 14px; }
.trust__count { display: inline-block; padding: 4px 12px; background: var(--bg-soft); color: var(--primary); font-weight: 700; font-size: 13px; border-radius: 999px; margin-top: 8px; }

.clients { margin-bottom: 60px; }
.clients__title { text-align: center; color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.clients__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.clients__logo {
  padding: 14px 24px; background: white; border: 1px solid var(--line);
  border-radius: 12px; font-weight: 700; font-size: 15px; color: var(--muted);
  font-family: 'Manrope', sans-serif;
  transition: all .3s;
}
.clients__logo:hover { color: var(--primary); border-color: var(--primary); }

.shipments h3 { text-align: center; margin-bottom: 8px; }
.shipments .muted { text-align: center; margin-bottom: 24px; }
.shipments__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.shipments__grid img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); }

/* ================= CASES ================= */
.cases { padding: 100px 0; background: var(--white); }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case { background: var(--bg); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.case__img { aspect-ratio: 16/9; overflow: hidden; }
.case__img img { width: 100%; height: 100%; object-fit: cover; }
.case__body { padding: 28px; }
.case__tag { display: inline-block; padding: 4px 12px; background: var(--primary); color: white; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 999px; margin-bottom: 12px; }
.case__body h3 { font-size: 19px; }
.case__body p { color: var(--muted); font-size: 14px; }
.case__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.case__metrics div { text-align: center; }
.case__metrics b { display: block; font-family: 'Manrope', sans-serif; font-size: 22px; color: var(--gold); }
.case__metrics span { font-size: 11px; color: var(--muted); text-transform: uppercase; }

/* ================= TERMS ================= */
.terms { padding: 100px 0; }
.terms__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.terms__head { position: sticky; top: 100px; }
.terms__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.terms__list li { display: flex; gap: 20px; padding: 24px; background: white; border-radius: var(--radius); border: 1px solid var(--line); transition: all .3s; }
.terms__list li:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.terms__num { font-family: 'Manrope', sans-serif; font-size: 24px; color: var(--gold); font-weight: 700; flex-shrink: 0; min-width: 40px; }
.terms__list h3 { font-size: 18px; margin-bottom: 4px; }
.terms__list p { font-size: 14px; color: var(--muted); margin: 0; }

/* ================= CERTIFICATE ================= */
.certificate { padding: 100px 0; background: var(--white); }
.certificate__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.certificate__doc { display: flex; justify-content: center; }
.certificate__doc-link { display: block; position: relative; width: 100%; max-width: 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); transition: transform .25s, box-shadow .25s; cursor: zoom-in; }
.certificate__doc-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.certificate__doc-link img { width: 100%; height: auto; display: block; }
.certificate__zoom { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(15,18,32,0.85); color: white; border-radius: 999px; font-size: 13px; font-weight: 600; backdrop-filter: blur(8px); opacity: 0; transition: opacity .25s; }
.certificate__zoom svg { width: 16px; height: 16px; }
.certificate__doc-link:hover .certificate__zoom { opacity: 1; }
@media (max-width: 1024px) { .certificate__zoom { opacity: 1; } }
.certificate__text .eyebrow { margin-bottom: 12px; }
.certificate__text p { color: var(--muted); font-size: 17px; margin-bottom: 20px; }
.certificate__list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.certificate__list li { font-size: 15px; color: var(--dark); }
@media (max-width: 1024px) { .certificate__inner { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .certificate { padding: 60px 0; } }

/* ================= FAQ ================= */
.faq { padding: 100px 0; background: var(--white); }
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: var(--bg); border-radius: var(--radius); padding: 0; border: 1px solid var(--line); transition: border-color .2s; overflow: hidden; }
.faq__item summary { transition: color .2s; }
.faq__item > .faq__answer { display: block; max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__answer p { padding: 0 24px 20px; margin: 0; color: var(--muted); opacity: 0; transition: opacity .25s ease .05s; }
.faq__item[open] .faq__answer p { opacity: 1; }
.faq__item[open] { border-color: var(--gold); }
.faq__item summary { padding: 20px 24px; font-weight: 600; font-size: 17px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 24px; color: var(--gold); transition: transform .3s; }
.faq__item[open] summary::after { transform: rotate(45deg); }

/* ================= CTA ================= */
.cta { padding: 100px 0; background: linear-gradient(135deg, var(--primary) 0%, #0a1d3a 100%); color: white; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; right: -150px; top: -150px; width: 500px; height: 500px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); opacity: 0.15; }
.cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta h2 { color: white; }
.cta__text p { font-size: 17px; color: rgba(255,255,255,0.85); }
.cta__schedule { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(255,255,255,0.1); border-radius: 999px; backdrop-filter: blur(10px); font-size: 14px; font-weight: 500; }
.cta__schedule svg { width: 18px; height: 18px; }

/* ================= FORM ================= */
.form { background: white; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-lg); color: var(--dark); }
.form h3 { margin-bottom: 20px; }
.form label { display: block; margin-bottom: 16px; }
.form label > span { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.form input, .form textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--dark);
  background: var(--bg); transition: all .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--primary); background: white; }
.form textarea { resize: vertical; min-height: 80px; }
.form label.form__check { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 16px; padding: 8px 12px; border-radius: 8px; border: 1.5px solid transparent; transition: border-color .2s, background .2s; }
.form label.form__check input[type="checkbox"] { width: 18px; height: 18px; flex: 0 0 18px; margin: 0; padding: 0; border: 1.5px solid var(--line); border-radius: 4px; cursor: pointer; background: white; }
.form label.form__check > span { display: inline; margin: 0; padding: 0; font-weight: normal; font-size: 13px; color: var(--muted); line-height: 1.4; }
.form label.form__check a { color: var(--primary); text-decoration: underline; }
.form label.form__check.is-invalid { border-color: #ef4444; background: rgba(239,68,68,0.08); animation: shake .4s ease; }
.form input.is-invalid, .form textarea.is-invalid { border-color: #ef4444 !important; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.form__note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ================= FOOTER ================= */
.footer { background: #0a0d1a; color: rgba(255,255,255,0.7); padding: 80px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo--footer .logo__text { color: white; }
.logo--footer .logo__text small { color: rgba(255,255,255,0.5); }
.footer__about { margin-top: 16px; font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer__col h4 { color: white; font-family: 'Manrope', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer__link { display: block; padding: 6px 0; color: rgba(255,255,255,0.7); font-size: 14px; transition: color .2s; }
.footer__link:hover { color: var(--gold); }
.footer__link--big { font-size: 22px; color: white; font-weight: 700; margin-bottom: 4px; }
.footer__schedule { padding: 10px 14px; background: rgba(255,255,255,0.05); border-radius: 10px; margin-top: 12px; font-size: 13px; }
.footer__address { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.footer__legal { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; gap: 24px; flex-wrap: wrap; }
.footer__legal small { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ================= FLOAT BUTTON ================= */
.float-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(196, 160, 98, 0.5);
  animation: pulse-gold 2.5s infinite;
  transition: transform .2s;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 26px; height: 26px; }
@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(196, 160, 98, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(196, 160, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 160, 98, 0); }
}

/* ================= MODAL ================= */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: flex-start; justify-content: center; padding: 20px; overflow-y: auto; }
.modal.is-open { display: flex; }
.modal__overlay { position: fixed; inset: 0; background: rgba(15, 18, 32, 0.7); backdrop-filter: blur(8px); }
.modal__box { position: relative; background: white; padding: 36px 32px 28px; border-radius: var(--radius); max-width: 480px; width: 100%; box-shadow: var(--shadow-lg); animation: modalIn .3s ease; margin: auto 0; }
@media (max-width: 640px) {
  .modal { padding: 12px; align-items: stretch; }
  .modal__box { padding: 28px 20px 20px; }
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal__close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; font-size: 24px; color: var(--muted); transition: all .2s; }
.modal__close:hover { background: var(--bg); color: var(--dark); }
.modal__box h3 { margin-bottom: 4px; }
.modal__box #modalSub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.modal__box .form { box-shadow: none; padding: 0; }

/* ================= TOAST ================= */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(200%);
  padding: 16px 24px; background: #10b981; color: white;
  border-radius: 12px; box-shadow: var(--shadow-lg);
  font-weight: 600; z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s, visibility 0s linear .4s;
  max-width: calc(100vw - 32px);
}
.toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; pointer-events: auto; transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s, visibility 0s; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 420px; max-width: 600px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .terms__grid, .cta__inner { grid-template-columns: 1fr; }
  .wb__inner { grid-template-columns: 1fr; }
  .advantages__grid, .trust__grid, .cases__grid, .products__grid { grid-template-columns: repeat(2, 1fr); }
  .shipments__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .header__inner { gap: 8px; padding: 12px 16px; }
  .header__socials { display: none; }
  .nav {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    width: 100%; margin: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    z-index: 60;
  }
  .nav.is-open { display: flex; }
  .nav > a {
    padding: 18px 20px;
    font-size: 17px; font-weight: 600;
    color: var(--dark);
    background: white;
    border-radius: 14px;
    margin-bottom: 8px;
    border: none;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 1px 3px rgba(15,18,32,0.04);
    transition: background .2s, transform .15s;
  }
  .nav > a:active { transform: scale(0.98); background: var(--bg-soft); }
  .nav > a::after {
    content: '';
    width: 10px; height: 10px;
    border-top: 2px solid var(--muted);
    border-right: 2px solid var(--muted);
    transform: rotate(45deg);
    margin-left: 12px;
    flex-shrink: 0;
  }
  .nav-mobile-cta {
    display: none;
    margin-top: 12px;
    padding: 18px 20px;
    background: var(--primary); color: white;
    border-radius: 14px;
    text-align: center;
    font-weight: 700; font-size: 16px;
    border: none;
    width: 100%;
  }
  .nav.is-open .nav-mobile-cta { display: block; }
  .nav-mobile-socials {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: white;
    border-radius: 14px;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  .nav.is-open .nav-mobile-socials { display: flex; }
  .nav-mobile-socials .hsoc { display: flex; width: 48px; height: 48px; margin: 0; padding: 0; border-radius: 12px; }
  .nav-mobile-socials .hsoc svg { width: 24px; height: 24px; }
  .nav-mobile-socials .hsoc span { font-size: 14px; }
  .burger { display: flex; }
  .btn--call { display: none; }
  .terms__head { position: static; }
}
@media (max-width: 480px) {
  .logo__mark { width: 38px; height: 38px; font-size: 15px; border-radius: 10px; }
  .logo__text { font-size: 15px; }
  .logo__text small { font-size: 10px; }
  .logo { gap: 8px; }
  .burger { width: 40px; height: 40px; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 60px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat b { font-size: 22px; }
  .advantages__grid, .trust__grid, .cases__grid, .products__grid, .about__photos, .wb__badges { grid-template-columns: 1fr; }
  .shipments__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid, .footer__legal { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
  .about, .advantages, .products, .wb, .trust, .cases, .terms, .faq, .cta, .video { padding: 60px 0; }
  .form, .modal__box { padding: 24px; }
  .marquee__item { width: 200px; height: 150px; }
  .clients__row { gap: 8px; }
  .clients__logo { padding: 10px 14px; font-size: 13px; }
  .hero__visual { height: 340px; }
}
