/* ===================================================================
   С.М. — премиум масло холодного отжима · B2B landing
   Палитра: насыщенный зелёный #00A86B + глубокий тёмно-зелёный #0A4500,
   градиентные заливки, шрифт #585858
   =================================================================== */

:root {
  /* base */
  --green-900: #0A4500;   /* глубокий тёмно-зелёный — текст, логотип */
  --green-deep: #15300f;
  --cream:     #f5f1e6;   /* тёплая натуральная бумага */
  --cream-2:   #ece6d6;
  --white:     #fffdf8;

  /* text */
  --ink:       #585858;   /* основной цвет шрифта */
  --ink-soft:  #8a877e;
  --heading:   #1f3d18;   /* заголовки — приглушённый тёмно-зелёный */

  /* accent — приглушённая, натуральная гамма */
  --accent:        #4f8f6b;   /* мягкий зелёный */
  --accent-deep:   #2c5226;   /* тёмно-зелёный для текста/ссылок */
  --accent-soft:   #dbe5cf;    /* пыльно-зелёный фон иконок на светлом */
  --accent-bright: #a9c79b;    /* мягкая шалфейная для текста на тёмном */

  /* gradients — спокойные, землистые */
  --grad-accent:     linear-gradient(135deg, #5a9974 0%, #234a1c 100%);
  --grad-accent-rev: linear-gradient(135deg, #234a1c 0%, #5a9974 100%);
  --grad-dark:       linear-gradient(162deg, #2a4d22 0%, #1c3a16 58%, #132b0f 100%);
  --grad-cta:        linear-gradient(155deg, #294a1f 0%, #19330f 72%);
  --grad-soft:       linear-gradient(135deg, #e6ebd9 0%, #d2ddc2 100%);
  --grad-media:      linear-gradient(135deg, #44603a 0%, #283f20 100%);

  /* utility */
  --line: rgba(31, 61, 24, 0.13);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 10px rgba(31, 45, 20, 0.06);
  --shadow-md: 0 16px 38px rgba(31, 45, 20, 0.11);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;

  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; color: var(--heading); }

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

/* ---------- shared atoms ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--accent-bright); }
.accent {
  background: var(--grad-accent-rev);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform .18s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  /* градиент-заливка покрывает всю рамку (иначе тёмный край слева/сверху) */
  background-origin: border-box;
  background-repeat: no-repeat;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background-image: var(--grad-accent);   /* longhand: не сбрасывает background-origin/-repeat из .btn */
  color: var(--white);
  box-shadow: 0 8px 20px rgba(25, 45, 14, 0.18);
}
.btn--primary:hover { filter: brightness(1.05); box-shadow: 0 12px 26px rgba(25, 45, 14, 0.26); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--accent-deep);
}
.btn--ghost:hover { background: rgba(44, 82, 38, 0.08); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* section scaffolding */
.section { padding: 96px 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--grad-dark); color: var(--white); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--heading); }
.section__title--light { color: var(--white); }
.section__lead { margin-top: 18px; font-size: 1.08rem; color: var(--ink); max-width: 640px; }
.section__lead strong { color: var(--accent-deep); font-weight: 700; }

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(244, 247, 243, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--green-900); letter-spacing: -0.01em; }
.logo__mark { display: inline-grid; place-items: center; width: 34px; height: 34px; flex: none; }
.logo__mark svg { width: 100%; height: 100%; }
.logo--light { color: var(--white); }

.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--grad-accent-rev);
  transition: width .22s ease;
}
.nav a:hover { color: var(--accent-deep); }
.nav a:hover::after { width: 100%; }
.header__cta { margin-left: 4px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.burger span { width: 24px; height: 2px; background: var(--green-900); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 24px 22px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a { font-family: var(--font-head); font-weight: 600; padding: 12px 0; color: var(--green-900); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: none; margin-top: 10px; color: var(--white); }
.mobile-menu.is-open { display: flex; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--white);
}
/* Подложка hero — фоновое фото */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--green-deep); }
.hero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 62% center;
}
/* затемнение для читаемости текста поверх фото */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(9,28,5,0.86) 0%, rgba(9,28,5,0.6) 34%, rgba(9,28,5,0.2) 60%, rgba(9,28,5,0.02) 82%),
    linear-gradient(to top, rgba(9,28,5,0.45) 0%, transparent 40%);
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.06fr 0.94fr;
  gap: 48px; align-items: center;
}
.hero__inner--solo { display: block; }
.hero__content { max-width: 600px; }

