/* ========== Design Tokens ========== */
:root {
  --background: 30 25% 97%;
  --foreground: 20 20% 15%;
  --card: 0 0% 100%;
  --card-foreground: 20 20% 15%;
  --primary: 24 85% 52%;
  --primary-foreground: 0 0% 100%;
  --secondary: 30 30% 93%;
  --muted: 30 15% 94%;
  --muted-foreground: 20 10% 45%;
  --accent: 24 100% 95%;
  --accent-foreground: 24 85% 35%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 30 15% 88%;
  --success: 152 60% 42%;
  --success-foreground: 0 0% 100%;
  --highlight: 45 95% 55%;
  --highlight-foreground: 30 30% 12%;
  --radius: 0.75rem;
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ========== Layout ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 4rem 1rem; }
@media (min-width: 768px) { .section { padding: 6rem 1rem; } }

.bg-card-section { background: hsl(var(--card)); }
.bg-foreground-section {
  background: linear-gradient(135deg, hsl(var(--foreground)), hsl(var(--foreground) / 0.95) 50%, hsl(var(--foreground) / 0.9));
  color: hsl(var(--primary-foreground));
}

/* ========== Typography ========== */
.eyebrow {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.eyebrow-dark {
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
}
h1.hero-title { font-size: 2rem; line-height: 1.15; }
@media (min-width: 640px) { h1.hero-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { h1.hero-title { font-size: 3rem; } }
@media (min-width: 1280px) { h1.hero-title { font-size: 3.75rem; } }

h2.section-title { font-size: 1.875rem; margin-bottom: 1rem; }
@media (min-width: 768px) { h2.section-title { font-size: 2.25rem; } }

.text-gradient {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(35, 90%, 55%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { color: hsl(var(--muted-foreground)); font-size: 1.125rem; max-width: 42rem; margin: 0 auto 3rem; }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-success { color: hsl(var(--success)); }
.text-center { text-align: center; }

/* ========== Button ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transition: background 0.2s, transform 0.2s;
  text-align: center;
  width: 100%;
  animation: pulse-glow 2s ease-in-out infinite;
  /*white-space: nowrap;*/
}
.btn:hover { background: hsl(var(--primary) / 0.9); }
.btn-lg { font-size: 1.125rem; padding: 1.125rem 2rem; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsl(var(--primary) / 0.3); }
  50% { box-shadow: 0 0 40px hsl(var(--primary) / 0.5); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== Hero ========== */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-content > * + * { margin-top: 1.5rem; }
.hero-content p { color: rgba(255,255,255,0.7); max-width: 32rem; font-size: 1.125rem; }
.hero-cta-row { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; align-items: center; } }
.hero-cta-row .btn { width: auto; }
.hero-meta { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.hero-image { display: flex; justify-content: center; }
.hero-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 0.5rem;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.25));
  animation: float 3s ease-in-out infinite;
}

/* ========== Grids ========== */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }

/* ========== Cards ========== */
.card-hover {
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: hsl(var(--destructive) / 0.05);
  border: 1px solid hsl(var(--destructive) / 0.1);
  text-align: left;
}
.pain-card .icon { color: hsl(var(--destructive)); flex-shrink: 0; margin-top: 2px; }
.pain-card p { font-weight: 500; }

.solution-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  text-align: left;
}
.solution-card .icon-box {
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.solution-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.solution-card p { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }

.benefit-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: 0.75rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  text-align: left;
}
.benefit-card .icon-box {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-card p { font-weight: 500; padding-top: 0.375rem; }

.content-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .content-grid { grid-template-columns: 1fr 1fr; } }
.content-list { display: flex; flex-direction: column; gap: 1rem; }
.content-list-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.content-list-item .icon-box {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  background: hsl(var(--success) / 0.1);
  color: hsl(var(--success));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.content-image img { border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); max-width: 420px; width: 100%; margin: 0 auto; }

