/* ==================== DESIGN SYSTEM ==================== */
:root {
  --primary: #0068B5;
  --primary-dark: #004d87;
  --primary-light: #e8f4fd;
  --accent: #FF6B00;
  --accent-light: #fff3e6;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --purple: #9C27B0;
  --dark: #1a1a2e;
  --gray-900: #212529;
  --gray-800: #343a40;
  --gray-700: #495057;
  --gray-600: #6c757d;
  --gray-500: #adb5bd;
  --gray-400: #ced4da;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --gray-100: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Heebo', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.announcement-bar__text { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.announcement-bar__divider { opacity: 0.4; }

/* ==================== HEADER ==================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}
.header__nav { display: flex; gap: 24px; }
.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.header__nav a:hover { color: var(--primary); }
.header__nav a:hover::after { width: 100%; }

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.header__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
  border-radius: 2px;
}

/* ==================== HERO ==================== */
.hero {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.hero__gallery { position: sticky; top: 100px; }
.hero__main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  margin-bottom: 12px;
}
.hero__main-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.hero__main-image:hover img { transform: scale(1.05); }
.hero__badge-trust {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.hero__thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--white);
}
.hero__thumb:hover { border-color: var(--gray-400); }
.hero__thumb.active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(0,104,181,0.2); }

/* Hero Info */
.hero__stars {
  color: var(--warning);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.hero__stars span { color: var(--gray-600); font-size: 0.85rem; letter-spacing: 0; }
.hero__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero__subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-right: 3px solid var(--primary);
  border-radius: var(--radius-sm);
}
.hero__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.hero__highlight-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
}
.hero__guarantee {
  background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  border: 1px solid rgba(0,104,181,0.15);
}

/* ==================== BUNDLE SELECTOR ==================== */
.bundle-selector {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
}
.bundle-selector__header {
  background: linear-gradient(135deg, #ff4444, #ff6b00);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: pulse-bg 2s infinite;
}
@keyframes pulse-bg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Bundle Cards */
.bundle-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.bundle-card:hover { background: var(--primary-light); }
.bundle-card input { display: none; }
.bundle-card__radio {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-400);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bundle-card__radio::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: var(--transition);
}
.bundle-card input:checked ~ .bundle-card__radio {
  border-color: var(--primary);
}
.bundle-card input:checked ~ .bundle-card__radio::after {
  transform: scale(1);
}
.bundle-card input:checked ~ .bundle-card__content .bundle-card__title {
  color: var(--primary);
}
/* Selected state - highlight entire card */
.bundle-card:has(input:checked) {
  background: var(--primary-light);
  border-color: var(--primary);
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}

.bundle-card__content { flex: 1; }
.bundle-card__title {
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.bundle-card__desc {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.bundle-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.bundle-card__pricing {
  text-align: left;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bundle-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}
.bundle-card__original {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-decoration: line-through;
}
.bundle-card__per-unit {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

/* Popular bundle special styling */
.bundle-card--popular {
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border: 2px solid var(--accent);
  margin: 0 -2px;
  padding: 16px 18px;
}
.bundle-card--popular:hover {
  background: linear-gradient(135deg, #fff3e0, #ffe8cc);
}

/* ==================== ADDON UPSELLS ==================== */
.addons-section {
  padding: 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.addons-section__title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-800);
}
.addon-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 8px;
}
.addon-card:last-child { margin-bottom: 0; }
.addon-card:hover { border-color: var(--primary); background: var(--primary-light); }
.addon-card input { display: none; }
.addon-card__check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 4px;
  border: 2px solid var(--gray-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-card__check::after {
  content: '✓';
  font-size: 0.8rem;
  color: white;
  opacity: 0;
  transition: var(--transition);
}
.addon-card input:checked ~ .addon-card__check {
  background: var(--primary);
  border-color: var(--primary);
}
.addon-card input:checked ~ .addon-card__check::after { opacity: 1; }
.addon-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
}
.addon-card__icon { font-size: 1.5rem; }
.addon-card__content { flex: 1; }
.addon-card__name { font-weight: 600; font-size: 0.85rem; }
.addon-card__desc { font-size: 0.75rem; color: var(--gray-600); }
.addon-card__price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  font-size: 0.9rem;
}

/* ==================== BUNDLE CTA ==================== */
.bundle-cta {
  padding: 20px 16px;
  background: var(--white);
}
.bundle-cta__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  padding: 0 4px;
}
.bundle-cta__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.btn-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
  color: white;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(40,167,69,0.3);
  border: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40,167,69,0.4);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta__text { font-size: 1.2rem; }
