/* ===========================
   STARLINK UA — MAIN STYLES
   =========================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --card: #161616;
  --border: #2a2a2a;
  --green: #39d353;
  --green-dark: #2ab843;
  --green-light: #4eff6a;
  --white: #ffffff;
  --gray: #8a8a8a;
  --gray-light: #b0b0b0;
  --text: #d4d4d4;
  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1440px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

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

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--black);
}
.btn-green:hover { background: var(--green-light); color: var(--black); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-lg { padding: 16px 40px; font-size: 15px; }

/* ===========================
   HEADER
   =========================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0A0A0AD9;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 71px;
  display: flex;
  align-items: center;
}

.site-header .container {
  padding: 0;
  max-width: 100%;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  gap: 32px;
}

.site-logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo img {
  height: 22px;
  width: auto;
  display: block;
}
.site-logo span { color: var(--green); }

/* Меню — по центру */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.main-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  color: #A0A0A0;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--white); }

/* Права частина */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-nav-extra { display: none; }

.header-phone {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #F0F0F0;
  white-space: nowrap;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--green); }

/* Іконки месенджерів */
.header-messenger {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
  flex-shrink: 0;
  overflow: hidden;
}
.header-messenger:hover { border-color: var(--green); }
.header-messenger img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* Кнопка шапки */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 204px;
  height: 46px;
  padding: 14px 28px;
  border-radius: 8px;
  background: #4ADE80;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: #000000;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.header-cta:hover { background: #39d353; color: #000; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO
   =========================== */

.hero {
  width: 100%;
  min-height: 900px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-top: 191px;
  padding-left: 135px;
  padding-right: 135px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after { display: none; }

.hero .container {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 1168px;
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Noto Sans', 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #F0F0F0;
  line-height: 55.2px;
  letter-spacing: -0.96px;
      margin: 0 auto;
  margin-bottom: 63px;
  max-width: 900px;
}
.hero-title .accent { color: var(--green); }

/* Hero cards grid */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1168px;
}

.hero-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 29px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 3.7px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-card-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  line-height: 17.6px;
  background: #323232;
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 12px;
  width: fit-content;
}

.hero-card-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #F0F0F0;
  line-height: 35px;
  margin-bottom: 0;
  padding-top: 12.31px;
}

.hero-card-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #4ADE80;
  line-height: 21px;
  margin-bottom: 0;
  padding-top: 2.3px;
}
.hero-card-stock::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 3px;
  background: #4ADE80;
  flex-shrink: 0;
}

.hero-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #A0A0A0;
  line-height: 21px;
  margin-bottom: 0;
  flex-grow: 1;
}

.hero-card-price {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 51px;
  padding: 15.55px 0 8.29px;
  margin-bottom: 0;
  letter-spacing: 0;
}
.hero-card-price span {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-left: 6px;
}

.hero-card-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 14px 28px;
  background: #4ADE80;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 18px;
  transition: background var(--transition);
}
.hero-card-btn:hover { background: #39d353; color: #000; }

/* Trust strip */
.hero-trust {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  background: transparent;
  padding: 0 135px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.hero-trust .container { padding: 0; max-width: 1168px; width: 100%; margin: 0; }

.hero-trust-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid #ffffff;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 22px;
  white-space: nowrap;
}

.hero-trust-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #C8A96E;
  object-fit: contain;
  padding: 6px;
  display: block;
  flex-shrink: 0;
}

/* ===========================
   STATS BAR
   =========================== */

.stats-bar {
  background: #0A0A0A;
  padding: 100px 50px;
}

.stats-bar .container {
  max-width: 1340px;
  padding: 0;
}

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

.stat-item {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 48px;
  color: #1B78EE;
  margin-bottom: 0;
}
.stat-value span { color: #1B78EE; }

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #A0A0A0;
  text-transform: none;
  letter-spacing: 0;
}

/* ===========================
   ABOUT
   =========================== */

.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  color: #F0F0F0;
  margin-bottom: 16px;
  font-family: Noto Sans;
font-weight: 700;
font-style: Bold;
leading-trim: NONE;
line-height: 40px;
letter-spacing: -0.32px;
text-align: center;
vertical-align: middle;

}

