/* =========================================================
   Швеймаркет — лендинг
   Палитра: индиго #4D61C4 + жёлтый #FFD556 + белый
   Шрифт: Manrope
   ========================================================= */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
@media (max-width: 600px) { body { font-size: 17px; } }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }
ul, ol { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* Brand colors */
  --c-primary: #4D61C4;
  --c-primary-dark: #394891;
  --c-primary-deep: #2E3A85;
  --c-primary-light: #6677CC;
  --c-primary-soft: #E8ECFB;

  --c-accent: #FFD556;
  --c-accent-deep: #FFC127;
  --c-accent-soft: #FFF1B8;
  --c-coral: #F86B6D;
  --c-green: #43C68F;

  --c-text: #14182A;
  --c-text-muted: #5E6478;
  --c-text-light: #8B91A6;

  --c-bg: #FFFFFF;
  --c-bg-soft: #F4F6FB;
  --c-bg-blue: #EEF1FB;
  --c-border: #E5E8F2;
  --c-border-strong: #14182A;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --sh-sm: 0 4px 14px rgba(57, 72, 145, 0.08);
  --sh-md: 0 10px 30px rgba(57, 72, 145, 0.10);
  --sh-lg: 0 20px 50px rgba(57, 72, 145, 0.16);
  --sh-yellow: 0 14px 34px rgba(255, 213, 86, 0.45);
  --sh-yellow-sm: 0 8px 18px rgba(255, 213, 86, 0.35);

  /* Spacing rhythm 80/120/160 */
  --sp-section: 120px;
  --container: 1240px;
}

@media (max-width: 1100px) { :root { --sp-section: 96px; } }
@media (max-width: 600px)  { :root { --sp-section: 56px; } }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 600px) { .container { padding: 0 18px; } }

section { padding: var(--sp-section) 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow--white  { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(8px); }
.eyebrow--inverse{ background: rgba(255,255,255,.16); color: #fff; }

.section-title {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--c-text);
}
.section-title--inverse { color: #fff; }
.accent-yellow {
  position: relative;
  display: inline;
  background: linear-gradient(180deg, transparent 60%, var(--c-accent) 60%, var(--c-accent) 92%, transparent 92%);
  padding: 0 6px;
}
.section-lead {
  font-size: clamp(17px, 1.45vw, 20px);
  color: var(--c-text-muted);
  margin-top: 14px;
  max-width: 760px;
  line-height: 1.55;
}
.section-head { margin-bottom: 56px; }
.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: var(--r-pill);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; }

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(77, 97, 196, .32);
}
.btn--primary:hover { background: var(--c-primary-dark); box-shadow: 0 14px 26px rgba(77, 97, 196, .42); }

.btn--accent {
  background: var(--c-accent);
  color: var(--c-text);
  border-color: var(--c-text);
  box-shadow: 4px 4px 0 var(--c-text);
}
.btn--accent:hover { background: var(--c-accent-deep); box-shadow: 6px 6px 0 var(--c-text); transform: translate(-1px, -2px); }
.btn--accent:active { box-shadow: 2px 2px 0 var(--c-text); transform: translate(2px, 2px); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.btn--ghost-dark {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-text);
}
.btn--ghost-dark:hover { background: var(--c-text); color: var(--c-accent); }

.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--c-primary-deep);
  color: rgba(255,255,255,.88);
  font-size: 13.5px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 28px;
  gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar__hours, .topbar__phone, .topbar__email, .topbar__right a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__hours svg { color: var(--c-accent); }
