:root {
  --bg-dark: #FAF7F0;
  --bg-dark-2: #EFE7D6;
  --bg-light: #FAF7F0;
  --bg-light-2: #EFE7D6;

  --accent-primary: #C17F3B;
  --accent-primary-2: #B96A2C;
  --accent-secondary: #3C6E8F;

  --gradient-main: linear-gradient(135deg, #C17F3B 0%, #E8B478 100%);
  --gradient-dark-bg: linear-gradient(160deg, #FCFAF4 0%, #EFE7D6 100%);
  --gradient-light-bg: linear-gradient(160deg, #FCFAF4 0%, #EFE7D6 100%);
  --gradient-glow: radial-gradient(circle at 50% 30%, rgba(193,127,59,0.12), transparent 70%);

  --text-main: #1C2436;
  --text-secondary: #4E5670;
  --text-muted: #868FA3;
  --border-light: rgba(23,35,58,0.10);
  --border-accent: rgba(193,127,59,0.5);
  --bg-card: rgba(23,35,58,0.035);

  --shadow-soft: 0 14px 34px rgba(15,20,35,0.08);
  --shadow-glow: 0 0 26px rgba(193,127,59,0.22);
  --radius-main: 20px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --header-h: 76px;

  --seam-rgb: 239,231,214;
  --seam-fade-h: clamp(48px, 8vh, 110px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

p,li {  transform: translateY(0px);}
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  background: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  min-height: 100svh;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent-primary); color: #FBF7EE; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.topbar .container {
  width: 100%;
  max-width: 1400px;
}


@media (max-width: 1400px) {

  .topbar .container {
    width: 100%;
  }

 }

@media (max-width: 720px) { .container { padding: 0 20px; } }

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--bg-light);
}
.bg-fx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,35,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,35,58,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 40%, transparent 90%);
}
.bg-fx__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  max-width: 100vw;
  top: -420px;
  left: 50%;
  transform: translate(-50%, 0);
  background: radial-gradient(circle at 50% 50%, rgba(193,127,59,0.08), transparent 70%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main);
  color: #1B2436;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 34px rgba(193,127,59,0.4); }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  border-color: var(--border-light);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 20px rgba(193,127,59,0.14);
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-main);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover,
.hero-visual .panel:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250,247,240,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23,35,58,0.08);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(193,127,59,0.5);
  background: linear-gradient(135deg, rgba(193,127,59,0.14), rgba(60,110,143,0.08));
  position: relative;
  display: grid;
  place-items: center;
}
.brand-mark img{
  display: block;
  width:100%;
  height: 100%;
}
.brand-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 1.15;
  color: #1C2436;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  position: relative;
  font-size: 14px;
  color: #4E5670;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gradient-main);
  transition: width 0.25s ease;
}
.nav a:hover { color: #1C2436; }
.nav a:hover::after { width: 100%; }

.header-actions { flex-shrink: 0; }
.header-actions .btn { padding: 12px 22px; font-size: 13.5px; }
.header-actions .btn-primary { color: #1B2436; }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(23,35,58,0.12);
  background: rgba(23,35,58,0.03);
  position: relative;
}
.burger span,
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: #1C2436;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: rotate(45deg) translate(-4px,-5px); }
.burger.is-open span::after { transform: rotate(-45deg) translate(-4px,5px); }

@media (max-width: 960px) {
  .nav { display: none; }
  .header-actions { display: none; }
  .burger { display: block; }
}

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 49;
  background: rgba(250,247,240,0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23,35,58,0.08);
  padding: 18px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  padding: 13px 4px;
  font-size: 15px;
  color: #4E5670;
  border-bottom: 1px solid rgba(23,35,58,0.08);
}
.mobile-menu .btn { margin-top: 14px; width: 100%; }
.mobile-menu .btn-primary { color: #1B2436; }

.section { position: relative; z-index: 1; }

.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(20px, 3.2vh, 40px) 0;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-dark-bg);
  color: var(--text-main);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
  width: 100%;
}
.hero-grid > * { min-width: 0; }
.hero-card {
  padding: clamp(22px, 2.6vw, 34px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.8vh, 18px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-primary-2);
  padding: 7px 14px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  background: rgba(193,127,59,0.1);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-primary-2);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.05vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-main);
}
.hero-copy .lead {
  font-size: clamp(14.5px, 1.15vw, 17px);
  color: var(--text-main);
  max-width: 46ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.03);
  font-size: 12.5px;
  color: var(--text-main);
}
.hero-point::before {
  content: "";
  width: 14px; height: 14px;
  flex-shrink: 0;
  background: var(--accent-primary-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.microtext {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-main);
}
.microtext span::before { content: "// "; color: var(--accent-secondary); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(16px, 1.8vw, 22px);
}
.panel {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}
.visual-title {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 12px;
}

.visual-machine { display: flex; justify-content: center; padding: 0; }
.machine { width: 100%; }
.machine-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-dark-2);
}
.machine-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}
.machine-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(193,127,59,0) 55%, rgba(193,127,59,0.30) 100%),
    radial-gradient(circle at 100% 0%, rgba(193,127,59,0.22), transparent 55%);
  pointer-events: none;
}

.machine-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.machine-details > div {
  min-width: 0;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  background: rgba(255,255,255,0.03);
}
.machine-details .m-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.machine-details .m-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-primary-2);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  min-width: 0;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 16px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { font-size: 14.5px; color: var(--text-main); line-height: 1.35; }

.hero-ticker {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-main);
  padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2.4vw, 28px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hero-ticker:hover {
  transform: translateY(-2px) scale(1.005);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}
.hero-ticker .visual-title { margin-bottom: 12px; }

