@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* High-Tech Emerald Neon & Deep Carbon Graphite Palette */
  --bg-main: #f4faf6;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-alt: #ebf6ef;
  --bg-dark: #0c0e11;
  --bg-dark-card: #15181f;
  
  --emerald-primary: #16a34a; /* Сочный изумрудно-зеленый */
  --emerald-dark: #15803d;
  --emerald-deep: #14532d;
  --emerald-light: #f0fdf4;
  --emerald-hover: #22c55e;
  
  --brand-neon: #22c55e;
  --brand-neon-glow: rgba(34, 197, 94, 0.38);
  
  --aqua-accent: #10b981;
  --aqua-glow: rgba(16, 185, 129, 0.35);
  --aqua-light: #ecfdf5;
  
  --gold-accent: #eab308;
  --gold-glow: rgba(234, 179, 8, 0.3);
  
  --ink-primary: #0f172a;
  --ink-secondary: #334155;
  --ink-muted: #64748b;
  --ink-light: #ffffff;
  
  --line: #d1e7dd;
  --line-light: rgba(255, 255, 255, 0.12);
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  
  --shadow-sm: 0 4px 14px rgba(22, 163, 74, 0.08);
  --shadow-md: 0 12px 36px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 30px var(--brand-neon-glow);
  
  --max-w: 1180px;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--ink-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: min(var(--max-w), calc(100% - 32px));
  margin-inline: auto;
}

/* ==========================================================================
   TOP BAR (Clean Trust Header)
   ========================================================================== */
.topbar {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(34, 197, 94, 0.25);
  color: #d1fae5;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-sep {
  opacity: 0.4;
  font-size: 11px;
}
.topbar b {
  color: #fff;
  font-weight: 700;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 36px 0 54px;
  background: radial-gradient(circle at 85% 15%, rgba(34, 197, 94, 0.16) 0%, transparent 45%),
              radial-gradient(circle at 10% 75%, rgba(22, 163, 74, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
}
.badge.hot {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}
.badge.rating {
  background: var(--emerald-light);
  color: var(--emerald-deep);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink-primary);
  margin-bottom: 16px;
}
.hero h1 span {
  color: var(--emerald-primary);
  display: block;
}

.lead {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Urgency Timer Box */
.urgency-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--emerald-light);
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.urgency-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--emerald-deep);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.urgency-text span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-secondary);
}
.timer-digits {
  display: flex;
  align-items: center;
  gap: 6px;
}
.timer-box {
  background: var(--bg-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.timer-dots-sep {
  font-weight: 900;
  color: var(--emerald-primary);
  font-size: 18px;
}

/* Price Row */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.price {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 52px);
  font-weight: 900;
  color: var(--emerald-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.old {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 34px);
  font-weight: 800;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 3px;
}
.discount {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
  animation: discountPulse 2.4s infinite ease-in-out;
  display: inline-block;
}
@keyframes discountPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Selling Bullets */
.hero-points {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
}
.hero-points li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--ink-secondary);
  line-height: 1.45;
}
.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald-primary);
  border: 1px solid rgba(34, 197, 94, 0.35);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}
.hero-points li strong {
  color: var(--ink-primary);
}

/* CTAs */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px var(--brand-neon-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--brand-neon-glow);
  background: linear-gradient(135deg, var(--emerald-hover) 0%, var(--emerald-primary) 100%);
}
.btn-secondary {
  background: var(--bg-white);
  color: var(--ink-primary);
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.btn-secondary:hover {
  border-color: var(--emerald-primary);
  color: var(--emerald-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SLIDER (CRITICAL 775/1024 RATIO & SEAMLESS BLACK BACKGROUND)
   ========================================================================== */
.hero-card {
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
}

.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000000;
  position: relative;
  aspect-ratio: 775 / 1024;
  width: 100%;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.38s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-card .slide {
  background: #000000;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-primary);
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  z-index: 5;
}
.slider-arrow:hover {
  background: var(--emerald-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.slider-dots button.active {
  width: 28px;
  background: var(--emerald-primary);
}

.slider-hint {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 10px;
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  padding: 24px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.trust-item-copy b {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-primary);
}
.trust-item-copy span {
  font-size: 12px;
  color: var(--ink-muted);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 64px 0;
}
.section.alt {
  background: var(--bg-alt);
}
.section-head {
  margin-bottom: 40px;
}
.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-primary);
  margin-bottom: 8px;
}
.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
  margin-bottom: 12px;
}
.section-head p {
  font-size: 15.5px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FEATURE GRID (STRICTLY 1 COLUMN ON MOBILE)
   ========================================================================== */
.feature-grid {
  display: grid;
  gap: 24px;
}
.feature-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 197, 94, 0.4);
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--emerald-light);
  color: var(--emerald-primary);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--ink-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   REVIEWS SLIDER (STRICTLY WHITE THEME & ISOLATED STYLES)
   ========================================================================== */
.reviews-slider {
  max-width: 680px;
  margin-inline: auto;
  position: relative;
}
.reviews-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--line);
  background: var(--bg-white);
}
.review-card {
  background: var(--bg-white);
  padding: 32px;
  position: relative;
  box-sizing: border-box;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
}
.review-author b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-primary);
}
.review-author span {
  font-size: 12.5px;
  color: var(--ink-muted);
}
.review-stars {
  font-size: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-secondary);
  margin-bottom: 18px;
  font-style: italic;
}
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #bbf7d0;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.reviews-controls .slider-arrow {
  position: static;
  transform: none;
  box-shadow: var(--shadow-sm);
}
.reviews-controls .slider-dots {
  margin-top: 0;
}

