/* ============================================================
   Жуків НЕТ — style.css v2
   Дизайн: земляний пергамент + теракотовий акцент + лісовий зелений
   ============================================================ */

:root {
  --primary:      #D4541A;
  --primary-rgb:  212,84,26;
  --secondary:    #2D5A1B;
  --bg:           #F5F0E8;
  --surface:      #FFFDF7;
  --text-primary: #1C2015;
  --text-body:    #3D4035;
  --accent:       #F4A725;
  --success:      #3A7D28;
  --danger-bg:    #1A1208;
  --before-tint:  #2A3020;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(15px, 2.5vw, 17px);
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg);
  padding-bottom: calc(70px + env(safe-area-inset-bottom));
  position: relative;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: 'Nunito', sans-serif; border: none; }

h1, h2, h3 { color: var(--text-primary); line-height: 1.25; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 7vw, 3.5rem); font-weight: 800; }
h2, .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 5vw, 2.25rem); font-weight: 700; }
h3 { font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 700; }

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

.section {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .section { padding: 120px 40px; }
}

.text-center { text-align: center; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 680px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ============================================================
   АНІМАЦІЇ — ТІЛЬКИ translateY (без translateX!)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Затримки для послідовного входу */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  text-align: center;
  cursor: pointer;
}
.btn-primary, .cta-primary {
  background: linear-gradient(135deg, #D4541A 0%, #B83E0A 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(var(--primary-rgb),0.35);
  animation: pulse-cta 2.5s ease-in-out infinite;
  width: 100%;
  max-width: 420px;
}
.btn-primary:hover { box-shadow: 0 6px 36px rgba(var(--primary-rgb),0.55); }

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 24px rgba(var(--primary-rgb),0.35); }
  50% { box-shadow: 0 6px 36px rgba(var(--primary-rgb),0.6); transform: translateY(-1px); }
}

/* Загальна пульсація через --primary-rgb */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb),0.4); }
  50% { box-shadow: 0 0 0 12px rgba(var(--primary-rgb),0); }
}

/* ============================================================
   TRUST CHECK CIRCLE (CSS, no image/emoji)
   ============================================================ */
.trust-check {
  width: 20px; height: 20px;
  background: var(--success);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-check::after {
  content: '';
  width: 5px; height: 9px;
  border: 2.5px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* ============================================================
   1. HEADER
   ============================================================ */
.site-header {
  background: var(--bg);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 12px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}
.logo-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  white-space: nowrap;
}
.header-badge {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--success);
  display: none;
}
@media (min-width: 600px) { .header-badge { display: block; } }
.header-cta {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 0.9rem;
  max-width: none;
  width: auto;
  animation: none;
}

/* ============================================================
   2. HERO — SPLIT LAYOUT
   Mobile: heading → image → details (вертикально)
   Desktop: heading+details зліва, image справа (grid 2 колонки)
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #EEE8D5 0%, #F5F0E8 50%, #E8F0DC 100%);
}

/* Mobile: flex column */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Desktop: 2-column grid */
@media (min-width: 768px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 2rem 4rem;
    align-items: start;
  }
  .hero-heading {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-image {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
  }
  .hero-details {
    grid-column: 1;
    grid-row: 2;
  }
}

.hero-heading { display: flex; flex-direction: column; gap: 16px; }
.hero-details { display: flex; flex-direction: column; gap: 20px; }

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* На мобілі — фото на повну ширину без відступів */
@media (max-width: 767px) {
  .hero-image {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .hero-image img {
    border-radius: 0;
    box-shadow: none;
  }
}

.order-counter-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 4px;
  align-self: flex-start;
}

.hero-h1 em { font-style: italic; }
.hero-sub { font-size: 1.1rem; color: var(--text-body); }

