/* =========================================================
   AMPLO — StoryBrand section styles
   Neon theme · PANTONE 802 C (#44D62C)
   ========================================================= */

/* ── Neon button variants ─────────────────────────────── */
.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 2px solid #44D62C;
  background: #44D62C;
  color: #0A1628;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 0 16px rgba(68,214,44,0.4);
}
.btn-neon:hover {
  background: #6FE84F;
  border-color: #6FE84F;
  box-shadow: 0 0 28px rgba(68,214,44,0.65);
  transform: translateY(-1px);
}
.btn-neon-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid #44D62C;
  background: transparent;
  color: #44D62C;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.btn-neon-outline:hover {
  background: rgba(68,214,44,0.1);
  box-shadow: 0 0 16px rgba(68,214,44,0.3);
}

/* ── ① HERO tweaks ───────────────────────────────────── */
.sb-hero .eyebrow {
  font-size: 12px;
  line-height: 1.5;
  max-width: 420px;
  display: block;
  margin-bottom: 18px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #44D62C;
}
.sb-hero .hero-actions { margin-top: 32px; }

/* ── ② PROBLEM section (WITHOUT/WITH) ──────────────────────────────── */
.sb-problem {
  background: var(--navy);
  padding: 72px 0;
  color: var(--paper);
}
.sb-problem .sb-problem-inner { max-width: 900px; margin: 0 auto; }
.sb-problem .failure-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sb-problem .vs-col {
  background: var(--navy-soft);
  border-radius: 10px;
  padding: 32px 28px;
}
.sb-problem .vs-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.sb-problem .vs-without h4 { color: var(--grey-light); }
.sb-problem .vs-with h4 { color: #44D62C; }
.sb-problem .vs-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sb-problem .vs-col li {
  font-size: 15px;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
  color: var(--grey-light);
}
.sb-problem .vs-without li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ff4444;
  font-size: 12px;
  top: 2px;
}
.sb-problem .vs-with li {
  color: var(--paper);
}
.sb-problem .vs-with li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #44D62C;
  font-size: 12px;
  top: 2px;
  text-shadow: 0 0 8px rgba(68,214,44,0.5);
}
@media (max-width: 600px) {
  .sb-problem .failure-vs { grid-template-columns: 1fr; }
}

/* ── ③ GUIDE section ────────────────────────────────── */
.sb-guide {
  background: var(--paper);
  padding: 88px 0;
}
.sb-guide-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
}
.guide-text .eyebrow { display: block; margin-bottom: 14px; }
.guide-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,44px);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.guide-text .lead { color: var(--grey); max-width: 520px; }
.guide-stat-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.guide-stat { text-align: center; }
.stat-big {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  color: #44D62C;
  line-height: 1;
  text-shadow: 0 0 16px rgba(68,214,44,0.4);
}
.stat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-top: 4px;
  display: block;
}
@media (max-width: 880px) {
  .sb-guide-inner { grid-template-columns: 1fr; }
  .guide-stat-block { flex-direction: row; justify-content: center; }
}

/* ── ④ PLAN section ─────────────────────────────────── */
.sb-plan {
  background: var(--navy);
  padding: 88px 0;
  color: var(--paper);
}
.sb-plan .section-head h2 { color: var(--paper); }
.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--navy-rule);
  border-radius: 12px;
  overflow: hidden;
}
.plan-step {
  padding: 40px 32px;
  background: var(--navy-soft);
  position: relative;
}
.plan-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--navy-rule);
}
.plan-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #44D62C;
  color: #44D62C;
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(68,214,44,0.3);
}
.plan-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 12px;
}
.plan-step p { color: var(--grey-light); font-size: 15px; line-height: 1.6; }
@media (max-width: 700px) {
  .plan-steps { grid-template-columns: 1fr; }
  .plan-step::after { display: none; }
}

/* ── ⑤ PRODUCTS section ─────────────────────────────── */
.sb-products { background: var(--paper); }
.sb-products .section-head h2 { color: var(--navy); }

/* ── ⑥ AVOID FAILURE section ─────────────────────────── */
.sb-failure {
  background: #070E1B;
  padding: 88px 0;
  color: var(--paper);
}
.sb-failure-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.failure-copy .eyebrow { display: block; margin-bottom: 14px; }
.failure-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,44px);
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.failure-copy .lead { color: var(--grey-light); }
.failure-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: center;
}
.vs-col {
  background: var(--navy-soft);
  border-radius: 8px;
  padding: 24px;
}
.vs-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.vs-without h4 { color: var(--grey); }
.vs-with h4 { color: #44D62C; }
.vs-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-col li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--grey-light);
}
.vs-without li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ff4444;
  font-size: 12px;
  top: 1px;
}
.vs-with li {
  color: var(--paper);
}
.vs-with li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #44D62C;
  font-size: 12px;
  top: 1px;
  text-shadow: 0 0 8px rgba(68,214,44,0.5);
}
@media (max-width: 880px) {
  .sb-failure-inner { grid-template-columns: 1fr; }
  .failure-vs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .failure-vs { grid-template-columns: 1fr; }
}

/* ── ⑦ SUCCESS section ──────────────────────────────── */
.sb-success {
  background: var(--navy);
  padding: 88px 0;
  color: var(--paper);
}
.sb-success-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}
.success-copy .eyebrow { display: block; margin-bottom: 14px; }
.success-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,44px);
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.success-copy .lead { color: var(--grey-light); max-width: 500px; }
.success-visual { display: flex; justify-content: center; }
@media (max-width: 880px) {
  .sb-success-inner { grid-template-columns: 1fr; }
  .success-visual { order: -1; }
}

/* ── WAITLIST section ───────────────────────────────── */
.sb-waitlist {
  background: var(--mint);
  padding: 88px 0;
}
.sb-waitlist .section-head h2 { color: var(--navy); }
.sb-waitlist .notify-form { margin: 0 auto; justify-content: center; }
.waitlist-sub {
  text-align: center;
  font-size: 13px;
  color: var(--grey);
  margin-top: 12px;
}

/* ── ENQUIRY section ────────────────────────────────── */
.sb-enquiry { background: var(--paper); }
.sb-enquiry .enquiry-submit {
  background: #44D62C;
  border-color: #44D62C;
  color: #0A1628;
  width: 100%;
  justify-content: center;
  box-shadow: 0 0 16px rgba(68,214,44,0.3);
}
.sb-enquiry .enquiry-submit:hover {
  background: #6FE84F;
  box-shadow: 0 0 28px rgba(68,214,44,0.5);
}

/* ── Footer tagline update ───────────────────────────── */
.site-footer .footer-bottom {
  color: var(--grey-light);
}