.btn-cta__sub { font-size: 0.75rem; opacity: 0.9; font-weight: 400; margin-top: 2px; }
.bundle-cta__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}

/* Payment Methods */
.hero__payment-methods {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__payment-icons { display: flex; gap: 6px; }
.payment-icon {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ==================== SOCIAL PROOF BAR ==================== */
.social-proof {
  background: var(--dark);
  color: white;
  padding: 40px 0;
}
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.social-proof__number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-proof__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ==================== SECTIONS ==================== */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== PROBLEM / SOLUTION ==================== */
.problem-solution {
  padding: 80px 0;
  background: var(--gray-100);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
.ps-card {
  padding: 35px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.ps-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ps-card--problem { border-top: 4px solid var(--danger); }
.ps-card--solution { border-top: 4px solid var(--success); }
.ps-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.ps-card__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.ps-card__text { color: var(--gray-700); line-height: 1.8; }

/* Steps */
.steps-section { margin-bottom: 40px; }
.steps-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card__number {
  position: absolute;
  top: -14px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.step-card__icon { font-size: 2.5rem; margin-bottom: 12px; }
.step-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.step-card p { font-size: 0.9rem; color: var(--gray-600); }

/* Video */
.video-section { text-align: center; }
.video-placeholder {
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark), #2a2a4e);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.video-placeholder:hover { transform: scale(1.02); }
.video-placeholder__play {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 12px;
  transition: var(--transition);
}
.video-placeholder:hover .video-placeholder__play {
  background: var(--primary);
  transform: scale(1.1);
}
.video-placeholder__text { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ==================== BENEFITS ==================== */
.benefits {
  padding: 80px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.benefit-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.benefit-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ==================== COMPARISON TABLE ==================== */
.comparison {
  padding: 80px 0;
  background: var(--gray-100);
}
.comparison-table {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.comparison-table thead th {
  background: var(--dark);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}
.comparison-table thead th:first-child {
  text-align: right;
}
.comparison-table td:first-child {
  text-align: right;
  font-weight: 600;
  color: var(--gray-800);
}
.comparison-table__us {
  background: rgba(0,104,181,0.06) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.comparison-table thead .comparison-table__us {
  background: var(--primary) !important;
  color: white !important;
}
.comparison-table tbody tr:hover { background: var(--gray-100); }

/* ==================== REVIEWS ==================== */
.reviews {
  padding: 80px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card__stars { color: var(--warning); font-size: 1.1rem; margin-bottom: 8px; letter-spacing: 2px; }
.review-card__name { font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.review-card__verified { font-size: 0.75rem; color: var(--success); margin-bottom: 10px; }
.review-card__text { color: var(--gray-700); font-size: 0.9rem; line-height: 1.7; }

/* ==================== FAQ ==================== */
.faq {
  padding: 80px 0;
  background: var(--gray-100);
}
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: right;
  transition: var(--transition);
}
.faq-item__question:hover { color: var(--primary); }
.faq-item__arrow {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--primary);
}
.faq-item.active .faq-item__arrow { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding: 0 22px 18px;
}
.faq-item__answer p { color: var(--gray-700); line-height: 1.8; font-size: 0.9rem; }

/* ==================== BOTTOM CTA ==================== */
.bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: white;
}
.bottom-cta__title { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; color: white; }
.bottom-cta__subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 30px; }
.btn-cta--large { max-width: 400px; margin: 0 auto; font-size: 1.3rem; padding: 20px; }

/* ==================== STICKY CTA ==================== */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transition: bottom 0.4s ease;
  padding: 12px 20px;
}
.sticky-cta--visible { bottom: 0; }
.sticky-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.sticky-cta__label { font-size: 0.75rem; color: var(--gray-600); display: block; }
.btn-cta--sticky {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal__close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}
.modal__close:hover { background: var(--gray-200); color: var(--gray-800); }
.modal__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--gray-200);
}
.modal__header h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.modal__body { padding: 24px; }
.modal__summary {
  background: var(--primary-light);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,104,181,0.1);
}
.btn-cta--modal { margin-top: 8px; }
.modal__loading { text-align: center; padding: 30px 0; }
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--gray-200);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal__loading p { color: var(--gray-600); }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.footer__brand p { font-size: 0.85rem; line-height: 1.7; }
.footer__links h4, .footer__contact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}
.footer__links a, .footer__contact a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  margin-bottom: 8px;
}
.footer__links a:hover, .footer__contact a:hover { color: white; }
.footer__contact p { font-size: 0.8rem; margin-top: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ==================== HOW IT WORKS - ANATOMICAL ==================== */
.howto-anatomy {
  margin-top: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.howto-anatomy__title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.howto-anatomy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.howto-anatomy__card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  text-align: center;
}
.howto-anatomy__card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.howto-anatomy__label {
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}
.howto-anatomy__label--before {
  background: rgba(220,53,69,0.1);
  color: var(--danger);
}
.howto-anatomy__label--after {
  background: rgba(40,167,69,0.1);
  color: var(--success);
}
.howto-anatomy__card p {
  padding: 8px 12px 12px;
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* ==================== UGC VIDEOS ==================== */
.ugc-videos {
  padding: 80px 0;
  background: var(--white);
}
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ugc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.ugc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.ugc-card__video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: #000;
}
.ugc-card__info {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark);
}
.ugc-card__name {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
}
.ugc-card__stars {
  color: var(--warning);
  letter-spacing: 2px;
}
.ugc-add-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ==================== IMAGE TRANSITION ==================== */
#mainImage {
  transition: opacity 0.3s ease;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__gallery { position: static; max-width: 500px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__mobile-toggle { display: flex; }
  
  /* Flatten Hero containers to interleave elements */
  .hero__grid { display: flex !important; flex-direction: column !important; }
  .hero__gallery, .hero__info { display: contents !important; }

  /* Order all Hero children explicitly */
  .hero__main-image { order: 1; }
  .hero__thumbnails { order: 2; }
  .hero__stars { order: 3; }
  .hero__title { order: 4; }
  .hero__subtitle { order: 5; }
  .hero__highlights { order: 6; }
  .bundle-selector { order: 7; }
  .hero__payment-methods { order: 8; margin-top: 10px; margin-bottom: 20px;}
  .hero__guarantee { order: 9; }
  
  /* How it works (Anatomy) goes just under the Guarantee */
  .howto-anatomy { display: block !important; order: 10; margin-top: 20px; }

  /* Hide the large 'How it works' image block on mobile */
  .problem-solution { display: none !important; }

  /* Reorder Main Sections on mobile */
  main { display: flex; flex-direction: column; }
  .hero { order: 1; }
  .reviews { order: 2; }
  .ugc-videos { order: 3; }
  .social-proof { order: 4; }
  .benefits { order: 5; }
  .comparison { order: 6; }
  .faq { order: 7; }
  .bottom-cta { order: 8; }
  
  /* Mobile menu */
  .header__nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
    border-top: 1px solid var(--gray-200);
  }
  
  .hero { padding: 24px 0 40px; }
  .hero__title { font-size: 1.5rem; }
  .hero__highlights { grid-template-columns: 1fr; }
  
  .ps-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  
  .social-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .ugc-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  
  .bundle-card { flex-wrap: wrap; }
  .bundle-card__pricing { width: 100%; text-align: right; margin-top: 4px; flex-direction: row; gap: 8px; align-items: center; }
  
  .section-title { font-size: 1.5rem; }
  .bottom-cta__title { font-size: 1.6rem; }
  
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.8rem; }
  
  .howto-anatomy__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .announcement-bar__divider { display: none; }
  .announcement-bar__text { flex-direction: column; gap: 2px; font-size: 0.8rem; }
  .hero__title { font-size: 1.3rem; }
  .hero__thumbnails { gap: 6px; }
  .hero__thumb { width: 56px; height: 56px; }
  .bundle-card__title { font-size: 0.9rem; }
  .bundle-card__desc { font-size: 0.75rem; }
}