.topbar__phone { color: #fff; font-weight: 700; }
.topbar__phone svg { color: var(--c-accent); }
.topbar__phone:hover { color: var(--c-accent); }
.topbar__email { color: #fff; font-weight: 600; }
.topbar__email svg { color: var(--c-accent); }
.topbar__email:hover { color: var(--c-accent); }
.topbar__right a:hover { color: var(--c-accent); }
.icon-pin { color: var(--c-accent); }
@media (max-width: 1024px) {
  .topbar__email { display: none; }
}
@media (max-width: 800px) {
  .topbar__hours { display: none; }
  .topbar__inner { padding: 8px 18px; }
}
@media (max-width: 560px) {
  .topbar__right { display: none; }
}

/* ---------- Header ---------- */
.header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  min-height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-primary);
}
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--c-primary);
  flex: 0 0 auto;
}
.logo__text {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.logo__name {
  font-weight: 900;
  font-size: 23px;
  letter-spacing: .03em;
  color: var(--c-text);
  line-height: 1;
}
.logo__tagline {
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .03em;
  color: var(--c-text-muted);
  line-height: 1.15;
  text-transform: none;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .logo__tagline { font-size: 11px; }
}
@media (max-width: 600px) {
  .logo__tagline { display: none; }
}
.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav a {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--c-primary-soft); color: var(--c-primary); }
.header__cta { margin-left: 6px; padding: 12px 22px; font-size: 14px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-pill);
  background: var(--c-primary-soft);
}
.burger span {
  width: 22px; height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 42, .55);
  backdrop-filter: blur(6px);
  z-index: 60;
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__nav {
  width: min(360px, 92vw);
  height: 100%;
  background: #fff;
  padding: 76px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  box-shadow: -12px 0 32px rgba(0, 0, 0, .18);
}
.mobile-menu__nav > a:first-of-type { margin-top: 4px; }
.mobile-menu__nav a {
  display: block;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
}
.mobile-menu__nav a:hover { background: var(--c-primary-soft); color: var(--c-primary); }
.mobile-menu__phone {
  margin-top: 16px;
  color: var(--c-primary) !important;
  font-weight: 800 !important;
  font-size: 20px !important;
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .header__inner { padding: 12px 18px; min-height: 64px; }
  .logo__mark { width: 34px; height: 34px; }
  .logo__name { font-size: 20px; }
}

/* ===========================================================
   1. HERO
   =========================================================== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 90% -10%, rgba(255, 213, 86, .26), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(67, 198, 143, .14), transparent 60%),
    linear-gradient(180deg, var(--c-primary-deep) 0%, var(--c-primary) 60%, #5C71D2 100%);
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 36px);
  opacity: .55;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__title {
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-top: 14px;
  margin-bottom: 18px;
}
.hero__title .accent-yellow { color: var(--c-text); }

.hero__address {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-pill);
  font-size: 14.5px;
  color: rgba(255,255,255,.92);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero__address svg { color: var(--c-accent); flex: 0 0 auto; }
.hero__address strong { color: #fff; font-weight: 800; letter-spacing: .02em; }

.hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,.86);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
}
.hero__badge-num {
  font-weight: 900;
  font-size: 30px;
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero__badge-num .plus { font-size: 22px; vertical-align: top; }
.hero__badge-txt {
  font-size: 13.5px;
  line-height: 1.2;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}

/* photo */
.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
}
.hero__photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.hero__photo-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--c-text);
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: var(--sh-md);
  z-index: 2;
}
.hero__photo-tag svg { color: var(--c-green); width: 20px; height: 20px; }

.hero__photo-bubble {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 110px;
  height: 110px;
  background: var(--c-accent);
  color: var(--c-text);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-align: center;
  line-height: 1.05;
  transform: rotate(8deg);
  box-shadow: var(--sh-yellow);
  border: 4px solid #fff;
  z-index: 3;
}
.bubble__num { font-size: 32px; line-height: 1; }
.bubble__txt { font-size: 12px; font-weight: 700; margin-top: 2px; letter-spacing: .04em; text-transform: uppercase; }

