/* RemontTracker landing — цвета как в приложении + типографика и «глубина» */
:root {
  --accent: #ff6b35;
  --accent-hover: #e55a2b;
  --accent-soft: rgba(255, 107, 53, 0.12);
  --accent-glow: rgba(255, 107, 53, 0.35);
  --bg: #f5f6f9;
  --bg-warm: #faf8f6;
  --surface: #ffffff;
  --surface-container: #eef0f4;
  --text: #16162a;
  --text-secondary: #5c5c6e;
  --divider: #e4e6ec;
  --danger: #e74c3c;
  --success: #2ecc71;
  --on-accent: #ffffff;
  --radius-btn: 12px;
  --radius-card: 16px;
  --radius-card-lg: 20px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-xs: 0 1px 2px rgba(22, 22, 42, 0.04);
  --shadow-card: 0 4px 14px rgba(22, 22, 42, 0.06), 0 1px 3px rgba(22, 22, 42, 0.04);
  --shadow-card-hover: 0 12px 32px rgba(22, 22, 42, 0.1), 0 4px 12px rgba(22, 22, 42, 0.06);
  --shadow-float: 0 20px 50px rgba(22, 22, 42, 0.12);
  --shadow-header: 0 4px 24px rgba(22, 22, 42, 0.06);
  --shadow-inset-soft: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  /* Было 1200px; −20% → узкая колонка по центру */
  --max-width: 960px;
  --landing-edge: rgba(108, 108, 122, 0.14);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--accent-soft);
  color: var(--text);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Центрированная колонка контента с едва заметными линиями по левому и правому краю */
.landing-column {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid var(--landing-edge);
  border-right: 1px solid var(--landing-edge);
  box-sizing: border-box;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 35%, var(--bg) 100%);
  box-shadow: var(--shadow-float);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1024px) {
  .container {
    max-width: 90%;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 95%;
    padding: 0 16px;
  }
}

/* Typography */
h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.12;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}

h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

.lead {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.55;
}

.text-secondary {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(165deg, #ff7a4d 0%, var(--accent) 45%, #e85a28 100%);
  color: var(--on-accent);
  box-shadow: 0 4px 16px var(--accent-glow), var(--shadow-xs), var(--shadow-inset-soft);
}

.btn--primary:hover {
  background: linear-gradient(165deg, #ff8f5c 0%, var(--accent-hover) 50%, #d94f20 100%);
  color: var(--on-accent);
  box-shadow: 0 8px 28px var(--accent-glow), 0 2px 8px rgba(22, 22, 42, 0.08);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--secondary:hover {
  background: rgba(255, 107, 53, 0.08);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 230, 236, 0.9);
  box-shadow: var(--shadow-header);
}

/* Лого и «Скачать» слева рядом, меню справа */
.site-header__inner.site-header__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  min-height: var(--header-h);
}

.site-header__bar > .brand {
  flex-shrink: 0;
  min-width: 0;
}

.site-header__bar > .site-header__cta {
  flex-shrink: 0;
  margin-left: 10px;
  white-space: nowrap;
}

.site-header__bar > .site-header__nav {
  margin-left: auto;
  min-width: 0;
}

.site-header__nav .nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
}

.brand:hover {
  color: var(--text);
}

.brand__logo {
  flex-shrink: 0;
}

.brand__logo img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand--footer .brand__logo img {
  height: 36px;
}

.site-header__nav a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

