/* BakinTimers landing — тёплый оранжево-красный стиль */

:root {
  --ink: #1a120e;
  --ink-soft: #5c4e46;
  --fog: #fff1e6;
  --mist: #fff7f0;
  --paper: #fffaf6;
  --lime: #ff6a1a;
  --lime-deep: #e8550f;
  --forest: #ff4d00;
  --forest-soft: #ff6a1a;
  --accent: #c91812;
  --accent-deep: #8b1210;
  --teal: #c2410c;
  --teal-bright: #f97316;
  --orange: #ff5a00;
  --orange-soft: #ff8c3a;
  --burgundy: #7a1412;
  --burgundy-deep: #5c0e0c;
  --line: rgba(180, 55, 20, 0.14);
  --shadow-soft: 0 18px 50px rgba(180, 50, 10, 0.14);
  --font-display: "Roboto Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --radius: 12px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  background: var(--mist);
  min-height: 100vh;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Layout shell (первый экран 1200px) ——— */
.shell {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.shell--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.shell--hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}

.shell--footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

/* ——— Header ——— */
.site-header {
  position: relative;
  z-index: 50;
  /* Кремовый фон шапки — как на образце */
  background: #fff8eb;
  border-bottom: 1px solid rgba(180, 120, 60, 0.12);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  will-change: transform;
}

/* Закреплённое меню — появляется со второго экрана и держится дальше */
.site-header.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: #fff8eb;
  border-bottom-color: rgba(180, 120, 60, 0.16);
  box-shadow: 0 8px 24px rgba(120, 50, 10, 0.08);
  transform: translateY(0);
}

/* Скрыто над экраном — перед выездом вниз */
.site-header.is-pinned.is-hidden {
  transform: translateY(-110%);
  box-shadow: none;
  pointer-events: none;
}

/* Занимает место шапки, пока она закреплена (fixed) */
.site-header-spacer {
  display: none;
  width: 100%;
  pointer-events: none;
}

.site-header-spacer.is-active {
  display: block;
}

.site-header__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.site-header__brand span {
  color: var(--orange);
}