.ticker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.ticker span {
  font-family: var(--font-mono);
  font-size: 16.5px;
  color: var(--text-main);
  font-weight: bold;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 10px 16px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ticker span:hover {
  color: var(--text-main);
  border-color: var(--border-accent);
  transform: translateY(-1px);
}
.ticker span:nth-child(1) { color: var(--accent-primary-2); border-color: var(--border-accent); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4.5vh, 52px);
  flex-wrap: wrap;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary-2);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--accent-primary-2);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
  max-width: 20ch;
}
.section-text {
  font-size: clamp(13.5px, 1vw, 15.5px);
  color: var(--text-secondary);
  max-width: 44ch;
  margin-top: 10px;
  line-height: 1.65;
}
.mt-32 { margin-top: 32px; }

/* ==========================================================================
   секция: BENEFITS
   ========================================================================== */
#benefits {
  --text-main: #1C2436;
  --text-secondary: #4E5670;
  --text-muted: #868FA3;
  --border-light: rgba(23,35,58,0.10);
  --border-accent: rgba(193,127,59,0.5);
  --bg-card: rgba(23,35,58,0.035);
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vh, 100px) 0;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-light-bg);
  color: var(--text-main);
}

#benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,35,58,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,35,58,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 85%);
  pointer-events: none;
}

#benefits::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 800px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 0%, rgba(193,127,59,0.10), transparent 65%);
  pointer-events: none;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.benefits-left {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vh, 28px);
  padding-top: clamp(8px, 1vh, 16px);
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.benefits-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.benefits-title .accent-line {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.benefits-desc {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 38ch;
}

.benefits-desc strong {
  color: var(--text-main);
  font-weight: 600;
}

.benefits-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.benefits-cta .btn-primary {
  padding: 16px 32px;
  font-size: 15px;
  color: #FBF7EE;
}

.benefits-cta-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.benefits-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}

#benefits .card {
  padding: clamp(20px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background: #FFFDF8;
  border: 1px solid rgba(23,35,58,0.08);
  box-shadow: 0 2px 10px rgba(23,35,58,0.04);
}

#benefits .card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}
#benefits .card:hover::before { opacity: 1; }
#benefits .card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 10px 26px rgba(193,127,59,0.14);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: linear-gradient(135deg, rgba(193,127,59,0.12), rgba(60,110,143,0.08));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}
#benefits .card:hover .icon-box {
  border-color: var(--border-accent);
  box-shadow: 0 0 18px rgba(193,127,59,0.18);
  transform: scale(1.06);
}
#benefits .card:hover .icon-box svg { transform: scale(1.1); }

#benefits .card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.3;
  color: var(--text-main);
}

#benefits .card p {
  font-size: clamp(12.5px, 0.9vw, 14.5px);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   секция: AUDIENCE 
   ========================================================================== */
#audience {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vh, 100px) 0;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-dark-bg);
  color: var(--text-main);
  overflow: hidden;
}
#audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.7;
  pointer-events: none;
}
#audience::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 30%, transparent 85%);
  pointer-events: none;
}

#audience .section-head { position: relative; z-index: 2; }
#audience .section-title { max-width: 22ch; }

.grid-5 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.audience-card {
  position: relative;

  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: 0; 
  background-color: rgba(0, 0, 0, 0.4); 
  pointer-events: none; 
  z-index: 1;
}

.audience-card-1 {
background: url(/userfiles/images/audience-1.webp);
background-position: center;
background-size: cover;
}
.audience-card-2 {
background: url(/userfiles/images/audience-2.webp);
background-position: center;
background-size: cover;
}
.audience-card-3 {
background: url(/userfiles/images/audience-3.webp);
background-position: center;
background-size: cover;
}
.audience-card-4 {
background: url(/userfiles/images/audience-4.webp);
background-position: center;
background-size: cover;
}
.audience-card-5 {
background: url(/userfiles/images/audience-5.webp);
background-position: center;
background-size: cover;
}
.audience-card-6 {
background: url(/userfiles/images/audience-6.webp);
background-position: center;
background-size: cover;
}
.audience-card-7 {
background: url(/userfiles/images/audience-7.webp);
background-position: center;
background-size: cover;
}
.audience-card-8 {
background: url(/userfiles/images/audience-8.webp);
background-position: center;
background-size: cover;
}
.audience-card-9 {
background: url(/userfiles/images/audience-9.webp);
background-position: center;
background-size: cover;
}
.audience-card-10 {
background: url(/userfiles/images/audience-10.webp);
background-position: center;
background-size: cover;
}

.audience-card:hover {
  transform: translateY(-4px);
}
.audience-card:hover .audience-tag { color: var(--accent-primary-2); }
.audience-card:hover .audience-icon svg { transform: scale(1.08); }

.audience-tag {
  position: absolute;
    z-index: 1000;
    bottom: 170px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.audience-icon {
  position: absolute;
    z-index: 1000;
    bottom: 90px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: rgba(193,127,59,0.08);
  display: grid;
  place-items: center;
}
.audience-icon svg {
  width: 19px;
  height: 19px;
  color: var(--accent-primary-2);
  transition: transform 0.3s ease;
}

.audience-card strong {

  position: absolute;
    z-index: 1000;
    bottom: 40px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text-main);
  margin-top: auto;
}

