/* ────────────────────────────────────────────────────────────────────────
   lovestory.kz — main stylesheet
   Brand tokens, layout, components. Mirrors Claude Design prototype 1:1.
   ──────────────────────────────────────────────────────────────────────── */

:root {
  --ls-ink:    #2D2A2E;
  --ls-brown:  #6B4E3D;
  --ls-coral:  #FF8C6E;
  --ls-peach:  #FFE8DA;
  --ls-cream:  #FFFBF6;
  --ls-paper:  #FFFDF9;

  --ls-shadow-sm:  0 8px 24px rgba(45,42,46,0.06);
  --ls-shadow-md:  0 12px 30px rgba(45,42,46,0.12);
  --ls-shadow-lg:  0 24px 60px rgba(45,42,46,0.18);
  --ls-shadow-cta: 0 10px 24px rgba(255,140,110,0.32);

  --ls-radius-sm:  14px;
  --ls-radius-md:  20px;
  --ls-radius-lg:  24px;
  --ls-radius-xl:  28px;
  --ls-radius-pill: 999px;

  --ls-font-display: 'Sacramento', 'Dancing Script', cursive;
  --ls-font-script:  'Caveat', 'Marck Script', 'Pacifico', cursive;
  --ls-font-body:    'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto,
                     'Helvetica Neue', Arial, sans-serif;
}

/* ─── Kazakh-specific font safety ────────────────────────────────────────
   Caveat supports Cyrillic+Ext, but some Kazakh glyphs (Ә Ғ Қ Ң Ө Ұ Ү Һ І)
   can fall back to system fonts and look mismatched. Prefer Marck Script
   (Cyrillic-native handwritten) for KK script accents.                     */
:lang(kk) .ls-hero__h1-script,
:lang(kk) .ls-film__caption,
:lang(kk) .ls-examples__aside,
:lang(kk) .ls-footer__tagline {
  font-family: 'Caveat', 'Marck Script', 'Pacifico', cursive;
  font-weight: 500;
}
/* Tile captions use Latin "episode 0X" only — keep Caveat for all locales. */

/* ─── Scroll-reveal (fade-up при появлении в viewport) ─────────────────
   Лёгкое оживление: блоки плавно «вплывают» снизу когда скроллишь к ним.
   Класс ставится из JS, индекс stagger'а — через CSS-переменную --i.
   Уважает prefers-reduced-motion.                                        */
.ls-reveal {
  opacity: 1;
  transform: none;
}
.ls-reveal-ready .ls-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
.ls-reveal-ready .ls-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.ls-reveal-ready .ls-blog-rich.ls-reveal,
.ls-reveal-ready .ls-blog-block.ls-reveal,
.ls-reveal-ready .ls-blog-faq.ls-reveal {
  transition-duration: 0.45s;
  transition-delay: 0ms;
}
/* После завершения анимации убираем will-change → меньше нагрузка на GPU. */
.ls-reveal.ls-revealed { will-change: auto; }

@media (prefers-reduced-motion: reduce) {
  .ls-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Visually hidden — но доступно для screen-reader'ов и поисковых краулеров.
   Используется в _seo_keywords.html чтобы вписать вариации бренда
   (лавстори / lovestory / love story) и расширенный список ключевиков
   без визуального шума на странице. */
.ls-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  /* Prevent any rogue element from creating horizontal scroll on mobile.
     `clip` (better than `hidden`) avoids accidental scroll-container creation. */
  overflow-x: clip;
}
html { -webkit-text-size-adjust: 100%; }
img, video, svg { max-width: 100%; }
body {
  background: #fffefc;
  font-family: var(--ls-font-body);
  color: var(--ls-ink);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { transition: opacity 0.18s, transform 0.18s; text-decoration: none; color: inherit; }
a:hover { opacity: 0.85; }
section { scroll-margin-top: 80px; }
ul, ol { padding-left: 1.2em; }
button { font-family: inherit; cursor: pointer; }

/* ─── Utilities ────────────────────────────────────────────────────────── */
.ls-container { max-width: 1320px; margin: 0 auto; padding: 0 56px; }
.ls-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.4em;
  color: var(--ls-coral); text-transform: uppercase;
}
.ls-heading {
  font-weight: 800; font-size: 48px; line-height: 1.1;
  color: var(--ls-ink); margin: 16px 0 0; letter-spacing: -0.02em;
}
.ls-section-title { text-align: center; margin-bottom: 64px; }

/* ─── Top nav ──────────────────────────────────────────────────────────── */
.ls-topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45,42,46,0.06);
}
.ls-topnav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 8px 32px; max-width: 1320px; margin: 0 auto;
}
.ls-topnav__nav {
  display: flex; align-items: center; gap: 22px; flex: 1; justify-content: center; min-width: 0;
}
.ls-topnav__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px; font-weight: 500; color: var(--ls-ink);
  letter-spacing: 0.01em; white-space: nowrap;
  line-height: 1;
}
.ls-topnav__nav a.ls-topnav__blog-link {
  position: relative;
  padding: 8px 13px;
  border-radius: var(--ls-radius-pill);
  background: rgba(255, 140, 110, 0.13);
  color: #d86042;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 140, 110, 0.24);
}
.ls-topnav__nav a.ls-topnav__blog-link:hover,
.ls-topnav__nav a.ls-topnav__blog-link--active {
  opacity: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--ls-coral), #e76b4d);
  box-shadow: 0 10px 22px rgba(255, 140, 110, 0.24);
}
.ls-topnav__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.ls-topnav__logo {
  display: block;
  width: auto;
  height: 76px;
  max-width: 350px;
  object-fit: contain;
  /* Визуально увеличиваем на 30% — transform НЕ меняет layout, поэтому
     навбар остаётся той же высоты/ширины. Логотип чуть «выходит» за рамки. */
  transform: scale(1.3);
  transform-origin: center center;
  transition: transform 0.18s ease;
}
.ls-topnav__brand:hover .ls-topnav__logo { transform: scale(1.36); }
.ls-topnav__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ls-topnav__cta {
  font-size: 13px; font-weight: 700; padding: 10px 20px;
  border-radius: var(--ls-radius-pill); background: var(--ls-ink);
  color: var(--ls-cream); letter-spacing: 0.04em; white-space: nowrap;
}
.ls-topnav__burger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: rgba(45,42,46,0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.ls-topnav__burger span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ls-ink);
  border-radius: 2px;
}
.ls-mobile-nav[hidden] { display: none; }
.ls-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.ls-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(18,16,20,0.4);
}
.ls-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 360px;
  height: 100%;
  max-height: 100dvh;
  background: #fff;
  padding: 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  box-shadow: -20px 0 40px rgba(45,42,46,0.2);
  transform: translateX(100%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.ls-mobile-nav.is-open .ls-mobile-nav__panel { transform: translateX(0); }
.ls-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ls-mobile-nav__title {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ls-brown);
  font-weight: 700;
}
.ls-mobile-nav__close {
  border: none;
  background: rgba(45,42,46,0.08);
  color: var(--ls-ink);
  width: 36px;
  height: 36px;
  border-radius: 11px;
  font-size: 18px;
  line-height: 1;
}
.ls-mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ls-mobile-nav__links a {
  padding: 10px 6px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ls-ink);
}
.ls-mobile-nav__links a:hover {
  background: var(--ls-cream);
}
.ls-mobile-nav__links a.ls-mobile-nav__blog-link {
  background: rgba(255, 140, 110, 0.13);
  color: #d86042;
  font-weight: 800;
}
.ls-mobile-nav__links a.ls-mobile-nav__blog-link:hover,
.ls-mobile-nav__links a.ls-mobile-nav__blog-link--active {
  background: linear-gradient(135deg, var(--ls-coral), #e76b4d);
  color: #fff;
  opacity: 1;
}
.ls-mobile-nav__lang { align-self: flex-start; }
.ls-mobile-nav__cta { justify-content: center; margin-top: auto; }
html.ls-no-scroll,
body.ls-no-scroll {
  overflow: hidden;
}
@media (max-width: 1660px) {
  .ls-topnav__inner { padding: 8px 20px; gap: 14px; }
  .ls-topnav__logo { height: 62px; max-width: 290px; }
  .ls-topnav__nav { gap: 14px; }
  .ls-topnav__nav a { font-size: 12px; }
  .ls-topnav__right { gap: 8px; }
  .ls-topnav__cta { font-size: 12px; padding: 9px 15px; }
  .ls-lang { padding: 3px; }
  .ls-lang__btn { font-size: 11px; padding: 6px 11px; }
}
@media (max-width: 1450px) {
  .ls-topnav__nav { display: none !important; }
  /* Right side остаётся видимым — там dropdown языка и CTA "Заказать".
     Они компактные, помещаются рядом с бургером. */
  .ls-topnav__right { display: flex; gap: 8px; }
  .ls-topnav__burger { display: inline-flex; }
  /* На мобиле прячем горизонтальные кнопки RU/KZ/EN, показываем dropdown. */
  .ls-lang--desktop { display: none !important; }
}
@media (min-width: 1451px) {
  /* На десктопе — наоборот: dropdown скрыт, кнопки видны. */
  .ls-lang-dd { display: none !important; }
}

/* ─── Language toggle ──────────────────────────────────────────────────── */
.ls-lang {
  display: inline-flex; gap: 2px; padding: 4px;
  background: rgba(45,42,46,0.04); border-radius: var(--ls-radius-pill);
  border: 1px solid rgba(45,42,46,0.08);
}
.ls-lang__btn {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  padding: 7px 14px; border-radius: var(--ls-radius-pill);
  background: transparent; color: var(--ls-ink); border: none;
  transition: all 0.18s; text-decoration: none; display: inline-block;
}
.ls-lang__btn--active { background: var(--ls-ink); color: var(--ls-cream); }

/* ─── Language dropdown (mobile) ───────────────────────────────────────
   Компактная замена кнопкам RU/KZ/EN на узких экранах. */
.ls-lang-dd { display: inline-flex; position: relative; }
.ls-lang-dd__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--ls-font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  padding: 8px 26px 8px 12px;
  border-radius: var(--ls-radius-pill);
  background: rgba(45,42,46,0.06)
              url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%232D2A2E' d='M6 8L0 0h12z'/></svg>")
              no-repeat right 9px center / 8px;
  color: var(--ls-ink);
  border: 1px solid rgba(45,42,46,0.1);
  cursor: pointer;
  text-transform: uppercase;
}
.ls-lang-dd__select:focus-visible {
  outline: 2px solid var(--ls-coral);
  outline-offset: 2px;
}