.site-header__nav {
  display: none;
  gap: 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-header__nav a {
  text-decoration: none;
  color: #3a2e28;
  transition: color 0.2s var(--ease);
}

.site-header__nav a:hover {
  color: var(--orange);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

@media (min-width: 900px) {
  .site-header__nav {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--lime {
  background: linear-gradient(180deg, #a01c18 0%, var(--burgundy) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(143, 22, 20, 0.35);
}

.btn--lime:hover {
  background: linear-gradient(180deg, #b4221c 0%, var(--burgundy-deep) 100%);
  border-color: transparent;
  color: #fff;
}

.btn--outline {
  background: #fff3df;
  border: 1.5px solid #4a3428;
  color: #2a1e18;
  border-radius: 10px;
  box-shadow: none;
  font-weight: 700;
  padding: 0.65rem 1.15rem;
}

.btn--outline:hover {
  background: #fff;
  border-color: var(--orange);
  color: var(--ink);
}

.btn--primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
}

.btn--small {
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  background: var(--forest);
  color: #fff;
}

.btn--large {
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
}

@media (max-width: 520px) {
  .site-header__actions .btn--outline {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* ——— Hero — в точности по макету ——— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Фон первого экрана — ваше изображение */
  background-color: #ff9a35;
  background-image: url("../images/hero_bg.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

/* Слева — кремовый слой как на макете, справа фон виден целиком */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    95deg,
    #fff6eb 0%,
    #fff3e4 22%,
    rgba(255, 236, 210, 0.72) 38%,
    rgba(255, 200, 130, 0.2) 52%,
    transparent 64%
  );
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 32.5rem;
  animation: rise-in 0.85s var(--ease) both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  padding: 0.42rem 0.95rem 0.42rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c45a00;
  background: #ffe7b0;
  border: 1px solid rgba(230, 160, 40, 0.45);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(200, 100, 20, 0.1);
}

.hero__badge-star {
  color: #e8a010;
  font-size: 0.9rem;
  line-height: 1;
}

.hero__title {
  margin: 0 0 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 11.5em;
  text-wrap: balance;
}

.hero__title-accent {
  display: block;
  margin-top: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.hero__lead {
  margin: 0 0 1.45rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #4a3f38;
  max-width: 34ch;
  font-weight: 500;
}

/* Форма Autoweboffice — ровный ряд: поле + зазор + кнопка */
.hero-form-wrap {
  margin: 0 0 0.75rem;
  width: 100%;
  max-width: 34rem;
}

.hero-form-wrap .ape-view,
.hero-form-wrap [data-awo-ape-view-root],
.hero-form-wrap [id$="-container"],
.hero-form-wrap [id$="-block"],
.hero-form-wrap .ape-view-block__self,
.hero-form-wrap .ape-view-block__content,
.hero-form-wrap .ape-view-block_block-container__container,
.hero-form-wrap .ape-view-block_block-page,
.hero-form-wrap .ape-view-block_block-input-text,
.hero-form-wrap .ape-view-block_block-button-submit {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.hero-form-wrap form.ape-view-block_block-form,
.hero-form-wrap form {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 0.75rem !important;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-form-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 10px !important;
  column-gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Поле email */
#subscribe .hero-form-input,
#subscribe .hero-form-row input[name="email"],
.hero-form-wrap input[name="email"] {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 1.15rem 0 2.9rem !important;
  margin: 0 !important;
  border: 1.5px solid rgba(160, 120, 90, 0.28) !important;
  border-radius: 12px !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23a08070' stroke-width='2' stroke-linecap='round' d='M4 6h16v12H4V6zm0 0l8 7 8-7'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 1.05rem 50% !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: var(--ink) !important;
  outline: none !important;
  box-shadow: 0 6px 18px rgba(120, 50, 20, 0.08) !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

#subscribe .hero-form-input:focus,
#subscribe .hero-form-row input[name="email"]:focus,
.hero-form-wrap input[name="email"]:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.16), 0 6px 18px rgba(120, 50, 20, 0.08) !important;
}

#subscribe .hero-form-input::placeholder,
.hero-form-wrap input[name="email"]::placeholder {
  color: #9a8a7e !important;
  font-weight: 400 !important;
}

/* Кнопка «Получить таймеры» — тёмно-красная как на макете */
#subscribe .hero-form-submit,
#subscribe .hero-form-row button[type="submit"],
.hero-form-wrap button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 11rem !important;
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 1.45rem !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background-color: var(--burgundy) !important;
  background-image: linear-gradient(180deg, #9a221c 0%, #6a100e 55%, #5a0e0c 100%) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  text-shadow: none !important;
  cursor: pointer !important;
  box-shadow: 0 10px 22px rgba(90, 14, 12, 0.38) !important;
  filter: none !important;
  transform: none !important;
  box-sizing: border-box !important;
  transition: filter 0.2s var(--ease), box-shadow 0.2s var(--ease) !important;
}

#subscribe .hero-form-submit:hover,
#subscribe .hero-form-row button[type="submit"]:hover,
.hero-form-wrap button[type="submit"]:hover {
  background-image: linear-gradient(180deg, #b02820 0%, #7a1410 55%, #6a100e 100%) !important;
  box-shadow: 0 12px 26px rgba(90, 14, 12, 0.45) !important;
  filter: none !important;
  transform: none !important;
}

#subscribe .hero-form-submit span,
#subscribe .hero-form-submit strong,
.hero-form-wrap button[type="submit"] span,
.hero-form-wrap button[type="submit"] strong {
  display: inline !important;
  color: inherit !important;
  font: inherit !important;
  font-weight: 700 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Согласие */
.hero-form-consent,
#subscribe .hero-form-consent,
.hero-form-wrap .ape-view-block_block-input-checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 0.55rem !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
  color: var(--ink-soft) !important;
  cursor: pointer !important;
}

.hero-form-consent input[type="checkbox"],
#subscribe input[type="checkbox"] {
  margin: 0.2rem 0 0 !important;
  flex-shrink: 0 !important;
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--burgundy);
}

.hero-form-consent__link,
#subscribe .hero-form-consent a,
.hero-form-wrap .ape-view-block_block-input-checkbox a {
  color: var(--burgundy) !important;
  text-decoration: underline !important;
  text-underline-offset: 0.15em !important;
}

#subscribe .hero-form-consent a:hover {
  color: var(--forest) !important;
}

.hero-form-wrap .ape-view-block_block-button-submit__label,
.hero-form-wrap [class*="error"],
.hero-form-wrap .ape-view-block__error {
  font-size: 0.8rem !important;
}

.hero-form__note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  color: #7a6b62;
}

.hero-form__note svg {
  flex-shrink: 0;
  opacity: 0.7;
  color: #8a7a70;
}

.hero-benefits {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.85rem;
  width: max-content;
  max-width: 100%;
  margin: 0;
}

.hero-benefit {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem 0.85rem 0.85rem;
  background: #fff;
  border: 1.5px solid rgba(255, 160, 80, 0.55);
  border-radius: 14px;
  box-shadow:
    0 8px 22px rgba(180, 60, 20, 0.12),
    0 0 0 1px rgba(255, 200, 140, 0.25);
  font-size: 1.02rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: #1a1410;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-benefit__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 140, 40, 0.2), rgba(255, 106, 26, 0.12));
  color: #e85a00;
  flex-shrink: 0;
}

.hero-benefit__icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 520px) {
  .hero-benefits {
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-benefit {
    white-space: normal;
  }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero__bg {
    background-position: 68% center;
  }

  .hero__bg::before {
    background: linear-gradient(
      180deg,
      rgba(255, 246, 235, 0.94) 0%,
      rgba(255, 242, 225, 0.82) 48%,
      rgba(255, 220, 170, 0.4) 100%
    );
  }

  .hero__copy {
    max-width: 36rem;
  }
}

@media (max-width: 560px) {
  .hero__bg {
    background-position: 60% center;
  }

  .hero__title {
    font-size: clamp(2.1rem, 9vw, 2.6rem);
  }

  .hero-form-row {
    flex-wrap: wrap !important;
  }

  #subscribe .hero-form-submit,
  #subscribe .hero-form-row button[type="submit"],
  .hero-form-wrap button[type="submit"] {
    width: 100% !important;
  }
}

/* Старый demo-timer hero больше не используется в шапке, но классы оставлены на случай */
.demo-timer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1rem);
}

.demo-timer[hidden] {
  display: none !important;
}

.demo-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.demo-timer__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.demo-timer__value.is-tick {
  transform: translateY(-4px);
}

.demo-timer__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section__inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
  max-width: 18ch;
}

.section__lead {
  margin: 0 0 2.5rem;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* Акцент в блоках — общая подсветка фраз */
.looks-accent,
.section-accent {
  margin: 0 0 2.5rem;
  max-width: 38rem;
  padding: 0.85rem 1.1rem;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--burgundy);
  background: linear-gradient(90deg, rgba(255, 180, 80, 0.55), rgba(255, 140, 40, 0.12));
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
}

.looks-accent em,
.section-accent em {
  font-style: normal;
  color: #fff;
  background: var(--burgundy);
  padding: 0.05em 0.35em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-accent--after {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* Types — второй экран по макету */
.section--types {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 200, 100, 0.28), transparent 65%),
    #fff8ef;
}

.section--types::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(200, 140, 60, 0.35) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

.section--types::after {
  content: "";
  position: absolute;
  inset: -10% -5% auto;
  height: 280px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 80% at 8% 40%, transparent 55%, rgba(255, 170, 40, 0.35) 56%, transparent 58%),
    radial-gradient(ellipse 40% 80% at 92% 35%, transparent 55%, rgba(255, 150, 30, 0.3) 56%, transparent 58%);
  filter: blur(0.5px);
}

.section__inner--types {
  position: relative;
  z-index: 1;
  text-align: center;
}

.types-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.95rem 0.4rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d45500;
  background: #ffe7b8;
  border: 1px solid rgba(230, 160, 40, 0.4);
  border-radius: 999px;
}

