/* ============ TOKENS ============ */
:root {
  /* Palette — teal brand + gold accent on white (rebrand 26.05.2026) */
  --forest-900: #003841;   /* deep blue-teal №003841 — более синий+насыщенный (директор 01.06) */
  --forest-700: #00566B;   /* blue-teal — вторичные кнопки, заголовки, тёмные акценты */
  --forest-500: #007E9C;   /* фирменный blue-teal — основные кнопки, eyebrow, иконки */
  --sage-500: #3AA0BC;     /* средний blue-teal */
  --sage-200: #BCDEEC;     /* светлый blue-teal */
  --cyan-500: #49D1CD;     /* яркий голубой glow-акцент (tech-линии из презентации директора) */
  --cyan-300: #78C9BD;     /* светло-бирюзовый glow */
  --orange-500: #F98C61;   /* оранжевый акцент (энергия/стрелка из презентации) */
  --orange-600: #E8622A;   /* насыщенный оранжевый */
  --amber-500: #FFD700;    /* золото — акцентные кнопки, цифры, УТП */
  --amber-600: #C99A00;    /* тёмное золото — текст/бордеры на светлом */
  --amber-100: #FFF6CC;    /* светлый золотой тинт */
  --oxide-500: #A53B2A;
  --ink-900: #14181A;
  --ink-700: #2A3033;
  --ink-500: #555B5F;
  --ink-300: #8B9095;
  --paper-100: #FFFFFF;
  --paper-200: #F4F9F9;    /* почти белый с лёгким teal-тинтом — разделение секций */
  --paper-300: #DCEAEA;    /* светлый teal-бордер */

  /* Type scale (modular 1.25) */
  --fs-12: 0.75rem;
  --fs-13: 0.813rem;
  --fs-14: 0.875rem;
  --fs-15: 0.938rem;
  --fs-16: 1rem;
  --fs-17: 1.063rem;
  --fs-20: 1.25rem;
  --fs-25: 1.563rem;
  --fs-31: 1.953rem;
  --fs-39: 2.441rem;
  --fs-49: 3.052rem;
  --fs-61: 3.815rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* Shadow */
  --shadow-card: 0 2px 6px rgba(20,24,26,0.05), 0 12px 32px rgba(20,24,26,0.08);
  --shadow-hero: 0 28px 64px rgba(0,56,65,0.30);
  --shadow-soft: 0 1px 3px rgba(20,24,26,0.04), 0 8px 24px rgba(20,24,26,0.06);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: var(--fs-17);
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--paper-200);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }
::selection { background: var(--amber-500); color: var(--ink-900); }

