:root {
  --bg: var(--spa-bg);
  --bg-muted: var(--spa-surface-2);
  --surface: var(--spa-surface);
  --border: var(--spa-border);
  --text: var(--spa-text);
  --text-muted: var(--spa-muted);
  --accent: var(--spa-accent);
  --accent-hover: var(--spa-accent-hover);
  --accent-2: var(--spa-accent-2);
  --accent-soft: var(--spa-accent-soft);
  --accent-soft-border: var(--spa-accent-soft-border);
  --radius: var(--spa-radius);
  --shadow: var(--spa-card-shadow);
  --font: var(--spa-font);
  --header-h: 72px;
  --coffee-cream: var(--spa-bg);
  --coffee-latte: var(--spa-surface-2);
  --coffee-mocha: #6f4e37;
  --coffee-espresso: #3d2914;
  --coffee-ring: rgba(111, 78, 55, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__bg::before {
    filter: blur(8px);
  }
  .brands__scroll {
    animation: none !important;
  }
  .brands__group[aria-hidden='true'] {
    display: none;
  }
  .brands__logo img {
    filter: none;
    transform: none;
  }
  .btn {
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .btn:hover:not(:disabled),
  .btn:active:not(:disabled) {
    transform: none;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--coffee-cream);
}

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

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--surface) 92%, var(--coffee-latte));
  border-bottom: 1px solid color-mix(in srgb, var(--coffee-mocha) 12%, var(--border));
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.logo__img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.logo__text small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
  font: inherit;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn).is-active {
  color: var(--accent);
}

.site-nav a:not(.btn).is-active {
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(28, 36, 52, 0.06);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

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

.btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(28, 36, 52, 0.08);
}

.btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--sm {
  min-height: 2.375rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.84rem;
}

.btn--md {
  min-height: 2.625rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.92rem;
}

.btn--lg {
  min-height: 2.875rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
}

.btn--block {
  width: 100%;
}

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

.btn--primary:hover:not(:disabled) {
  background: var(--accent-hover);
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.22);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover:not(:disabled) {
  border-color: var(--accent-soft-border);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(28, 36, 52, 0.08);
}

.btn--light {
  background: #fff;
  color: var(--accent-hover);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--light:hover:not(:disabled) {
  background: var(--accent-soft);
  box-shadow: 0 4px 14px rgba(28, 36, 52, 0.12);
}

.site-header .btn--sm {
  flex-shrink: 0;
  max-width: 11.5rem;
  white-space: normal;
}

.hero__actions .btn--lg {
  white-space: normal;
  max-width: 22rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--coffee-cream);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: url("../images/hero-coffee-beans.jpg") center / cover no-repeat;
  filter: blur(7px);
  transform: scale(1.04);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      color-mix(in srgb, var(--coffee-cream) 90%, transparent) 0%,
      color-mix(in srgb, var(--coffee-cream) 68%, transparent) 42%,
      color-mix(in srgb, var(--coffee-cream) 24%, transparent) 100%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 4%, transparent) 0%,
      transparent 45%
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: none;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  background: #fffefb;
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 14%, var(--border));
  box-shadow: 0 12px 40px rgba(61, 41, 20, 0.12);
}

.hero__layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.hero__visual {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: calc(var(--radius) + 4px);
  background: color-mix(in srgb, #fffefb 88%, var(--coffee-latte));
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 14%, var(--border));
  box-shadow: 0 12px 40px rgba(61, 41, 20, 0.1);
}

.hero__visual-badge {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coffee-mocha);
}

.hero__brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero__brand-grid img {
  display: block;
  width: 100%;
  height: 3rem;
  object-fit: contain;
  padding: 0.45rem 0.55rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 10%, var(--border));
  filter: grayscale(0.15);
}

