/* ==========================================
   LANDING PAGE V2 - MEMOMASTER
   Design Moderno e Minimalista
   ========================================== */

:root {
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-light: #818CF8;
  --secondary: #F59E0B;
  --success: #10B981;
  --danger: #EF4444;
  
  --text-dark: #1F2937;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  
  --bg-white: #FFFFFF;
  --bg-gray: #F9FAFB;
  --bg-light: #F3F4F6;
  
  --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   FIXED CTA BAR (Mobile)
   ========================================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.fixed-cta.active {
  transform: translateY(0);
}

.fixed-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}

.fixed-cta-text strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
}

.fixed-cta-text span {
  font-size: 12px;
  color: var(--text-gray);
}

.fixed-cta-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.fixed-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-v2 {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #FEF3C7 100%);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 30px) rotate(180deg); }
}

.hero-v2 .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  margin-bottom: 24px;
  animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--secondary);
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 32px;
  animation: slideUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  animation: slideUp 0.8s ease 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-gray);
}

.hero-cta {
  animation: slideUp 0.8s ease 0.8s both;
}

.btn-primary-v2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.btn-primary-v2 svg {
  transition: var(--transition);
}

.btn-primary-v2:hover svg {
  transform: translateX(5px);
}

.btn-primary-v2.large {
  font-size: 18px;
  padding: 22px 50px;
}

.hero-cta-note {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 16px;
}

.hero-image {
  position: relative;
  animation: fadeIn 1s ease 0.5s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-image-container {
  position: relative;
  padding: 40px;
}

.product-hero {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.floating-badge span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.floating-badge small {
  font-size: 11px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  right: -10%;
  animation-delay: 1s;
}

.badge-3 {
  bottom: 20%;
  left: 0%;
  animation-delay: 2s;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 13px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==========================================
   TRUST BADGES - ENHANCED
   ========================================== */
.trust-badges-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-gray) 100%);
  border-top: 1px solid var(--bg-light);
  border-bottom: 1px solid var(--bg-light);
}

.trust-badges-header {
  text-align: center;
  margin-bottom: 40px;
}

.trust-badges-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.trust-badges-header p {
  font-size: 15px;
  color: var(--text-gray);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.trust-badge-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.badge-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-gray), var(--bg-light));
  border-radius: 50%;
  padding: 12px;
  transition: var(--transition);
}

.trust-badge-item:hover .badge-icon {
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  transform: scale(1.1);
}

.badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.badge-content p {
  font-size: 12px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-gray);
}

/* ==========================================
   PROBLEM/SOLUTION SECTION
   ========================================== */
.problem-solution {
  padding: 100px 0;
  background: var(--bg-gray);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.problem-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.solution-box {
  background: var(--gradient-primary);
  padding: 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
  box-shadow: var(--shadow-xl);
}

.solution-box h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.solution-box p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-v2 {
  padding: 100px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-gray);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 2px solid transparent;
}

.testimonial-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  border-color: var(--primary);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-header h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
}

/* ==========================================
   HOW IT WORKS (TIMELINE)
   ========================================== */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-gray) 0%, white 100%);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-light);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 60px;
}

.timeline-number {
  position: absolute;
  left: 0;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.timeline-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* ==========================================
   INGREDIENTS SHOWCASE
   ========================================== */
.ingredients-showcase {
  padding: 100px 0;
  background: white;
}

.ingredients-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.ingredient-box {
  background: var(--bg-gray);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.ingredient-box:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ingredient-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ingredient-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.ingredient-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

.ingredient-box:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   SPECIAL OFFER CTA (NO PRICING)
   ========================================== */
.special-offer {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--bg-gray) 0%, white 100%);
}

.offer-cta-box {
	background: white;
	border-radius: var(--radius-xl);
	padding: 60px;
	box-shadow: var(--shadow-xl);
	text-align: center;
	border: 3px solid var(--primary-light);
}