.section-desc {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.7;
}

/* About — текст ліворуч, медіа праворуч */
.about .container { max-width: 1230px; }

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

/* Тільки фото */
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Відео з обкладинкою */
.about-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
      height: 320px;
}
.about-video-thumb {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-video:hover .about-video-thumb { transform: scale(1.03); }
.about-video-thumb--empty { width: 100%; height: 420px; background: var(--dark-3); }

.about-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(57,211,83,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}
.about-video-play:hover {
  background: var(--green);
  transform: translate(-50%, -50%) scale(1.1);
}
.about-video-play svg { width: 28px; height: 28px; }

.about-video iframe,
.about-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Опис */
.about-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #A0A0A0;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: none;
}

.about-content .section-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Переваги — 2 колонки, заповнення по вертикалі (як у Фігмі) */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 24px 32px;
  margin-top: 0;
}

.about-feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Якщо іконка завантажена — показуємо маленьку, без зеленого фону */
.about-feature-icon {
  display: none;
}
.about-feature-icon:has(img) {
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
  background: none;
  border: none;
  padding: 0;
}

.about-feature-text strong {
  display: block;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.about-feature-text p {
  color: #A0A0A0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* ===========================
   PRODUCTS
   =========================== */

.products {
  background: #F4F4F4;
  padding: 60px 0 80px;
  position: relative;
  border-radius: 30px;
  margin-top: -30px;
  margin-bottom: -30px;
  z-index: 1;
}

.products-comparison-wrap {
  background: #F4F4F4;
  padding: 0 0 80px;
  position: relative;
  border-radius: 0 0 30px 30px;
  margin-top: -30px;
  margin-bottom: -30px;
  z-index: 1;
}

.products .container { max-width: 1420px; padding: 0 40px; }

.products-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.products-header .section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #1B78EE;
  margin-bottom: 12px;
}
.products-header .section-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.32px;
  line-height: 1.25;
  color: #191919;
  margin-bottom: 0;
}
.products-header .section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #2E2E2E;
  margin: 12px auto 0;
      max-width: 460px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

/* Картка — світла */
.product-card {
  background: #FBFBFB;
  border: 1px solid rgba(16,15,15,0.09);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

/* Фото — світлий блок зверху */
.product-image {
  position: relative;
  background: #ffffff;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  max-height: 200px;
  max-width: 70%;
  object-fit: contain;
}

/* Наявність — поверх фото, зліва зверху */
.product-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #4ADE80;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  z-index: 2;
}
.product-stock-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
}

/* Тіло картки */
.product-card-body {
  padding: 29px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 7.4px;
}

/* Мітка типу — синя пілюля */
.product-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1B78EE;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  background: rgba(27,120,238,0.1);
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
}

.product-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0F0F0F;
  margin: 0;
  padding-top: 8px;
}

.product-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #A0A0A0;
  line-height: 1.7;
  margin: 0;
}