/* hero form — floating card overlapping photo at the bottom */
.hero__form {
  position: absolute;
  left: -40px;
  right: 30px;
  bottom: -60px;
  background: #fff;
  color: var(--c-text);
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
  box-shadow: var(--sh-lg);
  display: grid;
  gap: 10px;
  z-index: 2;
}
.hero__form-head { margin-bottom: 4px; }
.hero__form-head strong { display: block; font-size: 17px; font-weight: 800; }
.hero__form-head span { display: block; font-size: 13px; color: var(--c-text-muted); margin-top: 2px; }
.hero__form input,
.hero__form select,
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-border);
  background: var(--c-bg-soft);
  font-family: inherit;
  font-size: 15px;
  color: var(--c-text);
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.hero__form input:focus,
.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--c-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(77, 97, 196, .14);
}
.hero__form .btn { margin-top: 4px; }
.hero__form-policy {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--c-text-muted);
  line-height: 1.4;
}
.hero__form-policy a { text-decoration: underline; }

@media (max-width: 1100px) {
  .hero { padding: 60px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 38px; }
  .hero__media { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero__photo { max-width: 100%; }
  .hero__form { position: static; margin-top: 28px; left: auto; right: auto; bottom: auto; }
}
@media (max-width: 700px) {
  .hero__address { font-size: 14px; padding: 12px 16px; gap: 10px; }
  .hero__address strong { display: inline; }
}
@media (max-width: 560px) {
  .hero { padding: 44px 0 56px; }
  .hero__photo-bubble { width: 88px; height: 88px; top: -14px; right: -8px; }
  .bubble__num { font-size: 22px; }
  .bubble__txt { font-size: 10px; }
  .hero__badges { gap: 10px; }
  .hero__badges li { padding: 10px 14px 10px 12px; gap: 10px; flex: 1 1 auto; min-width: 0; }
  .hero__badge-num { font-size: 22px; }
  .hero__badge-txt { font-size: 11px; line-height: 1.2; }
  .hero__form { padding: 20px 18px 18px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__address { font-size: 13px; padding: 10px 14px; }
}

/* ===========================================================
   2. ABOUT (3 questions) — yarko-style
   =========================================================== */
.about { background: var(--c-bg); padding-top: calc(var(--sp-section) + 30px); }
.about__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about__media { position: sticky; top: 110px; }
.about__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
  border: 6px solid var(--c-accent);
  box-shadow: var(--sh-lg);
}
.about__photo img {
  width: 100%;
  display: block;
  filter: contrast(1.06) saturate(1.08);
}
.about__photo-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 65%, rgba(0,0,0,.18)),
    radial-gradient(120% 80% at 50% 50%, transparent 60%, rgba(0,0,0,.06));
}
.about__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.qcard {
  position: relative;
  border-radius: var(--r-lg);
  padding: 28px 28px 26px 92px;
  border: 2.5px solid var(--c-text);
  box-shadow: 6px 6px 0 var(--c-text);
  transition: transform .2s ease, box-shadow .2s ease;
}
.qcard:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--c-text);
}
.qcard--yellow { background: var(--c-accent); }
.qcard--white  { background: #fff; }
.qcard__check {
  position: absolute;
  left: 24px;
  top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-text);
  color: var(--c-accent);
  border: 2px solid var(--c-text);
}
.qcard__check--blue {
  background: var(--c-primary);
  color: #fff;
}
.qcard__check svg { width: 24px; height: 24px; }
.qcard__title {
  font-size: 19px;
  font-weight: 900;
  color: var(--c-text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 8px;
}
.qcard p {
  color: var(--c-text);
  font-size: 15.5px;
  line-height: 1.55;
  opacity: .82;
}
.qcard--white p { opacity: .68; }

.about__summary-wrap {
  position: relative;
  margin-top: 110px;
  padding-top: 30px;
}
.about__summary-headline {
  position: absolute;
  top: -10px;
  left: 28px;
  right: 28px;
  z-index: 2;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.035em;
  color: var(--c-text);
  text-transform: none;
  pointer-events: none;
  text-shadow:
    -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff,
    0 4px 0 var(--c-accent);
}
.about__summary-headline br { display: block; }
.about__summary {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: var(--c-primary);
  color: #fff;
  padding: 130px 44px 40px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--sh-lg);
}
.about__summary p {
  flex: 1 1 360px;
  min-width: 0;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  font-weight: 500;
}
.about__summary strong {
  color: var(--c-accent);
  font-weight: 900;
  background: rgba(255,213,86,.12);
  padding: 0 6px;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .about__summary-wrap { margin-top: 90px; }
  .about__summary { padding: 110px 32px 32px; }
}
@media (max-width: 600px) {
  /* Headline becomes static flow element — no more overlap bug */
  .about__summary-wrap { margin-top: 24px; padding-top: 0; }
  .about__summary-headline {
    position: static;
    font-size: clamp(34px, 10vw, 48px);
    line-height: .95;
    margin-bottom: 16px;
    text-shadow: none;
    color: var(--c-text);
  }
  .about__summary { padding: 28px 22px 26px; gap: 18px; }
}