/* ─── CTA pulse — привлекает внимание к "Заказать" ────────────────────
   Аккуратное «дыхание» — увеличивается в 2 цикла каждые 4 секунды.
   Reduced-motion отключает анимацию. */
.ls-topnav__cta--pulse {
  position: relative;
  animation: ls-cta-pulse 4s ease-in-out infinite;
}
@keyframes ls-cta-pulse {
  0%, 60%, 100% {
    box-shadow: 0 0 0 0 rgba(255,140,110, 0.55);
  }
  15% {
    box-shadow: 0 0 0 6px rgba(255,140,110, 0.0);
  }
  30% {
    box-shadow: 0 0 0 0 rgba(255,140,110, 0.55);
  }
  45% {
    box-shadow: 0 0 0 6px rgba(255,140,110, 0.0);
  }
}
.ls-topnav__cta--pulse:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .ls-topnav__cta--pulse { animation: none; }
}

/* ─── Logo (compact) ──────────────────────────────────────────────────── */
.ls-logo-compact { display: inline-flex; align-items: center; gap: 10px; }
.ls-logo-compact__word {
  font-family: var(--ls-font-display);
  font-size: 38px; font-weight: 700; line-height: 1; padding-bottom: 3px;
  color: var(--ls-ink);
}
.ls-logo-compact--cream .ls-logo-compact__word { color: var(--ls-cream); }

/* ─── Logo (avatar / large circular for About) ────────────────────────── */
.ls-logo-avatar {
  position: relative; border-radius: 50%;
  background: var(--ls-cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 0 rgba(45,42,46,0.04),
              inset 0 0 0 1px rgba(45,42,46,0.05);
  overflow: hidden;
}
.ls-logo-avatar__clap { position: absolute; transform: rotate(-6deg); }
.ls-logo-avatar__heart { position: absolute; transform: rotate(14deg); }
.ls-logo-avatar__word {
  position: absolute;
  font-family: var(--ls-font-display);
  font-weight: 700; color: var(--ls-ink); line-height: 1;
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.ls-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px; border-radius: var(--ls-radius-pill);
  font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  border: 1.5px solid transparent;
}
.ls-btn--coral { background: var(--ls-coral); color: #fff; box-shadow: var(--ls-shadow-cta); }
.ls-btn--ghost { background: transparent; color: var(--ls-ink); border-color: var(--ls-ink); }
.ls-btn--cream { background: var(--ls-cream); color: var(--ls-ink); padding: 20px 32px; font-size: 16px; }

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.ls-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--ls-cream) 0%, var(--ls-paper) 100%);
  padding: 64px 0 96px;
}
.ls-hero__blob1, .ls-hero__blob2 { position: absolute; border-radius: 50%; pointer-events: none; }
.ls-hero__blob1 {
  top: -120px; right: -80px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,140,110,0.09) 0%, transparent 70%);
}
.ls-hero__blob2 {
  bottom: -120px; left: -80px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,232,218,0.32) 0%, transparent 70%);
}
.ls-hero__grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
.ls-hero__eyebrow {
  display: inline-block; padding: 8px 16px; border-radius: var(--ls-radius-pill);
  background: rgba(255,140,110,0.12); color: var(--ls-coral);
  font-size: 11px; font-weight: 700; letter-spacing: 0.35em; margin-bottom: 28px;
}
.ls-hero__h1 {
  font-weight: 800; font-size: 76px; line-height: 1.02; color: var(--ls-ink);
  margin: 0; letter-spacing: -0.025em;
}
.ls-hero__h1-script {
  font-family: var(--ls-font-script); font-weight: 500; font-size: 96px;
  color: var(--ls-coral); display: inline-block; line-height: 1.2; padding-top: 14px;
}
.ls-hero__desc {
  font-size: 18px; line-height: 1.6; color: var(--ls-brown);
  margin-top: 28px; max-width: 540px;
}
.ls-hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.ls-hero__stats {
  display: flex; gap: 48px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(45,42,46,0.08); flex-wrap: wrap;
}
.ls-hero__stat-v { font-size: 32px; font-weight: 800; color: var(--ls-ink); line-height: 1; }
.ls-hero__stat-l {
  font-size: 12px; color: var(--ls-brown); margin-top: 6px;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* hero visual (film tile) */
.ls-hero__visual { position: relative; }
.ls-video-card {
  /* Чёрный фон под видео-элементом — если между постером и первым декодированным
     кадром есть микро-задержка, не вспышка-белый, а тёмный bg. */
  background-color: #1a1414;
}
.ls-video-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  background-color: #1a1414;
  /* Постер виден сразу (через HTML атрибут poster=). Когда первый кадр
     видео реально готов — JS добавит is-playing-ready → плавный fade.
     Без этой задержки в Chrome виден микро-flash чёрного между постером
     и первым декодированным кадром. */
  opacity: 1;
  transition: opacity 0.2s ease;
}
.ls-video-card.is-loaded .ls-video-card__media { opacity: 1; }
.ls-video-card__play {
  border: none;
  background: transparent;
  padding: 0;
}
.ls-video-card.is-playing .ls-video-card__play {
  opacity: 0;
  pointer-events: none;
}
.ls-film {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: var(--ls-radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--ls-coral) 0%, var(--ls-brown) 100%);
  box-shadow: var(--ls-shadow-lg);
}
.ls-film::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 80%, rgba(255,213,180,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.ls-film__perfs {
  position: absolute; left: 0; right: 0; height: 28px; background: var(--ls-ink);
  display: flex; justify-content: space-around; align-items: center;
  pointer-events: none;
  z-index: 2;
}
.ls-film__perfs--top { top: 0; }
.ls-film__perfs--bot { bottom: 0; }
.ls-film__perfs span {
  width: 16px; height: 12px; border-radius: 3px; background: var(--ls-cream);
}
.ls-film__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.ls-play-btn {
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(255,250,243,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(45,42,46,0.25);
}
.ls-play-btn__triangle {
  width: 0; height: 0;
  border-left: 26px solid var(--ls-coral);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 8px;
}
.ls-play-btn--sm { width: 60px; height: 60px; box-shadow: 0 4px 14px rgba(45,42,46,0.2); }
.ls-play-btn--sm .ls-play-btn__triangle {
  border-left-width: 16px; border-top-width: 11px; border-bottom-width: 11px; margin-left: 5px;
}
.ls-film__caption {
  position: absolute; left: 24px; bottom: 50px; color: var(--ls-cream);
  font-family: var(--ls-font-script); font-size: 28px; line-height: 1; z-index: 2;
  pointer-events: none;
}
.ls-film__url {
  position: absolute; left: 24px; bottom: 38px; color: rgba(255,250,243,0.7);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; z-index: 2;
  pointer-events: none;
}

/* ─── Mute / unmute toggle поверх hero-видео ─────────────────────────── */
.ls-film__mute {
  position: absolute;
  top: 44px;          /* отступ от плёночной перфорации сверху */
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(45, 42, 46, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Видна только когда видео реально играет (is-playing на родителе). */
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.18s ease;
  pointer-events: none;
}
.ls-video-card.is-playing .ls-film__mute {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.ls-film__mute:hover { background: rgba(45, 42, 46, 0.75); }
.ls-film__mute:focus-visible {
  outline: 2px solid var(--ls-coral);
  outline-offset: 2px;
}
.ls-film__mute-icon { display: block; }
/* По умолчанию (aria-pressed="true" = muted) показываем crossed-speaker. */
.ls-film__mute-icon--unmuted { display: none; }
/* aria-pressed="false" = звук включён → показываем speaker-waves. */
.ls-film__mute[aria-pressed="false"] .ls-film__mute-icon--muted   { display: none; }
.ls-film__mute[aria-pressed="false"] .ls-film__mute-icon--unmuted { display: block; }

@media (max-width: 480px) {
  .ls-film__mute { top: 36px; right: 12px; width: 40px; height: 40px; }
}

/* Уменьшенный вариант для example-плиток (.ls-tile меньше чем hero .ls-film). */
.ls-tile__mute {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
}
.ls-tile__mute svg { width: 18px; height: 18px; }
@media (max-width: 480px) {
  .ls-tile__mute { top: 10px; right: 10px; width: 36px; height: 36px; }
}
.ls-floating-card {
  position: absolute; background: #fff; padding: 14px 18px;
  border-radius: 16px; box-shadow: 0 12px 28px rgba(45,42,46,0.12);
  display: flex; align-items: center; gap: 10px; z-index: 3;
}
.ls-floating-card--tl { left: -32px; top: 8%; }
.ls-floating-card--br { right: -28px; bottom: 8%; }
.ls-floating-card__top {
  font-size: 12px; color: var(--ls-brown); letter-spacing: 0.06em;
}
.ls-floating-card__bot { font-size: 14px; font-weight: 700; color: var(--ls-ink); margin-top: 2px; }
.ls-floating-card__icon {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ls-peach);
  display: flex; align-items: center; justify-content: center;
}

/* audience strip */
.ls-audience {
  position: relative; max-width: 1320px; margin: 80px auto 0; padding: 0 56px;
}
.ls-audience__card {
  background: #fff; border-radius: var(--ls-radius-lg); padding: 28px 40px;
  box-shadow: 0 12px 36px rgba(45,42,46,0.06);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.ls-audience__title {
  font-size: 12px; font-weight: 700; color: var(--ls-brown);
  letter-spacing: 0.3em; text-transform: uppercase; white-space: nowrap;
}
.ls-audience__items { display: flex; gap: 36px; flex: 1; justify-content: space-around; }
.ls-audience__item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ls-audience__icon-wrap {
  width: 56px; height: 56px; border-radius: 50%; background: var(--ls-cream);
  display: flex; align-items: center; justify-content: center;
}
.ls-audience__label { font-size: 13px; color: var(--ls-ink); font-weight: 500; }

/* ─── Global delivery / payments ──────────────────────────────────────── */
.ls-global-reach {
  position: relative;
  padding: 56px 0 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 140, 110, 0.05), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(255, 232, 218, 0.26), transparent 26%),
    linear-gradient(180deg, var(--ls-paper), var(--ls-cream));
}
.ls-global-reach__panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.4fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(45, 42, 46, 0.08);
  border-radius: var(--ls-radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--ls-shadow-sm);
  backdrop-filter: blur(12px);
}
.ls-global-reach__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.ls-global-reach__title {
  margin: 12px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.ls-global-reach__copy p {
  margin: 0;
  max-width: 520px;
  color: var(--ls-brown);
  line-height: 1.6;
}
.ls-global-reach__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ls-global-reach__card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(45, 42, 46, 0.08);
  border-radius: var(--ls-radius-lg);
  background: rgba(255, 250, 243, 0.86);
}
.ls-global-reach__card::after {
  content: "";
  position: absolute;
  inset: auto -40px -52px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 140, 110, 0.12);
  pointer-events: none;
}
.ls-global-reach__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(45, 42, 46, 0.06);
}
.ls-global-reach__card h3 {
  position: relative;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}
