/* Reset & Base */
:root {
  --color-red: #C62828;
  --color-red-dark: #B71C1C;
  --color-orange: #FFB74D;
  --color-orange-dark: #F57C00;
  --color-brown-dark: #3E2723;
  --color-brown-medium: #5D4037;
  --color-brown-light: #8D6E63;
  --color-cream: #FDFBF7;
  --color-white: #FFFFFF;
  --color-amber: #F59E0B;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-brown-medium);
  background-color: var(--color-cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button, a {
  cursor: pointer;
  font-family: inherit;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-brown-dark);
  font-weight: 700;
  line-height: 1.2;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-red { color: var(--color-red); }
.text-brown-dark { color: var(--color-brown-dark); }
.text-white { color: var(--color-white); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm { max-width: 1024px; }
.container-xs { max-width: 768px; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .md-text-left { text-align: left; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* Components */

/* Header */
.top-bar {
  background-color: var(--color-red);
  color: white;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}

/* Hero */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #FFF3E0;
  border: 1px solid var(--color-orange);
  color: #E65100;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid white;
  transform: rotate(1deg);
  transition: transform 0.7s;
}
.hero-image-container:hover { transform: rotate(0); }

.hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  z-index: 20;
  box-shadow: var(--shadow-lg);
  animation: bounce 1s infinite;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(to right, #FF8F00, #F57C00);
  color: white;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(255, 143, 0, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(to right, #F57C00, #EF6C00);
  transform: translateY(-2px);
}

.btn-outline {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--color-brown-medium);
  color: var(--color-brown-medium);
  background: transparent;
  border-radius: 0.75rem;
}
.btn-outline:hover {
  background-color: var(--color-gray-50);
}

.btn-cta-lg {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #FF8F00, #EF6C00);
  color: white;
  font-size: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(255, 143, 0, 0.3);
  animation: pulse-slow 3s infinite;
}
.btn-cta-lg:hover {
  transform: scale(1.02);
}

/* Cards */
.card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #EBE0D6;
  transition: all 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Technique Section */
.comparison-card {
  position: relative;
}
.comparison-img {
  aspect-ratio: 1/1;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid;
}
.comparison-img.bad {
  filter: grayscale(80%);
  opacity: 0.8;
  border-color: #E5E7EB;
  border-style: dashed;
}
.comparison-img.good {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-xl);
}

/* Pricing Cards */
.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #EBE0D6;
  position: relative;
}
.pricing-card.premium {
  border: 2px solid var(--color-orange);
  box-shadow: var(--shadow-2xl);
  z-index: 10;
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-brown-medium);
}
.premium .price-amount {
  font-size: 3rem;
  color: var(--color-red);
}

.bonus-box {
  background-color: #FFF8E1;
  border: 1px solid #FFE0B2;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

/* FAQ */
.faq-item {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: none;
  border: none;
  font-weight: 700;
  color: var(--color-brown-dark);
  text-align: left;
}
.faq-button:hover { background-color: var(--color-gray-50); }
.faq-content {
  padding: 1rem;
  padding-top: 0;
  background-color: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-100);
  display: none;
}
.faq-item.active .faq-content { display: block; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25%); }
}
@keyframes pulse-slow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Utilities specific */
.bg-white { background-color: white; }
.bg-cream { background-color: var(--color-cream); }
.bg-gray { background-color: #F5F5F5; }
.bg-red-50 { background-color: #FEF2F2; }
.bg-amber-50 { background-color: #FFFBEB; }
.bg-purple-50 { background-color: #FAF5FF; }
.bg-green-50 { background-color: #F0FDF4; }
.bg-blue-50 { background-color: #EFF6FF; }
.bg-rose-50 { background-color: #FFF1F2; }

.text-red-500 { color: #EF4444; }
.text-amber-600 { color: #D97706; }
.text-purple-600 { color: #9333EA; }
.text-green-600 { color: #16A34A; }
.text-blue-600 { color: #2563EB; }
.text-rose-600 { color: #E11D48; }

.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 5rem; height: 5rem; }

/* SVGs */
svg {
  display: inline-block;
  vertical-align: middle;
}
/* Avatar styling missing in previous css */
.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

.avatar-count {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brown-medium);
}

.avatar-lg {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Add this to existing CSS */