/* продуктовое фото — бутылка С.М. */
.hero__product { position: relative; justify-self: center; }
.hero__product img {
  width: min(400px, 100%); height: auto; display: block;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(7, 30, 4, 0.5), 0 4px 14px rgba(7, 30, 4, 0.35);
}
.hero__product::after {
  /* мягкое тёплое свечение под бутылкой */
  content: ""; position: absolute; left: 50%; bottom: -22px;
  width: 72%; height: 36px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(222,210,150,0.35), transparent 70%);
  filter: blur(6px); z-index: -1;
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  line-height: 1.04;
  margin-bottom: 22px;
  color: var(--white);
}
.hero__title .accent {
  background: linear-gradient(120deg, #d4e3b6 0%, #a6cf94 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 34px;
}
/* объявление о предзаказе в hero */
.hero__announce {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(12,34,6,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 0.92rem; line-height: 1.4;
  padding: 11px 16px; border-radius: 16px; margin-bottom: 20px; max-width: 540px;
}
.hero__announce strong { color: #d6ecae; font-weight: 800; }
.hero__announce-text { flex: 1; }
.hero__announce-dot {
  flex: none; width: 9px; height: 9px; margin-top: 6px; border-radius: 50%;
  background: #7fe3b4; box-shadow: 0 0 0 0 rgba(127,227,180,0.6);
  animation: announcePulse 1.9s ease-out infinite;
}
@keyframes announcePulse {
  0% { box-shadow: 0 0 0 0 rgba(127,227,180,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(127,227,180,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,227,180,0); }
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero .btn--ghost { color: var(--white); }
.hero .btn--ghost:hover { background: rgba(255,255,255,0.1); }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.9rem; color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(7, 44, 0, 0.6);
}
.trust-row li { display: inline-flex; align-items: center; gap: 8px; }
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 0 4px rgba(169,199,155,0.2); }

/* дружелюбные теги в hero */
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__tags li {
  font-family: var(--font-head); font-weight: 600; font-size: 0.86rem;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 7px 15px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ===================================================================
   ВЫБОР ТОВАРА + ЗАКАЗ
   =================================================================== */
.product__grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 48px; align-items: center;
}
.product__media { text-align: center; }
.product__media img {
  width: min(380px, 100%); height: auto; display: block; margin: 0 auto 22px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.product__caption h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--heading); }
.product__caption p { color: var(--ink); font-size: 1rem; }

/* карточка заказа */
.order {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-md);
  display: grid; gap: 18px;
}
.order__preorder {
  justify-self: start;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); background: var(--grad-accent);
  padding: 6px 13px; border-radius: 999px;
}
.order__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.order__amount { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--heading); letter-spacing: -0.02em; }
.order__per { color: var(--ink-soft); font-size: 0.98rem; }

.order__promo {
  margin-top: -6px;
  font-family: var(--font-head); font-size: 0.92rem; color: var(--accent-deep);
  background: var(--accent-soft); border-radius: 12px; padding: 10px 14px;
}
.order__promo strong { font-weight: 800; }
.order__promo span { color: var(--ink-soft); font-weight: 500; text-decoration: line-through; }

.order__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.order__qty-label { font-family: var(--font-head); font-weight: 600; color: var(--green-900); }

/* степпер количества */
.stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--cream); border: 1.5px solid var(--line); border-radius: 14px; padding: 4px; }
.stepper__btn {
  width: 42px; height: 42px; border-radius: 10px;
  font-size: 1.4rem; font-weight: 700; line-height: 1; color: var(--accent-deep);
  display: grid; place-items: center; transition: background .15s ease, color .15s ease;
}
.stepper__btn:hover { background: var(--accent-soft); }
.stepper__val { min-width: 40px; text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--heading); }

.order__total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 16px; border-top: 1px dashed var(--line);
  font-family: var(--font-head); font-weight: 600; color: var(--ink);
}
.order__total-val { display: inline-flex; align-items: baseline; gap: 10px; }
.order__total-val s { color: var(--ink-soft); font-size: 1.05rem; }
.order__total strong { font-size: 1.6rem; font-weight: 800; color: var(--heading); }