.ls-global-reach__card p {
  position: relative;
  margin: 10px 0 0;
  color: var(--ls-brown);
  font-size: 13px;
  line-height: 1.55;
}

/* ─── ABOUT ────────────────────────────────────────────────────────────── */
.ls-about { padding: 120px 0; background: var(--ls-paper); }
.ls-about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ls-about__visual {
  display: flex; justify-content: center; align-items: center; position: relative;
  width: min(380px, 100%); margin: 0 auto;
}
.ls-about__heart-tl { position: absolute; top: -20px; left: -18px; z-index: 4; pointer-events: none; }
.ls-about__heart-br { position: absolute; bottom: -16px; right: -14px; z-index: 4; pointer-events: none; }

/* ─── Before / After comparison slider ──────────────────────────────────
   Pure CSS+JS, no libs. Uses --ba-pos (0-100%) as a single source of truth.
   Pointer events handle mouse / touch / pen with one listener.            */
.ls-ba {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--ls-radius-xl);
  user-select: none;
  /* pan-y → вертикальные свайпы уходят браузеру (скролл страницы работает),
     горизонтальные свайпы получает JS (двигают ручку слайдера).
     На десктопе курсор ew-resize намекает «тяни вбок». */
  touch-action: pan-y;
  cursor: ew-resize;
  background: var(--ls-cream);
  box-shadow: var(--ls-shadow-lg);
  --ba-pos: 50%;
}
.ls-ba__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ls-ba__img--after {
  /* show only the right side of the after image, width controlled by --ba-pos */
  clip-path: inset(0 0 0 var(--ba-pos));
}
.ls-ba__label {
  position: absolute; bottom: 18px;
  padding: 7px 14px; border-radius: var(--ls-radius-pill);
  background: rgba(45, 42, 46, 0.62);
  color: #fff;
  font-family: var(--ls-font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 3;
}
.ls-ba__label--before { left: 18px; }
.ls-ba__label--after  { right: 18px; }

.ls-ba__divider {
  position: absolute; top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(45, 42, 46, 0.18), 0 0 18px rgba(0,0,0,0.18);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.ls-ba__knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--ls-coral);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(45, 42, 46, 0.28);
  cursor: ew-resize;
  pointer-events: auto;
  transition: transform 0.12s ease;
  animation: ls-ba-pulse 2.4s ease-in-out 1.5s 2;
}
.ls-ba__knob:hover { transform: translate(-50%, -50%) scale(1.06); }
.ls-ba__knob:focus-visible {
  outline: 2px solid var(--ls-coral);
  outline-offset: 4px;
}
.ls-ba.is-dragging .ls-ba__knob { animation: none; transform: translate(-50%, -50%) scale(1.08); }