@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media { position: static; }
}
@media (max-width: 720px) {
  .about__summary { padding: 28px 24px; gap: 20px; }
  .about__summary p { font-size: 16px; }
}
@media (max-width: 520px) {
  .qcard { padding: 26px 22px 22px 22px; }
  .qcard__check { position: static; margin-bottom: 14px; }
  .about__summary { padding: 24px 20px; }
  .about__summary .btn { width: 100%; justify-content: center; }
}

/* ===========================================================
   3. CLIENTS (Lenta + Svetofor)
   =========================================================== */
.clients { background: var(--c-bg-soft); }
.clients__card {
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(255,213,86,.22), transparent 60%),
    linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  box-shadow: var(--sh-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.clients__card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(255,213,86,.22), transparent 70%);
  border-radius: 50%;
}
.clients__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.clients__logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 20px;
}
.clients__logo {
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  max-width: 320px;
}
.clients__logo--svetofor { background: #FFCB1F; padding: 6px 14px; }
.clients__hint {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-top: 18px;
  line-height: 1.3;
  letter-spacing: -.01em;
  padding: 14px 20px;
  background: rgba(255,255,255,.08);
  border-left: 4px solid var(--c-accent);
  border-radius: 8px;
}
.clients__hint strong {
  color: var(--c-accent);
  font-weight: 900;
}

.clients__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}
.clients__points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: 18px 22px;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, transform .2s;
}
.clients__points li:hover { background: rgba(255,255,255,.14); border-color: rgba(255,213,86,.45); transform: translateX(2px); }
.clients__points .check {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.clients__points .check svg { width: 22px; height: 22px; }
.clients__points h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.clients__points p {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .clients__card { padding: 40px 24px; }
  .clients__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================================================
   4. TESTIMONIAL
   =========================================================== */
.testimonial { background: var(--c-bg); padding: 64px 0; }
@media (max-width: 600px) { .testimonial { padding: 48px 0; } }
.testimonial__head {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.badge-trophy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--c-accent);
  color: var(--c-text);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-text);
  box-shadow: 4px 4px 0 var(--c-text);
}
.testimonial__card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--c-border);
  border-left: 6px solid var(--c-accent);
  border-radius: var(--r-lg);
  padding: 48px 48px;
  box-shadow: var(--sh-md);
  position: relative;
}
.testimonial__quote {
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Georgia', serif;
  font-size: 140px;
  line-height: 1;
  color: var(--c-accent);
  opacity: .9;
}
.testimonial__card blockquote p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-text);
  margin-bottom: 14px;
}
.testimonial__card blockquote p:last-child { margin-bottom: 0; }
.testimonial__card blockquote strong { background: var(--c-accent-soft); padding: 0 4px; border-radius: 4px; }
.testimonial__card figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
}
.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial__name { font-weight: 800; font-size: 17px; }
.testimonial__role { font-size: 14px; color: var(--c-text-muted); }