.hero__brand-grid img:hover {
  filter: none;
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coffee-mocha);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 36em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__tags li {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__tags li:first-child {
  background: color-mix(in srgb, var(--coffee-mocha) 10%, var(--surface));
  border-color: color-mix(in srgb, var(--coffee-mocha) 28%, var(--border));
  color: var(--coffee-espresso);
}

/* Sections */
.section {
  position: relative;
  padding: 4.75rem 0;
}

.section:not(.hero):not(.cta-band)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 3rem));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coffee-ring) 12%,
    color-mix(in srgb, var(--coffee-mocha) 45%, transparent) 50%,
    var(--coffee-ring) 88%,
    transparent
  );
}

.section--surface {
  background: var(--surface);
}

.section--warm {
  background: linear-gradient(180deg, var(--coffee-latte) 0%, color-mix(in srgb, var(--coffee-latte) 70%, var(--surface)) 100%);
}

.section--muted {
  background: linear-gradient(180deg, color-mix(in srgb, var(--coffee-latte) 55%, #eef2f6) 0%, var(--coffee-latte) 100%);
}

.section__panel {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 14%, var(--border));
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}

.section__eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coffee-mocha);
  margin: 0 0 0.45rem;
}

.section__title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 2.25rem;
  font-weight: 700;
}

.section__title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coffee-mocha), var(--accent));
}

.section__title--left::after {
  margin-left: 0;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.split--stats {
  grid-template-columns: 1fr;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats-grid .split__card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stats-grid .stat {
  font-size: 2.5rem;
}

.stats-grid .stat--text {
  font-size: 1.35rem;
  line-height: 1.2;
}

.section__eyebrow--left {
  text-align: left;
}

.split h2::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coffee-mocha), var(--accent));
}

.split h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin-top: 0;
  font-weight: 700;
}

.split__card {
  background: linear-gradient(145deg, var(--surface) 0%, color-mix(in srgb, var(--coffee-latte) 40%, var(--surface)) 100%);
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 16%, var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.stat {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}

.stat-label {
  font-weight: 600;
  margin: 0.5rem 0;
}

.stat-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 12%, var(--border));
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.step-card__num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.step-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.step-card__btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 12%, var(--border));
  transition: box-shadow 0.25s, border-color 0.25s;
}

.benefit:hover {
  border-color: var(--accent-soft-border);
  box-shadow: var(--shadow);
}

.benefit h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.benefit--audience {
  display: flex;
  flex-direction: column;
}

.benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.benefit__icon--retail {
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent-hover);
}

.benefit__icon--retail::before {
  content: "▣";
}

.benefit__icon--horeca {
  background: color-mix(in srgb, var(--coffee-mocha) 14%, var(--surface));
  color: var(--coffee-espresso);
}

.benefit__icon--horeca::before {
  content: "☕";
}

.benefit__icon--distributor {
  background: color-mix(in srgb, #2563eb 12%, var(--surface));
  color: #1d4ed8;
}

.benefit__icon--distributor::before {
  content: "⇄";
}

.benefits--compact {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin-inline: auto;
}

.catalog__intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 40rem;
  margin: -0.25rem auto 2rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 12%, var(--border));
  border-radius: var(--radius);
  padding: 1rem 0.85rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.category-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.category-card__icon--coffee {
  background: color-mix(in srgb, var(--coffee-mocha) 14%, var(--surface));
  color: var(--coffee-espresso);
}

.category-card__icon--coffee::before {
  content: "☕";
}

.category-card__icon--clean {
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent-hover);
}

.category-card__icon--clean::before {
  content: "✦";
}