/* Характеристики */
.product-specs {
  display: flex;
  flex-direction: column;
  margin: 6px 0 0;
}
.product-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(16,15,15,0.09);
}
.product-spec:last-child { border-bottom: none; }
.product-spec-key { color: #A0A0A0; font-weight: 400; }
.product-spec-val { color: #0F0F0F; font-weight: 600; text-align: right; }

/* Зірочки */
.spec-stars { letter-spacing: 2px; font-size: 14px; }
.spec-stars .star-on  { color: #4ADE80; }
.spec-stars .star-off { color: #D8D8D8; }

/* Ціна + кнопка в ряд */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 17px;
  padding-top: 0;
}
.product-price {
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
}
.product-price span {
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin-left: 4px;
}
.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 46px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: #4ADE80;
  color: #ffffff;
  border-radius: 8px;
  transition: background var(--transition);
}
.product-btn:hover { background: #39d353; color: #fff; }

/* ===========================
   COMPARISON TABLE
   =========================== */

.comparison-box {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 0;
}

.comparison-box-header {
  padding: 28px 32px 0;
}
.comparison-box-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #F0F0F0;
  margin-bottom: 4px;
}
.comparison-box-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #A0A0A0;
}

.comparison-table-wrap { padding: 24px 0 0; overflow-x: auto; }

.comparison-table-v2 {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table-v2 thead th {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 13.5px 24px;
  text-align: left;
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: #A0A0A0;
}
.comparison-table-v2 thead th.col-mini { color: #4ADE80; }
.comparison-table-v2 thead th.col-standard { color: #E0E0E0; }

.comparison-table-v2 tbody td {
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comparison-table-v2 tbody tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.comparison-table-v2 tbody tr:last-child td { border-bottom: none; }

.comparison-table-v2 td.param-name { color: #A0A0A0; font-weight: 500; }
.comparison-table-v2 td.col-mini { color: #4ADE80; }
.comparison-table-v2 td.col-standard { color: #E0E0E0; }

.comparison-box-footer {
  display: flex;
  gap: 12px;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.comparison-box-footer .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #F0F0F0;
  transition: background var(--transition);
}
.comparison-box-footer .btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ===========================
   HOW TO ORDER
   =========================== */

/* ===========================
   HOW TO ORDER
   =========================== */

.how-to {
  background: #111 center/cover no-repeat;
  padding: 61px 10px 100px;
  position: relative;
}

.how-to .container {
  max-width: 1420px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* Заголовок */
.how-to-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 640px;
  text-align: center;
}

.how-to-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.32px;
  color: #F0F0F0;
  margin: 0;
}

.how-to-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #A0A0A0;
  margin: 0;
  max-width: 751px;
}

/* Кроки */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1340px;
}

.step-card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 7.3px;
}

.step-number {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: -2.56px;
  color: #ffffff;
  margin: 0;
}

.step-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
  color: #F0F0F0;
  margin: 0;
  padding-top: 6.69px;
}

.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #E0E0E0;
  margin: 0;
}

/* Кнопка */
.how-to-btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.how-to-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 18px 36px;
  background: #4ADE80;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: background var(--transition);
  white-space: nowrap;
}
.how-to-btn:hover { background: #39d353; color: #000; }


/* ===========================
   BUSINESS
   =========================== */

/* ===========================
   BUSINESS
   =========================== */

.business {
  background: #000000;
  padding: 54px 50px 100px;
}

.business .container { max-width: 1440px; padding: 0; }

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  max-width: 1340px;
}

/* ЛІВО */
.business-left {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.business-top {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.business-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 12px;
}

.business-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.32px;
  color: #ffffff;
  margin: 0 0 16px;
}

/* Переваги */
.business-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
}

.business-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.business-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  box-sizing: border-box;
}
.business-feature-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.business-feature span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
}

/* Фото */
.business-image {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  height: 518px;
}
.business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ПРАВО */
.business-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Таблиця цін */
.business-price-table {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

.bpt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bpt-header-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #F0F0F0;
}

.bpt-header-hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #666666;
}

.bpt-table {
  width: 100%;
  border-collapse: collapse;
}

.bpt-table thead th {
  padding: 13px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #666666;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bpt-table tbody td {
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #F0F0F0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bpt-table tbody tr:last-child td { border-bottom: none; }

.bpt-price {
  font-weight: 700;
  color: #4ADE80 !important;
}
.bpt-price.blurred {
  filter: blur(4px);
  user-select: none;
  transition: filter 0.4s ease;
}
.bpt-price.unblurring {
  filter: blur(0);
}

.bpt-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #A0A0A0;
  text-align: center;
}

/* Форма заявки */
.business-form-box {
  background: #0F0F0F;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.business-form-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  color: #F0F0F0;
  margin: 0;
}

.business-form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #A0A0A0;
  margin: 0;
}

.business-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
}