@media (max-width: 700px) {
  .testimonial__card { padding: 32px 24px; }
  .testimonial__card blockquote p { font-size: 16px; }
}

/* ===========================================================
   5. CATALOG (Top sellers)
   =========================================================== */
.catalog { background: var(--c-bg-soft); }
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cat-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--c-border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
  box-shadow: var(--sh-md);
}
.cat-card:hover .cat-card__art { transform: scale(1.04); }
.cat-card:hover .cat-card__art img { transform: scale(1.05); }
.cat-card__art {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .25s ease, background .2s ease;
  border: 1.5px solid var(--c-border);
}
.cat-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .35s ease;
}
.cat-card span {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--c-text);
}
.catalog__note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: var(--c-text-muted);
  font-style: italic;
}

@media (max-width: 1100px) { .catalog__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { padding: 16px 10px; }
  .cat-card__art { width: 108px; height: 108px; }
  .cat-card span { font-size: 13.5px; }
}
@media (max-width: 420px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card__art { width: 96px; height: 96px; }
}

/* ===========================================================
   6. PLAN — big yellow numbers + dashed track
   =========================================================== */
.plan { background: var(--c-bg); }
.plan__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.plan__step {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  border: 1.5px solid var(--c-border);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.plan__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--c-primary);
}
.plan__step:hover .plan__num { color: var(--c-accent-deep); }
.plan__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 64px;
  right: -22px;
  width: 30px;
  height: 0;
  border-top: 3px dashed var(--c-accent);
  z-index: 1;
}
.plan__step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 56px;
  right: -28px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--c-accent);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  z-index: 2;
}
.plan__num {
  display: inline-block;
  font-size: 64px;
  font-weight: 900;
  color: var(--c-accent);
  line-height: .9;
  margin-bottom: 14px;
  letter-spacing: -.06em;
  -webkit-text-stroke: 1px var(--c-text);
  text-stroke: 1px var(--c-text);
  transition: color .25s;
}
.plan__step h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}
.plan__step p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.5;
}
.plan__cta {
  margin-top: 64px;
  text-align: center;
  background: var(--c-accent-soft);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  border: 2px dashed var(--c-accent-deep);
}
.plan__cta h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .plan__steps { grid-template-columns: repeat(2, 1fr); }
  .plan__step:nth-child(2)::after,
  .plan__step:nth-child(2)::before { display: none; }
}
@media (max-width: 500px) {
  .plan__steps { grid-template-columns: 1fr; }
  .plan__step::after,
  .plan__step::before { display: none !important; }
}

/* ===========================================================
   7. FURNITURE INTRO
   =========================================================== */
.fur-intro { background: var(--c-bg); padding-top: 60px; padding-bottom: 60px; }
.fur-intro__card {
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(255,213,86,.22), transparent 60%),
    linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.fur-intro__text { max-width: 820px; }
