/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Custom Properties (Variables)
   ========================================================================== */
:root {
  --navy-deep: #042A4A;
  --navy: #073B66;
  --navy-soft: #0D4F86;
  --navy-tint: #E8F0F8;
  --gold: #FDBA12;
  --gold-soft: #FFF8E5;
  --ink: #1D2B3A;
  --muted: #5B6B7C;
  --bg: #F4F7FA;
  --line: #DDE4EB;
  --line-soft: #EEF2F6;
  
  --low: #2E9E6B;
  --low-bg: #E7F6EE;
  --mid: #E89A2C;
  --mid-bg: #FDF1DE;
  --high: #D65A5A;
  --high-bg: #FDECEC;
  
  --radius: 16px;
  --radius-sm: 12px;
  
  --shadow: 0 4px 20px rgba(7,59,102,.08);
  --shadow-lg: 0 12px 40px rgba(7,59,102,.14);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-deep);
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.btn-primary:hover {
  background-color: var(--navy-soft);
  border-color: var(--navy-soft);
  color: #ffffff;
}

.btn-ghost {
  background-color: transparent;
  color: var(--navy-soft);
  border-color: var(--line);
}

.btn-ghost:hover {
  background-color: var(--navy-tint);
  border-color: var(--navy-tint);
  color: var(--navy);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==========================================================================
   Landing Page
   ========================================================================== */
.landing {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--navy-deep);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 2px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* --- Nav --- */
.land-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.land-nav .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.land-nav-actions {
  display: flex;
  gap: 12px;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #ffffff;
  padding: 100px 24px;
  overflow: hidden;
}

.hero .section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* --- Pain Points Grid --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-item {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid var(--high);
}

.pain-item .icon {
  color: var(--high);
  background: var(--high-bg);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.pain-item h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.pain-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* --- Deliverables Grid --- */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.deliver-item {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliver-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.deliver-item .icon {
  width: 64px;
  height: 64px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.deliver-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.deliver-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* --- Steps Track --- */
.steps-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 24px;
}

.steps-track::before {
  content: '';
  position: absolute;
  top: 44px; /* Center of the number circle (24px top padding + 20px half circle) */
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 16px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 8px var(--bg);
}

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

.step-item p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* --- Demo Section --- */
.demo-section {
  background-color: var(--navy-deep);
  color: #ffffff;
  padding: 100px 24px;
}

.demo-section .section-title {
  color: #ffffff;
}

.demo-section .section-sub {
  color: rgba(255,255,255,0.7);
}

.demo-mockup {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}

.demo-mockup img {
  border-radius: 8px;
  border: 1px solid var(--line);
}

/* --- Audience Grid --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.audience-card .icon {
  width: 56px;
  height: 56px;
  background: var(--navy-tint);
  color: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.audience-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}

.tag-cloud span {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(7,59,102,.04);
}

/* --- Checklist Form Section --- */
.checklist-section {
  background-color: #ffffff;
  padding: 100px 24px;
}

.cl-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cl-q {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid var(--line);
}

.cl-q p {
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.cl-options {
  display: flex;
  gap: 16px;
}

.cl-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cl-actions {
  text-align: center;
  margin-top: 32px;
}

.cl-result {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  text-align: center;
  margin-top: 32px;
  display: none; /* toggled by JS */
}

.cl-result h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.cl-result p {
  color: var(--muted);
}

/* --- Pricing Plans --- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.plan-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  z-index: 2;
}

.plan-card.featured::before {
  content: 'Recomendado';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 24px;
}

.plan-price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}

.plan-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-features li::before {
  content: '✓';
  color: var(--low);
  font-weight: 700;
}

.plan-card .btn {
  width: 100%;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 24px;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-lg {
  font-size: 1.1rem;
  padding: 16px 32px;
}

/* --- Footer --- */
.land-footer {
  background-color: #021626; /* darker than navy-deep */
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 40px 24px;
}

.land-footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .hero .section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    margin: 0 auto 32px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 16px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pain-grid,
  .deliver-grid,
  .audience-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-track {
    flex-direction: column;
    padding-top: 0;
  }
  
  .steps-track::before {
    top: 0;
    left: 36px; /* align with center of circle (16px padding + 20px half circle) */
    right: auto;
    bottom: 0;
    width: 2px;
    height: 100%;
  }
  
  .step-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 32px;
  }
  
  .step-number {
    margin: 0 16px 0 0;
    flex-shrink: 0;
  }
  
  .step-item h3 {
    margin-top: 8px;
  }
  
  .cl-form {
    padding: 24px 16px;
  }
  
  .cl-options {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .land-nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Additional Landing Styles — Hero Mockup, Badges, Buttons, etc.
   ========================================================================== */

/* Hero badge */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; background: rgba(253,186,18,.18); color: var(--gold); font-weight: 700; font-size: .82rem; margin-bottom: 18px; letter-spacing: .02em; }
.hero-badge i { font-size: .9rem; }

/* Hero proof points */
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.hero-proof div { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: rgba(255,255,255,.78); font-weight: 600; }
.hero-proof i { color: var(--gold); font-size: .9rem; }

/* Hero visual / mockup */
.hero-visual { flex: 1; min-width: 300px; display: flex; justify-content: center; }
.hero-mockup { background: #fff; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.25); overflow: hidden; width: 100%; max-width: 420px; }
.mockup-bar { display: flex; gap: 6px; padding: 10px 14px; background: var(--navy-tint); }
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar span:nth-child(1) { background: #e74c3c; }
.mockup-bar span:nth-child(2) { background: #f39c12; }
.mockup-bar span:nth-child(3) { background: #2ecc71; }
.mockup-body { padding: 16px; }
.mockup-title { font-weight: 700; font-size: .82rem; color: var(--navy-deep); margin-bottom: 12px; text-align: center; }
.mockup-grid { display: flex; flex-direction: column; gap: 6px; }
.mg-row { display: flex; gap: 6px; align-items: center; }
.mg-label { flex: 0 0 100px; font-size: .75rem; font-weight: 700; color: var(--navy-deep); text-align: right; padding-right: 8px; }
.mg-cell { flex: 1; text-align: center; font-size: .68rem; font-weight: 800; padding: 7px 4px; border-radius: 6px; color: #fff; text-transform: uppercase; letter-spacing: .03em; }
.mg-cell.heat-baixo { background: #1f7d4d; }
.mg-cell.heat-moderado { background: #c77d10; }
.mg-cell.heat-alto { background: #c0392b; }
.mg-cell.heat-critico { background: #7d1f1f; }
.mockup-legend { display: flex; justify-content: center; gap: 14px; margin-top: 12px; font-size: .7rem; color: var(--muted); font-weight: 600; }
.mockup-legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: middle; margin-right: 4px; }

/* Button variants */
.btn-gold { background: var(--gold); color: var(--navy-deep); border: 1px solid var(--gold); font-weight: 800; }
.btn-gold:hover { background: #e6a710; border-color: #e6a710; }
.btn-wa { background: #25d366; color: #fff; border: 1px solid #25d366; font-weight: 700; }
.btn-wa:hover { background: #1eb457; border-color: #1eb457; }
.btn-hero-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-hero-ghost:hover { background: rgba(255,255,255,.2); }

/* Hero inner layout */
.hero-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 48px; padding: 0 32px; }
.hero-text { flex: 1.2; min-width: 280px; }

/* Plan cards */
.plan-badge { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.plan-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.plan-audience { font-size: .86rem; color: var(--muted); margin-bottom: 16px; }
.plan-card ul { margin: 0 0 20px; padding: 0; }
.plan-card ul li { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.plan-card ul li i { color: var(--low); margin-top: 3px; flex-shrink: 0; }
.plan-card .btn { width: 100%; }
.plan-card.featured { border-color: var(--gold); border-width: 2px; box-shadow: 0 8px 30px rgba(253,186,18,.15); position: relative; }
.plan-card.featured .plan-badge { color: var(--gold); }
.plan-card.featured::before { content: '★'; position: absolute; top: -14px; right: 18px; background: var(--gold); color: var(--navy-deep); width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }

/* Checklist result */
.cl-result-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-top: 24px; text-align: center; box-shadow: var(--shadow-lg); }
.clr-head { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 16px; }
.clr-ring { --pct: 0; width: 80px; height: 80px; border-radius: 50%; background: conic-gradient(var(--gold) calc(var(--pct) * 1%), var(--line) 0); display: grid; place-items: center; position: relative; flex-shrink: 0; }
.clr-ring::before { content: ''; position: absolute; inset: 7px; border-radius: 50%; background: #fff; }
.clr-ring span { position: relative; font-weight: 800; font-size: 1.1rem; color: var(--navy-deep); }
.clr-head h3 { margin: 0; text-align: left; }
.clr-head p { margin: 0; font-size: .86rem; color: var(--muted); text-align: left; }
.clr-text { font-size: .92rem; color: var(--ink); line-height: 1.6; margin-bottom: 18px; text-align: left; }
.clr-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Demo section */
.demo-section { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); padding: 64px 32px; text-align: center; }
.demo-inner { max-width: 700px; margin: 0 auto; }
.demo-inner h2 { color: #fff; font-size: 1.8rem; margin-bottom: 12px; }
.demo-inner p { color: rgba(255,255,255,.82); font-size: 1rem; max-width: 50ch; margin: 0 auto 24px; }

/* CTA section */
.cta-section { background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft)); padding: 72px 32px; text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.cta-inner p { color: rgba(255,255,255,.82); font-size: 1rem; margin-bottom: 24px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Footer */
.land-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 40px 32px; }
.footer-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.footer-brand { margin-bottom: 16px; }
.footer-brand strong { color: #fff; font-size: 1.1rem; display: block; }
.footer-brand span { font-size: .82rem; color: var(--gold); }
.footer-disclaimer { font-size: .78rem; line-height: 1.6; margin-bottom: 12px; color: rgba(255,255,255,.5); }
.footer-copy { font-size: .74rem; color: rgba(255,255,255,.35); margin: 0; }

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 24px; }
.tag-cloud span { background: var(--navy-tint); color: var(--navy-deep); padding: 5px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600; }

/* Nav scrolled state */
.land-nav.scrolled { box-shadow: 0 2px 20px rgba(7,59,102,.1); }

/* Checklist question number */
.cl-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .78rem; }

/* Nav inner */
.land-nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy-deep); }
.nav-brand img { height: 34px; }
.nav-brand small { display: block; font-size: .68rem; color: var(--gold); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-link { font-size: .88rem; font-weight: 600; color: var(--muted); transition: color .15s; }
.nav-link:hover { color: var(--navy-deep); }

/* Responsive extras */
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 32px; }
  .hero-text { min-width: 0; }
  .hero-proof { justify-content: center; }
  .hero-visual { min-width: 0; }
  .hero-mockup { max-width: 340px; }
  .nav-links .nav-link { display: none; }
  .mg-label { flex: 0 0 70px; font-size: .65rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ==========================================================================
   HTML-to-CSS Adapters — match HTML structure to CSS styles
   ========================================================================== */

/* Section alternate background */
.section-alt { background: #fff; padding: 80px 24px; max-width: 100%; }
.section-alt .deliver-grid,
.section-alt .section-title,
.section-alt .section-sub { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* Pain items — HTML uses <i> + <span>, not .icon + h3 + p */
.pain-item { display: flex; align-items: center; gap: 14px; }
.pain-item > i { color: var(--high); font-size: 1.1rem; flex-shrink: 0; }
.pain-item > span { font-size: .92rem; color: var(--ink); font-weight: 500; }

/* Deliverable items — HTML uses .di-icon with <i>, h4, p */
.di-icon { width: 52px; height: 52px; background: var(--gold-soft); color: var(--gold); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 16px; flex-shrink: 0; }
.deliver-item h4 { font-size: 1rem; margin-bottom: 6px; }

/* Audience cards — HTML uses .ac-icon */
.ac-icon { width: 52px; height: 52px; background: var(--navy-tint); color: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 16px; }
.audience-card h4 { font-size: 1.1rem; margin-bottom: 8px; }

/* Steps — HTML uses .step-num + .step-icon + h4 + p */
.step-num { width: 36px; height: 36px; background: var(--gold); color: var(--navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; margin: 0 auto 10px; box-shadow: 0 0 0 6px var(--bg); position: relative; z-index: 1; }
.step-icon { color: var(--navy-soft); font-size: 1.5rem; margin-bottom: 10px; }
.step-item h4 { font-size: 1rem; margin-bottom: 4px; }

/* Checklist — HTML uses cl-q with span.cl-num + span.cl-text + div.cl-opts */
.cl-q { display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.cl-text { flex: 1; min-width: 200px; font-weight: 600; color: var(--navy-deep); font-size: .92rem; line-height: 1.4; padding-top: 3px; }
.cl-opts { display: flex; gap: 14px; flex-wrap: wrap; }
.cl-opts label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: .86rem; font-weight: 500; color: var(--ink); }
.cl-opts input[type="radio"] { accent-color: var(--navy); }

/* Hero text (adapter for .hero-text matching .hero-content) */
.hero-text h1 { color: #fff; font-size: 3rem; line-height: 1.1; margin-bottom: 20px; }
.hero-text p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 48ch; margin-bottom: 28px; }