#audience .btn-row { position: relative; z-index: 2; justify-content: center; }
#audience .mt-32.btn-row { display: flex; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero { min-height: auto; padding: 24px 0 36px; }
  .hero-visual { order: -1; }
  .brand-title { font-size: 15px; }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .benefits-left {
    position: static;
    text-align: center;
    align-items: center;
  }
  .benefits-desc { max-width: 50ch; }
  .benefits-right { grid-template-columns: repeat(2, 1fr); }

  .section-head { justify-content: flex-start; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .nav-shell { gap: 12px; }
  .hero-card { padding: 18px; }
  .hero-copy h1 { font-size: clamp(24px, 6vw, 32px); }
  .hero-copy .lead { font-size: 14px; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .section-head { text-align: center; flex-direction: column; align-items: center; }
  .section-title { max-width: 100%; }
  .section-text { max-width: 100%; }
}

@media (max-width: 560px) {
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .machine-details { grid-template-columns: 1fr 1fr; gap: 6px; }
  .machine-details > div:last-child { grid-column: 1 / -1; }
  .grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-points { gap: 8px; }
  .hero-point { padding: 8px 12px; font-size: 12px; }
  .header-actions { display: none; }

  .benefits-right { grid-template-columns: 1fr; }
  .benefits-title { font-size: 24px; }
  .benefits-cta { flex-direction: column; width: 100%; }
  .benefits-cta .btn-primary { width: 100%; }
  .benefits-cta-note { text-align: center; }

  .audience-card { min-height: 200px; padding: 22px 16px 18px; }
}

@media (max-width: 400px) {
  .container { padding: 0 14px; }
  :root { --header-h: 60px; }
  .brand-mark { width: 32px; height: 32px; border-radius: 8px; }
  .brand-title { font-size: 13.5px; }
  .hero-card { padding: 16px 14px; border-radius: 16px; }
  .eyebrow { font-size: 10px; padding: 6px 11px; }
  .hero-copy h1 { font-size: 23px; line-height: 1.15; }
  .hero-copy .lead { font-size: 13.5px; }
  .btn { padding: 13px 18px; font-size: 13.5px; }
  .microtext { font-size: 10.5px; }
  .machine-details { grid-template-columns: 1fr; gap: 6px; }
  .machine-details > div { text-align: left; display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; }
  .machine-details .m-label { margin-bottom: 0; }
  .stat strong { font-size: 15px; }
  .stat span { font-size: 11px; }
  .hero-ticker { padding: 12px 14px; }
  .ticker { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
  .ticker span { font-size: 11px; padding: 8px 10px; }
  .mobile-menu a { font-size: 14px; padding: 11px 4px; }

  .benefits-title { font-size: 22px; }
  #benefits .card { padding: 18px; gap: 12px; }
  .icon-box { width: 44px; height: 44px; }
  .icon-box svg { width: 20px; height: 20px; }

  .grid-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .audience-card { padding: 20px 14px 16px;  gap: 10px; border-radius: 14px; }
  .audience-card strong { font-size: 13px; }
  .audience-icon { width: 34px; height: 34px; }
  .audience-icon svg { width: 17px; height: 17px; }
  .section-title { font-size: 22px; }
}


/* ===================== секция: TASKS  ===================== */
#tasks {
  --text-main: #1C2436;
  --text-secondary: #4E5670;
  --text-muted: #868FA3;
  --border-light: rgba(23,35,58,0.10);
  --border-accent: rgba(193,127,59,0.5);
  position: relative;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-light-bg, linear-gradient(160deg, #FCFAF4 0%, #EFE7D6 100%));
  color: var(--text-main);
}
#tasks.compact { padding: clamp(48px, 6.5vh, 84px) 0; }

#tasks .split {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vw, 32px);
}

#tasks .glass.card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-main, 20px);
  box-shadow: 0 14px 34px rgba(23,35,58,0.08);
  padding: clamp(26px, 3vw, 44px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
#tasks .glass.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  box-shadow: 0 18px 40px rgba(193,127,59,0.16);
}

.task-row {
  display: flex;
  align-items: stretch;
  gap: clamp(24px, 3.2vw, 52px);
}

.task-content {
  flex: 1 1 52%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.task-media-wrap {
  flex: 1 1 42%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.task-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 4 / 3;
  background: #EFE7D6;
}
.task-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}
.task-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(193,127,59,0.14), transparent 60%);
  pointer-events: none;
}

.task-media-wrap .btn { width: 100%; }

.list {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}
.list li {
  list-style: none;
  position: relative;
  padding: 11px 0 11px 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--border-light);
}
.list li:last-child { border-bottom: none; }
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 16px;
  background: var(--accent-primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mt-24 { margin-top: 24px; }

@media (max-width: 900px) {
  .task-row { flex-direction: column; }
  .task-media-wrap { order: -1; width: 100%; }
  .task-content { width: 100%; }
}
@media (max-width: 560px) {
  #tasks .glass.card { padding: 20px; border-radius: 16px; }
  .list li { padding: 10px 0 10px 24px; font-size: 14px; }
  .task-media { aspect-ratio: 4 / 3; }
}

/* ===================== секция: DIRECT DEAL ===================== */
#direct-deal {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-dark-bg);
  color: var(--text-main);
  overflow: hidden;
}
#direct-deal.compact { padding: clamp(48px, 6.5vh, 84px) 0; }
#direct-deal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.7;
  pointer-events: none;
}
#direct-deal::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 30%, transparent 85%);
  pointer-events: none;
}
#direct-deal .container { position: relative; z-index: 2; }

#direct-deal .section-head { margin-bottom: clamp(28px, 4vh, 44px); }
#direct-deal .section-title { max-width: 24ch; }

#direct-deal .split {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

#direct-deal .card {
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  align-items: center;
}
#direct-deal .card .list { width: 100%; margin-top: 0; }

#direct-deal .quote {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-main);
  padding: clamp(30px, 3.4vw, 46px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 32px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
#direct-deal .quote:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}
#direct-deal .quote::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--accent-primary);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.quote-copy {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--text-secondary);
}
.quote-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-main);
  font-weight: 600;
}

.quote-example {
  position: relative;
  z-index: 1;
  flex: 0 0 180px;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quote-example .thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 3 / 4;
  background: var(--bg-dark-2);
}
.quote-example .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}
.quote-example .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(193,127,59,0.18), transparent 60%);
  pointer-events: none;
}
.quote-example span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.mt-24 { margin-top: 24px; }