.fur-intro__lead {
  font-size: 18px;
  color: rgba(255,255,255,.86);
  margin: 18px 0 28px;
  line-height: 1.55;
  max-width: 720px;
}
.fur-intro__pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fur-intro__pills li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pill-num {
  font-weight: 900;
  font-size: 30px;
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.pill-num .plus { font-size: 24px; vertical-align: top; }
.pill-txt {
  font-size: 14px;
  color: rgba(255,255,255,.82);
}
@media (max-width: 800px) {
  .fur-intro__card { padding: 40px 24px; }
  .fur-intro__pills { grid-template-columns: 1fr; }
}

/* ===========================================================
   8. PROBLEMS
   =========================================================== */
.problems { background: var(--c-bg); }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problem-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--c-border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--c-coral); }
.problem-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(248, 107, 109, .14);
  color: var(--c-coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.problem-card__icon svg { width: 26px; height: 26px; }
.problem-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
}
.problem-card p {
  color: var(--c-text-muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.problems__solution {
  margin-top: 42px;
  background: var(--c-accent);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  border: 2.5px solid var(--c-text);
  box-shadow: 8px 8px 0 var(--c-text);
}
.problems__solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-text);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.problems__solution-icon svg { width: 32px; height: 32px; }
.problems__solution-text { display: grid; gap: 14px; }
.problems__solution-headline {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.ps-big {
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 900;
  line-height: .9;
  color: var(--c-primary-deep);
  letter-spacing: -.04em;
  text-shadow: 3px 3px 0 #fff, 3px 3px 0 var(--c-text);
  white-space: nowrap;
}
.ps-big-tail {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.ps-mid {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.35;
}
.ps-mid strong {
  color: var(--c-primary-deep);
  font-weight: 900;
  background: #fff;
  padding: 1px 8px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.ps-small {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text);
  opacity: .78;
  margin: 0;
}
.ps-small strong {
  color: var(--c-primary);
  background: #fff;
  padding: 0 6px;
  border-radius: 4px;
  font-weight: 800;
  opacity: 1;
}

@media (max-width: 900px) {
  .problems__grid { grid-template-columns: 1fr; }
  .problems__solution { grid-template-columns: 1fr; padding: 26px 24px; gap: 18px; box-shadow: 5px 5px 0 var(--c-text); }
}

/* ===========================================================
   9. ASSORTMENT
   =========================================================== */
.assort { background: var(--c-bg-soft); }
.assort__cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: #fff;
  border: 2px solid var(--c-accent);
  color: var(--c-text);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-pill);
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}
.tag:hover { background: var(--c-accent); color: var(--c-text); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(255, 213, 86, .45); }
.tag--more {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  font-weight: 800;
}
.tag--more:hover { background: var(--c-primary-dark); color: #fff; border-color: var(--c-primary-dark); box-shadow: 0 6px 16px rgba(77, 97, 196, .35); }

/* ===========================================================
   10. OWN PRODUCTION (TOP-3)
   =========================================================== */
.own-prod { background: var(--c-bg); }
.own-prod__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prod-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 30px 28px;
  border: 1.5px solid var(--c-border);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--c-primary); }
.prod-card:hover .prod-card__art { background: var(--c-accent-soft); }
.prod-card__own {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  background: var(--c-accent);
  color: var(--c-text);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-text);
  z-index: 2;
}
.prod-card__art {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--c-bg-soft);
  border-radius: var(--r-lg);
  display: block;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  transition: background .25s;
}
.prod-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.prod-card:hover .prod-card__art img { transform: scale(1.04); }
.prod-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.prod-card p {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .own-prod__grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   11. STEPS (5 шагов)
   =========================================================== */
.steps { background: var(--c-bg-soft); }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.step-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px 20px;
  text-align: center;
  border: 1.5px solid var(--c-border);
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-text);
  background: var(--c-accent);
  box-shadow: 6px 6px 0 var(--c-text);
}
.step-card__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background .25s, color .25s;
}
.step-card:hover .step-card__num { background: var(--c-text); color: var(--c-accent); }
.step-card h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 1000px) { .steps__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .steps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .steps__grid { grid-template-columns: 1fr; } }

/* ===========================================================
   12. METRICS — huge numbers
   =========================================================== */