.ls-ba__hint {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px; border-radius: var(--ls-radius-pill);
  background: rgba(255, 250, 243, 0.85);
  color: var(--ls-ink);
  font-family: var(--ls-font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 3;
  opacity: 0.95;
  transition: opacity 0.25s ease;
}
.ls-ba.is-dragging .ls-ba__hint,
.ls-ba.is-touched .ls-ba__hint { opacity: 0; }

@keyframes ls-ba-pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(45,42,46,0.28), 0 0 0 0 rgba(255,140,110,0.5); }
  50%      { box-shadow: 0 6px 18px rgba(45,42,46,0.28), 0 0 0 14px rgba(255,140,110,0); }
}
@media (prefers-reduced-motion: reduce) {
  .ls-ba__knob { animation: none; }
}
.ls-about__body { font-size: 17px; line-height: 1.65; color: var(--ls-brown); margin-top: 24px; }
.ls-about__bullets {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.ls-about__bullets li {
  font-size: 16px; color: var(--ls-ink); padding: 14px 20px;
  background: var(--ls-cream); border-radius: var(--ls-radius-sm);
}

/* ─── SERVICES ────────────────────────────────────────────────────────── */
.ls-services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ls-paper) 0%, var(--ls-cream) 100%);
}
.ls-services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ls-card {
  padding: 36px; border-radius: var(--ls-radius-lg); background: #fff;
  border: 1px solid rgba(45,42,46,0.06); transition: transform 0.2s, box-shadow 0.2s;
}
.ls-card:hover { transform: translateY(-3px); box-shadow: var(--ls-shadow-sm); }
.ls-card__icon {
  width: 60px; height: 60px; border-radius: 16px; background: var(--ls-cream);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.ls-card__title {
  font-size: 22px; font-weight: 700; color: var(--ls-ink);
  margin: 0; letter-spacing: -0.01em;
}
.ls-card__desc { font-size: 15px; line-height: 1.55; color: var(--ls-brown); margin-top: 10px; }
.ls-card__price {
  display: inline-flex;
  align-items: center;
  margin: 18px 0 0;
  padding: 8px 12px;
  border-radius: var(--ls-radius-pill);
  background: rgba(255, 140, 110, 0.12);
  color: var(--ls-coral);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

/* ─── STYLES (visual styles selector) ─────────────────────────────────── */
.ls-styles {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ls-cream) 0%, var(--ls-paper) 100%);
}
.ls-styles__sub {
  font-size: 16px; line-height: 1.55; color: var(--ls-brown);
  max-width: 640px; margin: 18px auto 0;
}
.ls-styles__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.ls-style-chip {
  padding: 22px 24px; border-radius: var(--ls-radius-md);
  background: #fff; border: 1px solid rgba(45,42,46,0.06);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
}
.ls-style-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255,140,110,0.4);
  box-shadow: var(--ls-shadow-sm);
}
.ls-style-chip__badge {
  position: absolute;
  top: 12px;
  right: 14px;
  border-radius: var(--ls-radius-pill);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ls-style-chip--popular {
  border-color: rgba(255,140,110,0.38);
  box-shadow: 0 10px 22px rgba(255,140,110,0.16);
}
.ls-style-chip--premium {
  border-color: rgba(45,42,46,0.3);
  box-shadow: 0 10px 24px rgba(45,42,46,0.12);
}
.ls-style-chip__badge--popular {
  background: rgba(255,140,110,0.16);
  color: #a8442b;
}
.ls-style-chip__badge--premium {
  background: rgba(45,42,46,0.12);
  color: var(--ls-ink);
}
.ls-style-chip__name {
  font-size: 17px; font-weight: 700; color: var(--ls-ink);
  letter-spacing: -0.01em;
  padding-right: 120px;
}
.ls-style-chip__desc {
  font-size: 13px; line-height: 1.5; color: var(--ls-brown); margin-top: 6px;
}
@media (max-width: 980px) {
  .ls-styles { padding: 72px 0; }
  .ls-styles__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ls-styles__grid { grid-template-columns: 1fr; }
}

/* ─── EXAMPLES ────────────────────────────────────────────────────────── */
.ls-examples { padding: 120px 0; background: var(--ls-cream); }
.ls-examples__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px; gap: 24px; flex-wrap: wrap;
}
.ls-examples__aside { font-family: var(--ls-font-script); font-size: 32px; color: var(--ls-coral); }
.ls-examples__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ls-tile {
  position: relative; aspect-ratio: 3/4; border-radius: var(--ls-radius-md);
  overflow: hidden; box-shadow: var(--ls-shadow-md); cursor: pointer;
}
.ls-tile::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,250,243,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.ls-tile__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 12px; border-radius: var(--ls-radius-pill);
  background: rgba(255,250,243,0.92); font-size: 11px; font-weight: 700;
  color: var(--ls-ink); letter-spacing: 0.04em;
}
.ls-tile__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.ls-tile__caption {
  position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 2;
  font-family: var(--ls-font-script); font-size: 24px; color: var(--ls-cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.ls-blog-teasers {
  margin-top: clamp(34px, 5vw, 64px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(45, 42, 46, 0.08);
  border-radius: var(--ls-radius-xl);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 45px rgba(45, 42, 46, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ls-blog-teasers__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.ls-blog-teasers__title {
  margin: 8px 0 0;
  color: var(--ls-ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.ls-blog-teasers__subtitle {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--ls-brown);
  font-size: 14px;
  line-height: 1.55;
}
.ls-blog-teasers__all,
.ls-blog-teaser__read {
  color: var(--ls-coral);
  font-size: 13px;
  font-weight: 800;
}
.ls-blog-teasers__all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 140, 110, 0.36);
  border-radius: var(--ls-radius-pill);
  background: rgba(255, 250, 243, 0.72);
}
.ls-blog-teasers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.ls-blog-teaser {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 174px;
  padding: 18px;
  border: 1px solid rgba(45, 42, 46, 0.08);
  border-radius: var(--ls-radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 140, 110, 0.045), transparent 34%),
    rgba(255, 253, 249, 0.88);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ls-blog-teaser:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 140, 110, 0.34);
  box-shadow: var(--ls-shadow-sm);
}
.ls-blog-teaser__category {
  justify-self: start;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: var(--ls-radius-pill);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ls-brown);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ls-blog-teaser__title {
  color: var(--ls-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.ls-blog-teaser__summary {
  color: var(--ls-brown);
  font-size: 13px;
  line-height: 1.5;
}
.ls-blog-teaser__read {
  align-self: end;
  margin-top: 2px;
}
@media (max-width: 980px) {
  .ls-blog-teasers__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .ls-blog-teasers__all {
    width: 100%;
  }
  .ls-blog-teasers__grid {
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    overflow-x: auto;
    margin: 0 -8px;
    padding: 0 8px 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .ls-blog-teaser {
    scroll-snap-align: start;
  }
}
@media (max-width: 480px) {
  .ls-blog-teasers {
    margin-top: 34px;
    padding: 18px;
    border-radius: var(--ls-radius-lg);
  }
  .ls-blog-teasers__grid {
    grid-template-columns: repeat(3, minmax(245px, 82vw));
  }
  .ls-blog-teaser {
    min-height: 166px;
    padding: 16px;
  }
  .ls-blog-teaser__title {
    font-size: 17px;
  }
}

/* ─── PRICING ─────────────────────────────────────────────────────────── */
.ls-pricing { padding: 120px 0; background: var(--ls-paper); }
.ls-pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch;
}
.ls-tier {
  padding: 40px; border-radius: var(--ls-radius-xl);
  background: #fff; color: var(--ls-ink);
  box-shadow: var(--ls-shadow-sm); position: relative;
}
.ls-tier--popular {
  background: var(--ls-ink); color: var(--ls-cream);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(45,42,46,0.25);
}
.ls-tier__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: var(--ls-radius-pill);
  background: var(--ls-coral); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; white-space: nowrap;
}
.ls-tier__name {
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ls-coral);
}
.ls-tier--popular .ls-tier__name { color: var(--ls-peach); }
.ls-tier__price { font-size: 42px; font-weight: 800; margin-top: 24px; letter-spacing: -0.02em; }
.ls-tier__divider { height: 1px; background: rgba(45,42,46,0.08); margin: 28px 0; }
.ls-tier--popular .ls-tier__divider { background: rgba(255,245,236,0.15); }
.ls-tier__features {
  padding: 0; margin: 0; list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.ls-tier__features li {
  font-size: 15px; line-height: 1.45; padding-left: 28px; position: relative;
}
.ls-tier__features li::before {
  content: '♥'; position: absolute; left: 0; top: 1px;
  color: var(--ls-coral); font-size: 18px; font-weight: 800;
}
.ls-pricing__note {
  margin: 40px auto 0; padding: 20px 28px; border-radius: var(--ls-radius-pill);
  background: var(--ls-peach); text-align: center; max-width: 600px;
  font-size: 15px; font-weight: 600; color: var(--ls-ink); letter-spacing: 0.02em;
}

/* ─── Pricing add-ons ─────────────────────────────────────────────────── */
.ls-addons {
  margin: 56px auto 0;
  max-width: 760px;
  text-align: center;
}
.ls-addons__title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ls-brown);
  margin-bottom: 18px;
}
.ls-addons__grid {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}
.ls-addon {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--ls-radius-pill);
  background: #fff;
  border: 1px solid rgba(45,42,46,0.08);
  box-shadow: var(--ls-shadow-sm);
  font-family: var(--ls-font-body);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.ls-addon:hover {
  transform: translateY(-2px);
  border-color: rgba(255,140,110,0.4);
}
.ls-addon__icon { font-size: 18px; line-height: 1; }
.ls-addon__name { font-size: 14px; font-weight: 600; color: var(--ls-ink); }
.ls-addon__price {
  font-size: 13px; font-weight: 700; color: var(--ls-coral);
  padding-left: 12px; margin-left: 4px;
  border-left: 1px solid rgba(45,42,46,0.12);
}
@media (max-width: 480px) {
  .ls-addons__grid { flex-direction: column; align-items: stretch; }
  .ls-addon { justify-content: space-between; }
}

/* ─── PROCESS ─────────────────────────────────────────────────────────── */
.ls-process {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ls-paper) 0%, var(--ls-cream) 100%);
}
.ls-process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.ls-process__line {
  position: absolute; top: 60px; left: 12.5%; right: 12.5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--ls-coral) 0 8px, transparent 8px 16px);
  opacity: 0.4;
}
.ls-step { position: relative; text-align: center; padding: 0 8px; }
.ls-step__circle {
  width: 120px; height: 120px; border-radius: 50%;
  background: #fff; margin: 0 auto; position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(45,42,46,0.08);
}
.ls-step__n {
  position: absolute; top: -8px; right: -4px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ls-ink); color: var(--ls-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.ls-step__title { font-size: 20px; font-weight: 700; color: var(--ls-ink); margin: 28px 0 10px; }
.ls-step__desc { font-size: 14px; line-height: 1.55; color: var(--ls-brown); margin: 0; }

/* ─── REVIEWS ─────────────────────────────────────────────────────────── */
.ls-reviews { padding: 120px 0; background: var(--ls-cream); }
.ls-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ls-review {
  padding: 36px; border-radius: var(--ls-radius-lg); background: #fff;
  box-shadow: var(--ls-shadow-sm);
  display: flex; flex-direction: column; gap: 20px;
}
.ls-review__stars { display: flex; gap: 6px; color: var(--ls-coral); font-size: 18px; }
.ls-review__text {
  font-size: 16px; line-height: 1.6; color: var(--ls-ink); margin: 0; flex: 1;
}
.ls-review__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid rgba(45,42,46,0.08);
}
.ls-review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ls-peach); color: var(--ls-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
}
.ls-review__name { font-size: 14px; font-weight: 700; color: var(--ls-ink); }
.ls-review__role { font-size: 12px; color: var(--ls-brown); margin-top: 2px; }