@media (max-width: 900px) {
  #direct-deal .split { grid-template-columns: 1fr; }
  #direct-deal .quote { flex-direction: column; text-align: center; }
  .quote-copy strong { margin-bottom: 4px; }
}
@media (max-width: 560px) {
  #direct-deal .card,
  #direct-deal .quote { padding: 22px; border-radius: 16px; }
  .quote-example { flex-basis: 140px; width: 140px; }
}

/* ===================== секция: VARIANTS ===================== */
#variants {
  --text-main: #1C2436;
  --text-secondary: #4E5670;
  --text-muted: #868FA3;
  --border-light: rgba(23,35,58,0.10);
  --border-accent: rgba(193,127,59,0.5);
  --bg-card: rgba(23,35,58,0.035);
  position: relative;
  z-index: 1;
  padding: clamp(56px, 7.5vh, 96px) 0;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-light-bg);
  color: var(--text-main);
}

#variants .variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}

.variants-head {
  grid-column: 1 / 3;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 1.8vh, 20px);
}
.variants-head .section-title { max-width: 16ch; text-align: left; }
.variants-head .section-text { max-width: 42ch; margin-top: 0; }

#variants .variant-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #FFFDF8;
  border: 1px solid rgba(23,35,58,0.08);
  box-shadow: 0 2px 10px rgba(23,35,58,0.04);
}
#variants .variant-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 12px 28px rgba(193,127,59,0.14);
}

.variant-media {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.variant-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.variant-media.m1::before { background: linear-gradient(140deg, #C17F3B 0%, #8F5A26 100%); }
.variant-media.m2::before { background: linear-gradient(140deg, #3C6E8F 0%, #244B63 100%); }
.variant-media.m3::before { background: linear-gradient(140deg, #17233A 0%, #0F1626 100%); }
.variant-media.m4::before { background: linear-gradient(140deg, #7A5A3A 0%, #3E2E1D 100%); }

.variant-num {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #1B2436;
  background: var(--gradient-main);
  box-shadow: 0 6px 16px rgba(23,35,58,0.28);
}

.variant-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.variant-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text-main);
}
.variant-body .list { margin-top: 0; }

#variants .variant-card:nth-of-type(1) { grid-column: 3 / 4; grid-row: 1 / 2; }

@media (max-width: 960px) {
  #variants .variants-grid { grid-template-columns: repeat(2, 1fr); }
  .variants-head { grid-column: 1 / 3; }
  #variants .variant-card:nth-of-type(1) { grid-column: auto; grid-row: auto; }
}
@media (max-width: 640px) {
  #variants .variants-grid { grid-template-columns: 1fr; }
  .variants-head { grid-column: 1 / 2; align-items: center; text-align: center; }
  .variants-head .section-title { max-width: 100%; text-align: center; }
  .variants-head .section-text { max-width: 100%; text-align: center; }
  .variants-head .btn-row { justify-content: center; width: 100%; }
  #variants .variant-card:nth-of-type(1) { grid-column: auto; grid-row: auto; }
}

/* ===================== секция: MINI-FORMAT ===================== */
#mini-format {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-dark-bg);
  color: var(--text-main);
  overflow: hidden;
}
#mini-format.compact { padding: clamp(48px, 6.5vh, 84px) 0; }
#mini-format::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.7;
  pointer-events: none;
}
#mini-format::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 30%, transparent 85%);
  pointer-events: none;
}
#mini-format .container { position: relative; z-index: 2; }

#mini-format .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

#mini-format .hero-block {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
#mini-format .hero-block .card {
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
}
#mini-format .hero-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-card, 20px);
  border: 1px solid var(--border-light);
}

#mini-format .components-block {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}
#mini-format .components-block .card {
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
}
#mini-format .components-block .card-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pill:hover {
  color: var(--text-main);
  border-color: var(--border-accent);
  transform: translateY(-1px);
}
.pill:nth-child(1) { color: var(--accent-primary-2); border-color: var(--border-accent); }

.list-icons {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 22px;
}
.list-icons li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--text-secondary);
}
.li-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.04);
  display: grid;
  place-items: center;
}
.li-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-primary-2);
}

.mt-24 { margin-top: 24px; }

@media (max-width: 900px) {
  #mini-format .split { grid-template-columns: 1fr; }
  #mini-format .hero-block { grid-template-columns: 1fr; }
  #mini-format .hero-img { min-height: 220px; }
  #mini-format .components-block { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  #mini-format .card { padding: 22px; border-radius: 16px; }
  .pill { padding: 8px 14px; font-size: 11px; }
}

/* ===================== секция: AUTOMATION ===================== */
#automation {
  --text-main: #1C2436;
  --text-secondary: #4E5670;
  --text-muted: #868FA3;
  --border-light: rgba(23,35,58,0.10);
  --border-accent: rgba(193,127,59,0.5);
  --bg-card: rgba(23,35,58,0.035);
  position: relative;
  z-index: 1;
  padding: clamp(56px, 7.5vh, 96px) 0;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-light-bg);
  color: var(--text-main);
}

#automation::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,35,58,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,35,58,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 85%);
  pointer-events: none;
}

#automation::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 800px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 0%, rgba(193,127,59,0.10), transparent 65%);
  pointer-events: none;
}

#automation .section-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4.5vh, 52px);
  flex-wrap: wrap;
}
#automation .section-head > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#automation .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
  max-width: 22ch;
}
#automation .section-text {
  font-size: clamp(13.5px, 1vw, 15.5px);
  color: var(--text-secondary);
  max-width: 44ch;
  line-height: 1.65;
}

#automation .grid-3 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}

#automation .card {
  padding: clamp(20px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background: #FFFDF8;
  border: 1px solid rgba(23,35,58,0.08);
  box-shadow: 0 2px 10px rgba(23,35,58,0.04);
  border-radius: var(--radius-main);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
#automation .card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}
#automation .card:hover::before { opacity: 1; }
#automation .card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 10px 26px rgba(193,127,59,0.14);
  transform: translateY(-2px);
}