.metrics {
  background:
    radial-gradient(800px 500px at 0% 100%, rgba(255,213,86,.22), transparent 60%),
    linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  color: #fff;
}
.metrics__head { margin-bottom: 56px; text-align: center; max-width: 980px; margin-left: auto; margin-right: auto; }
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 46px;
}
.metric {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 48px 24px 36px;
  text-align: center;
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform .25s, background .25s;
}
.metric:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.metric::before {
  content: attr(data-value);
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: clamp(120px, 12vw, 180px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 213, 86, .22);
  text-stroke: 1.5px rgba(255, 213, 86, .22);
  letter-spacing: -.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.metric__value {
  position: relative;
  font-size: clamp(64px, 8vw, 108px);
  font-weight: 900;
  color: var(--c-accent);
  letter-spacing: -.04em;
  line-height: .9;
  margin-bottom: 14px;
  text-shadow: 4px 4px 0 rgba(0,0,0,.18);
}
.metric__label {
  position: relative;
  font-size: 16px;
  color: rgba(255,255,255,.92);
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.metrics__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.m-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  font-weight: 600;
}
.m-tag .dot {
  width: 10px;
  height: 10px;
  background: var(--c-accent);
  border-radius: 50%;
}

@media (max-width: 800px) {
  .metrics__grid { grid-template-columns: 1fr; }
  .metric { padding: 36px 22px 28px; }
}

/* ===========================================================
   Pre-footer bridge
   =========================================================== */
.bridge {
  background: var(--c-accent);
  padding: 56px 0;
}
.bridge__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bridge__text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--c-text);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.bridge__text p {
  color: var(--c-text);
  opacity: .78;
  font-size: 16px;
}
.bridge__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bridge__actions .btn--accent { background: #fff; border-color: var(--c-text); }
.bridge__actions .btn--accent:hover { background: var(--c-text); color: var(--c-accent); }

/* ===========================================================
   13. FINAL CTA
   =========================================================== */
.final-cta { background: var(--c-bg-soft); }
.final-cta__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: stretch;
}
.final-cta__benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 30px;
}
.final-cta__benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
}
.final-cta__benefits svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 5px;
  background: var(--c-accent);
  color: var(--c-text);
  border-radius: 50%;
  border: 1.5px solid var(--c-text);
}
.final-cta__claim {
  background: var(--c-accent);
  border: 2px solid var(--c-text);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 26px;
  font-size: 17px;
  line-height: 1.55;
  box-shadow: 5px 5px 0 var(--c-text);
}
.final-cta__claim strong { display: block; font-size: 22px; margin-bottom: 4px; }

.final-cta__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.msg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.msg:hover { transform: translateY(-2px); box-shadow: var(--sh-md); filter: brightness(1.05); }
.msg--wa { background: #25D366; }
.msg--tg { background: #229ED9; }
.msg--max { background: #005FF9; }

.cta-form {
  background: #fff;
  padding: 38px 36px;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--c-border);
}
.cta-form h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.cta-form__note { color: var(--c-text-muted); margin-bottom: 22px; font-size: 14.5px; }
.cta-form label { display: block; margin-bottom: 14px; }
.cta-form label > span {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-text-muted);
  margin-bottom: 6px;
  margin-left: 18px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.cta-form__policy {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--c-text-muted);
  text-align: center;
}
.cta-form__policy a { text-decoration: underline; }

@media (max-width: 1024px) { .final-cta__grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 500px)  { .cta-form { padding: 28px 22px; } }

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,.85);
  padding: 72px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr 1.1fr .9fr;
  gap: 38px;
  margin-bottom: 48px;
}
.footer .logo__name { color: #fff; }
.footer .logo__mark { color: var(--c-accent); }
.footer__desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  max-width: 320px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  color: #fff;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col a {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer__col a:hover { color: var(--c-accent); }
.footer__contacts li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.78);
}
.footer__contacts svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--c-accent);
  margin-top: 3px;
}
.footer__msgs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__msgs .msg { padding: 10px 16px; font-size: 14px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}
.footer__bottom a { color: rgba(255,255,255,.65); text-decoration: underline; }

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* ===========================================================
   Floating CTA — mobile only
   =========================================================== */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-text);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-yellow);
  border: 2px solid var(--c-text);
  animation: pulse 2.4s infinite;
  transition: transform .2s ease;
}
.float-cta:hover { transform: scale(1.08); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 213, 86, .55); }
  70%  { box-shadow: 0 0 0 18px rgba(255, 213, 86, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 213, 86, 0); }
}
@media (max-width: 800px) {
  .float-cta { display: inline-flex; }
}