/* Timer */
.timer-block {
  background: linear-gradient(90deg, #1C2015, #2D5A1B);
  color: var(--accent);
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 420px;
}
.timer-label { color: rgba(255,255,255,0.75); font-size: 13px; }
.timer-digits {
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  color: #fff;
  animation: timer-pulse 1s ease-in-out infinite;
}
@keyframes timer-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Trust list */
.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================================
   3. PAIN
   ============================================================ */
.pain-section {
  background: var(--danger-bg);
  color: #fff;
}
.pain-section h2 { color: #fff; }
.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 900px) {
  .pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
}
.pain-intro { color: #BDB8A8; margin-bottom: 28px; }
.pain-timeline { display: flex; flex-direction: column; gap: 0; }
.pain-day {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.pain-day-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  min-width: 70px;
  padding-top: 2px;
}
.pain-day-text { color: #BDB8A8; font-size: 0.95rem; line-height: 1.55; }
.pain-photo img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================================
   4. SOLUTION
   ============================================================ */
.solution-section { background: var(--bg); }
.solution-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .solution-steps { flex-direction: row; justify-content: center; gap: 0; }
}
.solution-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  max-width: 280px;
}
.solution-circle {
  width: 90px;
  height: 90px;
  border: 3px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  position: relative;
  flex-direction: column;
  gap: 0;
}
.solution-unit {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  margin-top: -4px;
}
.solution-step-text { text-align: center; font-size: 0.9rem; color: var(--text-body); }
.solution-connector {
  width: 2px;
  height: 40px;
  background: repeating-linear-gradient(to bottom, var(--secondary) 0, var(--secondary) 5px, transparent 5px, transparent 10px);
  opacity: 0.4;
}
@media (min-width: 768px) {
  .solution-connector {
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--secondary) 0, var(--secondary) 5px, transparent 5px, transparent 10px);
  }
}
.solution-photo-wrap { margin-top: 48px; }
.solution-photo {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 12px;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* ============================================================
   5. BENEFITS — 3D картки
   ============================================================ */
.benefits-section { background: var(--surface); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 700px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(min(300px, 100%), 1fr)); }
}
.benefit-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(45,90,27,0.12);
  box-shadow: 0 2px 16px rgba(28,32,21,0.06);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
@media (min-width: 900px) {
  .benefit-card:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg) translateY(-4px);
    box-shadow: 0 16px 48px rgba(28,32,21,0.18);
  }
}
.benefit-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.benefit-card h3 { margin-bottom: 8px; color: var(--text-primary); }
.benefit-card p { color: var(--text-body); font-size: 0.95rem; }

/* ============================================================
   6. BEFORE / AFTER — SIGNATURE діагональний сплайс
   ============================================================ */