/* ─── LIVE REACTIONS ──────────────────────────────────────────────────── */
.ls-reaction-reviews {
  padding: 0 0 120px;
  background: var(--ls-cream);
}
.ls-reaction-carousel {
  position: relative;
  min-width: 0;
}
.ls-reaction-carousel__viewport {
  overflow: hidden;
  border-radius: var(--ls-radius-lg);
}
.ls-reaction-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.42s ease;
  will-change: transform;
}
.ls-reaction-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 42, 46, 0.08);
  border-radius: var(--ls-radius-lg);
  box-shadow: var(--ls-shadow-sm);
  overflow: hidden;
}
.ls-reaction-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 139, 110, 0.18), transparent 32%),
    linear-gradient(135deg, #fffaf4 0%, #f7eee5 100%);
}
/* Blurred fill behind the contained media so frames of any resolution/aspect
   ratio sit cleanly in the fixed card without cropping the actual content. */
.ls-reaction-card__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(30px) saturate(1.25);
  transform: scale(1.2);
  opacity: 0.55;
  pointer-events: none;
}
.ls-reaction-card__media img,
.ls-reaction-card__media video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}
.ls-reaction-card__media audio {
  width: min(360px, calc(100% - 36px));
  margin: 18px;
}
.ls-reaction-card__audio {
  width: calc(100% - 36px);
  min-height: 180px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(45, 42, 46, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}
.ls-reaction-card__audio-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ls-coral);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 139, 110, 0.28);
}
.ls-reaction-card__audio span,
.ls-reaction-card__meta {
  color: var(--ls-brown);
  font-size: 12px;
}
.ls-reaction-card__audio strong {
  display: block;
  margin-top: 4px;
  color: var(--ls-ink);
}
.ls-reaction-card__body {
  padding: 22px;
}
.ls-reaction-card__body h3 {
  margin: 0;
  font-size: 18px;
  color: var(--ls-ink);
}
.ls-reaction-card__body p {
  margin: 10px 0 0;
  color: var(--ls-brown);
  line-height: 1.55;
}
.ls-reaction-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.ls-reaction-card__meta span {
  border: 1px solid rgba(45, 42, 46, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
}
.ls-reaction-carousel__controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.ls-reaction-carousel__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 42, 46, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--ls-ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
.ls-reaction-carousel__btn:hover {
  border-color: var(--ls-coral);
  color: var(--ls-coral);
}
.ls-reaction-carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ls-reaction-carousel__dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(45, 42, 46, 0.22);
  cursor: pointer;
  padding: 0;
}
.ls-reaction-carousel__dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--ls-coral);
}

/* ─── FEEDBACK ────────────────────────────────────────────────────────── */
.ls-feedback {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ls-paper) 0%, var(--ls-cream) 100%);
}
.ls-feedback__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.ls-feedback__methods {
  background: #fff;
  border-radius: var(--ls-radius-lg);
  border: 1px solid rgba(45,42,46,0.06);
  padding: 28px;
  box-shadow: var(--ls-shadow-sm);
}
.ls-feedback__methods-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ls-ink);
}
.ls-feedback__method {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  background: var(--ls-cream);
  border: 1px solid rgba(45,42,46,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
}
.ls-feedback__method:last-child { margin-bottom: 0; }
.ls-feedback-form {
  background: #fff;
  border-radius: var(--ls-radius-lg);
  border: 1px solid rgba(45,42,46,0.08);
  box-shadow: var(--ls-shadow-sm);
  padding: 28px;
}
.ls-feedback-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 12px 0 8px;
  color: var(--ls-ink);
}
.ls-feedback-form__input,
.ls-feedback-form__select,
.ls-feedback-form__textarea {
  width: 100%;
  border: 1px solid rgba(45,42,46,0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--ls-font-body);
  color: var(--ls-ink);
  background: #fff;
}
.ls-feedback-form__textarea {
  min-height: 110px;
  resize: vertical;
}
.ls-feedback-form__input:focus,
.ls-feedback-form__select:focus,
.ls-feedback-form__textarea:focus {
  outline: 2px solid rgba(255,140,110,0.25);
  border-color: var(--ls-coral);
}
.ls-feedback-form__submit {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.ls-feedback-form__error {
  margin-top: 6px;
  font-size: 12px;
  color: #b13b22;
}
.ls-feedback-form__flash {
  margin: 0 0 12px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}
.ls-feedback-form__flash--success {
  background: rgba(37,211,102,0.15);
  color: #0f6d39;
}
.ls-feedback-form__flash--error {
  background: rgba(255,140,110,0.16);
  color: #9f2f1a;
}

/* ─── Unified landing canvas ─────────────────────────────────────────────
   Keeps the public landing as one continuous warm surface instead of
   separate section gradients with visible hard cuts. */
.ls-landing-page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 232, 218, 0.18), transparent 34%),
    radial-gradient(circle at 92% 16%, rgba(255, 140, 110, 0.035), transparent 30%),
    radial-gradient(circle at 14% 58%, rgba(255, 244, 236, 0.28), transparent 34%),
    radial-gradient(circle at 84% 88%, rgba(255, 140, 110, 0.028), transparent 34%),
    linear-gradient(180deg, #fffefc 0%, #fffdf9 34%, #fffaf5 62%, #fffefc 100%);
}
.ls-landing-page::before,
.ls-landing-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.ls-landing-page::before {
  inset: -8% -8% auto;
  height: min(980px, 82vh);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 224, 209, 0.14), transparent 36%),
    radial-gradient(circle at 72% 18%, rgba(255, 140, 110, 0.035), transparent 34%),
    radial-gradient(circle at 54% 72%, rgba(255, 248, 242, 0.46), transparent 38%);
  filter: blur(2px);
  opacity: 0.9;
  animation: lsLandingAurora 18s ease-in-out infinite alternate;
}
.ls-landing-page::after {
  inset: 28% -10% -10%;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 252, 248, 0.76), transparent 32%),
    radial-gradient(circle at 88% 68%, rgba(255, 232, 218, 0.12), transparent 34%),
    radial-gradient(circle at 48% 92%, rgba(255, 140, 110, 0.025), transparent 38%);
  animation: lsLandingAuroraSoft 24s ease-in-out infinite alternate;
}
.ls-landing-page > * {
  position: relative;
  z-index: 1;
}
.ls-landing-page .ls-hero__blob1 {
  background: radial-gradient(circle, rgba(255, 140, 110, 0.028) 0%, transparent 72%);
}
.ls-landing-page .ls-hero__blob2 {
  background: radial-gradient(circle, rgba(255, 232, 218, 0.14) 0%, transparent 72%);
}
.ls-landing-page .ls-hero,
.ls-landing-page .ls-global-reach,
.ls-landing-page .ls-about,
.ls-landing-page .ls-services,
.ls-landing-page .ls-styles,
.ls-landing-page .ls-examples,
.ls-landing-page .ls-pricing,
.ls-landing-page .ls-process,
.ls-landing-page .ls-reviews,
.ls-landing-page .ls-feedback {
  background: transparent;
}
@keyframes lsLandingAurora {
  from { transform: translate3d(-1.5%, -0.5%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.035); }
}
@keyframes lsLandingAuroraSoft {
  from { transform: translate3d(1%, 0, 0) scale(1.02); }
  to { transform: translate3d(-1%, -0.8%, 0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .ls-landing-page::before,
  .ls-landing-page::after {
    animation: none;
  }
}
@media (max-width: 768px) {
  .ls-landing-page {
    background:
      radial-gradient(circle at 8% 7%, rgba(255, 232, 218, 0.10), transparent 34%),
      radial-gradient(circle at 92% 16%, rgba(255, 140, 110, 0.018), transparent 30%),
      radial-gradient(circle at 14% 58%, rgba(255, 244, 236, 0.16), transparent 34%),
      linear-gradient(180deg, #fffefc 0%, #fffdfb 42%, #fffdf9 72%, #fffefc 100%);
  }
  .ls-landing-page::before {
    opacity: 0.42;
  }
  .ls-landing-page::after {
    opacity: 0.5;
  }
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.ls-footer {
  background: linear-gradient(135deg, var(--ls-coral) 0%, #c25a3e 45%,
              var(--ls-brown) 75%, var(--ls-ink) 100%);
  color: var(--ls-cream); padding: 88px 0 48px;
  position: relative; overflow: hidden;
}
.ls-footer::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.ls-footer__inner { position: relative; }
.ls-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px;
  align-items: center; margin-bottom: 64px;
}
.ls-footer__tagline {
  font-family: var(--ls-font-script); font-size: 56px; line-height: 1.1;
  color: var(--ls-cream); margin-bottom: 24px;
}
.ls-footer__socials { display: flex; flex-direction: column; gap: 16px; }
.ls-footer__social {
  display: flex; align-items: center; gap: 16px;
  color: var(--ls-cream); padding: 14px 20px;
  border-radius: var(--ls-radius-sm);
  background: rgba(255,250,243,0.08);
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid rgba(255,250,243,0.1);
}
.ls-footer__bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,250,243,0.15);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.ls-footer__brand {
  display: inline-flex;
  align-items: center;
  background: rgba(255,250,243,0.98);
  border-radius: 14px;
  padding: 8px 14px;
}
.ls-footer__logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: 220px;
  object-fit: contain;
}
.ls-footer__legal { font-size: 12px; color: rgba(255,250,243,0.6); letter-spacing: 0.04em; }

/* ─── WhatsApp floating button ───────────────────────────────────────── */
.ls-fab-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 18px; border-radius: 999px;
  background: #25D366; color: #fff;
  font-family: var(--ls-font-body);
  font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45),
              0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: ls-fab-pulse 2.4s ease-in-out infinite;
}
.ls-fab-wa:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0,0,0,0.15);
  opacity: 1;
}
.ls-fab-wa svg { display: block; }
.ls-fab-wa__label { line-height: 1; }
@keyframes ls-fab-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
}
@media (max-width: 480px) {
  .ls-fab-wa { padding: 12px; }
  .ls-fab-wa__label { display: none; }
}
@media print { .ls-fab-wa { display: none; } }