/* ===========================================================
   Animations on scroll (with stagger)
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* Mobile menu opens — lock scroll */
body.no-scroll { overflow: hidden; }

/* Selection */
::selection { background: var(--c-accent); color: var(--c-text); }

/* ===========================================================
   DECORATIVE FURNITURE ELEMENTS (scattered)
   =========================================================== */
.fur-intro,
.problems,
.assort,
.steps,
.metrics,
.fittings { position: relative; overflow: hidden; }
.fur-intro__card { position: relative; overflow: hidden; }

.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  filter: drop-shadow(0 14px 26px rgba(11, 16, 56, .32)) drop-shadow(0 4px 10px rgba(11, 16, 56, .18));
  will-change: transform;
}
.deco + .container,
.fur-intro__card > *:not(.deco) { position: relative; z-index: 2; }

/* furniture intro section — button */
.deco--fi-1 { top: 20px; left: -70px; width: 220px; transform: rotate(-10deg); }

/* problems section — scissors */
.deco--pr-1 { top: 40px; right: -70px; width: 260px; transform: rotate(8deg); }

/* assortment section — spool + thimble */
.deco--as-1 { top: 50px; left: -80px; width: 240px; transform: rotate(-8deg); }
.deco--as-2 { bottom: 30px; right: -60px; width: 220px; transform: rotate(14deg); }

/* steps section — needle */
.deco--st-1 { top: 20px; right: -80px; width: 280px; transform: rotate(-6deg); }

/* metrics section — tape measure */
.deco--mt-1 { top: 40px; left: -70px; width: 240px; transform: rotate(-14deg); }

/* Tablet — scale down */
@media (max-width: 1024px) {
  .deco--fi-1 { width: 160px; }
  .deco--pr-1 { width: 180px; }
  .deco--as-1 { width: 170px; }
  .deco--as-2 { width: 160px; }
  .deco--st-1 { width: 200px; }
  .deco--mt-1 { width: 170px; }
}

/* Mobile — hide decos completely (они декоративны, на мобильном ломают layout) */
@media (max-width: 640px) {
  .deco { display: none !important; }
}

/* ===== Flat-Lay Clothes Collage (About section) ===== */
.flatlay-collage {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--c-accent);
}
.flatlay-collage__grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 180px 100px 180px;
  gap: 3px;
  background: var(--c-text);
}
.flc {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.flc--1 { grid-column: 1; grid-row: 1/3; }
.flc--2 { grid-column: 2; grid-row: 1; }
.flc--3 { grid-column: 3; grid-row: 1; }
.flc--4 { grid-column: 2/4; grid-row: 2; }
.flc--5 { grid-column: 1; grid-row: 3; }
.flc--6 { grid-column: 2; grid-row: 3; }
.flc--7 { grid-column: 3; grid-row: 3; }
/* hide unused */
.flc--8, .flc--9 { display: none; }
.flatlay-collage:hover .flc { transform: scale(1.04); }
.flatlay-collage__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 5px 12px 5px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
@media (max-width: 640px) {
  .flatlay-collage { max-width: 100%; }
  .flatlay-collage__grid { grid-template-rows: 140px 80px 140px; }
}
/* collage placed inside hero photo slot */
.hero__photo .flatlay-collage {
  width: 100%;
  box-sizing: border-box;
}

/* ===== Deco photo items — real product photos as floating cards ===== */
/* Universal treatment: white card + shadow works on any section bg */
.deco {
  background: rgba(255,255,255,.96);
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.28), 0 4px 12px rgba(0,0,0,.16);
  filter: none;
  object-fit: contain;
}

/* ---------- Form success state ---------- */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  text-align: center;
  color: var(--c-text);
}
.form-success svg { color: #43C68F; }
.form-success__title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}
.form-success__sub {
  font-size: .95rem;
  opacity: .75;
  line-height: 1.5;
}