.before-after-section { background: var(--bg); }
.before-after-wrap {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 40px;
  min-height: 280px;
}
@media (max-width: 599px) {
  .before-after-wrap { flex-direction: column; min-height: auto; border-radius: 8px; }
}
.before-col, .after-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.before-col { background: var(--before-tint); }
.after-col { background: linear-gradient(135deg, var(--success), #4CAF50); }

/* Діагональний сплайс — SIGNATURE елемент */
@media (min-width: 600px) {
  .before-col {
    clip-path: polygon(0 0, 52% 0, 48% 100%, 0 100%);
    flex: 1.05;
  }
  .after-col {
    clip-path: polygon(52% 0, 100% 0, 100% 100%, 48% 100%);
    flex: 1.05;
    margin-left: -4%;
  }
}

.ba-photo {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.before-col .ba-photo { filter: saturate(0.4) brightness(0.7); }
.after-col .ba-photo { filter: saturate(1.3) brightness(1.05); }
.ba-badge {
  position: absolute;
  top: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
}
.ba-badge--before { left: 14px; background: #C62828; color: #fff; }
.ba-badge--after { right: 14px; background: var(--success); color: #fff; }
.divider-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: var(--text-primary);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 3;
}
@media (max-width: 599px) {
  .divider-label {
    top: auto;
    bottom: calc(50% - 18px);
    left: 50%;
    transform: translateX(-50%);
  }
}
.before-after-caption {
  margin-top: 28px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* ============================================================
   7. COMPARE TABLE
   ============================================================ */
.compare-section { background: var(--bg); }
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  background: var(--surface);
  border-bottom: 2px solid rgba(45,90,27,0.15);
}
.compare-table th.compare-us {
  background: var(--primary);
  color: #fff;
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(45,90,27,0.08);
  color: var(--text-body);
  vertical-align: middle;
}
.compare-table td.compare-us {
  background: rgba(58,125,40,0.06);
  font-weight: 700;
  color: var(--text-primary);
}
.compare-table .compare-criteria {
  font-weight: 700;
  color: var(--text-primary);
  background: var(--surface);
}
.compare-table tr:hover td { background: rgba(45,90,27,0.03); }
.compare-table td.compare-us:hover { background: rgba(58,125,40,0.08); }
.check-green {
  display: inline-block;
  width: 18px; height: 18px;
  background: var(--success);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 4px;
  position: relative;
}
.check-green::after {
  content: '';
  position: absolute;
  left: 5px; top: 3px;
  width: 5px; height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.check-no { color: rgba(61,64,53,0.4); font-weight: 700; margin-right: 4px; }

/* ============================================================
   8. STEPS
   ============================================================ */
.steps-section {
  background: linear-gradient(180deg, #2D5A1B 0%, #1C3D10 100%);
  position: relative;
}
.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.steps-section .section-title { color: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  }
}
.step-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}
.step-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.step-card h3 { color: #fff; margin-bottom: 8px; }
.step-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ============================================================
   9. REVIEWS
   ============================================================ */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }
.review-card {
  background: var(--surface);
  border-radius: 16px;
  border-left: 4px solid var(--success);
  padding: 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
}
.review-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.review-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--success);
  flex-shrink: 0;
}
.review-info { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-size: 1rem; color: var(--text-primary); }
.review-city { font-size: 13px; color: var(--text-body); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}
.review-star {
  width: 18px; height: 18px;
  fill: var(--accent);
}
.review-text { font-style: italic; font-size: 0.95rem; line-height: 1.65; color: var(--text-body); }

/* ============================================================
   10. BUNDLES
   ============================================================ */
.bundles-section {
  background: linear-gradient(135deg, #1A1208 0%, #2D3020 100%);
}
.bundles-section .section-title,
.bundles-section .section-sub { color: #fff; }
.bundles-section .section-sub { color: rgba(255,255,255,0.65); }
.bundles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .bundles-grid {
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: end;
  }
}
.bundle-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: #fff;
}
.bundle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.bundle-card.selected { border-color: var(--primary); background: rgba(212,84,26,0.12); }
.bundle-card--hit {
  background: rgba(212,84,26,0.12);
  border: 2px solid var(--primary);
  box-shadow: 0 20px 60px rgba(var(--primary-rgb),0.22);
}
@media (min-width: 768px) {
  .bundle-card--hit { transform: translateY(-20px); }
  .bundle-card--hit:hover { transform: translateY(-24px); }
}
.bundle-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  white-space: nowrap;
}
.bundle-badge-top--best { background: var(--accent); color: var(--text-primary); }
.bundle-title { font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
.bundle-qty { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.bundle-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.price-old { text-decoration: line-through; color: rgba(255,255,255,0.35); font-size: 15px; }
.price-new { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.bundle-price-per { font-size: 13px; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.price-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-badge--accent { background: var(--primary); color: #fff; }
.bundle-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.stock-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: stock-blink 1.5s ease-in-out infinite;
}
@keyframes stock-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.bundle-note { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.bundle-photo-wrap { margin: 14px 0; }
.bundle-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 8px;
}
.btn-bundle {
  width: 100%;
  min-height: 52px;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.btn-bundle:hover { background: rgba(255,255,255,0.1); }
.btn-bundle--hit {
  background: linear-gradient(135deg, #D4541A 0%, #B83E0A 100%);
  border-color: transparent;
  animation: pulse-cta 2.5s ease-in-out infinite;
}

/* ============================================================
   11. FORM
   ============================================================ */
.form-section { background: var(--bg); }
.form-wrap {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.1);
  padding: 24px;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 600px) { .form-wrap { padding: 40px; } }
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
}
.form-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.5;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 2px solid rgba(45,90,27,0.2);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  padding: 14px 16px;
  min-height: 56px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input::placeholder { color: rgba(61,64,53,0.4); }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.15);
}
.form-group input.error { border-color: #C62828; }
.form-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 18px;
}
.form-submit {
  width: 100%;
  max-width: 100%;
  min-height: 60px;
  font-size: 1.15rem;
  border-radius: 8px;
  margin-bottom: 12px;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(61,64,53,0.5);
  line-height: 1.5;
}
.form-note a { text-decoration: underline; color: rgba(61,64,53,0.6); }

/* Select кастомний */
select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233D4035' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 16px center;
  background-size: 16px;
  cursor: pointer;
  padding-right: 40px;
}
select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.15);
}

/* ============================================================
   12. FAQ
   ============================================================ */
.faq-section { background: var(--surface); }
.faq-list {
  max-width: 740px;
  margin: 40px auto 0;
}
.faq-item { border-bottom: 1px solid rgba(45,90,27,0.12); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  gap: 12px;
}
.faq-question:hover { background: rgba(45,90,27,0.04); }
.faq-question[aria-expanded="true"] { color: var(--secondary); }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-arrow {
  width: 20px; height: 20px;
  border: 2.5px solid currentColor;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -4px;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer p {
  padding: 0 20px 18px;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-item.active .faq-question { border-left: 3px solid var(--secondary); padding-left: 17px; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-primary);
  padding: 40px 20px calc(70px + env(safe-area-inset-bottom));
  text-align: center;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-phone { margin-bottom: 10px; }
.footer-phone a { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 700; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ============================================================
   STICKY CTA — transform замість display:none
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(var(--primary-rgb),0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sticky-cta.visible { transform: translateY(0); }

/* Sticky CTA — не sticky до 768px? Ні, sticky завжди — але ховається за екран */
.sticky-cta-btn {
  max-width: 100%;
  width: 100%;
  font-size: 1rem;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  animation: none;
}
.sticky-timer-wrap {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: var(--text-body);
  font-weight: 700;
  text-align: center;
  opacity: 0.75;
}