#automation .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: linear-gradient(135deg, rgba(193,127,59,0.12), rgba(60,110,143,0.08));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
#automation .icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}
#automation .card:hover .icon-box {
  border-color: var(--border-accent);
  box-shadow: 0 0 18px rgba(193,127,59,0.18);
  transform: scale(1.06);
}
#automation .card:hover .icon-box svg { transform: scale(1.1); }

#automation .card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.3;
  color: var(--text-main);
}

#automation .card p {
  font-size: clamp(12.5px, 0.9vw, 14.5px);
  line-height: 1.6;
  color: var(--text-secondary);
}

#automation .btn-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
#automation .btn-row .btn-primary {
  background: var(--gradient-main);
  color: #1B2436;
  box-shadow: 0 0 26px rgba(193,127,59,0.24);
}
#automation .btn-row .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 34px rgba(193,127,59,0.4);
}

@media (max-width: 960px) {
  #automation .grid-3 { grid-template-columns: repeat(2, 1fr); }
  #automation .section-head { justify-content: flex-start; }
}
@media (max-width: 640px) {
  #automation .grid-3 { grid-template-columns: 1fr; }
  #automation .section-head { text-align: center; flex-direction: column; align-items: center; }
  #automation .section-title { max-width: 100%; }
  #automation .section-text { max-width: 100%; }
  #automation .btn-row { justify-content: center; width: 100%; }
  #automation .btn-row .btn { width: 100%; }
}
@media (max-width: 560px) {
  #automation .card { padding: 18px; gap: 12px; }
  #automation .icon-box { width: 44px; height: 44px; }
  #automation .icon-box svg { width: 20px; height: 20px; }
  #automation .section-title { font-size: 22px; }
}

/* ===================== секция: STEPS ===================== */
#steps {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vh, 100px) 0;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-dark-bg);
  color: var(--text-main);
  overflow: hidden;
}
#steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.7;
  pointer-events: none;
}
#steps::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 30%, transparent 85%);
  pointer-events: none;
}

#steps .section-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4.5vh, 52px);
  flex-wrap: wrap;
}
#steps .section-head > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#steps .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
  max-width: 22ch;
}

#steps .timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}

#steps .step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-main);
  padding: clamp(22px, 2vw, 30px);
  padding-right: clamp(64px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
}
#steps .step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}
#steps .step:hover::before { opacity: 1; }
#steps .step:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  background: rgba(255,255,255,0.06);
}

#steps .step strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.3;
  color: var(--text-main);
  padding-right: 8px;
}

#steps .step .muted {
  font-size: clamp(12.5px, 0.9vw, 14.5px);
  line-height: 1.6;
  color: var(--text-secondary);
  padding-right: 8px;
}

#steps .step-num {
  position: absolute;
  top: clamp(18px, 1.6vw, 24px);
  right: clamp(18px, 1.6vw, 24px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1;
  color: var(--accent-primary);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#steps .step:hover .step-num { opacity: 0.6; }

#steps .btn-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

@media (max-width: 960px) {
  #steps .timeline { grid-template-columns: repeat(2, 1fr); }
  #steps .section-head { justify-content: flex-start; }
}
@media (max-width: 640px) {
  #steps .timeline { grid-template-columns: 1fr; }
  #steps .section-head { text-align: center; flex-direction: column; align-items: center; }
  #steps .section-title { max-width: 100%; }
  #steps .btn-row { justify-content: center; width: 100%; }
  #steps .btn-row .btn { width: 100%; }
}
@media (max-width: 560px) {
  #steps .step { padding: 20px; padding-right: 64px; }
  #steps .step-num { font-size: 32px; }
  #steps .section-title { font-size: 22px; }
}

/* ===================== секция: DOCS ===================== */
#docs {
  --text-main: #1C2436;
  --text-secondary: #4E5670;
  --text-muted: #868FA3;
  --border-light: rgba(23,35,58,0.10);
  --border-accent: rgba(193,127,59,0.5);
  position: relative;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-light-bg, linear-gradient(160deg, #FCFAF4 0%, #EFE7D6 100%));
  color: var(--text-main);
}
#docs.compact { padding: clamp(48px, 6.5vh, 84px) 0; }

#docs .split {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vw, 32px);
}

#docs .glass.card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-main, 20px);
  box-shadow: 0 14px 34px rgba(23,35,58,0.08);
  padding: clamp(26px, 3vw, 44px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
#docs .glass.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  box-shadow: 0 18px 40px rgba(193,127,59,0.16);
}

#docs .task-row {
  display: flex;
  align-items: stretch;
  gap: clamp(24px, 3.2vw, 52px);
}

#docs .task-content {
  flex: 1 1 52%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#docs .task-media-wrap {
  flex: 1 1 42%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

#docs .task-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 4 / 3;
  background: #EFE7D6;
}
#docs .task-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}
#docs .task-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(193,127,59,0.14), transparent 60%);
  pointer-events: none;
}

#docs .task-media-wrap .btn { width: 100%; }

#docs .list {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}
#docs .list li {
  list-style: none;
  position: relative;
  padding: 11px 0 11px 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--border-light);
}
#docs .list li:last-child { border-bottom: none; }
#docs .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 16px;
  background: var(--accent-primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

#docs .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#docs .pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: rgba(23,35,58,0.04);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
#docs .pill:hover {
  color: var(--text-main);
  border-color: var(--border-accent);
  transform: translateY(-1px);
}
#docs .pill:nth-child(1) { color: var(--accent-primary); border-color: var(--border-accent); }

#docs .section-text {
  font-size: clamp(13.5px, 1vw, 15.5px);
  color: var(--text-secondary);
  line-height: 1.65;
}