/* ============ CONTAINER ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,241,234,0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(20,24,26,0.06);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-weight: 800; font-size: 18px; letter-spacing: -0.015em; color: var(--ink-900); }
.brand-text small { font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--ink-700); transition: color .15s ease; position: relative; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--amber-500); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover { color: var(--forest-700); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-weight: 700; font-size: 15px; color: var(--ink-900); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  line-height: 1;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: transform .18s ease, box-shadow .25s ease, background .15s ease, border-color .15s ease, color .15s ease;
  text-align: center;
}
.btn > svg { flex: 0 0 auto; display: block; }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--amber-500); color: var(--ink-900);
  box-shadow: 0 4px 14px rgba(255,215,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px); background: var(--amber-600);
  box-shadow: 0 12px 28px rgba(255,215,0,0.50);
}
.btn-ghost { background: transparent; color: var(--ink-900); border-color: rgba(20,24,26,0.16); }
.btn-ghost:hover { background: rgba(20,24,26,0.04); border-color: rgba(20,24,26,0.30); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.22); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.40); }
.btn-secondary { background: var(--forest-700); color: #fff; }
.btn-secondary:hover { background: var(--forest-900); transform: translateY(-1px); }
.btn-accent { background: var(--amber-500); color: var(--ink-900); }
.btn-whatsapp { background: #25D366; color: #fff; padding: 10px 18px; font-size: 14px; }
.btn-whatsapp:hover { background: #1FB855; transform: translateY(-1px); }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-full { width: 100%; }

/* ============ HERO (SPLIT) ============ */
.hero {
  position: relative;
  background: var(--forest-900);
  color: #F2EFE6;
  padding: 56px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(255,215,0,0.22) 0%, transparent 60%),
    radial-gradient(circle 700px at 10% 90%, rgba(0,126,156,0.18) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.30);
  color: var(--amber-500);
  font-size: 13px; font-weight: 600;
  border-radius: 999px; letter-spacing: 0.005em;
}
.hero-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber-500); box-shadow: 0 0 0 4px rgba(255,215,0,0.22); }
.hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin-top: 24px;
  color: #FFFEF8;
}
.hero-title .accent {
  color: var(--amber-500);
  background: linear-gradient(180deg, var(--amber-500), #E8C36F);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 19px; line-height: 1.55;
  color: rgba(255,254,248,0.78);
  margin-top: 24px; max-width: 580px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-trust li { display: flex; flex-direction: column; gap: 4px; }
.hero-trust strong { font-size: 31px; font-weight: 800; color: #FFFEF8; letter-spacing: -0.022em; }
.hero-trust span { font-size: 12px; color: rgba(255,254,248,0.62); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  aspect-ratio: 5/6;
  background: var(--forest-700);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-live {
  position: absolute; top: 18px; left: 18px;
  background: rgba(8,40,40,0.65);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-badge-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(255,215,0,0.30);
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse { 50% { opacity: 0.5; } }
.hero-card-stat {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.hero-card-stat .stat-label { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.hero-card-stat .stat-value { font-size: 22px; font-weight: 800; color: var(--forest-700); letter-spacing: -0.015em; }

/* ============ CLIENTS PRESS WALL ============ */
.logobar {
  background: var(--paper-100);
  border-bottom: 1px solid var(--paper-300);
  padding: 40px 0;
}
.logobar-head { text-align: center; max-width: 720px; margin: 0 auto 24px; }
.logobar-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,215,0,0.14);
  color: var(--amber-600);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  border-radius: 999px;
  margin-bottom: 16px;
}
.logobar-head h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink-900);
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--paper-300);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 36px;
}
.client-card {
  background: var(--paper-100);
  padding: 32px 20px 26px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center;
  transition: background .2s ease, transform .2s ease;
  min-height: 168px;
}
.client-card:hover { background: var(--paper-200); }
.client-monogram {
  font-size: 38px; font-weight: 800;
  color: var(--forest-700);
  letter-spacing: -0.05em;
  line-height: 1; margin-bottom: 6px;
  font-feature-settings: 'ss01', 'cv11';
}
.client-monogram::after {
  content: ''; display: block;
  width: 24px; height: 3px;
  background: var(--amber-500);
  border-radius: 2px;
  margin: 8px auto 0;
}
.client-name {
  font-size: 12px; font-weight: 700;
  color: var(--ink-700);
  text-transform: uppercase; letter-spacing: 0.05em;
  line-height: 1.3;
}
.client-region {
  font-size: 11px; color: var(--ink-500);
  letter-spacing: 0.01em;
  font-weight: 500;
}
.client-card-more { background: var(--paper-100); grid-column: span 2; }
.client-card-more:hover { background: var(--paper-200); }
.client-card-more .client-monogram-more { font-size: 30px; }

/* ===== Иконочный thumb для каталога (товары без фото) ===== */
.product-thumb.thumb-icon {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--forest-700) 0%, var(--forest-900) 100%);
}
.product-thumb.thumb-icon svg {
  width: 40%; max-width: 92px; height: auto;
  color: var(--amber-500);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

/* ===== ПО AgroS (тёмная выделенная секция) ===== */
.software { padding: 60px 0; background: var(--paper-200); }
.software > .container {
  background: linear-gradient(135deg, #FFE15C 0%, #FFD000 46%, #F4B200 100%);
  border-radius: 28px;
  padding: 52px 48px;
  box-shadow: 0 22px 56px rgba(214,150,0,0.34);
  position: relative; overflow: hidden; z-index: 1;
}
.software > .container::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(560px circle at 88% 4%, rgba(255,255,255,0.45), transparent 62%);
}
.software > .container > * { position: relative; z-index: 1; }
/* шапка блока на золоте — тёмная бирюза */
.software .section-head .eyebrow { background: var(--forest-900) !important; color: #FFE98A !important; }
.software .section-head h2 { color: var(--forest-900) !important; }
.software .section-head h2::after { background: var(--forest-900) !important; }
.software .section-head .section-sub { color: #5A4300 !important; }

.agros-flow {
  display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin: 0 auto 40px; max-width: 960px;
}
.flow-step {
  flex: 1 1 160px; min-width: 150px;
  background: #fff; border: 1px solid rgba(0,56,65,0.10);
  border-radius: var(--r-lg); padding: 18px 14px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  box-shadow: 0 8px 20px rgba(120,80,0,0.14);
}
.flow-num {
  width: 36px; height: 36px; margin-bottom: 4px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--forest-700); color: var(--amber-500);
  font-weight: 800; font-size: 16px;
}
.flow-step b { font-size: 15px; color: var(--ink-900); letter-spacing: -0.01em; }
.flow-step > span:last-child { font-size: 12.5px; color: var(--ink-500); line-height: 1.35; }
.flow-arrow { display: flex; align-items: center; color: var(--forest-900); font-size: 22px; font-weight: 800; }

.agros-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.agros-card {
  background: #fff; border: 1px solid rgba(0,56,65,0.08);
  border-radius: var(--r-lg); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 10px 26px rgba(120,80,0,0.14);
  transition: transform .25s ease, box-shadow .3s ease;
}
.agros-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(120,80,0,0.22); }
.agros-ico {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 2px;
  display: grid; place-items: center;
  background: rgba(0,126,156,0.10); color: var(--forest-700);
}
.agros-ico svg { width: 26px; height: 26px; }
.agros-card h3 { font-size: 16.5px; font-weight: 700; color: var(--ink-900); line-height: 1.25; letter-spacing: -0.015em; }
.agros-card p { font-size: 13.5px; color: var(--ink-500); line-height: 1.5; margin: 0; }

@media (max-width: 1024px) {
  .agros-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-arrow { display: none; }
  .software > .container { padding: 40px 28px; }
}
@media (max-width: 560px) {
  .agros-grid { grid-template-columns: 1fr; }
  .flow-step { flex-basis: 100%; }
  .software { padding: 40px 0; }
  .software > .container { padding: 28px 18px; border-radius: 18px; }
}

.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--paper-200);
  border: 1px solid var(--paper-300);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--forest-700);
}
.badge svg { color: var(--amber-600); flex: 0 0 16px; }

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.section-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,215,0,0.14);
  color: var(--amber-600);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 49px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.024em;
  color: var(--ink-900);
}
.section-head .section-sub {
  font-size: 17px;
  color: var(--ink-500);
  margin-top: 16px;
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,215,0,0.14);
  color: var(--amber-600);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 999px;
  line-height: 1.4;
}
.eyebrow-light { background: rgba(255,215,0,0.18) !important; color: var(--amber-500) !important; }
.section-head-dark h2 { color: #FFFEF8; }
.section-head-dark .section-sub { color: rgba(255,254,248,0.70); }

/* ============ PRODUCTS (BENTO) ============ */
.products { padding: 60px 0; background: var(--paper-200); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--paper-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--paper-300);
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
  grid-column: span 2;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
/* Hero-card на десктопе: 2 колонки (картинка + контент) внутри одной широкой карточки */
.product-card.hero-card { grid-column: span 6; grid-row: auto; }
.product-card.hero-card { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.product-card.hero-card .product-thumb { aspect-ratio: auto; min-height: 360px; height: 100%; }
.product-card.hero-card .product-body { padding: 36px; }
.product-grid > .product-card:nth-child(2),
.product-grid > .product-card:nth-child(3) { grid-column: span 3; }
.product-thumb {
  aspect-ratio: 5/3;
  background-color: var(--paper-200);
  background-size: cover; background-position: center;
  position: relative;
}
.product-card.hero-card .product-thumb { aspect-ratio: 16/10; }
.product-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-card.hero-card .product-body { padding: 32px; }
.product-body h3 {
  font-size: 19px; font-weight: 700;
  line-height: 1.2; letter-spacing: -0.018em;
  color: var(--ink-900);
}
.product-card.hero-card .product-body h3 { font-size: 25px; }
.product-body p { font-size: 14px; color: var(--ink-500); flex: 1; }
.product-card.hero-card .product-body p { font-size: 15px; }
.product-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.product-meta .price {
  font-size: 20px; font-weight: 800;
  color: var(--ink-900); letter-spacing: -0.015em;
}
.product-card.hero-card .product-meta .price { font-size: 28px; }
.product-meta .meta-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--amber-500); color: var(--ink-900);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 999px;
}