/* ─── Exit offer modal ─────────────────────────────────────────────────── */
.ls-exit-offer[hidden] { display: none; }
.ls-exit-offer {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 24px;
  padding-inline: max(16px, env(safe-area-inset-left));
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
.ls-exit-offer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 20, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ls-exit-offer__dialog {
  position: relative;
  width: min(560px, 100%);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 46px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 232, 218, 0.36), transparent 36%),
    radial-gradient(circle at 92% 88%, rgba(255, 140, 110, 0.07), transparent 34%),
    #fffdf9;
  border: 1px solid rgba(255, 140, 110, 0.14);
  box-shadow: 0 28px 80px rgba(18, 16, 20, 0.28);
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  animation: ls-exit-offer-in 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ls-exit-offer__eyebrow {
  color: var(--ls-coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.ls-exit-offer__dialog h2 {
  margin: 12px 0 0;
  color: var(--ls-ink);
  font-size: clamp(32px, 6vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.ls-exit-offer__dialog p {
  margin: 18px 0 0;
  color: var(--ls-brown);
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.62;
}
.ls-exit-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.ls-exit-offer__actions .ls-btn {
  padding: 15px 22px;
  justify-content: center;
}
.ls-exit-offer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(45, 42, 46, 0.08);
  color: var(--ls-ink);
  font-size: 24px;
  line-height: 1;
}
@keyframes ls-exit-offer-in {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 480px) {
  .ls-exit-offer { align-items: end; padding: 14px; }
  .ls-exit-offer__dialog { border-radius: 24px; }
  .ls-exit-offer__actions { display: grid; }
  .ls-exit-offer__actions .ls-btn { width: 100%; }
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .ls-container, .ls-audience { padding: 0 24px; }
  .ls-hero { padding: 40px 0 64px; }
  .ls-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .ls-hero__h1 { font-size: 48px; }
  .ls-hero__h1-script { font-size: 56px; }
  .ls-global-reach { padding: 44px 0 26px; }
  .ls-global-reach__panel { grid-template-columns: 1fr; padding: 28px; }
  .ls-global-reach__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ls-about, .ls-services, .ls-examples, .ls-pricing, .ls-process, .ls-reviews, .ls-feedback { padding: 72px 0; }
  .ls-reaction-reviews { padding: 0 0 72px; }
  .ls-reaction-card { flex-basis: calc((100% - 24px) / 2); }
  .ls-reaction-card__media { min-height: 280px; }
  .ls-about__grid { grid-template-columns: 1fr; gap: 48px; }
  .ls-services__grid, .ls-reviews__grid { grid-template-columns: 1fr; }
  .ls-examples__grid { grid-template-columns: repeat(2, 1fr); }
  .ls-pricing__grid { grid-template-columns: 1fr; }
  .ls-tier--popular { transform: none; }
  .ls-process__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .ls-process__line { display: none; }
  .ls-feedback__grid { grid-template-columns: 1fr; }
  .ls-heading, .ls-section-title .ls-heading { font-size: 32px; }
  .ls-footer { padding: 64px 0 32px; }
  .ls-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ls-footer__tagline { font-size: 36px; }
  .ls-audience__card { flex-direction: column; gap: 16px; }
  .ls-audience__items { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .ls-floating-card--tl { left: 8px; }
  .ls-floating-card--br { right: 8px; }
  .ls-topnav__inner { padding: 8px 16px; gap: 8px; }
  .ls-topnav__logo { height: 52px; max-width: 230px; }
  .ls-topnav__cta { font-size: 12px; padding: 8px 14px; }
  .ls-about__visual { width: min(380px, 100%); }
  .ls-ba { border-radius: var(--ls-radius-lg); }
  .ls-ba__knob { width: 42px; height: 42px; }
  .ls-ba__label { font-size: 11px; padding: 6px 12px; }
  .ls-ba__hint { font-size: 10px; padding: 5px 12px; }
  .ls-footer__logo { height: 36px; max-width: 180px; }
}
@media (max-width: 480px) {
  .ls-hero__h1 { font-size: 38px; }
  .ls-hero__h1-script { font-size: 44px; }
  .ls-examples__grid { grid-template-columns: 1fr; }
  .ls-process__grid { grid-template-columns: 1fr; }
  .ls-reaction-card { flex-basis: 100%; }
  .ls-reaction-card__media { min-height: 260px; aspect-ratio: 1 / 1.12; }
  .ls-reaction-card__body { padding: 18px; }
  .ls-feedback-form,
  .ls-feedback__methods { padding: 20px; }
  .ls-mobile-nav__panel { width: 92vw; }
}

/* ─────────────────────────────────────────────────────────────────────────
   MOBILE POLISH — comprehensive responsive pass
   Goals:
     • smooth typography via clamp() (no jumps between breakpoints)
     • intermediate 768px breakpoint (tablet / large phone)
     • tight 380px breakpoint (compact phones / 1x devices)
     • section padding scales with viewport
     • hero visuals never overflow on narrow screens
   ───────────────────────────────────────────────────────────────────────── */

/* Fluid section paddings (work on every screen, replace fixed 120px). */
.ls-about, .ls-services, .ls-styles, .ls-examples,
.ls-pricing, .ls-process, .ls-reviews, .ls-feedback {
  padding-block: clamp(56px, 9vw, 120px);
}

/* Fluid hero text (replaces fixed 76px / 96px). */
.ls-hero__h1        { font-size: clamp(36px, 7.5vw, 76px); line-height: 1.05; }
.ls-hero__h1-script { font-size: clamp(42px, 9vw, 96px); padding-top: clamp(6px, 1.4vw, 14px); }
.ls-hero__desc      { font-size: clamp(15px, 1.6vw, 18px); }
.ls-hero__stat-v    { font-size: clamp(24px, 3.2vw, 32px); }

/* Fluid section headings. */
.ls-heading                       { font-size: clamp(26px, 4.4vw, 48px); }
.ls-footer__tagline               { font-size: clamp(28px, 5vw, 56px); }

/* ── 1024px — small laptops, large tablets in landscape ─────────────────── */
@media (max-width: 1024px) {
  .ls-container { padding-inline: clamp(20px, 4vw, 40px); }
  .ls-audience  { padding-inline: clamp(20px, 4vw, 40px); }
}

/* ── 768px — large phones in landscape, tablets in portrait ─────────────── */
@media (max-width: 768px) {
  .ls-container, .ls-audience { padding-inline: 20px; }

  /* hero — single column, visual goes below text */
  .ls-hero { padding: 32px 0 56px; }
  .ls-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .ls-hero__visual { width: min(420px, 100%); margin: 0 auto; }
  .ls-hero__stats { gap: 24px; margin-top: 36px; padding-top: 24px; }
  .ls-hero__blob1, .ls-hero__blob2 { width: 280px; height: 280px; opacity: 0.6; }
  .ls-hero__blob1 { top: -80px; right: -100px; }
  .ls-hero__blob2 { bottom: -80px; left: -100px; }
  .ls-hero__eyebrow { font-size: 10px; letter-spacing: 0.25em; padding: 6px 12px; margin-bottom: 18px; }
  .ls-hero__ctas { gap: 10px; margin-top: 24px; }
  .ls-hero__ctas .ls-btn { padding: 14px 22px; font-size: 14px; }
  .ls-floating-card { padding: 10px 14px; }
  .ls-floating-card__top { font-size: 10px; }
  .ls-floating-card__bot { font-size: 12px; }
  .ls-global-reach { padding: 36px 0 20px; }
  .ls-global-reach__panel { padding: 22px; border-radius: var(--ls-radius-lg); }
  .ls-global-reach__cards { grid-template-columns: 1fr; }
  .ls-global-reach__card { display: flex; gap: 16px; padding: 18px; }
  .ls-global-reach__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    margin: 0;
    border-radius: 16px;
  }

  /* about + ba slider centered, tighter */
  .ls-about__grid { grid-template-columns: 1fr; gap: 32px; }
  .ls-about__visual { width: min(340px, 100%); }
  .ls-about__body { font-size: 15px; }
  .ls-about__bullets li { font-size: 15px; padding: 12px 16px; }

  /* generic grids collapse */
  .ls-services__grid { grid-template-columns: 1fr; gap: 16px; }
  .ls-styles__grid   { grid-template-columns: 1fr; gap: 12px; }
  .ls-examples__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ls-pricing__grid  { grid-template-columns: 1fr; gap: 32px; }
  .ls-reviews__grid  { grid-template-columns: 1fr; gap: 16px; }
  .ls-process__grid  { grid-template-columns: 1fr; gap: 32px; }
  .ls-process__line  { display: none; }
  .ls-tier--popular  { transform: none; }
  .ls-section-title  { margin-bottom: 36px; }

  /* audience strip stacks vertically */
  .ls-audience { margin-top: 40px; }
  .ls-audience__card {
    flex-direction: column; gap: 16px; padding: 20px 24px;
    border-radius: var(--ls-radius-md);
  }
  .ls-audience__items { gap: 16px 24px; }
  .ls-audience__icon-wrap { width: 48px; height: 48px; }
  .ls-audience__label { font-size: 12px; }

  /* pricing tier card padding */
  .ls-tier { padding: 28px 24px; border-radius: var(--ls-radius-lg); }
  .ls-tier__price { font-size: 32px; margin-top: 18px; }
  .ls-tier__divider { margin: 20px 0; }

  /* services / reviews card padding */
  .ls-card, .ls-review { padding: 24px; border-radius: var(--ls-radius-md); }
  .ls-card__title { font-size: 19px; }

  /* footer */
  .ls-footer { padding: 56px 0 28px; }
  .ls-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .ls-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* feedback form */
  .ls-feedback__grid { grid-template-columns: 1fr; gap: 24px; }

  /* tighter step circles */
  .ls-step__circle { width: 96px; height: 96px; }
}

/* ── 480px — typical phones ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .ls-container, .ls-audience { padding-inline: 16px; }

  .ls-examples__grid { grid-template-columns: 1fr; gap: 16px; }
  .ls-examples__head { gap: 12px; }
  .ls-examples__aside { font-size: 24px; }

  /* hero visual smaller so two floating cards don't crowd */
  .ls-hero__visual { width: min(320px, 100%); }
  .ls-play-btn { width: 72px; height: 72px; }
  .ls-play-btn__triangle { border-left-width: 20px; border-top-width: 14px; border-bottom-width: 14px; margin-left: 6px; }
  .ls-film__caption { font-size: 22px; left: 16px; bottom: 38px; }
  .ls-film__url { left: 16px; bottom: 28px; font-size: 10px; }

  /* floating cards — overlap less */
  .ls-floating-card--tl { left: -4px; top: 4%; }
  .ls-floating-card--br { right: -4px; bottom: 4%; }
  .ls-floating-card { padding: 8px 12px; gap: 8px; }
  .ls-floating-card__icon { width: 32px; height: 32px; }

  /* tier prices fit easily */
  .ls-tier__price { font-size: 28px; }
  .ls-addon { padding: 12px 18px; font-size: 13px; }

  /* B/A slider — keep usable */
  .ls-about__visual { width: 100%; }
  .ls-ba__label { font-size: 10px; padding: 5px 10px; bottom: 12px; }
  .ls-ba__label--before { left: 12px; }
  .ls-ba__label--after  { right: 12px; }
  .ls-ba__hint { top: 12px; }
  .ls-ba__knob { width: 44px; height: 44px; } /* keep 44px touch target */

  /* burger / mobile nav tweaks */
  .ls-topnav__inner { padding: 8px 10px; gap: 6px; }
  .ls-topnav__logo     { height: 56px; max-width: 56px; }
  .ls-topnav__right    { gap: 6px; }
  .ls-topnav__cta      { font-size: 11px; padding: 7px 11px; letter-spacing: 0.02em; }
  .ls-lang-dd__select  { font-size: 11px; padding: 7px 22px 7px 10px;
                         background-position: right 7px center; }
  .ls-mobile-nav__panel { width: 100vw; max-width: 100vw; border-radius: 0; }

  /* WhatsApp FAB compact */
  .ls-fab-wa { bottom: 16px; right: 16px; }
}

/* ── 380px — compact phones (iPhone SE, etc.) ───────────────────────────── */
@media (max-width: 380px) {
  .ls-container, .ls-audience { padding-inline: 14px; }
  .ls-hero__h1 { font-size: 32px; }
  .ls-hero__h1-script { font-size: 36px; }
  .ls-hero__stats { gap: 16px; flex-wrap: wrap; }
  .ls-hero__stat-v { font-size: 22px; }
  .ls-hero__stat-l { font-size: 10px; }
  .ls-audience__items { flex-direction: row; gap: 12px; }
  .ls-audience__icon-wrap { width: 42px; height: 42px; }
  .ls-step__circle { width: 84px; height: 84px; }
  .ls-tier { padding: 24px 18px; }
}

/* ── Safe-area insets for iPhone notch / dynamic island ─────────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
  .ls-fab-wa { bottom: max(16px, env(safe-area-inset-bottom)); }
  .ls-footer { padding-bottom: max(28px, env(safe-area-inset-bottom)); }
}

/* ── Touch device hover-suppress (avoids sticky hover on mobile) ────────── */
@media (hover: none) {
  .ls-card:hover, .ls-style-chip:hover, .ls-addon:hover,
  .ls-btn--coral:hover, .ls-tier:hover {
    transform: none;
    box-shadow: var(--ls-shadow-sm);
  }
}


/* ─── PUBLIC BLOG CMS ───────────────────────────────────────────────────── */
.ls-blog {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 232, 218, 0.22), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255, 140, 110, 0.045), transparent 28%),
    var(--ls-paper);
  min-height: 70vh;
  overflow-wrap: break-word;
}
.ls-blog-hero {
  padding: clamp(56px, 8vw, 112px) 0 clamp(28px, 5vw, 54px);
}
.ls-blog-hero__text {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--ls-brown);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}
.ls-blog-cats,
.ls-blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.ls-blog-chip,
.ls-blog-card__tags span,
.ls-blog-article__meta span,
.ls-blog-article__meta time {
  display: inline-flex;
  border-radius: var(--ls-radius-pill);
  border: 1px solid rgba(45, 42, 46, 0.08);
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ls-brown);
}
.ls-blog-list { padding: 28px 0 96px; }
.ls-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ls-blog-card {
  min-height: 280px;
  border-radius: var(--ls-radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(45, 42, 46, 0.08);
  box-shadow: var(--ls-shadow-sm);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ls-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ls-shadow-md);
}
.ls-blog-card__link {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
}
.ls-blog-card__meta,
.ls-blog-article__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ls-blog-card h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}
.ls-blog-card p {
  margin: 0;
  color: var(--ls-brown);
  line-height: 1.6;
}
.ls-blog-card__tags { justify-content: flex-start; }
.ls-blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 44px;
  border-radius: var(--ls-radius-xl);
  background: #fff;
  color: var(--ls-brown);
}
.ls-blog-article__hero {
  padding: clamp(54px, 9vw, 120px) 0 clamp(36px, 6vw, 72px);
  text-align: center;
}
.ls-blog-article__hero h1 {
  max-width: 980px;
  margin: 18px auto 0;
  font-size: clamp(38px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
}
.ls-blog-article__hero p {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--ls-brown);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.65;
}
.ls-blog-article__meta,
.ls-blog-article__tags,
.ls-blog-article__ctas { justify-content: center; }
.ls-blog-article__tags { margin-top: 20px; }
.ls-blog-article__ctas {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ls-blog-content { padding: 0 0 72px; }
.ls-blog-content__inner {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  padding-inline: 0;
  display: grid;
  gap: 28px;
  min-width: 0;
}
.ls-blog-rich,
.ls-blog-block,
.ls-blog-faq,
.ls-blog-final-cta .ls-container {
  width: min(960px, 100%);
  justify-self: center;
  border-radius: var(--ls-radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 42, 46, 0.08);
  box-shadow: var(--ls-shadow-sm);
  padding: clamp(24px, 4vw, 42px);
  min-width: 0;
}
.ls-blog-block--wide {
  width: min(1120px, 100%);
}
.ls-blog-block--full {
  width: 100%;
}
.ls-blog-rich p,
.ls-blog-rich li,
.ls-blog-block p,
.ls-blog-faq p {
  color: var(--ls-ink);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.78;
}
.ls-blog-rich {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
}
.ls-blog-rich > * {
  max-width: 100%;
  min-width: 0;
}
.ls-blog-rich::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(24px, 4vw, 42px);
  right: clamp(24px, 4vw, 42px);
  height: 4px;
  border-radius: var(--ls-radius-pill);
  background: linear-gradient(90deg, var(--ls-coral), var(--ls-peach));
}
.ls-blog-rich p {
  max-width: min(760px, 100%);
  min-width: 0;
  margin: 0 0 18px;
  overflow-wrap: break-word;
}
.ls-blog-rich p:first-child {
  margin-top: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
  color: rgba(45, 42, 46, 0.88);
}
.ls-blog-rich p:last-child { margin-bottom: 0; }
.ls-blog-rich h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 42px 0 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(45, 42, 46, 0.1);
  color: var(--ls-ink);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.ls-blog-rich h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.ls-blog-rich h2::before {
  content: '';
  width: 10px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: var(--ls-radius-pill);
  background: var(--ls-coral);
  box-shadow: 0 10px 22px rgba(255, 140, 110, 0.28);
}
.ls-blog-rich h3 {
  width: fit-content;
  margin: 24px 0 12px;
  padding: 8px 13px;
  border-radius: var(--ls-radius-pill);
  background: rgba(255, 140, 110, 0.12);
  color: var(--ls-coral);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ls-blog-lead-point {
  max-width: none !important;
  margin: 0 0 14px !important;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(255, 140, 110, 0.24);
  border-left: 5px solid var(--ls-coral);
  border-radius: var(--ls-radius-md);
  background: linear-gradient(135deg, rgba(255, 140, 110, 0.12), rgba(255, 250, 243, 0.88));
  box-shadow: 0 12px 28px rgba(45, 42, 46, 0.05);
}
.ls-blog-list-rich {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.ls-blog-list-rich li {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 38px;
  border-radius: var(--ls-radius-md);
  background: rgba(255, 245, 236, 0.86);
  border: 1px solid rgba(45, 42, 46, 0.07);
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.48;
}
.ls-blog-list-rich li::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ls-coral);
  box-shadow: 0 0 0 5px rgba(255, 140, 110, 0.14);
}
.ls-blog-choice-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) 1fr;
  gap: 16px;
  align-items: start;
  width: 100%;
  max-width: min(840px, 100%);
  min-width: 0;
  margin: 0 0 12px;
  padding: 16px 18px;
  border-radius: var(--ls-radius-md);
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(45, 42, 46, 0.08);
  overflow-wrap: anywhere;
}
.ls-blog-choice-row strong {
  color: var(--ls-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}
.ls-blog-choice-row span {
  color: rgba(45, 42, 46, 0.82);
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.55;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}
.ls-blog-block h2,
.ls-blog-faq h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.ls-blog-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--ls-radius-xl);
  background: #fff;
  border: 1px solid rgba(45, 42, 46, 0.08);
  box-shadow: var(--ls-shadow-sm);
}
.ls-blog-media--clean {
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}
.ls-blog-media--polaroid {
  padding: 14px 14px 46px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(45, 42, 46, 0.16);
  transform: rotate(-0.5deg);
}
.ls-blog-media--glow {
  border-color: rgba(255, 140, 110, 0.28);
  box-shadow: 0 22px 60px rgba(255, 140, 110, 0.2), var(--ls-shadow-sm);
}
.ls-blog-media img,
.ls-blog-media video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--ls-cream);
}
.ls-blog-media--ratio_square > img,
.ls-blog-media--ratio_square > video,
.ls-blog-media--ratio_square .ls-blog-video { aspect-ratio: 1 / 1; height: auto; }
.ls-blog-media--ratio_16_9 > img,
.ls-blog-media--ratio_16_9 > video,
.ls-blog-media--ratio_16_9 .ls-blog-video { aspect-ratio: 16 / 9; height: auto; }
.ls-blog-media--ratio_9_16 > img,
.ls-blog-media--ratio_9_16 > video,
.ls-blog-media--ratio_9_16 .ls-blog-video { aspect-ratio: 9 / 16; height: auto; }
.ls-blog-media--ratio_4_5 > img,
.ls-blog-media--ratio_4_5 > video,
.ls-blog-media--ratio_4_5 .ls-blog-video { aspect-ratio: 4 / 5; height: auto; }
.ls-blog-media--ratio_square > img,
.ls-blog-media--ratio_16_9 > img,
.ls-blog-media--ratio_9_16 > img,
.ls-blog-media--ratio_4_5 > img {
  width: 100%;
  height: 100%;
}
.ls-blog-video {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border-radius: inherit;
  background: #120f16;
}
.ls-blog-video__media {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #120f16;
}
.ls-blog-video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.ls-blog-video__mute {
  top: 16px;
  right: 16px;
}
.ls-blog-video .ls-play-btn {
  background: rgba(255, 250, 243, 0.96);
}
.ls-blog-video .ls-play-btn__triangle {
  border-left-color: var(--ls-coral);
}
.ls-blog-media figcaption,
.ls-blog-caption {
  margin: 0;
  padding: 12px 16px;
  color: var(--ls-brown);
  font-size: 13px;
}
.ls-blog-ba-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--ls-radius-xl);
  background: #fff;
  border: 1px solid rgba(45, 42, 46, 0.08);
  box-shadow: var(--ls-shadow-sm);
}
.ls-blog-ba-wrap.ls-blog-media--clean {
  border: none;
  box-shadow: none;
  background: transparent;
}
.ls-blog-ba-wrap.ls-blog-media--polaroid {
  padding: 14px 14px 46px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(45, 42, 46, 0.16);
}
.ls-blog-ba-wrap.ls-blog-media--glow {
  border-color: rgba(255, 140, 110, 0.28);
  box-shadow: 0 22px 60px rgba(255, 140, 110, 0.2), var(--ls-shadow-sm);
}
.ls-blog-ba {
  aspect-ratio: 16 / 9;
  border-radius: inherit;
  box-shadow: none;
}
.ls-blog-ba--ratio_square { aspect-ratio: 1 / 1; }
.ls-blog-ba--ratio_16_9 { aspect-ratio: 16 / 9; }
.ls-blog-ba--ratio_9_16 { aspect-ratio: 9 / 16; }
.ls-blog-ba--ratio_4_5 { aspect-ratio: 4 / 5; }
.ls-blog-ba--ratio_auto { aspect-ratio: 16 / 9; }
.ls-blog-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.ls-blog-before-after figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--ls-radius-lg);
  background: var(--ls-cream);
  border: 1px solid rgba(45, 42, 46, 0.08);
}
.ls-blog-before-after img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.ls-blog-before-after figcaption {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ls-coral);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.ls-blog-block blockquote {
  margin: 0;
  font-family: var(--ls-font-script);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.05;
  color: var(--ls-ink);
}
.ls-blog-cta-inline,
.ls-blog-final-cta .ls-container {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}
.ls-blog-cta-inline p { max-width: 720px; margin: 0; }
.ls-blog-faq details {
  border-top: 1px solid rgba(45, 42, 46, 0.1);
  padding: 16px 0;
}
.ls-blog-faq details:last-child { border-bottom: 1px solid rgba(45, 42, 46, 0.1); }
.ls-blog-faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 17px;
}
.ls-blog-final-cta {
  padding: 0 0 88px;
  text-align: center;
}
.ls-blog-final-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}