.types-badge__star {
  color: #e89a10;
  font-size: 0.9rem;
  line-height: 1;
}

.types-title {
  margin: 0 auto 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 18ch;
}

.types-title span {
  color: var(--orange);
}

.types-lead {
  margin: 0 auto 2.75rem;
  max-width: 40ch;
  color: #6a5a52;
  font-size: 1.05rem;
  line-height: 1.5;
}

.types-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.6rem 1.25rem 1.7rem;
  background: #fff;
  border: 1px solid rgba(220, 180, 140, 0.35);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(140, 70, 20, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, #ff7a20 20%, #ff4d00 50%, #ff7a20 80%, transparent);
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(140, 70, 20, 0.14);
}

.type-card__num {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 180, 100, 0.35);
  pointer-events: none;
}

.type-card__visual {
  display: block;
  width: 100%;
  margin: 0.5rem 0 0.25rem;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
  min-height: 0;
}

.type-card__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
  user-select: none;
  -webkit-user-drag: none;
}

.type-card__divider {
  position: relative;
  width: 100%;
  max-width: 12rem;
  height: 1px;
  margin: 0.85rem 0 1rem;
  background: rgba(200, 160, 120, 0.35);
}

.type-card__divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 0.45rem;
  background: #fff;
  color: var(--orange);
  font-size: 0.75rem;
  line-height: 1;
}

.type-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.type-card__text {
  margin: 0;
  color: #6a5a52;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 28ch;
}

@media (prefers-reduced-motion: reduce) {
  .type-card {
    transition: none;
  }

  .type-card:hover {
    transform: none;
  }
}