#docs .btn-primary {
  background: var(--gradient-main);
  color: #1B2436;
  box-shadow: 0 0 26px rgba(193,127,59,0.24);
}
#docs .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 34px rgba(193,127,59,0.4);
}
#docs .btn-secondary {
  background: rgba(255,255,255,0.6);
  color: var(--text-main);
  border-color: var(--border-light);
  backdrop-filter: blur(10px);
}
#docs .btn-secondary:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 20px rgba(193,127,59,0.14);
}

#docs .mt-24 { margin-top: 24px; }

@media (max-width: 900px) {
  #docs .task-row { flex-direction: column; }
  #docs .task-media-wrap { order: -1; width: 100%; }
  #docs .task-content { width: 100%; }
}
@media (max-width: 560px) {
  #docs .glass.card { padding: 20px; border-radius: 16px; }
  #docs .list li { padding: 10px 0 10px 24px; font-size: 14px; }
  #docs .task-media { aspect-ratio: 4 / 3; }
}

/* ===================== секция: COMPARE ===================== */
#compare {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vh, 100px) 0;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-dark-bg);
  color: var(--text-main);
  overflow: hidden;
}
#compare::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.7;
  pointer-events: none;
}
#compare::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 30%, transparent 85%);
  pointer-events: none;
}

#compare .section-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4.5vh, 52px);
  flex-wrap: wrap;
}
#compare .section-head > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#compare .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-main);
  max-width: 28ch;
}

#compare .table-compare {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 16px);
}

#compare .compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.4vw, 20px);
  align-items: stretch;
}

#compare .compare-cell {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-main);
  padding: clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
  position: relative;
}
#compare .compare-cell::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}
#compare .compare-cell:hover::before { opacity: 1; }
#compare .compare-cell:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  background: rgba(255,255,255,0.06);
}

#compare .compare-cell strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.3;
  color: var(--text-main);
}

#compare .compare-cell span {
  font-size: clamp(12.5px, 0.9vw, 14.5px);
  line-height: 1.6;
  color: var(--text-secondary);
}

#compare .compare-cell:first-child strong {
  color: var(--accent-primary-2);
}
#compare .compare-cell:last-child strong {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#compare .btn-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

@media (max-width: 960px) {
  #compare .section-head { justify-content: flex-start; }
}
@media (max-width: 720px) {
  #compare .compare-row { grid-template-columns: 1fr; }
  #compare .section-head { text-align: center; flex-direction: column; align-items: center; }
  #compare .section-title { max-width: 100%; }
  #compare .btn-row { justify-content: center; width: 100%; }
  #compare .btn-row .btn { width: 100%; }
}
@media (max-width: 560px) {
  #compare .compare-cell { padding: 20px; }
  #compare .section-title { font-size: 22px; }
}

/* ===================== секция: FAQ ===================== */
#faq {
 --text-main: #1C2436;
 --text-secondary: #4E5670;
 --text-muted: #868FA3;
 --border-light: rgba(23,35,58,0.10);
 --border-accent: rgba(193,127,59,0.5);
 --bg-card: rgba(23,35,58,0.035);
 position: relative;
 z-index: 1;
 padding: clamp(56px, 7.5vh, 96px) 0;
 background:
   linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
   linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
   var(--gradient-light-bg);
 color: var(--text-main);
}

#faq::before {
 content: "";
 position: absolute;
 inset: 0;
 background-image:
   linear-gradient(rgba(23,35,58,0.025) 1px, transparent 1px),
   linear-gradient(90deg, rgba(23,35,58,0.025) 1px, transparent 1px);
 background-size: 72px 72px;
 mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 85%);
 pointer-events: none;
}

#faq::after {
 content: "";
 position: absolute;
 top: 0; left: 50%;
 width: 800px; height: 500px;
 transform: translateX(-50%);
 background: radial-gradient(circle at 50% 0%, rgba(193,127,59,0.10), transparent 65%);
 pointer-events: none;
}

#faq .section-head {
 position: relative;
 z-index: 2;
 display: flex;
 align-items: flex-end;
 justify-content: space-between;
 gap: 24px;
 margin-bottom: clamp(32px, 4.5vh, 52px);
 flex-wrap: wrap;
}
#faq .section-head > div {
 display: flex;
 flex-direction: column;
 gap: 10px;
}
#faq .section-title {
 font-family: var(--font-display);
 font-weight: 700;
 font-size: clamp(26px, 2.6vw, 38px);
 line-height: 1.15;
 letter-spacing: -0.02em;
 color: var(--text-main);
 max-width: 22ch;
}

#faq .faq {
 position: relative;
 z-index: 2;
 display: flex;
 flex-direction: column;
 gap: clamp(10px, 1vw, 14px);
}

#faq .faq-item {
 background: #FFFDF8;
 border: 1px solid rgba(23,35,58,0.08);
 border-radius: var(--radius-main);
 overflow: hidden;
 transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
 box-shadow: 0 2px 10px rgba(23,35,58,0.04);
}
#faq .faq-item:hover {
 border-color: var(--border-accent);
 box-shadow: 0 10px 26px rgba(193,127,59,0.14);
 transform: translateY(-1px);
}
#faq .faq-item.open {
 border-color: var(--border-accent);
 box-shadow: 0 10px 26px rgba(193,127,59,0.14);
}
#faq .faq-item.open .faq-question span:last-child {
 transform: rotate(45deg);
}
#faq .faq-item.open .faq-answer {
 grid-template-rows: 1fr;
 padding-bottom: clamp(18px, 1.6vw, 24px);
}