/* ============ ROI ============ */
.roi { background: var(--forest-900); color: #FFFEF8; padding: 60px 0; position: relative; overflow: hidden; }
.roi::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle 600px at 80% 20%, rgba(255,215,0,0.18), transparent 60%),
    radial-gradient(circle 500px at 10% 80%, rgba(0,126,156,0.20), transparent 50%);
}
.roi .container { position: relative; z-index: 1; }
.roi-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.roi-inputs { display: flex; flex-direction: column; gap: 18px; }
.roi-field { display: flex; flex-direction: column; gap: 8px; }
.roi-field > span { font-size: 13px; font-weight: 600; color: rgba(255,254,248,0.70); }
.roi-field input {
  font-size: 18px; font-weight: 600;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  color: #FFFEF8;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.roi-field input:focus { border-color: var(--amber-500); background: rgba(255,255,255,0.08); }
.roi-hint { font-size: 12px; line-height: 1.4; color: rgba(255,254,248,0.45); }
.roi-output { display: flex; flex-direction: column; gap: 14px; }
.roi-output-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.06);
}
.roi-label { font-size: 14px; color: rgba(255,254,248,0.72); }
.roi-value {
  font-size: 28px; font-weight: 800; color: var(--amber-500); letter-spacing: -0.018em;
  white-space: nowrap;
  flex-shrink: 0;
}
.roi-label { flex: 1 1 auto; }
.roi-output .btn { margin-top: 8px; }
.roi-foot { font-size: 12px; color: rgba(255,254,248,0.45); margin-top: 8px; line-height: 1.5; }

/* ============ HOW ============ */
.how { padding: 60px 0; background: var(--paper-200); }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 56px;
}
.how-step {
  padding: 28px;
  background: var(--paper-100);
  border-radius: var(--r-lg);
  border: 1px solid var(--paper-300);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.how-step:hover { transform: translateY(-3px); border-color: var(--amber-500); box-shadow: var(--shadow-soft); }
.how-num {
  font-size: 13px; font-weight: 800; color: var(--amber-600);
  letter-spacing: 0.10em;
}
.how-step h3 { font-size: 19px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.015em; line-height: 1.2; }
.how-step p { font-size: 14px; color: var(--ink-500); margin: 0; }
.video-frame {
  position: relative;
  width: 100%; max-width: 880px; margin: 0 auto;     /* landscape 16:9 video */
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--ink-900);
}
.video-frame video {
  position: relative; z-index: 1;
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9;                               /* native landscape — fills frame, no bars */
  background: transparent;
}
.video-caption { position: relative; z-index: 1; }
.video-caption {
  padding: 18px 28px;
  background: var(--ink-900);
  color: rgba(255,255,255,0.78);
  font-size: 14px; text-align: center;
  margin: 0;
}

/* showcase video band (top of page) */
.showcase { padding: 64px 0; background: var(--paper-200); }
.showcase .section-head { margin-bottom: 30px; }
.video-frame--showcase { max-width: 960px; }

/* ============ INSTALL GALLERY ============ */
.install { padding: 60px 0; background: var(--paper-100); }
.install-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.install-item {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--paper-300);
  box-shadow: 0 1px 3px rgba(20,24,26,0.06);
}
.install-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.install-item:hover img { transform: scale(1.04); }
.install-tall { grid-row: span 2; }
.install-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,56,65,0.85) 100%);
  color: #fff; font-size: 14px; font-weight: 600;
  letter-spacing: -0.005em;
}
.install-order {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--r-pill, 999px);
  background: var(--amber-500); color: var(--ink-900);
  font-size: 13px; font-weight: 700; letter-spacing: -0.005em;
  box-shadow: 0 2px 10px rgba(20,24,26,0.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.install-order::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-900); opacity: .55;
}
.install-order:hover {
  background: #FFE34D; transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(20,24,26,0.26);
}
.install-item:hover .install-order { box-shadow: 0 4px 16px rgba(20,24,26,0.3); }

/* ============ INTERCEPT ============ */
.intercept { padding: 48px 0 60px; background: var(--paper-100); }
.intercept-box {
  background: var(--amber-500);
  background-image: radial-gradient(ellipse at 90% 50%, rgba(255,255,255,0.22), transparent 50%);
  border-radius: var(--r-xl);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 32px;
}
.intercept-text h2 {
  color: var(--ink-900); font-size: 31px; line-height: 1.1;
  letter-spacing: -0.022em; font-weight: 800;
}
.intercept-text p { color: rgba(20,24,26,0.78); margin: 12px 0 0; font-size: 16px; line-height: 1.5; }
.intercept-text p strong { color: var(--ink-900); }
.intercept .btn { background: var(--ink-900); color: var(--amber-500); }
.intercept .btn:hover { background: #000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* ============ CASES ============ */
.cases { padding: 60px 0; background: var(--paper-200); overflow: hidden; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card {
  background: var(--paper-100);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--paper-300);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
  min-width: 0;
}
.case-card:hover { transform: translateY(-3px); border-color: var(--forest-700); box-shadow: var(--shadow-soft); }
.case-tag {
  display: inline-block; align-self: flex-start;
  padding: 4px 12px;
  background: var(--forest-700); color: #fff;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 999px;
}
.case-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.018em; color: var(--ink-900); line-height: 1.15; }
.case-meta { font-size: 13px; color: var(--ink-500); font-weight: 500; }
.case-task { font-size: 14px; color: var(--ink-700); line-height: 1.55; margin: 0; }
.case-task strong { color: var(--ink-900); font-weight: 700; }
.case-results {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 8px; padding: 0;
  list-style: none;
}
.case-results li {
  background: var(--paper-200);
  padding: 14px 8px;
  border-radius: var(--r-md);
  text-align: center;
  min-height: 92px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px;
  font-size: 10px; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.25;
  overflow: hidden;
  word-break: break-word; hyphens: auto;
}
.case-results strong {
  display: block;
  font-size: 17px; font-weight: 800;
  color: var(--forest-700); letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.1;
  white-space: nowrap;
  max-width: 100%;
}