/* Looks — третий экран по макету */
.section--looks {
  position: relative;
  /* Фон закреплён, контент проезжает поверх */
  background-color: #f3e4c4;
  background-image: url("../images/bg_3.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.section--looks::before,
.section--looks::after {
  content: none;
  display: none;
}

.section__inner--looks {
  position: relative;
  z-index: 1;
  text-align: center;
}

.looks-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.15rem;
  padding: 0.42rem 1rem 0.42rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e85a00;
  background: #fff;
  border: 1.5px solid #f07820;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(200, 100, 20, 0.1);
}

.looks-badge__star {
  color: #f07820;
  font-size: 0.9rem;
  line-height: 1;
}

.looks-title {
  margin: 0 auto 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.05rem, 4.6vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #1a1410;
  max-width: 22ch;
}

/* Первая строка — чёрная, вторая — оранжевая */
.looks-title__dark,
.looks-title__accent {
  display: block;
}

.looks-title__dark {
  color: #1a1410;
}

.looks-title__accent {
  color: #ff4d00;
}

.looks-lead {
  margin: 0 auto 1.2rem;
  max-width: 38ch;
  color: #5a4a42;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}

.looks-callout {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  padding: 0.85rem 1.2rem;
  text-align: center;
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  font-weight: 600;
  line-height: 1.5;
  color: #3a2e28;
  background: rgba(255, 236, 200, 0.75);
  border: 1.5px solid rgba(240, 140, 50, 0.65);
  border-radius: 10px;
  box-shadow: none;
}

.looks-callout em {
  font-style: normal;
  color: #ff4d00;
  background: none;
  padding: 0;
  border-radius: 0;
  font-weight: 800;
}

.looks-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.looks-browser {
  min-width: 0;
  background: #fffaf4;
  border: 1.5px solid rgba(230, 180, 100, 0.7);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(140, 70, 20, 0.12);
  overflow: hidden;
}

.looks-browser__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.55rem 1rem;
  background: linear-gradient(180deg, #fff8ec, #ffefd6);
  border-bottom: 1px solid rgba(220, 170, 100, 0.4);
}

.looks-browser__dots {
  position: absolute;
  left: 1rem;
  display: flex;
  gap: 6px;
}

.looks-browser__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f0b429;
  box-shadow: 0 0 0 1px rgba(180, 120, 20, 0.15);
}

.looks-browser__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a5a50;
}

.looks-nav {
  appearance: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid #f07820;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.95);
  color: #e85a00;
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(160, 80, 20, 0.12);
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.looks-nav:hover {
  transform: scale(1.06);
  background: #fff;
  box-shadow: 0 10px 22px rgba(160, 80, 20, 0.16);
}

.looks-nav:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
}

.looks-stage__preview {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1rem, 3vw, 2rem);
  margin: 0;
  /* Фон внутри переключателя — bg_3.jpg (файл не меняем) */
  background-color: #fff8eb;
  background-image: url("../images/bg_3.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  /* visible — иначе 3D-переворот табло обрезается */
  overflow: visible;
}

.looks-stage__preview .selltimers-public-timer {
  width: 100%;
  max-width: 560px;
  /* Цвета под лендинг / макет предпросмотра */
  --selltimers-public-background: linear-gradient(180deg, #3a1812 0%, #1a0a08 100%);
  --selltimers-public-title-color: #ffffff;
  --selltimers-public-digit-color: #ffffff;
  --selltimers-public-label-color: #f0a84a;
  --selltimers-public-card-background: #140806;
  --selltimers-public-card-border-color: rgba(255, 130, 40, 0.65);
  --selltimers-public-card-border-width: 1.5px;
  --selltimers-public-block-border-color: rgba(255, 150, 50, 0.75);
  --selltimers-public-block-border-width: 1.5px;
  --selltimers-public-block-shadow:
    0 0 0 1px rgba(255, 140, 40, 0.35),
    0 0 28px rgba(255, 100, 20, 0.28),
    0 18px 42px rgba(40, 10, 5, 0.45);
  --selltimers-public-before-button-bg: #e8550f;
  --selltimers-public-before-button-text: #ffffff;
  --selltimers-public-before-button-border-color: transparent;
  --selltimers-public-digits-font-size: 48px;
  --selltimers-public-title-font-size: 22px;
  --selltimers-public-radius: 18px;
  --selltimers-public-button-radius: 10px;
  --selltimers-public-font-family: var(--font-display), sans-serif;
  /* Центр без transform — иначе perspective у табло «сплющивается» */
  position: absolute;
  inset: 0;
  margin: auto;
  height: fit-content;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s;
  will-change: opacity;
  background: linear-gradient(180deg, #3a1812 0%, #1a0a08 100%);
  border-color: rgba(255, 150, 50, 0.75);
  padding: 1.55rem 1.4rem 1.65rem;
}

.looks-stage__preview .selltimers-public-timer.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  z-index: 2;
}

.looks-stage__preview .selltimers-public-timer.is-leaving {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transform: none;
  z-index: 1;
  transition:
    opacity 0.32s ease,
    visibility 0.32s;
}

/* Общие цифры — не трогаем табло (у него свой размер через cqh) */
.looks-stage__preview .selltimers-public-timer:not([data-style="flip"]) .selltimers-public-value {
  font-size: clamp(1.6rem, 6vw, 2.85rem) !important;
  color: #fff !important;
  text-shadow: 0 0 18px rgba(255, 120, 40, 0.35);
}

.looks-stage__preview .selltimers-public-timer[data-style="circles"] .selltimers-public-value {
  font-size: clamp(1.35rem, 5vw, 2.2rem) !important;
}

.looks-stage__preview .selltimers-public-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #f0a84a !important;
}