.order__delivery {
  font-size: 0.9rem; color: var(--ink-soft);
  background: var(--cream); border-radius: 12px; padding: 11px 14px;
  margin-top: -4px;
}
.order__delivery.is-free { color: var(--accent-deep); background: var(--accent-soft); font-weight: 600; }
.order__hint { font-size: 0.85rem; color: var(--ink-soft); text-align: center; }

/* условия доставки */
.delivery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 44px;
}
.delivery li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 22px;
  box-shadow: var(--shadow-sm);
}
.delivery__icon {
  flex: none; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-deep);
}
.delivery__icon svg { width: 24px; height: 24px; }
.delivery li span:last-child { color: var(--ink); font-size: 0.96rem; }
.delivery li strong { display: block; font-family: var(--font-head); color: var(--heading); margin-bottom: 3px; font-size: 1.02rem; }

/* ===================================================================
   CARDS (УТП + reviews)
   =================================================================== */
.cards { display: grid; gap: 24px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon {
  display: inline-grid; place-items: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--grad-accent); color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(25,45,14,0.14);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.3rem; margin-bottom: 10px; color: var(--heading); }
.card__text { color: var(--ink); font-size: 1rem; }

/* ===================================================================
   JOURNEY (от поля до бутылки)
   =================================================================== */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.journey__step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.journey__num {
  position: absolute; top: 14px; right: 18px; z-index: 2;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; color: var(--white);
  background: var(--grad-accent);
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(25,45,14,0.18);
}
.journey__media {
  position: relative;
  height: 150px; border-radius: var(--radius-sm);
  margin-bottom: 18px;
  background: var(--grad-media);
  display: grid; place-items: center;
  overflow: hidden;
}
.journey__media::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(120% 90% at 70% 20%, rgba(150,178,120,0.26), transparent 62%);
}
.journey__media-note {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: 0.78rem;
  color: rgba(255,255,255,0.78); text-align: center; padding: 0 12px;
}
.journey__media--photo { padding: 0; }
.journey__media--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.journey__media--photo::after { display: none; }
.journey__title { font-size: 1.12rem; margin-bottom: 6px; color: var(--heading); }
.journey__text { color: var(--ink); font-size: 0.95rem; }

/* ===================================================================
   TABS (для бизнеса)
   =================================================================== */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.tab {
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 12px 22px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  color: var(--ink);
  transition: all .2s ease;
}
.tab:hover { color: var(--accent-deep); border-color: var(--accent); }
.tab.is-active { background: var(--grad-accent); color: var(--white); border-color: transparent; box-shadow: 0 6px 16px rgba(0,168,107,0.28); }

.tab-panel { display: none; animation: fade .35s ease; }
.tab-panel.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.tab-panel__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 44px;
  box-shadow: var(--shadow-sm);
}
.tab-panel__title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 22px; color: var(--heading); }
.tab-panel__media {
  position: relative; min-height: 280px; border-radius: var(--radius-sm);
  background: var(--grad-media);
  display: grid; place-items: center;
}
.tab-panel__media::after {
  content:""; position:absolute; inset:0; border-radius: var(--radius-sm);
  background: radial-gradient(120% 90% at 70% 25%, rgba(150,178,120,0.24), transparent 62%);
}

.checklist { display: grid; gap: 14px; }
.checklist li {
  position: relative; padding-left: 34px;
  color: var(--ink); font-size: 1.04rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230A4500' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.badge-season {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); background: var(--grad-accent);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}

/* ===================================================================
   QUALITY & DOCS (dark)
   =================================================================== */
.docs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.doc {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s ease, background .25s ease;
}
.doc:hover { transform: translateY(-5px); background: rgba(255,255,255,0.09); }
.doc__icon {
  display: inline-grid; place-items: center;
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(169,199,155,0.15); color: var(--accent-bright);
  margin-bottom: 18px;
}
.doc__icon svg { width: 26px; height: 26px; }
.doc__title { font-size: 1.15rem; margin-bottom: 8px; color: var(--white); }
.doc__text { color: rgba(255,255,255,0.76); font-size: 0.95rem; }

/* ===================================================================
   STEPS (как начать)
   =================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 14px; }
.step__num {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-accent); color: var(--white);
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 16px rgba(25,45,14,0.18);
}
.step__title { font-size: 1.18rem; margin-bottom: 8px; color: var(--heading); }
.step__text { color: var(--ink); font-size: 0.97rem; }

/* ===================================================================
   REVIEWS / SOCIAL PROOF
   =================================================================== */
.quote {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 20px;
}
.quote blockquote { font-size: 1.08rem; color: var(--ink); font-style: italic; }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote__name { font-family: var(--font-head); font-weight: 700; color: var(--heading); }
.quote__place { color: var(--accent); font-size: 0.9rem; font-weight: 600; }

.logos-label {
  text-align: center; margin-top: 56px; margin-bottom: 22px;
  font-family: var(--font-head); font-weight: 600; color: var(--ink-soft);
  font-size: 0.92rem; letter-spacing: 0.04em;
}
.logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.logo-ph {
  display: grid; place-items: center;
  min-width: 130px; height: 60px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft); font-family: var(--font-head); font-weight: 600;
  background: var(--white);
}