/* ============ OBJECTIONS ============ */
.objections { padding: 60px 0; background: var(--paper-100); }
.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.obj-card {
  padding: 28px;
  background: var(--paper-200);
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.obj-card:hover { background: var(--paper-100); border-color: var(--paper-300); transform: translateY(-2px); }
.obj-card h3 { font-size: 17px; font-weight: 800; color: var(--forest-700); letter-spacing: -0.01em; }
.obj-card p { font-size: 15px; color: var(--ink-700); line-height: 1.55; margin: 0; }
.obj-card p strong { color: var(--ink-900); font-weight: 700; }
.obj-card p a { color: var(--amber-600); border-bottom: 1px solid currentColor; }

/* ============ MAP ============ */
.map { padding: 60px 0; background: var(--forest-900); color: #FFFEF8; position: relative; overflow: hidden; }
.map::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.10), transparent 60%);
}
.map .container { position: relative; z-index: 1; }
.map-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.map-region {
  padding: 22px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.map-region:hover { background: rgba(255,215,0,0.10); border-color: var(--amber-500); transform: translateY(-2px); }
.map-region strong { font-size: 14px; font-weight: 700; color: #FFFEF8; }
.map-region span { font-size: 12px; color: rgba(255,254,248,0.65); }

/* ============ LEAD FORM ============ */
.lead { padding: 60px 0; background: var(--paper-200); }
.lead-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: start;
  background: var(--paper-100);
  border-radius: var(--r-xl);
  padding: 56px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--paper-300);
}
.lead-left h2 {
  font-size: 39px; font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--ink-900); margin-top: 4px;
}
.lead-left > p { font-size: 16px; color: var(--ink-500); margin-top: 16px; line-height: 1.55; }
.lead-left > p strong { color: var(--ink-900); }
.lead-perks { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.lead-perks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-700); }
.lead-perks svg { flex: 0 0 22px; color: var(--amber-500); margin-top: 1px; }
.lead-form { display: grid; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field > span { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.form-field > span em { color: var(--oxide-500); font-style: normal; }
.form-field input, .form-field select {
  font-size: 15px;
  padding: 13px 16px;
  background: var(--paper-200);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-md);
  color: var(--ink-900); outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--amber-500); background: var(--paper-100);
}
.form-checks {
  border: 1px solid var(--paper-300); border-radius: var(--r-md);
  padding: 14px 18px;
}
.form-checks legend { font-size: 13px; font-weight: 600; color: var(--ink-700); padding: 0 6px; }
.form-checks label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-700);
  padding: 6px 0;
}
.form-checks input[type=checkbox] { accent-color: var(--forest-700); width: 16px; height: 16px; }
.form-foot { font-size: 12px; color: var(--ink-500); margin-top: 8px; line-height: 1.5; }
.form-foot a { color: var(--forest-700); border-bottom: 1px solid var(--paper-300); }

.consent-check {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0 4px;
  font-size: 12px; line-height: 1.5;
  color: var(--ink-500);
  cursor: pointer;
}
.consent-check input[type="checkbox"] {
  flex: 0 0 16px; width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--forest-500);
  cursor: pointer;
}
.consent-check span { flex: 1; }
.consent-check em { color: #D04848; font-style: normal; font-weight: 700; margin-left: 2px; }
.consent-check a { color: var(--forest-700); border-bottom: 1px solid rgba(0,56,65,0.30); }
.consent-check a:hover { color: var(--forest-900); border-bottom-color: var(--forest-900); }
.consent-check input:invalid + span { color: var(--ink-700); }

/* ============ CONTACTS ============ */
.contacts { padding: 60px 0; background: var(--paper-100); }
.contacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.contacts-block h3 {
  font-size: 18px; font-weight: 700; color: var(--ink-900);
  letter-spacing: -0.012em; margin-bottom: 12px;
}
.contacts-block p { font-size: 15px; color: var(--ink-700); line-height: 1.65; }
.contacts-block a { color: var(--forest-700); font-weight: 600; border-bottom: 1px dashed var(--paper-300); }
.contacts-block a:hover { color: var(--amber-600); }
.max-qr {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 18px;
  padding: 12px 16px 12px 12px; background: #fff;
  border: 1px solid var(--paper-300); border-radius: 14px;
  text-decoration: none; box-shadow: 0 4px 16px rgba(0,56,65,.06);
  transition: box-shadow .2s ease, transform .2s ease;
}
.max-qr:hover { box-shadow: 0 8px 22px rgba(0,56,65,.12); transform: translateY(-2px); color: inherit; }
.max-qr img { width: 132px; height: 132px; display: block; border-radius: 8px; }
.max-qr span { font-size: 14px; font-weight: 600; color: var(--forest-700); line-height: 1.4; border-bottom: none; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,0.62); padding: 56px 0 28px; }

/* New expanded footer */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-brand .footer-logo { width: 56px; height: 56px; }
.footer-tagline { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.62); margin: 0; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--amber-500);
  margin: 0 0 6px;
}
.footer-col a {
  font-size: 14px; line-height: 1.4;
  color: rgba(255,254,248,0.72);
  transition: color .15s ease;
}
.footer-col a:hover { color: #FFFEF8; }

.footer-legal {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  padding-top: 28px;
  font-size: 12px; line-height: 1.6;
  color: rgba(255,255,255,0.50);
}
.footer-legal-block { display: flex; flex-direction: column; gap: 6px; }
.footer-legal-block strong { color: rgba(255,254,248,0.85); font-weight: 700; font-size: 13px; }
.footer-legal-block a { color: rgba(255,215,0,0.78); border-bottom: 1px dashed rgba(255,215,0,0.30); }
.footer-legal-block a:hover { color: var(--amber-500); border-bottom-color: var(--amber-500); }
.footer-legal-block em { font-style: normal; color: rgba(255,254,248,0.65); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-legal { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
  .footer-brand .footer-logo { width: 48px; height: 48px; }
}

.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 40px; height: 40px; }
.footer-brand p { font-size: 13px; margin: 0; line-height: 1.5; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.62); transition: color .15s ease; }
.footer-links a:hover { color: var(--amber-500); }

/* ============ STICKY CTA ============ */
.sticky-stack {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.sticky-cta {
  background: var(--forest-500); color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 16px 36px rgba(0,126,156,0.42);
  transition: transform .2s ease, box-shadow .25s ease;
}
.sticky-cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 22px 48px rgba(0,126,156,0.55); background: var(--forest-700); }