.looks-stage__preview .selltimers-public-title {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem) !important;
  color: #fff !important;
  font-weight: 600 !important;
  margin-bottom: 1.15rem !important;
}

/* Кнопка только визуальная — без ссылки */
.looks-stage__preview .selltimers-public-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 1.35rem !important;
  padding: 0.75rem 1.75rem !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-family: var(--font-body) !important;
  color: #fff !important;
  background: linear-gradient(180deg, #ff7a2a 0%, #e04010 100%) !important;
  background-color: #e8550f !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 20px rgba(200, 60, 10, 0.35) !important;
  cursor: default !important;
  pointer-events: none !important;
  text-decoration: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Карточки — широкие низкие прямоугольники, без двоеточий */
.looks-stage__preview .selltimers-public-timer[data-style="cards"] {
  --selltimers-public-digits-font-size: 28px;
  --selltimers-public-radius: 4px;
}

.looks-stage__preview .selltimers-public-timer[data-style="cards"] .selltimers-public-units {
  gap: 0.65rem;
  align-items: stretch;
}

.looks-stage__preview .selltimers-public-timer[data-style="cards"] .selltimers-public-unit {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  /* Жёстко низкая высота → ширина колонки даёт широкий прямоугольник */
  height: 4.25rem !important;
  min-height: 4.25rem !important;
  max-height: 4.25rem !important;
  aspect-ratio: auto !important;
  container-type: normal !important;
  background: #140806 !important;
  border: 1.5px solid rgba(255, 130, 40, 0.65) !important;
  border-radius: 4px !important;
  justify-content: center;
  align-items: center;
  gap: 2px !important;
  padding: 0.35rem 0.5rem !important;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 140, 50, 0.18), 0 0 14px rgba(255, 90, 20, 0.12);
}

.looks-stage__preview .selltimers-public-timer[data-style="cards"] .selltimers-public-value {
  font-size: 1.65rem !important;
  line-height: 1 !important;
  text-shadow: 0 0 12px rgba(255, 120, 40, 0.3);
}

.looks-stage__preview .selltimers-public-timer[data-style="cards"] .selltimers-public-label {
  font-size: 10px !important;
  line-height: 1 !important;
}

.looks-stage__preview .selltimers-public-timer[data-style="cards"] .selltimers-public-unit:not(:last-child)::after {
  content: none !important;
}

/* Квадраты — тёмные ячейки + оранжевое свечение */
.looks-stage__preview .selltimers-public-timer[data-style="squares"] .selltimers-public-unit {
  position: relative;
  background: #140806 !important;
  border-color: rgba(255, 130, 40, 0.65) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 140, 50, 0.18), 0 0 18px rgba(255, 90, 20, 0.14);
}

/* Минимализм: внешний блок есть, внутри — только цифры и подписи, без карточек */
.looks-stage__preview .selltimers-public-timer[data-style="minimal"] {
  background: linear-gradient(180deg, #3a1812 0%, #1a0a08 100%) !important;
  border-color: rgba(255, 150, 50, 0.75) !important;
  box-shadow:
    0 0 0 1px rgba(255, 140, 40, 0.35),
    0 0 28px rgba(255, 100, 20, 0.28),
    0 18px 42px rgba(40, 10, 5, 0.45) !important;
}

.looks-stage__preview .selltimers-public-timer[data-style="minimal"] .selltimers-public-unit {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0.35rem 0.4rem !important;
}

.looks-stage__preview .selltimers-public-timer[data-style="minimal"] .selltimers-public-units {
  gap: 0.5rem !important;
}

.looks-stage__preview .selltimers-public-timer[data-style="circles"] .selltimers-public-ring__track {
  stroke: rgba(255, 255, 255, 0.14) !important;
}

.looks-stage__preview .selltimers-public-timer[data-style="circles"] .selltimers-public-ring__progress {
  stroke: #ff6a1a !important;
}

/* Табло: только цвета через переменные — градиенты и 3D из плагина не перекрываем */
.looks-stage__preview .selltimers-public-timer[data-style="flip"] {
  --selltimers-public-card-background: #5c2a20;
  --selltimers-public-flip-face: #5c2a20;
  --selltimers-public-digits-font-size: 42px;
  --selltimers-public-radius: 12px;
  --selltimers-public-digit-color: #ffffff;
}

.looks-stage__preview .selltimers-public-timer[data-style="flip"] .selltimers-flip__card {
  box-shadow:
    0 0 0 1px rgba(255, 130, 50, 0.35),
    0 8px 18px rgba(20, 5, 0, 0.35);
}

.looks-stage__preview .selltimers-public-timer[data-style="flip"] .selltimers-public-unit {
  min-height: 0;
  overflow: visible;
}

.looks-tabs-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e85a00;
}

