/* ===================== VARIABLES ===================== */
:root {
  --lime: #9BB73C;
  --dark-green: #203911;
  --black: #000000;
  --white: #FFFFFF;
  --font-head: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  line-height: 1.15;
}

.section-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  border: 3px solid var(--black);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 5px 5px 0 var(--black);
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--black);
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
}

.btn-header {
  font-size: 0.85rem;
  padding: 10px 16px;
  box-shadow: 3px 3px 0 var(--black);
  white-space: nowrap;
}

.btn-large {
  font-size: 1.15rem;
  padding: 18px 32px;
  width: 100%;
  max-width: 360px;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 4px solid var(--black);
}

.header-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--black);
  min-width: 0;
}

.header-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.header-logo span {
  font-family: var(--font-head);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===================== HERO ===================== */
.hero {
  background: var(--dark-green);
  color: var(--white);
  text-align: center;
  padding: 50px 0 60px;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-bottom: 24px;
  border: 4px solid var(--lime);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--lime);
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--white);
}

/* ===================== PROBLEM ===================== */
.problem {
  background: var(--white);
}

.problem h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.problem-list {
  list-style: none;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 600;
}

.problem-list .icon {
  color: var(--black);
  background: var(--lime);
  border: 2px solid var(--black);
  border-radius: 50%;
  min-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-weight: 900;
}

.problem-punch {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 24px;
  border-left: 6px solid var(--lime);
  padding-left: 16px;
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works {
  background: var(--dark-green);
  color: var(--white);
}

.how-it-works h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  background: var(--white);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 6px 6px 0 var(--lime);
}

.step-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  background: var(--lime);
  color: var(--black);
  width: 44px;
  height: 44px;
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ===================== OFFER ===================== */
.offer {
  background: var(--white);
}

.offer h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.offer-card {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 8px 8px 0 var(--black);
  text-align: center;
}

.offer-price {
  font-family: var(--font-head);
  font-size: 3.2rem;
  color: var(--lime);
  -webkit-text-stroke: 1.5px var(--black);
  margin-bottom: 8px;
}

.offer-headline {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.offer-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.offer-list li {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-left: 22px;
  position: relative;
}

.offer-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--white);
  background: var(--dark-green);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 2px;
}

.offer-callout {
  background: var(--lime);
  border: 3px solid var(--black);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 26px;
  text-align: left;
}

.offer-callout p {
  font-size: 0.98rem;
}

/* ===================== COMPARISON ===================== */
.comparison {
  background: var(--dark-green);
  color: var(--white);
}

.comparison h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.compare-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compare-col {
  border-radius: 14px;
  padding: 22px;
  border: 3px solid var(--black);
}

.compare-them {
  background: #2c4a1a;
  opacity: 0.85;
}

.compare-me {
  background: var(--lime);
  color: var(--black);
  box-shadow: 6px 6px 0 var(--black);
}

.compare-col h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.compare-col ul {
  list-style: none;
}

.compare-col li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.98rem;
  font-weight: 600;
}

.compare-them li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: var(--white);
}

.compare-me li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--black);
}

/* ===================== FAQ ===================== */
.faq {
  background: var(--white);
}

.faq h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 3px solid var(--black);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  padding: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--black);
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  background: var(--lime);
}

.faq-toggle {
  font-family: var(--font-head);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 18px;
}

.faq-answer p {
  padding-bottom: 18px;
  font-size: 0.98rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  background: var(--dark-green);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.site-footer .section-inner {
  padding: 24px;
}

.site-footer p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ===================== DESKTOP / LARGER SCREENS ===================== */
@media (min-width: 700px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .problem h2,
  .how-it-works h2,
  .offer h2,
  .comparison h2,
  .faq h2 {
    font-size: 2.2rem;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .compare-grid {
    flex-direction: row;
  }

  .compare-col {
    flex: 1;
  }

  .final-cta h2 {
    font-size: 2.4rem;
  }

  .btn-large {
    width: auto;
  }
}