.sticky-max {
  background: var(--amber-500); color: var(--forest-900);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 12px 28px rgba(255,215,0,0.38);
  transition: transform .2s ease, box-shadow .25s ease, background .15s ease;
}
.sticky-max:hover { transform: translateY(-2px) scale(1.04); background: #F2CE00; box-shadow: 0 18px 36px rgba(255,215,0,0.52); }

.btn-max {
  background: var(--amber-500); color: var(--forest-900);
  padding: 8px 16px 8px 8px; font-size: 14px; font-weight: 700;
  border-radius: 999px; display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s ease, transform .15s ease;
}
.btn-max:hover { background: #F2CE00; transform: translateY(-1px); }
.btn-max-icon { display: block; border-radius: 6px; }
.sticky-max-icon { display: block; border-radius: 7px; }
.sticky-max { padding: 9px 18px 9px 9px; }

/* ============ PREMIUM MICROINTERACTIONS ============ */

/* Spotlight cursor follow on hero */
.hero { --mx: 50%; --my: 50%; }
.hero::after {
  background:
    radial-gradient(circle 380px at var(--mx) var(--my), rgba(255,215,0,0.10) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  transition: background-position .3s ease;
}

/* Spotlight cursor follow on product cards */
.product-card { --cx: 50%; --cy: 50%; position: relative; }
.product-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 280px at var(--cx) var(--cy), rgba(0,126,156,0.10) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s ease;
  border-radius: inherit; z-index: 0;
}
.product-card:hover::after { opacity: 1; }
.product-card > * { position: relative; z-index: 1; }

/* Subtle tilt on product/case cards */
.product-card, .case-card, .how-step, .obj-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card:hover, .case-card:hover, .how-step:hover, .obj-card:hover {
  transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .3s ease, border-color .25s ease;
}

/* Gold sheen sweep on primary CTAs */
.btn-primary, .btn-accent, .sticky-cta, .sticky-max, .btn-max {
  position: relative; overflow: hidden;
}
.btn-primary::before, .btn-accent::before, .sticky-cta::before, .sticky-max::before, .btn-max::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -75%;
  width: 50%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left .6s cubic-bezier(.23,1,.32,1);
  pointer-events: none;
}
.btn-primary:hover::before, .btn-accent:hover::before,
.sticky-cta:hover::before, .sticky-max:hover::before, .btn-max:hover::before {
  left: 125%;
}

/* Floating idle animation on hero stat */
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.hero-card-stat { animation: float-soft 6s ease-in-out infinite; }

/* Gentle pulse on hero accent gradient */
@keyframes hero-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.78; }
}
.hero::before { animation: hero-glow 8s ease-in-out infinite; }

/* Underline grow under section h2 */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: ''; position: absolute; left: 50%; bottom: -10px;
  width: 0; height: 3px; background: var(--amber-500);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width .8s cubic-bezier(.23,1,.32,1) .15s;
}
.section-head.is-in h2::after { width: 60px; }

@media (prefers-reduced-motion: reduce) {
  .hero::after, .product-card::after { transition: none !important; }
  .hero-card-stat, .hero::before { animation: none !important; }
  .btn-primary::before, .btn-accent::before,
  .sticky-cta::before, .sticky-max::before, .btn-max::before { display: none; }
}