.looks-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.looks-tabs__btn {
  appearance: none;
  border: 1.5px solid rgba(230, 150, 70, 0.65);
  background: #fffaf3;
  color: #2a1e18;
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.looks-tabs__btn:hover {
  border-color: #f07820;
  transform: translateY(-1px);
}

.looks-tabs__btn.is-active {
  background: linear-gradient(180deg, #8b1c14 0%, #5c100c 100%);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 10px 24px rgba(100, 18, 12, 0.38),
    0 4px 0 #ff6a1a;
  transform: translateY(-1px);
}

.looks-tabs__btn:disabled {
  cursor: default;
  opacity: 1;
}

@media (max-width: 720px) {
  .looks-carousel {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .looks-nav--prev {
    order: 2;
    justify-self: end;
    margin-right: 0.25rem;
  }

  .looks-browser {
    order: 1;
  }

  .looks-nav--next {
    order: 2;
    justify-self: start;
    margin-left: 0.25rem;
  }

  .looks-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .looks-browser {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .looks-nav,
  .looks-tabs__btn {
    transition: none;
  }
}

/* After — экран «после завершения» по макету */
.section--after {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-color: #f6e8c8;
  background-image: url("../images/bg_4.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section__inner--after {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.after-layout {
  display: grid;
  /* Карточки шире — как на макете */
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: end;
  min-height: clamp(320px, 52vh, 560px);
}

/* Заголовок сверху сам по себе — не в узкой колонке */
.after-head {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  text-align: left;
}

.after-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.95rem 0.4rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e85a00;
  background: #fff;
  border: 1.5px solid #f07820;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(200, 100, 20, 0.1);
}

.after-badge__star {
  color: #f07820;
  font-size: 0.88rem;
  line-height: 1;
}

/* Ровно две строки: чёрная + оранжевая */
.after-title {
  margin: 0 0 0.85rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5.2vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.after-title__dark,
.after-title__accent {
  display: block;
  white-space: nowrap;
}

.after-title__dark {
  color: #111111;
}

.after-title__accent {
  color: #e64326;
}

.after-lead {
  margin: 0;
  max-width: 34ch;
  color: #1a1410;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 500;
}

/* Свободное место слева — сквозь него видна иллюстрация из bg_4.jpg */
.after-visual {
  flex: 1 1 auto;
  min-height: 280px;
  pointer-events: none;
}

.after-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: start;
  align-self: center;
  width: 100%;
}

.after-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.15rem 2.75rem 1.15rem 1.1rem;
  text-align: left;
  background: #fffdf8;
  border: 1px solid rgba(230, 170, 90, 0.45);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(140, 70, 20, 0.1);
  overflow: hidden;
}

.after-card--wide {
  grid-column: 1 / -1;
  align-items: center;
  padding: 1.2rem 3.25rem 1.2rem 1.2rem;
}

.after-card__icon {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 68px;
  max-width: 92px;
  object-fit: contain;
  margin: 0;
}

.after-card--wide .after-card__icon {
  height: 56px;
  max-width: 180px;
}

.after-card__copy {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.1rem;
}

.after-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.2;
}

.after-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #3a322c;
}

/* Номер — справа сверху, как на макете */
.after-card__num {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255, 150, 70, 0.32);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 980px) {
  .after-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .after-visual {
    display: none;
  }

  .after-cards {
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .after-title__dark,
  .after-title__accent {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .after-cards {
    grid-template-columns: 1fr;
  }

  .after-card--wide {
    grid-column: auto;
  }

  .after-card {
    flex-direction: row;
  }

  .after-card {
    padding-right: 2.4rem;
  }
}

/* After end — старый список (если остался где-то) */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.feature-list span {
  color: var(--ink-soft);
  max-width: 52ch;
}

@media (min-width: 720px) {
  .feature-list li {
    grid-template-columns: 14rem 1fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

/* Setup — «Как это работает» по макету */
.section--setup {
  position: relative;
  overflow: hidden;
  background-color: #fff8ef;
  /* Мягкие блики по углам — как на макете */
  background-image:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(255, 170, 60, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255, 140, 40, 0.14), transparent 68%),
    radial-gradient(ellipse 40% 35% at 85% 100%, rgba(255, 200, 120, 0.12), transparent 70%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--setup::before,
.section--setup::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border: 1.5px solid rgba(255, 150, 60, 0.22);
  border-radius: 50%;
}

.section--setup::before {
  width: 420px;
  height: 420px;
  top: -180px;
  left: -160px;
  border-color: rgba(255, 160, 50, 0.2);
}

.section--setup::after {
  width: 360px;
  height: 360px;
  top: -140px;
  right: -140px;
  border-color: rgba(255, 140, 40, 0.18);
}

.section__inner--setup {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
}

.setup-head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.setup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.15rem;
  padding: 0.42rem 1rem 0.42rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e85a00;
  background: #fff;
  border: 1.5px solid #f07820;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(200, 100, 20, 0.08);
}

.setup-badge__star {
  color: #f07820;
  font-size: 0.88rem;
  line-height: 1;
}

.setup-title {
  margin: 0 0 1rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.setup-title__dark,
.setup-title__accent {
  display: block;
  white-space: nowrap;
}

.setup-title__dark {
  color: #1a1410;
}

.setup-title__accent {
  color: #e64326;
}

.setup-lead {
  margin: 0 auto;
  max-width: 38rem;
  color: #4a3f38;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
}

/* Таймлайн: линия + кружки 01–03 над карточками */
.setup-track {
  position: relative;
  margin: 0 0 1.35rem;
  padding: 0 0.5rem;
}

.setup-track__line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f07820 8%, #f07820 92%, transparent);
  transform: translateY(-50%);
}

.setup-track__dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.setup-track__dots li {
  display: flex;
  justify-content: center;
}

.setup-track__dots span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f07820;
  box-shadow: 0 4px 14px rgba(200, 90, 20, 0.12);
  font-family: "Oswald", var(--font-display), sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e85a00;
  letter-spacing: 0.02em;
}

.setup-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.setup-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.4rem 1.15rem;
  background: #fffdf9;
  border: 1.5px solid rgba(240, 150, 60, 0.45);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(160, 80, 20, 0.08);
  overflow: hidden;
}

.setup-card__num {
  position: relative;
  flex: 0 0 auto;
  width: 4.25rem;
  height: 3.6rem;
  margin-top: 0.1rem;
  user-select: none;
}

.setup-card__num-bg,
.setup-card__num-fg {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Oswald", var(--font-display), sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Крупный бледный номер — фон */
.setup-card__num-bg {
  font-size: clamp(3.2rem, 4.5vw, 4rem);
  color: rgba(255, 130, 40, 0.18);
  transform: translate(-4px, -6px);
}

/* Яркий номер поверх */
.setup-card__num-fg {
  font-size: clamp(1.85rem, 2.8vw, 2.25rem);
  color: #e85a00;
  top: 0.55rem;
  left: 0.15rem;
}

.setup-card__copy {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 0.2rem;
}

.setup-card__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1410;
  line-height: 1.2;
}

.setup-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.45;
  color: #5a4a42;
}