.business-form input {
  width: 100%;
  height: 46px;
  padding: 13px 16px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #ffffff;
  box-sizing: border-box;
  transition: border-color var(--transition);
}
.business-form input::placeholder { color: #757575; }
.business-form input:focus {
  outline: none;
  border-color: #4ADE80;
}

.business-form button {
  width: 100%;
  height: 50px;
  padding: 0 28px;
  background: #4ADE80;
  border-radius: 8px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: background var(--transition);
}
.business-form button:hover { background: #39d353; }

/* CF7 overrides для business */
.business-cf7 { padding-top: 20px; }
.business-cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.business-cf7 .wpcf7-form p { margin: 0; }
.business-cf7 input[type="text"],
.business-cf7 input[type="tel"],
.business-cf7 input[type="email"] {
  width: 100%;
  height: 46px;
  padding: 13px 16px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #fff;
  box-sizing: border-box;
}
.business-cf7 input[type="submit"] {
  width: 100%;
  height: 50px;
  background: #4ADE80;
  border-radius: 8px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
}


/* ===========================
   DELIVERY
   =========================== */

/* ===========================
   DELIVERY
   =========================== */

.delivery {
  background: #F4F4F4;
  padding: 80px 0;
  border-radius: 30px;
  margin-top: -30px;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 100%;
}

/* ЛІВО — відступи як у container */
.delivery-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 60px 0 max(40px, calc((100vw - 1440px) / 2 + 50px));
  max-width: 760px;
}

.delivery-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.32px;
  color: #0F0F0F;
  margin: 0 0 32px;
  max-width: 480px;
}

.delivery-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Іконка в зеленому боксі */
.delivery-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.delivery-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.delivery-icon span { font-size: 20px; }