@media (max-width: 767px) {
  .site-header__inner.site-header__bar {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    row-gap: 10px;
  }

  .site-header__bar > .site-header__cta {
    margin-left: 10px;
  }

  .site-header__bar > .site-header__nav {
    margin-left: 0;
    flex: 1 1 100%;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(228, 230, 236, 0.85);
    padding-top: 10px;
  }

  .site-header__nav .nav__links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 6px;
    margin: 0 -2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .site-header__nav .nav__links a {
    flex-shrink: 0;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background: linear-gradient(165deg, #ffffff 0%, var(--bg-warm) 42%, var(--bg) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: min(50vw, 380px);
  height: min(50vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 800px;
}

.phone {
  width: min(280px, 78vw);
  aspect-ratio: 1080 / 2244;
  background: linear-gradient(145deg, #f3f4f8 0%, var(--surface-container) 100%);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-card-hover), 0 32px 64px rgba(22, 22, 42, 0.14), var(--shadow-inset-soft);
  border: 1px solid rgba(228, 230, 236, 0.95);
}

.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone__placeholder {
  padding: 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--surface) 0%, #fafbfc 50%, var(--surface) 100%);
}

.section--container-bg {
  background: linear-gradient(180deg, var(--surface-container) 0%, #e8eaef 50%, var(--surface-container) 100%);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section__head h2 {
  position: relative;
}

.section__head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #ffb899 100%);
  box-shadow: 0 2px 12px var(--accent-glow);
}

.section__head--tight h2::after {
  width: 44px;
  height: 3px;
  margin-top: 12px;
}

.section__head .text-secondary {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

.reviews-disclaimer {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  font-weight: 500;
}

.section__head--tight {
  margin-bottom: 28px;
}

/* Rutube Shorts — вертикальное встраивание */
.landing-video-embed {
  max-width: 400px;
  margin: 0 auto;
}

.landing-video-embed__frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  max-height: min(85vh, 720px);
  overflow: hidden;
  border-radius: var(--radius-card-lg);
  background: #0d0d0f;
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 24px 48px rgba(22, 22, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-video-embed__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.landing-cta-inline {
  margin-top: 28px;
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-warm) 100%);
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-card);
}

.landing-cta-inline--after-shots {
  margin-top: 32px;
}

.landing-cta-inline--compact {
  margin-top: 24px;
  padding: 20px 18px;
}

.landing-cta-inline__text {
  margin: 0 auto 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  max-width: 520px;
  line-height: 1.5;
}

/* Problem / solution */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .problem-solution {
    grid-template-columns: 1fr;
  }
}

.ps-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-card-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--divider);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ps-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-card-lg) var(--radius-card-lg) 0 0;
}

.ps-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.ps-card h3 {
  margin-bottom: 12px;
}

.ps-card--problem::before {
  background: linear-gradient(90deg, var(--danger), #ff8a7a);
}

.ps-card--problem h3 {
  color: var(--danger);
}

.ps-card--solution::before {
  background: linear-gradient(90deg, #3ddc84, var(--success));
}

.ps-card--solution h3 {
  color: var(--success);
}

.ps-card__list {
  margin: 0;
  padding-left: 1.25em;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}

.ps-card__list li {
  margin-bottom: 10px;
}

.ps-card__list li:last-child {
  margin-bottom: 0;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-card-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--divider);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  max-width: 120px;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  opacity: 0.9;
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.22);
}

.feature-card h3 {
  color: var(--accent);
  font-size: 1.125rem;
  text-align: center;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

/* Как это работает — дуги от верхнего центра к верхнему центру соседней карточки */
.steps-flow {
  --step-gap: 10px;
  --step-cell: calc((100% - 3 * var(--step-gap)) / 4);
  max-width: 960px;
  margin: 0 auto;
}

.steps-flow__arches-desktop {
  position: relative;
  width: 100%;
  height: 46px;
  margin-bottom: 4px;
  color: #1fa855;
  filter: drop-shadow(0 2px 8px rgba(31, 168, 85, 0.42));
}

.steps-flow__bridge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: visible;
}

/* Центр колонки i: (i-1)*(cell+gap) + cell/2; ширина дуги до центра следующей = cell + gap */
.steps-flow__bridge--12 {
  left: calc(var(--step-cell) / 2);
  width: calc(var(--step-cell) + var(--step-gap));
}

.steps-flow__bridge--23 {
  left: calc(1.5 * var(--step-cell) + var(--step-gap));
  width: calc(var(--step-cell) + var(--step-gap));
}

.steps-flow__bridge--34 {
  left: calc(2.5 * var(--step-cell) + 2 * var(--step-gap));
  width: calc(var(--step-cell) + var(--step-gap));
}

.steps-flow__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--step-gap);
}

.step--flow {
  text-align: center;
}

.step--flow h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.steps-flow__arc-mobile {
  display: none;
}

.step {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-card-lg);
  padding: 24px 18px;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.step:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(31, 168, 85, 0.2);
}

.step p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .steps-flow {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-flow__arches-desktop {
    display: none;
  }

  .steps-flow__cards {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .step--flow {
    text-align: left;
  }

  .steps-flow__arc-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    flex-shrink: 0;
    color: #1fa855;
    filter: drop-shadow(0 2px 8px rgba(31, 168, 85, 0.42));
  }

  .steps-flow__arc-mobile-svg {
    width: 36px;
    height: 44px;
  }
}