@media (max-width: 900px) {
  .setup-track {
    display: none;
  }

  .setup-cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    max-width: 32rem;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .setup-title__dark,
  .setup-title__accent {
    white-space: normal;
  }
}

/* Plus — карточки с иконками */
.section--plus {
  background: rgba(255, 106, 26, 0.05);
}

.plus-grid {
  display: grid;
  gap: 1.25rem;
}

.plus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.4rem 1.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(180, 55, 20, 0.04);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
}

/* Цветная полоска сверху карточки */
.plus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--lime));
  opacity: 0.85;
  transition: height 0.35s var(--ease), opacity 0.35s ease;
}

.plus-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  color: var(--card-ink, var(--forest));
  background: var(--card-soft, rgba(255, 140, 40, 0.35));
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

.plus-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.plus-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.plus-card__text {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 36ch;
}

/* Варианты цвета карточек */
.plus-card--lime {
  --card-accent: #ff6a1a;
  --card-soft: rgba(255, 106, 26, 0.16);
  --card-ink: #9a3a08;
}

.plus-card--teal {
  --card-accent: #c91812;
  --card-soft: rgba(201, 24, 18, 0.12);
  --card-ink: #8b1210;
}

.plus-card--amber {
  --card-accent: #e0a01a;
  --card-soft: rgba(224, 160, 26, 0.16);
  --card-ink: #7a4f05;
}

.plus-card--sky {
  --card-accent: #d4552a;
  --card-soft: rgba(212, 85, 42, 0.14);
  --card-ink: #8a3018;
}

.plus-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--card-accent) 45%, transparent);
  box-shadow: 0 18px 40px rgba(180, 55, 20, 0.12);
}

.plus-card:hover::before {
  height: 4px;
  opacity: 1;
}

.plus-card:hover .plus-card__icon {
  transform: scale(1.08) rotate(-3deg);
}

@media (min-width: 720px) {
  .plus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plus-card,
  .plus-card__icon,
  .plus-card::before {
    transition: none;
  }

  .plus-card:hover {
    transform: none;
  }

  .plus-card:hover .plus-card__icon {
    transform: none;
  }
}