/* ===================================================================
   FINAL CTA + FORM
   =================================================================== */
.section--cta { background: var(--grad-cta); color: var(--white); }
.cta__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.cta__lead { color: rgba(255,255,255,0.88); font-size: 1.12rem; margin-bottom: 24px; max-width: 480px; }
.cta__bullets { display: grid; gap: 12px; margin-bottom: 28px; }
.cta__bullets li { position: relative; padding-left: 30px; color: rgba(255,255,255,0.94); }
.cta__bullets li::before {
  content:""; position:absolute; left:0; top:5px;
  width:18px; height:18px; border-radius:50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:center;
}
.tg-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600;
  color: var(--accent-bright);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color .2s ease;
}
.tg-link:hover { border-color: var(--accent-bright); }
.tg-link svg { flex: none; }

/* form card */
.cta__form-wrap { position: relative; }
.form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
  display: grid; gap: 16px;
}
.form__title { font-size: 1.5rem; margin-bottom: 4px; color: var(--heading); }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--green-900); }
.req { color: var(--accent); }
.opt { color: var(--ink-soft); font-weight: 500; }
.field input {
  font-family: var(--font-body); font-size: 1rem;
  padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--cream);
  color: var(--ink); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: #a0a8a0; }
.field input:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(79,143,107,0.18); }
.field input.is-invalid { border-color: #d4503a; background: #fdf1ef; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--ink); cursor: pointer; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--accent); flex: none; }
.consent a { color: var(--accent-deep); text-decoration: underline; }
.consent.is-invalid { color: #d4503a; }

.form__note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; margin-top: 2px; }

/* ensure [hidden] wins over .form/.thanks display rules */
.form[hidden], .thanks[hidden] { display: none; }

/* thank-you */
.thanks {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 52px 36px;
  box-shadow: var(--shadow-md); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: fade .4s ease;
}
.thanks__icon { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: var(--grad-accent); color: var(--white); box-shadow: 0 10px 22px rgba(25,45,14,0.16); }
.thanks__icon svg { width: 38px; height: 38px; }
.thanks__title { font-size: 1.6rem; color: var(--heading); }
.thanks__text { color: var(--ink); max-width: 340px; }
.thanks .btn { margin-top: 8px; color: var(--accent-deep); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--grad-dark); color: rgba(255,255,255,0.82); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__inner--simple { grid-template-columns: 1.6fr 1fr; }
.footer__tagline { margin: 16px 0 10px; max-width: 320px; font-size: 0.95rem; }
.footer__founder { margin-bottom: 18px; font-size: 0.9rem; color: var(--accent-bright); font-weight: 600; }
.footer__only-tg { margin-top: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__badges li {
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line-light); color: var(--accent-bright);
}
.footer__col h4 { font-size: 1rem; color: var(--white); margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; color: rgba(255,255,255,0.8); transition: color .2s ease; }
.footer__col a:hover { color: var(--accent-bright); }
.footer__legal { margin-top: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer__bottom { border-top: 1px solid var(--line-light); padding: 22px 0; }
.footer__bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__announce-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .journey { grid-template-columns: repeat(2, 1fr); }
  .docs { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__content { max-width: none; }
  .hero__product { order: -1; }
  .hero__product img { width: min(260px, 62%); }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .cards--3 { grid-template-columns: 1fr; }
  .tab-panel__grid { grid-template-columns: 1fr; gap: 28px; padding: 30px; }
  .tab-panel__media { min-height: 200px; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .product__grid { grid-template-columns: 1fr; gap: 36px; }
  .product__media img { width: min(280px, 70%); }
  .delivery { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .journey, .docs, .steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .form { padding: 28px 22px; }
  .tabs { flex-direction: column; }
  .tab { text-align: center; }
}