/* ============ THANKS PAGE ============ */
.thanks-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-700) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.thanks-wrap { width: 100%; max-width: 680px; }
.thanks-card {
  background: var(--paper-100);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  box-shadow: 0 28px 64px rgba(0,0,0,0.25);
  text-align: center;
}
.thanks-check {
  display: flex; align-items: center; justify-content: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(0,126,156,0.10);
  color: var(--forest-500);
  margin: 0 auto 18px;
  animation: thanks-pop .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes thanks-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.thanks-card .eyebrow { margin: 6px 0 16px; background: rgba(0,126,156,0.10); color: var(--forest-500); }
.thanks-card h1 {
  font-size: clamp(26px, 4vw, 36px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink-900); margin-bottom: 12px;
}
.thanks-sub { font-size: 17px; line-height: 1.5; color: var(--ink-500); margin: 0 auto 32px; max-width: 480px; }
.thanks-sub strong { color: var(--ink-900); font-weight: 700; }
.thanks-steps {
  display: flex; flex-direction: column; gap: 12px;
  margin: 0 auto 36px; max-width: 460px;
  text-align: left; list-style: none; padding: 0;
}
.thanks-steps li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: var(--paper-200); border-radius: var(--r-md);
  font-size: 14px; line-height: 1.45; color: var(--ink-700);
}
.thanks-step-num {
  flex: 0 0 28px; width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--forest-500); color: #fff;
  font-size: 13px; font-weight: 800;
}
.thanks-cta {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.thanks-foot { font-size: 13px; color: var(--ink-500); }
.thanks-foot a { color: var(--forest-700); border-bottom: 1px solid var(--paper-300); }
.thanks-foot a:hover { color: var(--forest-900); }
@media (max-width: 600px) {
  .thanks-card { padding: 36px 22px; }
  .thanks-check { width: 72px; height: 72px; }
  .thanks-cta .btn { flex: 1 1 100%; }
}

/* ============ LEGAL PAGES ============ */
.legal-page { background: var(--paper-200); min-height: 100vh; }
.legal-wrap { max-width: 880px; margin: 0 auto; padding: 64px 24px 80px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--forest-700); margin-bottom: 18px; }
.legal-back:hover { color: var(--forest-900); }
.legal-eyebrow { display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(0,126,156,0.10); color: var(--forest-500); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.legal-page h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink-900); margin: 0 0 8px; line-height: 1.15; }
.legal-meta { font-size: 13px; color: var(--ink-500); margin-bottom: 32px; }
.legal-page h2 { font-size: 22px; font-weight: 700; color: var(--forest-900); margin: 32px 0 12px; }
.legal-page h3 { font-size: 17px; font-weight: 700; color: var(--ink-900); margin: 20px 0 8px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.6; color: var(--ink-700); }
.legal-page ul, .legal-page ol { padding-left: 22px; margin: 8px 0 14px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--forest-700); border-bottom: 1px solid rgba(0,56,65,0.30); }
.legal-page a:hover { color: var(--forest-900); border-bottom-color: var(--forest-900); }
.legal-foot {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--paper-300);
  font-size: 13px; color: var(--ink-500);
}
@media (max-width: 640px) {
  .legal-wrap { padding: 40px 18px 60px; }
  .legal-page h1 { font-size: 28px; }
  .legal-page h2 { font-size: 19px; }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1500;
  background: var(--forest-900); color: #FFFEF8;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(0,56,65,0.45);
  padding: 18px 22px;
  transform: translateY(120%); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  max-width: 1180px; margin: 0 auto;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner[hidden] { display: none; }
.cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1 1 380px; font-size: 14px; line-height: 1.5; color: rgba(255,254,248,0.88); }
.cookie-text strong { color: #FFFEF8; font-weight: 700; margin-right: 6px; }
.cookie-text a { color: var(--amber-500); border-bottom: 1px solid rgba(255,215,0,0.4); }
.cookie-text a:hover { border-bottom-color: var(--amber-500); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 14px; }
.cookie-btn-accept { background: var(--amber-500); color: var(--forest-900); }
.cookie-btn-accept:hover { background: #F2CE00; }

@media (max-width: 640px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 16px; }
  .cookie-actions { width: 100%; justify-content: flex-start; }
  .cookie-actions .btn { flex: 1 1 auto; text-align: center; justify-content: center; }
}

/* Cookie settings modal */
.modal-sm { max-width: 480px; }
.cookie-group { display: flex; flex-direction: column; gap: 12px; margin: 6px 0 22px; }
.cookie-option {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border: 1px solid var(--paper-300);
  border-radius: var(--r-md); cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.cookie-option:hover { border-color: var(--forest-500); background: var(--paper-200); }
.cookie-option input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--forest-500); }
.cookie-option input[disabled] { opacity: 0.5; cursor: not-allowed; }
.cookie-option-body { display: flex; flex-direction: column; gap: 2px; font-size: 14px; color: var(--ink-900); }
.cookie-option-body strong { font-weight: 700; }
.cookie-option-body small { font-size: 12px; color: var(--ink-500); line-height: 1.45; }
.cookie-settings-actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-settings-actions .btn { padding: 10px 18px; font-size: 14px; }
.cookie-settings-actions .btn-ghost-light { background: var(--paper-200); color: var(--ink-700); border: 1px solid var(--paper-300); }
.cookie-settings-actions .btn-ghost-light:hover { background: var(--paper-300); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 16/10; }
  .hero-trust { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-card { grid-column: span 2; }
  .product-card.hero-card { grid-column: span 4; grid-row: auto; }
  .product-card.hero-card .product-body { flex-direction: column; }
  .product-grid > .product-card:nth-child(2),
  .product-grid > .product-card:nth-child(3) { grid-column: span 2; }
  .roi-card { grid-template-columns: 1fr; padding: 24px 18px; }
  .roi-output-row { padding: 14px 16px; }
  .roi-value { font-size: 22px; }
  .roi-label { font-size: 13px; }
  .cases-grid, .obj-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid { grid-template-columns: repeat(4, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .install-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .install-tall { grid-row: span 2; }
  .lead-wrap { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero { padding: 56px 0 72px; }
  .hero-title { font-size: clamp(34px, 8vw, 44px); }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-trust strong { font-size: 25px; }
  .header-actions .header-phone { display: none; }
  .header-actions { gap: 8px; }
  .brand-text { display: none; }
  .header-actions .btn { padding: 10px 14px; font-size: 13px; white-space: nowrap; }
  .header-actions .btn > svg { width: 16px; height: 16px; }
  .hero-card-stat { padding: 10px 14px; gap: 10px; bottom: 12px; left: 12px; right: 12px; }
  .hero-card-stat .stat-label { font-size: 10px; letter-spacing: 0.04em; }
  .hero-card-stat .stat-value { font-size: 16px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card, .product-card.hero-card { grid-column: 1; grid-row: auto; width: 100%; display: flex; flex-direction: column; }
  .product-card.hero-card .product-body { padding: 24px; gap: 12px; }
  .product-card.hero-card .product-thumb { aspect-ratio: 5/3; min-height: 0; height: auto; }
  .product-card.hero-card .product-body h3 { font-size: 21px; }
  .product-card.hero-card .product-body p { font-size: 14px; }
  .product-card.hero-card .product-meta .price { font-size: 22px; }
  .cases-grid, .obj-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .install-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .install-tall { grid-row: span 1; }
  .intercept-box { grid-template-columns: 1fr; padding: 32px 24px; }
  .lead-wrap { padding: 24px; }
  .lead-left h2 { font-size: 28px; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 14px; }
  .sticky-max span { display: none; }
  .sticky-max { padding: 12px; }
  .btn-max { padding: 10px 12px; }
  .btn-max span, .btn-max-label { display: none; }
  .footer-row { flex-direction: column; text-align: center; }
}

/* ============ LEAD MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0,56,65,0.55);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  width: 100%; max-width: 460px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--paper-100);
  border-radius: var(--r-lg);
  padding: 36px 32px 30px;
  box-shadow: var(--shadow-hero);
  transform: translateY(16px) scale(0.98);
  transition: transform .22s ease;
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
.modal .eyebrow { display: inline-block; margin-bottom: 10px; }
.modal h3 { font-size: 24px; line-height: 1.2; letter-spacing: -0.015em; color: var(--ink-900); }
.modal-sub { font-size: 14px; line-height: 1.5; color: var(--ink-500); margin: 8px 0 20px; }
.modal-sub strong { color: var(--ink-700); }
.modal .lead-form { gap: 14px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1;
  color: var(--ink-500); background: var(--paper-200);
  border: none; border-radius: 50%; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.modal-close:hover { background: var(--paper-300); color: var(--ink-900); }
@media (max-width: 560px) {
  .modal { padding: 30px 22px 24px; border-radius: var(--r-md); }
  .modal h3 { font-size: 21px; }
}

/* segmented "способ связи" */
.channel-pills { display: flex; gap: 8px; }
.channel-pills label { flex: 1; position: relative; margin: 0; }
.channel-pills input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.channel-pills span {
  display: block; text-align: center;
  padding: 11px 6px; font-size: 14px; font-weight: 600;
  color: var(--ink-700);
  background: var(--paper-200);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.channel-pills label:hover span { border-color: var(--amber-500); }
.channel-pills input:checked + span {
  background: var(--forest-700); color: #FFFEF8; border-color: var(--forest-700);
}
.channel-pills input:focus-visible + span { outline: 2px solid var(--amber-500); outline-offset: 2px; }

/* ============ REBRAND 26.05.2026 — teal/gold/white ============ */
/* основные CTA «Получить КП» → заливной teal с белым текстом */
.btn-primary { background: var(--forest-500); color: #fff; box-shadow: 0 4px 14px rgba(0,126,156,0.30); }
.btn-primary:hover { background: var(--forest-700); box-shadow: 0 12px 28px rgba(0,126,156,0.45); }
/* кнопка в шапке (бывшая whatsapp) → teal */
.btn-whatsapp { background: var(--forest-500); color: #fff; }
.btn-whatsapp:hover { background: var(--forest-700); }
/* ROI-CTA и др. .btn-accent → золото с тёмным текстом */
.btn-accent { background: var(--amber-500); color: var(--forest-900); }
.btn-accent:hover { background: #F2CE00; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,215,0,0.40); }

/* eyebrow на светлых секциях → teal */
.section-head .eyebrow:not(.eyebrow-light),
.logobar-head .eyebrow { background: rgba(0,126,156,0.10); color: var(--forest-500); }
/* ключевые заголовки на светлом → teal (на тёмных остаются белыми) */
.section-head:not(.section-head-dark) h2,
.logobar-head h3,
.lead-left h2 { color: var(--forest-700); }

/* цифры — золотом на тёмных блоках */
.hero-trust strong { color: var(--amber-500); }

/* INTERCEPT: фон сине-зелёный, кнопка золотая, текст в кнопке синий */
.intercept-box {
  background: var(--forest-900);
  background-image: radial-gradient(ellipse at 90% 50%, rgba(0,126,156,0.55), transparent 55%);
}
.intercept-text h2 { color: #FFFEF8; }
.intercept-text p { color: rgba(255,254,248,0.82); }
.intercept-text p strong { color: #fff; }
.intercept .btn { background: var(--amber-500); color: var(--forest-900); }
.intercept .btn:hover { background: #F2CE00; box-shadow: 0 8px 24px rgba(255,215,0,0.40); }

/* HOVER-подсветка карточек товаров и кейсов */
.product-card:hover { border-color: var(--forest-500); box-shadow: 0 10px 32px rgba(0,126,156,0.18); }
.case-card:hover { border-color: var(--forest-500); box-shadow: 0 10px 32px rgba(0,126,156,0.16); }
.how-step:hover { border-color: var(--forest-500); }
.obj-card:hover { border-color: var(--sage-200); }

/* ============ SCROLL-REVEAL (мягкое появление) ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   ЯРЧЕ + ДИНАМИЧНЕЕ  (доводка по фидбэку ген.директора 01.06)
   Всё ниже — аддитивно; уважает prefers-reduced-motion в самом низу.
   ============================================================ */

/* --- 1. усиленное появление при скролле (заметнее + лёгкий зум) --- */
.reveal { opacity: 0; transform: translateY(30px) scale(.985);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

/* --- 2. hover-микровзаимодействия (карточки «оживают») --- */
.product-card { transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,56,65,0.16); border-color: rgba(0,126,156,0.35); }
.client-card { transition: background .2s ease, transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease; }
.client-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,56,65,0.12); }
.how-step { transition: transform .2s ease, box-shadow .25s ease; }
.how-step:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,56,65,0.10); }
.agros-card { transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease; }
.agros-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 24px 50px rgba(180,120,0,0.30); }
.case-card { transition: transform .22s ease, box-shadow .25s ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(0,56,65,0.16); }

/* --- 3. ЯРЧЕ: тёплое свечение + цвет на бледных секциях --- */
/* hero: медленно дрейфующее золотое+teal свечение поверх тёмного фона */
.hero { position: relative; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; inset: -20% -10% -20% -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(540px circle at 85% 12%, rgba(255,215,0,0.20), transparent 60%),
    radial-gradient(620px circle at 8% 88%, rgba(0,168,200,0.22), transparent 62%);
  animation: heroGlow 14s ease-in-out infinite alternate;
}
.hero > .container { position: relative; z-index: 1; }
@keyframes heroGlow {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: .85; }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.08); opacity: 1; }
}
/* showcase: тёплый светлый градиент вместо плоского paper */
.showcase { background: linear-gradient(170deg, #FFFDF4 0%, var(--paper-200) 55%, #EAF6F4 100%); }
/* «как работаем»: лёгкий teal-тинт, чтобы не было голой белизны */
.how { background: linear-gradient(180deg, #F2FAF9 0%, var(--paper-200) 100%); }

/* --- 4. главный CTA в hero: мягкий пульс-глоу (притягивает взгляд) --- */
.hero-actions .btn-primary { position: relative; animation: ctaPulse 2.6s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(255,215,0,0.30); }
  50%      { box-shadow: 0 10px 30px rgba(255,215,0,0.55); }
}
.hero-actions .btn-primary:hover { animation: none; }

/* --- 5. блеск-свайп по золотым кнопкам на hover --- */
.btn-primary, .btn-accent { position: relative; overflow: hidden; }
.btn-primary::after, .btn-accent::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.btn-primary:hover::after, .btn-accent:hover::after { left: 130%; }

/* --- 6. счётчики (анимируются из JS, без скачка верстки) --- */
.hero-trust strong { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .hero::after, .hero-actions .btn-primary { animation: none !important; }
  .product-card:hover, .client-card:hover, .how-step:hover, .agros-card:hover, .case-card:hover { transform: none !important; }
  .btn-primary::after, .btn-accent::after { display: none !important; }
}

/* ============================================================
   ОБРАЗ ПРЕЗЕНТАЦИИ 02.06 — демо-видео в hero + cyan-glow + orange + «выходящие надписи»
   (палитра из защитной презентации ген.директора: глубокий синий #003841 →
    голубой glow #49D1CD + точечный оранжевый #F98C61, золото сохранено)
   ============================================================ */

/* --- демо-видео в первом блоке (hero) --- */
.hero-visual { background: #06222D; }
.hero-video { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-video + img { display: none; }            /* fallback-картинка прячется, когда video поддерживается */
.hero-visual::after {                            /* светящаяся cyan tech-рамка вокруг видео */
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(73,209,205,0.38),
    inset 0 0 70px rgba(73,209,205,0.14);
}

/* --- deck-образ: cyan-свечение + tech-линии на фоне hero --- */
.hero::before {
  background:
    radial-gradient(ellipse 58% 48% at 88% 6%, rgba(255,215,0,0.20) 0%, transparent 60%),
    radial-gradient(circle 760px at 4% 94%, rgba(73,209,205,0.24) 0%, transparent 55%),
    radial-gradient(circle 540px at 80% 82%, rgba(0,126,156,0.22) 0%, transparent 60%),
    linear-gradient(118deg, transparent 38%, rgba(73,209,205,0.06) 39%, transparent 40%,
                            transparent 59%, rgba(248,140,97,0.06) 60%, transparent 61%);
}

/* --- live-индикатор → техно cyan glow --- */
.hero-badge-live::before {
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(73,209,205,0.30), 0 0 12px rgba(73,209,205,0.65);
}

/* --- точечный оранжевый акцент (как энергичная стрелка в презентации) --- */
.hero-actions .btn-ghost-light svg { color: var(--orange-500); }

/* --- cyan-хвост у золотой подчёркивающей линии секций (tech) --- */
.section-head h2::after { background: linear-gradient(90deg, var(--amber-500), var(--cyan-500)); }

/* --- «ВЫХОДЯЩИЕ НАДПИСИ»: каскадное появление текста hero --- */
@keyframes emergeUp {
  from { opacity: 0; transform: translateY(28px); filter: blur(7px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes emergeFade {
  from { opacity: 0; transform: scale(1.025); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-content > * { opacity: 0; animation: emergeUp .85s cubic-bezier(.22,1,.36,1) both; }
.hero-content > .hero-pill    { animation-delay: .06s; }
.hero-content > .hero-title   { animation-delay: .20s; }
.hero-content > .hero-sub     { animation-delay: .38s; }
.hero-content > .hero-actions { animation-delay: .54s; }
.hero-content > .hero-trust   { animation-delay: .68s; }
.hero-visual { animation: emergeFade 1.1s ease .30s both; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > *, .hero-visual {
    animation: none !important; opacity: 1 !important; filter: none !important; transform: none !important;
  }
}

/* ============ HERO ВИДЕО-ПОЛОСА 03.06 (Фарида) — полоса сверху, контент по центру ============ */
.hero { padding: 0 0 64px; }
.hero-band {
  position: relative; width: 100%;
  height: clamp(280px, 40vw, 540px);
  overflow: hidden; background: #06222D; z-index: 1;
}
.hero-band .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,34,45,0) 55%, var(--forest-900) 100%);
}
.hero .container { padding-top: 52px; }
.hero-content { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-title { font-size: clamp(28px, 4.2vw, 46px); margin-top: 0; line-height: 1.06; }
.hero-sub { font-size: 18px; max-width: 720px; margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; margin-top: 28px; }
.hero-trust { max-width: 760px; margin-left: auto; margin-right: auto; justify-items: center; text-align: center; }
.hero-trust li { align-items: center; }
.hero-badge-live { top: 16px; left: 16px; }

/* всплывающие цифры (Фарида: «можно сделать всплывающими?») */
.hero-trust { animation: none !important; opacity: 1 !important; }
.hero-trust li { opacity: 0; animation: numPop .62s cubic-bezier(.34,1.56,.64,1) both; }
.hero-trust li:nth-child(1) { animation-delay: .35s; }
.hero-trust li:nth-child(2) { animation-delay: .48s; }
.hero-trust li:nth-child(3) { animation-delay: .61s; }
.hero-trust li:nth-child(4) { animation-delay: .74s; }
@keyframes numPop { from { opacity: 0; transform: translateY(16px) scale(.82); } to { opacity: 1; transform: none; } }
.hero-band { opacity: 0; animation: emergeFade 1s ease .1s both; }

/* плашка точность/окупаемость — перенесена на нижнее видео */
.video-media { position: relative; }
.video-stat {
  position: absolute; left: 14px; right: 14px; top: 14px; z-index: 3;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-md); padding: 12px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  box-shadow: 0 8px 24px rgba(0,40,45,0.16);
}
.video-stat .stat-label { font-size: 11px; color: var(--ink-500); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.video-stat .stat-value { font-size: 20px; font-weight: 800; color: var(--forest-700); letter-spacing: -.015em; }

@media (max-width: 860px) {
  .hero-band { height: clamp(190px, 44vw, 300px); }
  .hero .container { padding-top: 36px; }
  .hero-title { font-size: clamp(24px, 6.2vw, 34px) !important; }
  .hero-sub { font-size: 16px; }
}
@media (max-width: 560px) {
  .hero-band { height: clamp(160px, 46vw, 220px); }
  .video-stat { padding: 9px 12px; left: 10px; right: 10px; top: 10px; }
  .video-stat .stat-value { font-size: 16px; }
  .video-stat .stat-label { font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-trust li, .hero-band { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* кнопка «Позвонить» в шапке (вместо открытого номера + MAX) 03.06 */
.btn-call {
  background: transparent;
  color: var(--forest-700);
  border: 1.5px solid var(--forest-500);
  padding: 8px 16px; font-size: 14px; gap: 8px;
}
.btn-call:hover { background: var(--forest-900); color: #fff; border-color: var(--forest-900); transform: translateY(-1px); }

/* ============ ПРАВКИ 04.06 (Фарида): аккордеон AgroS + сворачивание калькулятора ============ */
/* ПО «AgroS» — карточки-аккордеоны: клик по заголовку раскрывает описание (экономим место) */
.agros-grid { align-items: start; }
.agros-card { padding: 0; gap: 0; }
.agros-card:hover { transform: none; box-shadow: 0 16px 34px rgba(120,80,0,0.16); }
.agros-head {
  display: flex; align-items: center; gap: 14px; width: 100%;
  margin: 0; padding: 20px 22px;
  background: none; border: 0; cursor: pointer;
  text-align: left; font: inherit; color: inherit;
  border-radius: var(--r-lg);
}
.agros-head .agros-ico { margin: 0; flex-shrink: 0; }
.agros-head h3 { flex: 1 1 auto; margin: 0; }
.agros-chevron {
  flex-shrink: 0; font-size: 20px; line-height: 1;
  color: var(--forest-700);
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.agros-card.is-open .agros-chevron { transform: rotate(180deg); }
.agros-body {
  max-height: 0; overflow: hidden;
  padding: 0 22px;
  transition: max-height .32s ease, padding .32s ease;
}
.agros-card.is-open .agros-body { max-height: 360px; padding: 0 22px 22px; }
.agros-head:focus-visible { outline: 2px solid var(--forest-500); outline-offset: 2px; }

/* ROI-калькулятор — сворачиваемый (по умолчанию свёрнут, лендинг короче) */
.roi-toggle-wrap { text-align: center; margin-bottom: 4px; }
.roi-toggle { gap: 10px; }
.roi-card.is-collapsed { display: none; }