#faq .faq-question {
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 padding: clamp(18px, 1.6vw, 24px) clamp(20px, 2vw, 28px);
 background: none;
 border: none;
 font-family: var(--font-display);
 font-weight: 600;
 font-size: clamp(14.5px, 1.05vw, 17px);
 line-height: 1.35;
 color: var(--text-main);
 text-align: left;
 cursor: pointer;
 transition: color 0.25s ease;
}
#faq .faq-question:hover {
 color: var(--accent-primary);
}
#faq .faq-question span:first-child {
 flex: 1 1 auto;
 min-width: 0;
}
#faq .faq-question span:last-child {
 flex: 0 0 28px;
 width: 28px;
 height: 28px;
 border-radius: 50%;
 border: 1px solid var(--border-light);
 background: rgba(193,127,59,0.08);
 display: grid;
 place-items: center;
 font-family: var(--font-display);
 font-weight: 500;
 font-size: 18px;
 line-height: 1;
 color: var(--accent-primary);
 transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
#faq .faq-item:hover .faq-question span:last-child {
 border-color: var(--border-accent);
 background: rgba(193,127,59,0.14);
}

#faq .faq-answer {
 display: grid;
 grid-template-rows: 0fr;
 transition: grid-template-rows 0.35s ease, padding-bottom 0.35s ease;
 padding: 0 clamp(20px, 2vw, 28px);
}
#faq .faq-answer > div {
 overflow: hidden;
}
#faq .faq-answer p {
 font-size: clamp(13px, 0.95vw, 15px);
 line-height: 1.65;
 color: var(--text-secondary);
 max-width: 60ch;
}

@media (max-width: 960px) {
 #faq .section-head { justify-content: flex-start; }
}
@media (max-width: 640px) {
 #faq .section-head { text-align: center; flex-direction: column; align-items: center; }
 #faq .section-title { max-width: 100%; }
 #faq .faq-question { padding: 16px 20px; }
 #faq .faq-answer { padding: 0 20px; }
}
@media (max-width: 560px) {
 #faq .faq-item { border-radius: 16px; }
 #faq .faq-question { font-size: 14px; }
 #faq .faq-question span:last-child { flex-basis: 24px; width: 24px; height: 24px; font-size: 16px; }
 #faq .faq-answer p { font-size: 13.5px; }
 #faq .section-title { font-size: 22px; }
}

/* ===================== секция: CTA-OFFER ===================== */
#offer-block {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vh, 100px) 0;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-dark-bg);
  color: var(--text-main);
  overflow: hidden;
}
#offer-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.7;
  pointer-events: none;
}
#offer-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 30%, transparent 85%);
  pointer-events: none;
}

#offer-block .container {
  position: relative;
  z-index: 2;
}

#offer-block .offer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

/* Левая колонка */
#offer-block .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2vh, 24px);
}

#offer-block .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-primary-2);
  padding: 7px 14px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  background: rgba(193,127,59,0.1);
}
#offer-block .eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-primary-2);
}

#offer-block h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-main);
  max-width: 18ch;
}

#offer-block .subtitle {
  font-size: clamp(14.5px, 1.15vw, 17px);
  color: var(--text-secondary);
  max-width: 46ch;
  line-height: 1.6;
}

#offer-block .accent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
#offer-block .accent-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.03);
  font-size: 12.5px;
  color: var(--text-main);
}
#offer-block .accent-list li::before {
  content: "";
  width: 14px; height: 14px;
  flex-shrink: 0;
  background: var(--accent-primary-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

#offer-block .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
#offer-block .actions .btn-primary {
  padding: 16px 32px;
  font-size: 15px;
}

/* Правая колонка */
#offer-block .aside-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-main);
  padding: clamp(24px, 2.4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.8vw, 26px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
#offer-block .aside-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}
#offer-block .aside-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s ease;
}
#offer-block .aside-card:hover::before { opacity: 1; }

#offer-block .aside-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#offer-block .aside-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14.5px, 1.05vw, 17px);
  line-height: 1.3;
  color: var(--text-main);
}
#offer-block .badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  background: rgba(193,127,59,0.12);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary-2);
  flex-shrink: 0;
}

#offer-block .metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#offer-block .metric {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#offer-block .metric-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary-2);
}
#offer-block .metric-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
#offer-block .metric > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#offer-block .metric strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text-main);
}
#offer-block .metric span {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}

#offer-block .bottom-note {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  padding-top: clamp(14px, 1.4vw, 20px);
  border-top: 1px dashed var(--border-light);
}

@media (max-width: 960px) {
  #offer-block .offer-grid { grid-template-columns: 1fr; }
  #offer-block h1 { max-width: 100%; }
}
@media (max-width: 640px) {
  #offer-block .actions { flex-direction: column; }
  #offer-block .actions .btn { width: 100%; }
  #offer-block .accent-list { gap: 8px; }
  #offer-block .accent-list li { padding: 8px 12px; font-size: 12px; }
}
@media (max-width: 560px) {
  #offer-block h1 { font-size: 24px; }
  #offer-block .aside-card { padding: 20px; border-radius: 16px; }
  #offer-block .metric-icon { flex-basis: 28px; width: 28px; height: 28px; }
  #offer-block .metric-icon svg { width: 14px; height: 14px; }
  #offer-block .metric strong { font-size: 13px; }
  #offer-block .metric span { font-size: 12px; }
}