.offer-badge-large {
	display: inline-block;
	background: var(--gradient-secondary);
	color: white;
	padding: 12px 32px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.offer-cta-box h2 {
	font-size: clamp(32px, 5vw, 48px);
	margin-bottom: 20px;
	color: var(--text-dark);
}

.offer-description {
	font-size: 18px;
	color: var(--text-gray);
	line-height: 1.7;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.offer-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
	text-align: left;
}

.benefit-item-large {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: var(--bg-gray);
	border-radius: var(--radius-md);
	transition: var(--transition);
}

.benefit-item-large:hover {
	background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.benefit-item-large svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.benefit-item-large h4 {
	font-size: 16px;
	margin-bottom: 4px;
	color: var(--text-dark);
}

.benefit-item-large p {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.5;
}

.btn-mega {
	font-size: 18px;
	padding: 22px 50px;
	box-shadow: 0 10px 35px rgba(99, 102, 241, 0.4);
}

.btn-mega:hover {
	box-shadow: 0 15px 45px rgba(99, 102, 241, 0.5);
}

.offer-footer-text {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
	font-size: 14px;
	color: var(--text-gray);
	flex-wrap: wrap;
}

/* Removed pricing cards - redirecting to external DTC */

/* ==========================================
   GUARANTEE SECTION
   ========================================== */
.guarantee-v2 {
  padding: 100px 0;
  background: var(--bg-gray);
}

.guarantee-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.guarantee-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.guarantee-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.guarantee-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.guarantee-list {
  list-style: none;
  margin-bottom: 32px;
}

.guarantee-list li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-v2 {
  padding: 100px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-v2 {
  background: var(--bg-gray);
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item-v2:hover {
  box-shadow: var(--shadow-md);
}

.faq-question-v2 {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question-v2 span {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}

.faq-icon-v2 {
  transition: var(--transition);
  color: var(--primary);
}

.faq-item-v2.active .faq-icon-v2 {
  transform: rotate(180deg);
}

.faq-answer-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-v2.active .faq-answer-v2 {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-answer-v2 p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta-v2 {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.final-cta-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.final-cta-content .btn-primary-v2 {
  background: white;
  color: var(--primary);
}

.final-cta-content .btn-primary-v2:hover {
  background: var(--secondary);
  color: white;
}

.final-note {
  font-size: 14px;
  margin-top: 24px;
  opacity: 0.9;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-v2 {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.disclaimer {
  font-size: 11px !important;
  line-height: 1.6;
  opacity: 0.7;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
/* ==========================================
   RESPONSIVE - TABLET (1024px and below)
   ========================================== */
@media (max-width: 1024px) {
  .hero-v2 .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .guarantee-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .guarantee-image {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
  }
  
  .guarantee-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 32px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    padding-left: 90px;
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .problems-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  
  .ingredients-flex {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .offer-benefits {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* ==========================================
   RESPONSIVE - MOBILE (768px and below)
   ========================================== */
@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}
	
	/* Hero Section */
	.hero-v2 {
		min-height: auto;
		padding: 80px 0 60px;
	}
	
	.hero-title {
		font-size: 32px;
		line-height: 1.2;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.hero-stats {
		flex-direction: row;
		gap: 16px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.stat-item {
		flex: 1;
		min-width: 90px;
	}
	
	.stat-number {
		font-size: 24px;
	}
	
	.stat-label {
		font-size: 12px;
	}
	
	.hero-badge {
		font-size: 13px;
		padding: 6px 16px;
	}
	
	.hero-cta-note {
		font-size: 13px;
	}
	
	.floating-badge {
		display: none;
	}
	
	.scroll-indicator {
		display: none;
	}
	
	/* Trust Badges */
	.trust-badges-section {
		padding: 50px 0;
	}
	
	.trust-badges-header {
		margin-bottom: 32px;
	}
	
	.trust-badges-header h3 {
		font-size: 22px;
	}
	
	.trust-badges-header p {
		font-size: 14px;
	}
	
	.trust-badges-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap: 20px;
	}
	
	.trust-badge-item {
		padding: 20px 14px;
	}
	
	.badge-icon {
		width: 60px;
		height: 60px;
	}
	
	.badge-content h4 {
		font-size: 13px;
	}
	
	.badge-content p {
		font-size: 11px;
	}
	
	/* Section Headers */
	.section-header h2 {
		font-size: 28px;
	}
	
	.section-header p {
		font-size: 16px;
	}
	
	/* Problems Grid */
	.problems-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.problem-card {
		padding: 24px;
	}
	
	.problem-icon {
		font-size: 40px;
	}
	
	.solution-box {
		padding: 32px 24px;
	}
	
	/* Testimonials */
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.testimonial-card {
		padding: 24px;
	}
	
	/* Timeline */
	.timeline::before {
		left: 20px;
	}
	
	.timeline-item {
		padding-left: 70px;
		margin-bottom: 40px;
	}
	
	.timeline-number {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	
	.timeline-content h3 {
		font-size: 20px;
	}
	
	.timeline-content p {
		font-size: 15px;
	}
	
	/* Ingredients */
	.ingredients-flex {
		grid-template-columns: 1fr;
	}
	
	.ingredient-box {
		padding: 24px;
	}
	
	/* Offer CTA */
	.offer-cta-box {
		padding: 40px 24px;
		border-width: 2px;
	}
	
	.offer-badge-large {
		font-size: 14px;
		padding: 10px 24px;
	}
	
	.offer-cta-box h2 {
		font-size: 28px;
	}
	
	.offer-description {
		font-size: 16px;
	}
	
	.offer-benefits {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.benefit-item-large {
		padding: 16px;
	}
	
	.benefit-item-large svg {
		width: 28px;
		height: 28px;
	}
	
	.benefit-item-large h4 {
		font-size: 15px;
	}
	
	.benefit-item-large p {
		font-size: 13px;
	}
	
	.offer-footer-text {
		font-size: 13px;
		flex-direction: column;
		gap: 8px;
	}
	
	/* Guarantee */
	.guarantee-v2 {
		padding: 60px 0;
	}
	
	.guarantee-content {
		gap: 32px;
	}
	
	.guarantee-image img {
		max-width: 200px;
	}
	
	.guarantee-text h2 {
		font-size: 28px;
	}
	
	.guarantee-text p {
		font-size: 15px;
	}
	
	.guarantee-list li {
		font-size: 15px;
		padding: 10px 0;
	}
	
	/* FAQ */
	.faq-question-v2 {
		padding: 18px 20px;
		font-size: 15px;
	}
	
	.faq-answer-v2 p {
		font-size: 14px;
	}
	
	/* Final CTA */
	.final-cta-v2 {
		padding: 60px 0;
	}
	
	.final-cta-content h2 {
		font-size: 28px;
	}
	
	.final-cta-content p {
		font-size: 17px;
	}
	
	.final-note {
		font-size: 13px;
	}
	
	/* Fixed CTA Bar */
	.fixed-cta {
		display: block;
	}
	
	.fixed-cta-content {
		padding: 10px 16px;
		gap: 12px;
	}
	
	.fixed-cta-text strong {
		font-size: 13px;
	}
	
	.fixed-cta-text span {
		font-size: 11px;
	}
	
	.fixed-cta-btn {
		padding: 10px 20px;
		font-size: 12px;
	}
	
	/* Footer */
	.footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.footer-v2 {
		padding: 40px 0 20px;
	}
	
	/* Buttons */
	.btn-primary-v2 {
		width: 100%;
		padding: 16px 24px;
		font-size: 15px;
	}
	
	.btn-mega {
		font-size: 16px;
		padding: 18px 32px;
	}
}

/* ==========================================
   RESPONSIVE - SMALL MOBILE (480px and below)
   ========================================== */
@media (max-width: 480px) {
	/* Container */
	.container {
		padding: 0 16px;
	}
	
	/* Hero */
	.hero-v2 {
		padding: 60px 0 40px;
	}
	
	.hero-title {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 16px;
	}
	
	.hero-subtitle {
		font-size: 15px;
		margin-bottom: 24px;
	}
	
	.hero-stats {
		flex-direction: column;
		gap: 16px;
		width: 100%;
	}
	
	.stat-item {
		width: 100%;
		padding: 12px;
		background: rgba(255, 255, 255, 0.9);
		border-radius: 12px;
	}
	
	.stat-number {
		font-size: 28px;
	}
	
	.stat-label {
		font-size: 13px;
	}
	
	.hero-badge {
		font-size: 12px;
		padding: 6px 14px;
	}
	
	/* Trust Badges */
	.trust-badges-section {
		padding: 50px 0;
	}
	
	.trust-badges-header {
		margin-bottom: 32px;
	}
	
	.trust-badges-header h3 {
		font-size: 20px;
	}
	
	.trust-badges-header p {
		font-size: 13px;
	}
	
	.trust-badges-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	
	.trust-badge-item {
		padding: 18px 12px;
	}
	
	.trust-badge-item:nth-child(5) {
		grid-column: 1 / -1;
		max-width: 280px;
		justify-self: center;
	}
	
	.badge-icon {
		width: 55px;
		height: 55px;
		padding: 10px;
	}
	
	.badge-content h4 {
		font-size: 13px;
	}
	
	.badge-content p {
		font-size: 11px;
	}
	
	/* Sections Spacing */
	.problem-solution,
	.testimonials-v2,
	.how-it-works,
	.ingredients-showcase,
	.special-offer,
	.guarantee-v2,
	.faq-v2 {
		padding: 60px 0;
	}
	
	/* Section Headers */
	.section-header {
		margin-bottom: 40px;
	}
	
	.section-header h2 {
		font-size: 24px;
		margin-bottom: 12px;
	}
	
	.section-header p {
		font-size: 14px;
	}
	
	/* Problem Cards */
	.problem-card {
		padding: 20px;
	}
	
	.problem-icon {
		font-size: 36px;
		margin-bottom: 12px;
	}
	
	.problem-card h3 {
		font-size: 17px;
		margin-bottom: 8px;
	}
	
	.problem-card p {
		font-size: 14px;
	}
	
	.solution-box {
		padding: 24px 16px;
	}
	
	.solution-box h3 {
		font-size: 22px;
		margin-bottom: 12px;
	}
	
	.solution-box p {
		font-size: 15px;
	}
	
	/* Testimonials */
	.testimonial-card {
		padding: 20px;
	}
	
	.testimonial-header h4 {
		font-size: 15px;
	}
	
	.testimonial-text {
		font-size: 14px;
	}
	
	.stars {
		font-size: 13px;
	}
	
	.verified {
		font-size: 12px;
	}
	
	/* Timeline */
	.timeline::before {
		left: 20px;
	}
	
	.timeline-item {
		padding-left: 65px;
		margin-bottom: 32px;
	}
	
	.timeline-number {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	
	.timeline-content h3 {
		font-size: 17px;
		margin-bottom: 8px;
	}
	
	.timeline-content p {
		font-size: 14px;
	}
	
	/* Ingredients */
	.ingredient-box {
		padding: 20px;
	}
	
	.ingredient-icon {
		font-size: 40px;
		margin-bottom: 12px;
	}
	
	.ingredient-box h3 {
		font-size: 16px;
		margin-bottom: 8px;
	}
	
	.ingredient-box p {
		font-size: 13px;
	}
	
	/* Offer CTA */
	.offer-cta-box {
		padding: 32px 16px;
		border-width: 2px;
	}
	
	.offer-badge-large {
		font-size: 13px;
		padding: 8px 20px;
		margin-bottom: 20px;
	}
	
	.offer-cta-box h2 {
		font-size: 24px;
		margin-bottom: 16px;
	}
	
	.offer-description {
		font-size: 14px;
		margin-bottom: 32px;
	}
	
	.offer-benefits {
		gap: 12px;
		margin-bottom: 32px;
	}
	
	.benefit-item-large {
		padding: 14px;
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	
	.benefit-item-large svg {
		width: 32px;
		height: 32px;
		margin-bottom: 8px;
	}
	
	.benefit-item-large h4 {
		font-size: 14px;
		margin-bottom: 4px;
	}
	
	.benefit-item-large p {
		font-size: 12px;
	}
	
	.offer-footer-text {
		font-size: 12px;
	}
	
	.offer-footer-text img {
		width: 32px;
	}
	
	/* Guarantee */
	.guarantee-v2 {
		padding: 50px 0;
	}
	
	.guarantee-content {
		gap: 24px;
	}
	
	.guarantee-image img {
		max-width: 160px;
	}
	
	.guarantee-text h2 {
		font-size: 24px;
		margin-bottom: 16px;
	}
	
	.guarantee-text p {
		font-size: 14px;
		margin-bottom: 20px;
	}
	
	.guarantee-list {
		margin-bottom: 24px;
	}
	
	.guarantee-list li {
		font-size: 14px;
		padding: 8px 0;
	}
	
	/* FAQ */
	.faq-item-v2 {
		margin-bottom: 12px;
	}
	
	.faq-question-v2 {
		padding: 16px 18px;
	}
	
	.faq-question-v2 span {
		font-size: 14px;
	}
	
	.faq-icon-v2 {
		width: 20px;
		height: 20px;
	}
	
	.faq-answer-v2 p {
		font-size: 13px;
	}
	
	.faq-item-v2.active .faq-answer-v2 {
		padding: 12px 18px 18px;
	}
	
	/* Final CTA */
	.final-cta-v2 {
		padding: 50px 0;
	}
	
	.final-cta-content h2 {
		font-size: 24px;
		margin-bottom: 12px;
	}
	
	.final-cta-content p {
		font-size: 15px;
		margin-bottom: 32px;
	}
	
	.final-note {
		font-size: 12px;
		margin-top: 20px;
	}
	
	/* Buttons */
	.btn-primary-v2 {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
		font-size: 14px;
		gap: 8px;
	}
	
	.btn-primary-v2 svg {
		width: 16px;
		height: 16px;
	}
	
	.btn-primary-v2.large {
		font-size: 15px;
		padding: 16px 24px;
	}
	
	.btn-mega {
		font-size: 15px;
		padding: 16px 28px;
	}
	
	/* Fixed CTA */
	.fixed-cta-content {
		flex-direction: column;
		padding: 12px 16px;
		gap: 10px;
		text-align: center;
	}
	
	.fixed-cta-text {
		text-align: center;
	}
	
	.fixed-cta-btn {
		width: 100%;
		padding: 12px 24px;
		font-size: 13px;
	}
	
	/* Footer */
	.footer-v2 {
		padding: 32px 0 16px;
	}
	
	.footer-content {
		gap: 24px;
	}
	
	.footer-col h4 {
		font-size: 15px;
		margin-bottom: 12px;
	}
	
	.footer-col p,
	.footer-col a {
		font-size: 13px;
	}
	
	.footer-bottom p {
		font-size: 12px;
	}
	
	.disclaimer {
		font-size: 10px !important;
	}
}

/* ==========================================
   RESPONSIVE - EXTRA SMALL (360px and below)
   ========================================== */
@media (max-width: 360px) {
	.hero-title {
		font-size: 24px;
	}
	
	.hero-subtitle {
		font-size: 14px;
	}
	
	.offer-cta-box h2 {
		font-size: 22px;
	}
	
	.section-header h2 {
		font-size: 22px;
	}
	
	.btn-primary-v2 {
		font-size: 13px;
		padding: 14px 18px;
	}
	
	.btn-mega {
		font-size: 14px;
		padding: 14px 24px;
	}
	
	.trust-badges-section {
		padding: 40px 0;
	}
	
	.trust-badges-header h3 {
		font-size: 18px;
	}
	
	.trust-badges-header p {
		font-size: 12px;
	}
	
	.trust-badges-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		max-width: 300px;
		margin: 0 auto;
	}
	
	.trust-badge-item {
		padding: 16px 12px;
	}
	
	.trust-badge-item:nth-child(5) {
		grid-column: auto;
		max-width: none;
	}
	
	.badge-icon {
		width: 50px;
		height: 50px;
		padding: 8px;
	}
	
	.badge-content h4 {
		font-size: 12px;
	}
	
	.badge-content p {
		font-size: 10px;
	}
}

/* ==========================================
   LANDSCAPE ORIENTATION (Mobile)
   ========================================== */
@media (max-height: 600px) and (orientation: landscape) {
	.hero-v2 {
		padding: 60px 0 40px;
		min-height: auto;
	}
	
	.hero-stats {
		flex-direction: row;
		gap: 16px;
	}
	
	.stat-item {
		padding: 8px;
	}
	
	.scroll-indicator {
		display: none;
	}
	
	.fixed-cta {
		position: relative;
		bottom: auto;
	}
}

/* ==========================================
   UTILITIES & ACCESSIBILITY
   ========================================== */
img {
	loading: lazy;
	will-change: transform;
	max-width: 100%;
	height: auto;
}

html {
	scroll-behavior: smooth;
}

button:focus,
a:focus {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

@media print {
	.fixed-cta,
	.btn,
	.scroll-indicator {
		display: none;
	}
}

/* ==========================================
   TOUCH IMPROVEMENTS (Mobile)
   ========================================== */
@media (hover: none) and (pointer: coarse) {
	.btn-primary-v2,
	.btn-mega,
	.fixed-cta-btn,
	.faq-question-v2 {
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
	}
	
	.btn-primary-v2:active,
	.btn-mega:active,
	.fixed-cta-btn:active {
		transform: scale(0.98);
	}
	
	/* Increase touch target size */
	.faq-question-v2,
	.btn-primary-v2,
	.fixed-cta-btn {
		min-height: 44px;
	}
}