/* FAQ — по макету: слева заголовок, справа карточки */
.section--faq {
  position: relative;
  overflow: hidden;
  background-color: #fff9f2;
  background-image:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(255, 170, 60, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 35% at 100% 10%, rgba(255, 140, 40, 0.08), transparent 65%),
    radial-gradient(ellipse 35% 30% at 5% 100%, rgba(255, 200, 120, 0.1), transparent 70%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section__inner--faq {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.faq-head {
  text-align: left;
  padding-top: 0.15rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e85e2c;
  background: #fff;
  border: 1.5px solid #e85e2c;
  border-radius: 10px;
}

.faq-title {
  margin: 0 0 1rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.faq-title__dark,
.faq-title__accent {
  display: block;
  white-space: nowrap;
}

.faq-title__dark {
  color: #2d1a16;
}

.faq-title__accent {
  color: #e85e2c;
}

.faq-lead {
  margin: 0 0 1.25rem;
  max-width: 22rem;
  color: #707070;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.faq-head__line {
  display: block;
  width: 3.25rem;
  height: 2px;
  background: #e85e2c;
  border-radius: 2px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  border: 0;
}

.faq__item {
  margin: 0;
  padding: 0;
  background: #fffdf9;
  border: 1px solid rgba(230, 180, 120, 0.35);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(160, 80, 20, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.faq__item:first-child {
  box-shadow:
    0 0 0 1px rgba(232, 94, 44, 0.12),
    0 8px 22px rgba(200, 70, 20, 0.1);
}

.faq__item.is-open {
  border-color: rgba(232, 94, 44, 0.4);
  box-shadow: 0 10px 26px rgba(180, 60, 20, 0.1);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #2d1a16;
  user-select: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

/* Круг с плюсом — как на макете */
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1.5px solid #e85e2c;
  border-radius: 50%;
  color: #e85e2c;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  opacity: 1;
  transform: none;
  transition:
    transform 0.35s var(--ease),
    background 0.25s ease,
    color 0.25s ease;
}

.faq__item.is-open summary::after {
  content: "–";
  background: #e85e2c;
  color: #fff;
  transform: none;
  opacity: 1;
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
}

.faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: #5a4a42;
  max-width: none;
  line-height: 1.6;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.3s ease 0.05s,
    transform 0.35s var(--ease) 0.05s;
}

.faq__item.is-open p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .faq-head {
    max-width: 28rem;
  }

  .faq-title__dark,
  .faq-title__accent {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__panel,
  .faq__item summary::after,
  .faq__item p {
    transition: none;
  }

  .faq__item p {
    transform: none;
    opacity: 1;
  }
}

/* Карточка «задать вопрос» под FAQ */
.faq-support {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  max-width: none;
  margin: 2rem 0 0;
  padding: 1.5rem 1.4rem 1.55rem;
  background: #fff;
  border: 1px solid rgba(230, 180, 120, 0.35);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(180, 55, 20, 0.05);
  border-top: 3px solid var(--lime);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
}

.faq-support:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(180, 55, 20, 0.1);
}

.faq-support__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.faq-support__text {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.faq-support__btn {
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .faq-support {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.6rem 1.6rem 1.65rem;
  }

  .faq-support__copy {
    flex: 1;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-support {
    transition: none;
  }

  .faq-support:hover {
    transform: none;
  }
}

/* CTA — завершающий экран по макету */
.section--cta {
  position: relative;
  overflow: hidden;
  background-color: #fff5eb;
  background-image:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(255, 170, 60, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 140, 40, 0.12), transparent 68%);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 9vw, 6.5rem);
}

.section__inner--cta {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.cta-card {
  padding: clamp(2.75rem, 6vw, 4.25rem) clamp(1.5rem, 5vw, 3rem);
  background:
    linear-gradient(165deg, #fff0de 0%, #ffe4c4 48%, #ffd9b0 100%);
  border: 1.5px solid rgba(230, 150, 80, 0.45);
  border-radius: 22px;
  box-shadow:
    0 18px 48px rgba(160, 70, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.cta-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  letter-spacing: -0.02em;
  color: #e84c22;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.35rem;
  padding: 0.4rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e84c22;
  background: transparent;
  border: 1.5px solid #e84c22;
  border-radius: 999px;
}

.cta-title {
  margin: 0 0 1rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.cta-title__dark,
.cta-title__accent {
  display: block;
  white-space: nowrap;
}

.cta-title__dark {
  color: #2d1a16;
}

.cta-title__accent {
  color: #e84c22;
}

.cta-lead {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: #3a2e28;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #a81812 0%, #e84c22 55%, #ff6a2a 100%);
  border: 0;
  border-radius: 12px;
  box-shadow:
    0 10px 26px rgba(160, 30, 15, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.cta-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(160, 30, 15, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  text-decoration: none;
  color: #fff;
}

.cta-perks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  margin: 1.5rem 0 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a2e28;
  line-height: 1.4;
}

.cta-perks__dot {
  color: #e84c22;
  font-weight: 700;
}

@media (max-width: 560px) {
  .cta-title__dark,
  .cta-title__accent {
    white-space: normal;
  }

  .cta-lead br {
    display: none;
  }
}

/* Footer */
.site-footer {
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.35);
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer__copy {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.site-footer__ogrn {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0;
  max-width: 52rem;
}

.site-footer__nav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding-right: 0.85rem;
  margin-right: 0.85rem;
  border-right: 1px solid var(--line);
  transition: color 0.2s var(--ease);
}

.site-footer__nav a:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.site-footer__nav a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__copy,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .looks-stage__preview .selltimers-public-timer {
    transition: none !important;
  }
}