.contacts-section {
  color: #000;
  background:
    linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
    var(--gradient-light-bg);
  padding: 70px 0 50px;
  position: relative;
  }
  
  .contacts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15); 
  z-index: -1;
  }
  
  .section-subtitle {
  text-align: center;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  color: var(--color-gray);
  }
  
  .contacts-main {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,217,225,0.12);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  max-width: 1440px;
  margin: 0 auto;
  }
  
  .contacts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,217,225,0.1);
  }
  
  .company-logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  }
  
  /*
  .logo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  }
  .logo-icon img{
    border-radius: var(--radius-md);
  }
  */
  
  .company-name {
  font-size: 1.7rem;
  font-weight: 900;
  }
  
  .company-slogan {
  font-size: 0.9rem;
  color: var(--color-gray);
  }
  
  .btn-contact {
  padding: 12px 28px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 240px;
  justify-content: center;
  }
  
  .contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  }

  @media (max-width: 720px) {
  .contacts-grid {
  display: flex;
  width: 100%;
  flex-direction: column;
}}
  .contact-col {
    max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  }
  
  .contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFDF8;
  border: 1px solid var(--border-accent);;
  border-radius: 25px;
  padding: 16px 18px;
  transition: all 0.3s;
  }
  
  .contact-card:hover {
  background: rgba(0,217,225,0.07);
  transform: translateY(-3px);
  }
  
  .contact-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  
  .contact-icon {
  font-size: 2.2rem;
  color: var(--color-secondary);
  }
  
  .contact-text {
  flex: 1;
  }
  
  .contact-text .h4 {
  font-size: 1.18rem;
  margin: 0 0 4px 0;
  color: var(--color-dark);
  }
  
  .contact-text p {
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
  color: var(--color-gray);
  }
  
  .contact-text a {
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
  color: var(--color-gray);
  }
  
  .social-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  }
  
  .social-link {
  width: 44px;
  height: 44px;
  background: rgba(0,217,225,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  }
  
  .social-link:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
  }
  
  .btn-whatsapp {
  margin-top: 8px;
  padding: 10px 24px;
  font-size: 0.98rem;
  background: #25D366;
  color: white;
  border: none;
  }
  
  .final-cta {
  text-align: center;
  margin-top: 32px;
  }
  
  .btn-large {
  padding: 14px 40px;
  font-size: 1.12rem;
  min-width: 300px;
  }
  
  /* Адаптив */
  @media (max-width: 1023px) {
  .contacts-grid {
  grid-template-columns: 1fr;
  }
  }
  
  @media (max-width: 768px) {
    .contact-col {
      max-width:100%
    }
  .contacts-section { padding: 50px 0 40px; }
  .contacts-main { padding: 20px 16px; }
  .contacts-header { flex-direction: column; text-align: center; }
  .btn-contact { min-width: 100%; }
  .btn-large { width: 100%; min-width: auto; }
  .contact-card { padding: 14px 16px; }
  }



  .price-sec {
    padding: 40px 0px;
    background:
      linear-gradient(to bottom, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) top / 100% var(--seam-fade-h) no-repeat,
      linear-gradient(to top, rgba(var(--seam-rgb),0.55) 0%, rgba(var(--seam-rgb),0) 100%) bottom / 100% var(--seam-fade-h) no-repeat;
}
  

.price-sec h2 {
  margin-bottom: 30px;
}
.price-sec .section-title {
  font-family: var(--font-display);
  color: #000;
  transform: translateY(-1px);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width:none
}

tbody tr td {

  transform: translateY(-1px);
  background: #FFFDF8;
  border: 1px solid var(--border-accent);
  border-radius: 5px;
  padding: 5px 30px;

}


@media (max-width: 768px) {
  .section-title { font-size: 2.2rem; }
  }
.price-table {
padding:20px;
border:none;
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  display: block;
}

.price-table thead {
  display: none; /* Скрываем шапку таблицы на мобильных */
}

.price-table tbody {
  display: block;
  width: 100%;
}

.price-table tr {
  display: block;
  margin-bottom: 3px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.price-table td {
  display: flex;
  color: #000;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
}

/* Последний элемент (цена) делаем чуть крупнее и жирнее */
.price-table td:last-child {
  font-weight: bold;
  color: #0796cc;
  font-size: 1rem;
}

/* Добавляем визуальные заголовки внутри карточек через псевдоэлементы */
.price-table td:first-child::before {
  content: "Наименование:";
  font-weight: 600;
  color: #555;
  min-width: 45%;
}

.price-table td:last-child::before {
  content: "Цена:";
  font-weight: 600;
  color: #555;
  min-width: 25%;
}


/* Дополнительные мелкие правки для очень узких экранов (смартфоны в портрете) */
@media (max-width: 720px) {


  .materials-section{
display: none;
  }

  .price-table td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-bottom: 1px solid #5555553b;
    padding-left: 16px;
    height: 100px;
    gap: 6px;
}

.price-table td::before {
  width: 100%;
  transform: translateY(-30px);
}

.price-table td:last-child {
  text-align: left;
}
}




.footer {
  background-color: #2a2a2d;
  color: #fff;
  padding: 0px 6%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer__bottom {
  padding-top: 2vw;
  padding-bottom: 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__bottom-item:first-child,
.footer__bottom-item:last-child {
  width: auto;
}
.footer__bottom-item:last-child p {
  text-align: right;
}
.footer__bottom-item p {
  font-weight: 500;
  font-size: 0.7vw;
  line-height: 1.25vw;
  letter-spacing: 0;
}
.footer__bottom-item p span,
.footer__bottom-item p a {
  color: #fff;
}

.footer__bottom-item p span::after,
.footer__bottom-item p a::after {
  border-color: #fff;
}

#cookie_notification {
  display: flex;
  opacity: 0;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 46.875vw;
  max-width: 90%;
  transform: translateX(-50%) translatey(100%);
  padding: 1vw;
  background-color: white;
  border-radius: var(--brad-regular);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 50;
  transition: 0.4s;
}

.to-top {
  position: fixed;
  right: 1.5625vw;
  bottom: 1.5625vw;
  width: 3.3333333333vw;
  height: 3.3333333333vw;
  border-radius: 50%;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 50;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.to-top img,
.to-top svg {
  width: 0.8234375vw;
  height: 0.4708333333vw;
  -o-object-fit: contain;
  object-fit: contain;
  fill: #fff;
}
.to-top img path,
.to-top svg path {
  fill: #fff;
}
.to-top:hover {
  background-color: var(--main-color-darken);
}

@media (max-width: 960px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .bg-fx__glow { width: 100vw; left: 50%; }
  #cookie_notification { width: 90vw; }
}