/* ==========================================================================
   DELIVERY STEPS
   ========================================================================== */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.delivery-card {
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.delivery-card-icon {
  font-size: 30px;
}
.delivery-card b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-primary);
  margin-bottom: 6px;
}
.delivery-card span {
  font-size: 13px;
  color: var(--ink-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   ORDER SECTION & PACKAGES
   ========================================================================== */
.order-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.pack-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.pack-card {
  background: var(--bg-white);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  text-align: left;
}
.pack-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-2px);
}
.pack-card.active {
  border-color: var(--emerald-primary);
  background: var(--emerald-light);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.18);
}
.pack-card b {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-primary);
  display: block;
}
.pack-card span {
  font-size: 12px;
  color: var(--ink-muted);
}
.pack-card strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: var(--emerald-dark);
}
.pack-tag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.summary-box {
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: grid;
  gap: 8px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-secondary);
}
.summary-line b {
  color: var(--ink-primary);
}
.summary-line.total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 16px;
}
.summary-line.total b {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--emerald-dark);
}

.form-card {
  background: var(--bg-white);
  border: 2px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  height: 52px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 15px;
  color: var(--ink-primary);
  background: var(--bg-main);
  transition: all 0.2s ease;
  outline: none;
}
.field input:focus {
  border-color: var(--emerald-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open {
  border-color: rgba(34, 197, 94, 0.5);
}
.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink-primary);
}
.faq-icon {
  font-size: 20px;
  color: var(--emerald-primary);
  transition: transform 0.25s ease;
  margin-left: 12px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-secondary);
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   FOOTER (STRICTLY BRUKOPT REQUISITES)
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 44px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-card {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.footer-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-info p {
  font-size: 13px;
  line-height: 1.7;
  color: #cbd5e1;
}
.footer-info a {
  color: var(--emerald-primary);
  text-decoration: none;
}
.footer-copy {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  color: #64748b;
}

/* ==========================================================================
   STICKY CTA BOTTOM BAR (AUTO-HIDES ON #ORDER)
   ========================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1.5px solid var(--line);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  z-index: 998;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}
.sticky-cta.hidden {
  transform: translateY(115%);
  opacity: 0;
  pointer-events: none;
}
.sticky-price {
  display: flex;
  flex-direction: column;
}
.sticky-price span:first-child {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--emerald-dark);
}
.sticky-price span:last-child {
  font-size: 11.5px;
  color: var(--ink-muted);
}
.sticky-cta a {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px var(--brand-neon-glow);
}

/* ==========================================================================
   LIVE SOCIAL PROOF ORDERS TOAST
   ========================================================================== */
.live-toast {
  position: fixed;
  bottom: 84px;
  left: 18px;
  background: rgba(12, 14, 17, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 997;
  max-width: 330px;
  transform: translateY(140px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.35s ease;
}
.live-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.live-toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--emerald-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.live-toast-text {
  display: flex;
  flex-direction: column;
}
.live-toast-text b {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.live-toast-text span {
  font-size: 11.5px;
  color: #cbd5e1;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px;
}
.lightbox-overlay.active {
  display: flex;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE RULES FROM GEMINI.MD)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-copy {
    order: 1;
  }
  .hero-card {
    order: 2;
  }
  .order-wrap {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-grid, .feature-grid.cols-3 {
    grid-template-columns: 1fr; /* СТРОГО 1 колонка на смартфонах */
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero {
    padding: 24px 0 36px;
  }
  .section {
    padding: 44px 0;
  }
  .feature-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    border-radius: 12px;
  }
  .feature-card {
    padding: 20px 18px;
  }
  .review-card {
    padding: 22px 18px;
  }
  .form-card {
    padding: 22px 18px;
  }
  .cta-row {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .live-toast {
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }
}