/* Screenshots — карусель (+15% к прежнему размеру; до 3 слайдов; кнопки по бокам) */
.shots-carousel {
  --shots-carousel-gap: 12px;
  max-width: min(690px, calc(100% - 24px));
  margin: 0 auto;
  position: relative;
}

.shots-carousel--reviews {
  max-width: min(920px, calc(100% - 24px));
}

.shots-carousel__stage {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.shots-carousel__btn {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--surface);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  align-self: center;
  box-shadow: var(--shadow-xs);
}

.shots-carousel__btn:hover:not(:disabled) {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.shots-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.shots-carousel__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  background: var(--surface);
  touch-action: pan-y pinch-zoom;
}

.shots-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--shots-carousel-gap);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.shots-carousel__slide {
  flex-shrink: 0;
  min-width: 0;
  box-sizing: border-box;
}

.shot {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.shot--carousel {
  border-radius: 0;
  margin: 0;
}

/* Скриншоты приложения: соотношение 1080×2244; в карусели — ~в 2 раза ниже по высоте */
.shot__img {
  aspect-ratio: 1080 / 2244;
  width: 100%;
  background: var(--surface-container);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot--carousel .shot__img {
  max-height: 276px;
  width: 100%;
  cursor: pointer;
}

.shot__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Модальное увеличение: до 100vh по высоте, не больше натуральных 1080×2244 */
.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.shot-lightbox[hidden] {
  display: none !important;
}

.shot-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 47, 0.82);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.shot-lightbox__dialog {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  max-width: min(100vw - 48px, 1080px);
  max-height: min(100vh - 48px, 2244px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot-lightbox__img {
  max-width: min(100vw - 48px, 1080px);
  max-height: min(100vh - 48px, 2244px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-card-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.shot-lightbox__close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.shot-lightbox__close:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.shot__placeholder {
  padding: 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  border: 2px dashed var(--divider);
  margin: 12px;
  border-radius: 12px;
  flex: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shots-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.shots-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--divider);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.shots-carousel__dot[aria-current="true"] {
  background: linear-gradient(135deg, #ff8f5c, var(--accent));
  transform: scale(1.2);
  box-shadow: 0 2px 10px var(--accent-glow);
}

.shot figcaption,
.shots-carousel__slide-caption {
  padding: 0;
  margin: 0;
  border: 0;
}

/* Reviews */
.review {
  background: linear-gradient(135deg, var(--surface) 0%, #fafbfc 100%);
  border-radius: var(--radius-card-lg);
  padding: 24px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-card);
  border-top: 1px solid rgba(228, 230, 236, 0.8);
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.2s ease;
}

.review:hover {
  box-shadow: var(--shadow-card-hover);
}

.review--carousel {
  margin: 0;
  height: 100%;
  min-height: 132px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.review blockquote {
  margin: 0 0 12px;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  flex: 1;
}

.review cite {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: normal;
}

.shots-carousel--reviews .shots-carousel__viewport {
  min-height: 140px;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq details:hover {
  border-color: rgba(255, 107, 53, 0.18);
}

.faq details[open] {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255, 107, 53, 0.25);
}

.faq summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq .faq__body {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 15px;
  border-top: 1px solid var(--divider);
  margin-top: 0;
  padding-top: 14px;
}

/* CTA */
.cta-block {
  text-align: center;
  padding: 56px 28px;
  background: linear-gradient(145deg, #ffffff 0%, var(--bg-warm) 35%, var(--surface-container) 100%);
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #ffb899, var(--success));
  opacity: 0.95;
}

.cta-block__lead {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.55;
}

.cta-block .btn {
  margin-top: 20px;
}

.cta-qr {
  margin-top: 28px;
}

.cta-qr img {
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--divider);
}

.cta-qr p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--surface-container) 0%, var(--bg) 100%);
  padding: 44px 0 36px;
  border-top: 1px solid var(--divider);
  color: var(--text-secondary);
  font-size: 14px;
  box-shadow: 0 -8px 32px rgba(22, 22, 42, 0.04);
}

.site-footer a {
  color: var(--text-secondary);
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__copy {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
  text-align: center;
  font-size: 13px;
}

.site-footer__copy-mark {
  display: inline-block;
  margin-right: 4px;
  font-size: 1.1em;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
  vertical-align: -0.05em;
}

.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;
}