.category-card__icon--care {
  background: color-mix(in srgb, #3b82f6 12%, var(--surface));
  color: #1d4ed8;
}

.category-card__icon--care::before {
  content: "+";
}

.category-card__icon--food {
  background: color-mix(in srgb, #d97706 12%, var(--surface));
  color: #b45309;
}

.category-card__icon--food::before {
  content: "◆";
}

.category-card__icon--other {
  background: color-mix(in srgb, var(--text-muted) 14%, var(--surface));
  color: var(--text-muted);
}

.category-card__icon--other::before {
  content: "…";
}

.category-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  line-height: 1.25;
}

.category-card p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.catalog__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.cta-band {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  padding: 3.5rem 0;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.cta-band__hint {
  margin: 0;
  opacity: 0.92;
  max-width: 32em;
}

.cta-band__login {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

.cta-band__login a {
  color: #fff;
  font-weight: 600;
}

.cta-band__login a:hover {
  text-decoration: underline;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.contact__list li {
  margin-bottom: 0.5rem;
}

.contact__list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact__list a:hover {
  text-decoration: underline;
}

.contact__phone {
  font-size: 1.15rem;
}

.callback {
  background: color-mix(in srgb, var(--coffee-latte) 35%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 12%, var(--border));
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.callback h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.callback__intro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.callback__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.callback__optional {
  font-weight: 400;
  color: var(--text-muted);
}

.callback input,
.callback select,
.callback textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  margin-bottom: 1rem;
  background: var(--bg);
}

.callback textarea {
  resize: vertical;
  min-height: 5rem;
}

.callback input:focus,
.callback select:focus,
.callback textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.callback__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.callback__error {
  color: #b91c1c;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.callback__ok {
  color: var(--accent-hover);
  font-weight: 600;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

/* Map — на всю ширину (Яндекс: width 100%, высота у контейнера) */
.map-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--coffee-ring);
}

.map-wrap {
  position: relative;
  width: 100%;
  height: max(45vh, 500px);
  overflow: hidden;
  background: var(--bg-muted);
}

.map {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Brands marquee */
.section--brands {
  padding-block: 4rem 3.25rem;
  overflow: hidden;
  border-block: 1px solid var(--coffee-ring);
}

.brands__head {
  text-align: center;
  margin-bottom: 2rem;
}

.brands__head .section__title {
  margin-bottom: 0.5rem;
}

.brands__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brands__track--interactive {
  cursor: grab;
  touch-action: pan-y;
}

.brands__track--interactive.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.brands__scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.brands__group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  flex-shrink: 0;
}

.brands__logo {
  flex-shrink: 0;
  width: 148px;
  height: 76px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.4rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 10%, var(--border));
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.brands__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brands__logo:hover img {
  transform: scale(1.04);
}

.brands__note {
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.brands__category {
  font-size: 1rem;
  font-weight: 700;
  color: var(--coffee-mocha);
  text-align: center;
  margin: 0 0 1rem;
}

.brands__category:not(:first-of-type) {
  margin-top: 2rem;
}

.logistics-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.logistics-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.logistics-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.logistics-list strong {
  color: var(--text);
}

.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq__item {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--coffee-mocha) 12%, var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

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

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

.faq__item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.callback__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.callback__consent input {
  width: auto;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  padding: 1rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.site-footer__links {
  margin: 0.75rem 0 0;
}

.site-footer__links a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.sticky-cta__call {
  flex: 0 0 auto;
  min-width: 2.75rem;
  padding-inline: 0.65rem;
}

#audiences .benefits {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #audiences .benefits {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: 2.5rem 0;
  font-size: 0.88rem;
}

.site-footer__brand {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.site-footer__legal {
  margin: 0;
  line-height: 1.55;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__copy {
  margin: 0;
  align-self: flex-end;
}

/* Sticky CTA (mobile) */
.sticky-cta {
  display: none;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal--delay {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

/* Mobile */
@media (max-width: 900px) {
  body {
    padding-bottom: 4.5rem;
  }

  .split,
  .steps,
  .benefits,
  .contact,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-cta {
    display: flex;
    gap: 0.5rem;
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(28, 36, 52, 0.08);
  }

  .sticky-cta .btn {
    flex: 1;
    min-width: 0;
    white-space: normal;
  }

  .site-nav .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits--compact {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta-band__inner .btn {
    width: 100%;
    max-width: 20rem;
  }

  .step-card__btn {
    align-self: stretch;
    width: 100%;
  }

  .brands__logo {
    width: 124px;
    height: 64px;
    padding: 0.25rem 0.3rem;
  }

}