.bonus-card {
  padding: 1.5rem; border-radius: 0.75rem;
  background: hsl(var(--accent) / 0.5);
  border: 2px solid hsl(var(--primary) / 0.1);
  text-align: left;
}
.bonus-card .emoji { font-size: 1.875rem; display: block; margin-bottom: 0.75rem; }
.bonus-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.bonus-card .free-tag {
  display: inline-block; margin-top: 0.75rem; font-size: 0.75rem;
  font-weight: 600; color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
}
.bonus-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: hsl(var(--primary)); font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
  justify-content: center;
}

.authority-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; border-radius: 0.75rem;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.authority-card .icon-box {
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.testimonial {
  padding: 1.5rem; border-radius: 0.75rem;
  background: hsl(var(--background)); border: 1px solid hsl(var(--border));
  text-align: left;
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; color: hsl(var(--highlight)); }
.testimonial blockquote { font-size: 0.875rem; font-style: italic; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.testimonial .name { font-weight: 700; font-size: 0.875rem; }
.testimonial .location { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

.guarantee-box {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--success) / 0.2);
  border-radius: 1rem; padding: 2rem; text-align: center;
}
@media (min-width: 768px) { .guarantee-box { padding: 3rem; } }
.guarantee-icon {
  width: 4rem; height: 4rem; border-radius: 9999px;
  background: hsl(var(--success) / 0.1); color: hsl(var(--success));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}

/* ========== FAQ Accordion ========== */
.faq { text-align: left; }
.faq-item { border-bottom: 1px solid hsl(var(--border)); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; font-weight: 600; font-size: 1rem; text-align: left;
  cursor: pointer; transition: color 0.2s;
}
.faq-trigger:hover { text-decoration: underline; }
.faq-trigger .chevron { transition: transform 0.2s; flex-shrink: 0; }
.faq-trigger.open .chevron { transform: rotate(180deg); }
.faq-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
  color: hsl(var(--muted-foreground)); font-size: 0.875rem;
}
.faq-content-inner { padding: 0 0 1rem; }

/* ========== Pricing ========== */
.pricing-card {
  background: hsl(var(--card)); border-radius: 1rem;
  padding: 2rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  max-width: 28rem; margin: 0 auto;
}
@media (min-width: 768px) { .pricing-card { padding: 2.5rem; } }
.pricing-eyebrow {
  font-size: 0.875rem; font-weight: 600; color: hsl(var(--muted-foreground));
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.value-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.value-list-item { display: flex; justify-content: space-between; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.value-list-item .strike { text-decoration: line-through; }
.value-total {
  border-top: 1px solid hsl(var(--border)); padding-top: 0.5rem;
  display: flex; justify-content: space-between; font-weight: 600; color: #333333;
}
.price-box {
  background: hsl(var(--muted) / 0.5); border-radius: 0.75rem;
  padding: 1rem; margin-bottom: 1rem; text-align: center;
}
.price-box .normal { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.25rem; }
.price-box .price-row { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; }
.price-box .price-row .label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.price-box .price-row .price { font-size: 3rem; font-weight: 800; color: hsl(var(--primary)); line-height: 1; }
.price-box .promo-note { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.5rem; font-style: italic; }
.checklist { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; text-align: left; margin-bottom: 1.5rem;}
.checklist-item { display: flex; align-items: center; gap: 0.5rem; color: #333333; }
.checklist-item .check { color: hsl(var(--success)); font-weight: 700; }
.urgency-box {
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 0.75rem; padding: 0.75rem; margin-bottom: 1rem; text-align: center;
}
.urgency-box .title { font-size: 0.875rem; font-weight: 600; color: #333333;}
.urgency-box .sub { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.below-cta-note { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.75rem; font-weight: 500; text-align: center; }
.below-cta-secure { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; text-align: center; }
.pricing-section h2 { color: hsl(var(--primary-foreground)); }
.pricing-section p.lead { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* ========== Footer ========== */
footer {
  padding: 2rem 1rem; text-align: center; font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
}

/* ========== Icons ========== */
.icon { display: inline-block; width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6 { margin-top: 1.5rem; }