@media (max-width: 980px) {
  .ls-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .ls-blog-hero { padding: 40px 0 20px; }
  .ls-blog-article__hero {
    padding: 38px 0 26px;
  }
  .ls-blog-article__hero h1 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }
  .ls-blog-article__hero p {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 16px;
  }
  .ls-blog-content { padding-bottom: 48px; }
  .ls-blog-grid,
  .ls-blog-before-after { grid-template-columns: 1fr; }
  .ls-blog-card__link { padding: 22px; }
  .ls-blog-rich,
  .ls-blog-block,
  .ls-blog-faq,
  .ls-blog-final-cta .ls-container { padding: 22px; border-radius: var(--ls-radius-lg); }
  .ls-blog-rich p,
  .ls-blog-rich li,
  .ls-blog-block p,
  .ls-blog-faq p {
    font-size: 15px;
    line-height: 1.68;
  }
  .ls-blog-rich p:first-child {
    font-size: 16px;
    line-height: 1.62;
  }
  .ls-blog-chip,
  .ls-blog-card__tags span,
  .ls-blog-article__meta span,
  .ls-blog-article__meta time {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .ls-blog-rich::before { left: 22px; right: 22px; }
  .ls-blog-rich h2 { margin-top: 34px; padding-top: 24px; font-size: clamp(23px, 7vw, 32px); }
  .ls-blog-rich h2::before { width: 8px; height: 28px; }
  .ls-blog-list-rich { grid-template-columns: 1fr; }
  .ls-blog-choice-row { grid-template-columns: 1fr; gap: 7px; }
  .ls-blog-lead-point { padding: 16px 16px 16px 18px; }
  .ls-blog-block--wide,
  .ls-blog-block--full { width: 100%; }
  .ls-blog-video { min-height: 220px; }
  .ls-blog-media--polaroid,
  .ls-blog-ba-wrap.ls-blog-media--polaroid { padding: 10px 10px 34px; }
  .ls-blog-article__ctas .ls-btn { width: 100%; justify-content: center; }
}
