
:root {
  --gold: #f5a800;
  --dark-gold: #c17f00;
  --cream: #fff9ef;
  --brown: #3b1d00;
  --red: #d62828;
  --green: #2a7d4f;
}

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

body {
  background-color: var(--cream);
  color: var(--brown);
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ---------- HERO ---------- */
.hero {
  background: var(--brown);
  color: var(--gold);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "🍩";
  font-size: 8rem;
  position: absolute;
  opacity: 0.08;
}
.hero::before { top: -1rem; left: -1rem; transform: rotate(-20deg); }
.hero::after  { bottom: -1rem; right: -1rem; transform: rotate(20deg); }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 900;
  color: #f5c842;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.05;
  text-shadow: 4px 4px 0 var(--dark-gold);
  margin-bottom: 1rem;
}

.hero h1 span { color: #fff; }

.hero-sub {
  font-size: 1.3rem;
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: #ffe5a0;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  font-family: 'Alfa Slab One', serif;
  font-size: 0.95rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  font-family: 'Alfa Slab One', serif;
  font-size: 1.4rem;
  padding: 1rem 2.8rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--dark-gold);
  transition: transform 0.1s, box-shadow 0.1s;
}
.cta-btn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--dark-gold);
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--gold);
  color: var(--brown);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.55rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: scroll 28s linear infinite;
}
.ticker-inner span { margin: 0 3rem; }
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SECTION WRAPPERS ---------- */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-title {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title .accent { color: var(--red); }

/* ---------- BENEFITS GRID ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: #fff;
  border: 3px solid var(--brown);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 5px 5px 0 var(--brown);
  position: relative;
}

.benefit-card .icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.benefit-card h3 {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--brown);
}

.benefit-card p {
  font-size: 0.97rem;
  color: #4a3000;
}

/* ---------- STRIKETHROUGH CALLOUT ---------- */
.alt-bg { background: var(--brown); }
.alt-bg .section-title { color: var(--gold); }
.alt-bg .section-title .accent { color: #ffde68; }

.problem-list {
  list-style: none;
  font-size: 1.15rem;
  color: #ffe5a0;
}
.problem-list li { padding: 0.5rem 0; }
.problem-list li::before { content: "✗ "; color: #ff7070; font-weight: 900; }

.solution-list {
  list-style: none;
  font-size: 1.15rem;
  margin-top: 1.5rem;
  color: #c8ffd4;
}
.solution-list li { padding: 0.5rem 0; }
.solution-list li::before { content: "✓ "; color: #6fffaa; font-weight: 900; }

/* ---------- DISCLAIMER BOX ---------- */
.disclaimer {
  background: #fff3cd;
  border-left: 5px solid var(--gold);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  color: #5a4000;
  margin-top: 2rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  border: 3px solid var(--brown);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 5px 5px 0 var(--brown);
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  color: var(--brown);
}

.testimonial .attribution {
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--red);
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ---------- PLAN STEPS ---------- */
.steps {
  counter-reset: step-counter;
  list-style: none;
}
.steps li {
  counter-increment: step-counter;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.steps li::before {
  content: counter(step-counter);
  font-family: 'Alfa Slab One', serif;
  font-size: 1.5rem;
  background: var(--gold);
  color: var(--brown);
  min-width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--brown);
  box-shadow: 3px 3px 0 var(--brown);
  flex-shrink: 0;
}
.steps li div strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

/* ---------- PRICING ---------- */
.pricing-card {
  background: var(--brown);
  color: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 8px 8px 0 var(--dark-gold);
}
.pricing-card .price-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-family: 'Alfa Slab One', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.pricing-card .price-sub {
  font-size: 0.95rem;
  color: #ffe5a0;
  margin-bottom: 1.5rem;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.pricing-card ul li { padding: 0.35rem 0; }
.pricing-card ul li::before { content: "🍩 "; }
.pricing-card .cta-btn { font-size: 1.1rem; }

/* ---------- TED BIO ---------- */
.ted-section {
  background: #fff8e8;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.ted-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.ted-avatar {
  font-size: 5rem;
  flex-shrink: 0;
  line-height: 1;
}
.ted-inner h2 {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.ted-inner .ted-title {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-gold);
  margin-bottom: 0.8rem;
}

/* ---------- INVOICE MODAL ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fffdf5;
  border: 3px solid var(--brown);
  border-radius: 12px;
  width: 50%;
  box-shadow: 8px 8px 0 var(--brown);
  overflow: hidden;
}
.modal-header {
  background: var(--brown);
  color: var(--gold);
  font-family: 'Alfa Slab One', serif;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
}
.modal-body { padding: 1.5rem; }
.modal-body p { margin-bottom: 0.6rem; font-size: 0.97rem; }
.modal-body .info-list {
  background: #f0e8d0;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  margin: 0.8rem 0;
  font-size: 0.92rem;
}
.modal-body .info-list li { list-style: disc; margin-left: 1.2rem; padding: 0.15rem 0; }
.invoice {
  border: 2px solid var(--brown);
  border-radius: 8px;
  margin-top: 1rem;
  overflow: hidden;
  font-size: 0.9rem;
}
.invoice-title {
  background: var(--brown);
  color: var(--gold);
  font-family: 'Alfa Slab One', serif;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.invoice table {
  width: 100%;
  border-collapse: collapse;
}
.invoice td {
  padding: 0.35rem 1rem;
  border-bottom: 1px solid #e8dcc0;
}
.invoice td:last-child { text-align: right; }
.invoice .subtotal-row td { border-top: 2px solid var(--brown); font-weight: 700; }
.invoice .total-row td {
  background: var(--brown);
  color: var(--gold);
  font-family: 'Alfa Slab One', serif;
  font-size: 1rem;
  border-bottom: none;
}
.modal-etransfer {
  display: block;
  background: #fff3cd;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 0.7rem 1rem;
  margin-top: 1rem;
  font-size: 0.88rem;
}
.modal-etransfer strong { margin-bottom: 0.2rem; }
.modal-close-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--brown);
  font-family: 'Alfa Slab One', serif;
  font-size: 1rem;
  padding: 0.7rem;
  border: 3px solid var(--brown);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--brown);
}
.modal-close-btn:hover { opacity: 0.9; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--brown);
  color: #9a7040;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  line-height: 1.8;
}
footer a { color: var(--gold); text-decoration: none; }

@media (max-width: 768px) {
  .modal { width: 100%; }
}