.delivery-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}
.delivery-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0F0F0F;
  line-height: 24px;
}
.delivery-text p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
  margin: 0;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 32px;
  background: #4ADE80;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  width: fit-content;
  transition: background var(--transition);
}
.delivery-btn:hover { background: #39d353; color: #000; }

/* ПРАВО: карта до правого краю */
.delivery-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.delivery-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.delivery-media-empty {
  width: 100%;
  height: 400px;
  border: 2px dashed rgba(74,222,128,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0A0A0;
  font-size: 14px;
}

/* ===========================
   REVIEWS
   =========================== */

.reviews { background: #F4F4F4; }

.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header .section-title { color: #0F0F0F; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid #EEF2F6;
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-stars {
  color: #4ADE80;
  font-size: 18px;
  margin-bottom: 14px;
}

.review-text {
    font-size: 16px;
    color: #697586;
    line-height: 28px;
    margin-bottom: 20px;
 font-family: 'Inter', sans-serif;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  text-transform: uppercase;
  flex-shrink: 0;
      display: none;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: #202939;
}
.review-date { font-size: 12px; color: #697586; }

/* ===========================
   POPUP CF7
   =========================== */

.sl-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sl-popup-overlay.is-active { display: flex; }

body.popup-open { overflow: hidden; }

.sl-popup-box {
  position: relative;
  background: #161B22;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: popupIn 0.25s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.sl-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.sl-popup-close:hover { background: rgba(255,255,255,0.14); }

.sl-popup-title {
  font-size: 22px;
  font-weight: 700;
  color: #F0F0F0;
  margin: 0 0 6px;
}

.sl-popup-subtitle {
  font-size: 14px;
  color: #8899A6;
  margin: 0 0 24px;
}

.sl-popup-form .wpcf7-form input[type="text"],
.sl-popup-form .wpcf7-form input[type="tel"],
.sl-popup-form .wpcf7-form input[type="email"],
.sl-popup-form .wpcf7-form textarea {
  background: #0D1117;
  border: 1px solid rgba(255,255,255,0.1);
  color: #F0F0F0;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-size: 14px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.sl-popup-form .wpcf7-form input::placeholder,
.sl-popup-form .wpcf7-form textarea::placeholder { color: #4A5568; }

.sl-popup-form .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  height: 50px;
  cursor: pointer;
  margin-top: 4px;
  transition: background var(--transition);
}
.sl-popup-form .wpcf7-form input[type="submit"]:hover { background: #3DD170; }

@media (max-width: 768px) {
  .sl-popup-box { padding: 28px 20px; }
  .sl-popup-title { font-size: 18px; }
}

/* ===========================
   FAQ
   =========================== */

.faq { background: #F4F4F4;      border-bottom-left-radius: 30px;    border-bottom-right-radius: 30px;}

.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-title { color: #0F0F0F; }

.faq-list {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-item {
  background: #F9F9F9;
  border: 1px solid #FFFFFF0F;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 0 0 calc(50% - 4px);
}

/* FAQ Footer */
.faq-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.faq-footer-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666666;
  margin: 0;
}

.faq-footer-phone {
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0F0F0F;
  letter-spacing: -0.5px;
  transition: color var(--transition);
}
.faq-footer-phone:hover { color: var(--green); }

.faq-footer-btn {
  height: 50px;
  padding: 0 36px;
  font-size: 15px;
    align-content: center;
  }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #FFFFFF0F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray);
  transition: all var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--green);
  color: var(--green);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
  padding: 60px 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0E0E0E;
  border-radius: 19px;
  padding: 104px 40px;
  text-align: center;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -100px;
  background: #D9D9D9;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 0;
}

.cta-spark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.cta-spark-crop {
  top: 0px;
  left: 0px;
}

.cta-spark-full {
  top: 65%;
  right: 14%;
}

.cta-card-title {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 32px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
}

.cta-card-desc {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--gray-light);
}

.cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.cta-btn-white {
  background: #fff;
  color: #000;
}
.cta-btn-white:hover { background: var(--green-light); }

.cta-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}
.cta-btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 46px;
  padding-bottom: 48px;
}

.footer-brand .site-logo {
  font-size: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contact {
  font-size: 13px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact:hover { color: var(--green); }
.footer-contact-icon { font-size: 15px; }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
}

/* ===========================
   INNER PAGE
   =========================== */

.page-content {
  padding-top: 64px;
  min-height: calc(100vh - 64px);
}

.page-wrap {
  padding: 60px 0;
}

/* ===========================
   CONTACT FORM
   =========================== */

.consult-section {
  background: #111111;
  padding: 121px 50px 100px;
  position: relative;
  z-index: 0;
}

.consult-section .container { max-width: 1440px; padding: 0; }

.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ЛІВ: текст */
.consult-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #4ADE80;
}

.consult-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.32px;
  line-height: 40px;
  color: #F0F0F0;
  margin: 0;
}

.consult-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #A0A0A0;
  padding: 4px 0 8px;
  margin: 0;
}

/* Менеджер */
.consult-manager {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 8px;
}

.consult-manager-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.consult-manager-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.consult-manager-info strong {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F0F0F0;
  line-height: 24px;
}
.consult-manager-info span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #A0A0A0;
  line-height: 21px;
}

/* Контакти */
.consult-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.consult-phone {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F0F0F0;
  line-height: 24px;
  white-space: nowrap;
}
.consult-phone:hover { color: #4ADE80; }

.consult-messengers {
  display: flex;
  gap: 10px;
}

.consult-messenger-icon {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
  flex-shrink: 0;
  overflow: hidden;
}
.consult-messenger-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.consult-messenger-icon:hover { border-color: #4ADE80; }

.btn-manager {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 14px 28px;
  background: #4ADE80;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-manager:hover { background: #39d353; color: #000; }

/* ПРАВО: форма */
.consult-form-box {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consult-form-header { margin-bottom: 12px; }

.consult-form-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #F0F0F0;
  line-height: 35px;
  margin: 0 0 4px;
}

.consult-form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #A0A0A0;
  margin: 0;
}

/* Поля форми */
.consult-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.consult-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.consult-field label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #A0A0A0;
  line-height: 21px;
}

.consult-field input,
.consult-field textarea {
  width: 100%;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #ffffff;
  line-height: 18px;
  transition: border-color var(--transition);
  box-sizing: border-box;
}
.consult-field input::placeholder,
.consult-field textarea::placeholder { color: #757575; }

.consult-field input:focus,
.consult-field textarea:focus {
  outline: none;
  border-color: #4ADE80;
}

.consult-field textarea {
  height: 100px;
  min-height: 100px;
  resize: vertical;
  padding-bottom: 16px;
}

.consult-submit {
  width: 100%;
  height: 59px;
  padding: 0 36px;
  background: #4ADE80;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 4px;
}
.consult-submit:hover { background: #39d353; }

.consult-or {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #A0A0A0;
  text-align: center;
  margin: 0;
  padding-top: 8px;
}
.consult-or a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4ADE80;
}
.consult-or a:hover { text-decoration: underline; }

/* CF7 overrides */
.consult-cf7 .wpcf7-form { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.consult-cf7 .wpcf7-form p { margin: 0; display: flex; flex-direction: column; gap: 7px; }
.consult-cf7 label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: #A0A0A0; }
.consult-cf7 input[type="text"],
.consult-cf7 input[type="tel"],
.consult-cf7 input[type="email"],
.consult-cf7 textarea {
  width: 100%;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #fff;
  box-sizing: border-box;
}
.consult-cf7 input[type="submit"] {
  width: 100%;
  height: 59px;
  background: #4ADE80;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border: none;
  cursor: pointer;
}

/* ===========================
   RESPONSIVE
   =========================== */

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

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: block; position: absolute; top: 71px; left: 0; right: 0; background: var(--dark); border-bottom: 1px solid var(--border); padding: 20px; z-index: 999; }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { /*display: block;*/ padding: 10px 0; font-size: 16px; color: var(--green); }
  a.header-cta.mobile-nav-cta {
    height: 50px;
    padding: 0 36px;
    font-size: 15px;
    align-content: center;
    text-align: center;
    color: #000;
}
  .burger { display: flex; }

  /* Header mobile layout */
  .header-inner { padding: 0 16px; gap: 8px; }
  .header-phone { display: none; }
  .header-messenger { display: none; }
  .header-right .header-cta { display: none; }
  .header-right { gap: 8px; }

  /* Phone, messengers and CTA move inside the burger dropdown */
  .mobile-nav-extra {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .main-nav.open .mobile-nav-extra { display: flex;         align-items: center;}
  .mobile-nav-extra .header-phone { display: block; }
  .mobile-nav-messengers { display: flex; gap: 10px; }
  .mobile-nav-messengers .header-messenger { display: flex; }
  .mobile-nav-cta { width: 100%; }

.stats-bar{
  padding: 40px 16px;
}

  .about-grid,
  .products-grid,
  .business-grid,
  .delivery-inner,
  .consult-inner { grid-template-columns: 1fr; gap: 40px; }

  .delivery-content { padding: 0 20px; }
  .delivery-media img { min-height: 280px; object-fit: contain; }

  /* Product footer: price above button */
  .product-footer { flex-direction: column; align-items: stretch; gap: 12px; }
  .product-btn { width: 100%; }

  /* Comparison footer: buttons stacked */
  .comparison-box-footer { flex-direction: column; align-items: center; }
  .comparison-box-footer .btn-secondary { width: 100%; justify-content: center; }

  /* FAQ: single column */
  .faq-item { flex: 0 0 100%; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "col1 col2"
      "contacts contacts";
    gap: 32px 16px;
  }
  .footer-grid > div:nth-child(1) { grid-area: brand; }
  .footer-grid > div:nth-child(2) { grid-area: col1; }
  .footer-grid > div:nth-child(3) { grid-area: col2; }
  .footer-grid > div:nth-child(4) { grid-area: contacts; }

  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 100px;
    padding-bottom: 0;
  }
  .hero-cards { grid-template-columns: 1fr; max-width: 100%; }
  .hero-trust {
    position: static;
    padding: 0 16px 40px;
    margin-top: 24px;
  }
  .hero-trust .container { max-width: 100%; }
  .hero-trust-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
  }
  .hero-trust-item { font-size: 13px; white-space: normal; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-card { padding: 50px 20px; }
  .cta-card-title { font-size: 24px; }
  .cta-btn { width: 100%; max-width: 320px; }

  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; line-height: 1.3; }
  .section { padding: 40px 0; }
  section#about {    margin-bottom: 40px;}
  .products .container{    padding: 0 16px;}
  .products-comparison-wrap{    padding: 0 0 40px;}
  .consult-section{padding: 80px 16px 40px;}
  .consult-contacts{justify-content: center;}
  .how-to{    padding: 40px 16px 40px;}
  .how-to .container{padding: 0;}
  .how-to-btn{    padding: 18px 27px;}
  .business {    padding: 40px 16px 80px;}
  .delivery{padding: 40px 0;}
  .delivery-content {        padding: 0 16px;    }
  .cta-section{    padding: 40px 0;}
  .business-image {    height: auto;}
.business-image img{    height: 60%;}
}

a.header-cta {
    display: none;
}