/* =========================================================
   ABACADA · Sections CSS
   ========================================================= */

/* ───────── NAV ───────── */
/* ───────── ANNOUNCEMENT BAR ───────── */
.announcement-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
  text-align: center;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.02em;
  z-index: 1000;
  position: relative;
}

.announcement-bar strong {
  color: var(--orange);
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 11px;
    padding: 8px 10px;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 2px solid transparent;
}

.nav[data-scrolled="1"] {
  background: rgba(255, 247, 230, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--ink);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.logo-sticker {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}

.logo:hover .logo-sticker {
  transform: rotate(-3deg) scale(1.05);
}

/* ───────── TOGGLE BUTTON ───────── */
.nav-toggle-btn {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 3px 3px 0 0 var(--ink);
  cursor: pointer;
  transition: all .2s ease;
  z-index: 100;
}

.nav-toggle-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 0 var(--ink);
}

.nav-toggle-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 0 0 0 0 var(--ink);
}

.toggle-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
}

.hamburger-icon {
  width: 18px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--ink);
  border-radius: 99px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animação do Hamburger para X */
.nav-toggle-btn.is-active .hamburger-icon span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle-btn.is-active .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle-btn.is-active .hamburger-icon span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle-btn {
    display: flex;
  }

  .logo-sticker {
    background: #fff;
    padding: 8px;
    border-radius: 14px;
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 0 var(--ink);
  }
}

/* ───────── VIDEO HOME ───────── */
.section-video-home {
  padding: 80px 0;
  background: var(--paper);
}

.video-container {
  max-width: 960px;
  margin: 0 auto;
  border: 4px solid var(--ink);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 16px 16px 0 0 var(--ink);
  background: transparent;
  transition: transform 0.3s ease;
  position: relative;
}

.video-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--ink);
  color: #fff;
  padding: 6px 14px;
  border-radius: 99px;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.2);
}

.video-container:hover {
  transform: translate(-4px, -4px);
  box-shadow: 20px 20px 0 0 var(--ink);
}

.home-video-element {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 768px) {
  .section-video-home {
    padding: 40px 0;
  }
  .video-container {
    border-radius: 20px;
    box-shadow: 8px 8px 0 0 var(--ink);
    border-width: 3px;
  }
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink-2);
  transition: color .15s;
}

.nav-links a:hover {
  color: var(--ink);
}



.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  z-index: 40;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
}

.mobile-nav-links a {
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-cta-btn {
    display: none;
  }
}

/* ───────── HERO ───────── */
.hero {
  position: relative;
  padding: 64px 0 96px;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 201, 60, .35), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(46, 196, 163, .25), transparent 50%),
    var(--cream);
  overflow: hidden;
}

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

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }
}


.hero-h1 {
  font-size: clamp(25px, 6.4vw, 60px);
  letter-spacing: -0.035em;
  margin-top: 24px;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-2);
  max-width: 520px;
  margin-top: 24px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-size: 14px;
  color: var(--ink-2);
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero-trust {
    margin-top: 24px;
    gap: 10px;
  }
}

.hero-trust-faces {
  display: flex;
  align-items: center;
}

.hero-trust-faces>* {
  border: 2px solid var(--paper);
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper);
}

/* Hero visual — bento-style floating cards */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  min-height: 520px;
}

@media (max-width: 600px) {
  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    gap: 16px;
  }
}

.hero-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 6px 6px 0 0 var(--ink);
  padding: 24px;
  position: relative;
}

@media (max-width: 600px) {
  .hero-card {
    padding: 16px;
    transform: none !important;
    box-shadow: 4px 4px 0 0 var(--ink);
  }
}

.hero-card--a {
  grid-row: 1 / 3;
  background: var(--yellow-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-2deg);
}

.hero-card--b {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: rotate(1.5deg);
  width: 100%;
}

@media (max-width: 600px) {
  .hero-card--b {
    transform: none;
  }
}


.hero-card--c {
  background: #FFF !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  transform: rotate(-1deg);
}

.hero-card--d {
  grid-column: 1 / 3;
  background: var(--paper);
  padding: 20px 24px;
  transform: rotate(0.8deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 600px) {
  .hero-card--d {
    grid-column: 1;
  }
}

.hero-card-text-group {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 600px) {
  .hero-card-text-group {
    font-size: 15px;
    gap: 8px;
  }
}

.hero-emoji {
  font-size: 38px;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.15));
}

@media (max-width: 600px) {
  .hero-emoji {
    font-size: 28px;
  }
}

.hero-sylLine {
  display: flex;
  gap: 10px;
  justify-content: center;
}


.progress-bar {
  margin-top: 8px;
  height: 10px;
  background: var(--cream-2);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar div {
  height: 100%;
  background: var(--green);
  border-right: 1.5px solid var(--ink);
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-deco--1 {
  top: 80px;
  left: 46%;
  transform: rotate(-15deg);
}

.hero-deco--2 {
  bottom: 100px;
  left: 2%;
}

.hero-deco--3 {
  top: 30%;
  right: -20px;
}

.hero-deco--4 {
  bottom: 15%;
  right: 10%;
}


@media (max-width: 960px) {
  .hero-deco--1 {
    top: 40px;
    left: 5%;
  }

  .hero-deco--4 {
    bottom: 10%;
    right: 5%;
  }

  .hero-deco--2,
  .hero-deco--3 {
    display: none;
  }
}


/* Hero editorial variant */
.hero--editorial {
  background: var(--cream);
  padding-top: 100px;
  padding-bottom: 120px;
}

.hero-ed-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-ed-h1 {
  font-size: clamp(54px, 10vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 48px;
}

.ed-em {
  color: var(--orange);
  font-style: normal;
  font-family: var(--f-display);
}

.ed-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.hero-ed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

@media (max-width: 900px) {
  .hero-ed-grid {
    grid-template-columns: 1fr;
  }
}

.hero-ed-sub {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 440px;
}

.hero-ed-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-self: end;
}

@media (max-width: 900px) {
  .hero-ed-ctas {
    justify-self: start;
  }
}

/* ───────── PROBLEM ───────── */
.section-problem {
  background: var(--cream);
}

.problem-grid {
  gap: 22px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  min-height: 220px;
  position: relative;
}

.problem-card h3 {
  font-size: 22px;
}

.problem-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.problem-card-x {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--ink);
  opacity: .35;
}

/* ───────── SOLUTION ───────── */
.section-solution {
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 960px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.solution-h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin-top: 18px;
}

.solution-lead {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 500px;
}

.solution-pillars {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 540px) {
  .solution-pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  background: var(--cream);
  box-shadow: 3px 3px 0 0 var(--ink);
}

.pillar-ic {
  font-size: 28px;
  line-height: 1;
}

.pillar h4 {
  font-size: 16px;
  font-family: var(--f-display);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}

.solution-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 40px 28px;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.flow-step-box {
  padding: 14px 28px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  box-shadow: 4px 4px 0 0 var(--ink);
  text-align: center;
}

@media (max-width: 600px) {
  .flow-step-box {
    font-size: 22px;
    padding: 10px 20px;
  }

  .flow-step--wide .flow-step-box {
    font-size: 15px;
  }
}

.flow-step-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.flow-arrow {
  transform: rotate(90deg);
}

.solution-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-2);
  font-style: italic;
  justify-content: center;
}

/* Banner de estatística centralizado na base da seção Solution */
.solution-stat-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  padding: 24px 36px;
  background: var(--ink);
  border-radius: 999px;
  border: 2px solid var(--ink);
  flex-wrap: wrap;
}

.solution-stat-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 32px;
  border-right: 1.5px solid rgba(255, 253, 247, .2);
}

.solution-stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 52px;
  color: var(--yellow);
  line-height: 1;
}

.solution-stat-lbl {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.4;
}

.solution-stat-quote {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 253, 247, .8);
  max-width: 420px;
}

@media (max-width: 680px) {
  .solution-stat-banner {
    border-radius: var(--r-lg);
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .solution-stat-inner {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1.5px solid rgba(255, 253, 247, .2);
    padding-bottom: 20px;
  }
}

/* ───────── HOW IT WORKS ───────── */
.section-steps {
  background: var(--cream);
}

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

.step-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 5px 5px 0 0 var(--ink);
  transition: transform .15s;
}

.step-row:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 var(--ink);
}

@media (max-width: 860px) {
  .step-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
}

.step-n {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.03em;
  box-shadow: 4px 4px 0 0 var(--ink);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.step-head h3 {
  font-size: 26px;
}

.step-body p {
  color: var(--ink-2);
  max-width: 560px;
}

.step-visual {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 260px;
}

@media (max-width: 860px) {
  .step-visual {
    justify-content: flex-start;
  }
}

.step-chip {
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  box-shadow: 2px 2px 0 0 var(--ink);
}

/* ───────── BENEFITS ───────── */
.section-benefits {
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .15s;
}

.benefit-card:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
}

.benefit-k {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 6px;
}

.benefit-lbl {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.5;
  opacity: .85;
  margin-top: 4px;
}

/* ───────── WHO ───────── */
.section-who {
  background: var(--cream);
}

.who-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  gap: 16px;
  transition: transform .2s;
}

.who-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 0 var(--ink);
}

.who-ill {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .35);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
}

.card--green .who-ill,
.card--blue .who-ill {
  background: rgba(0, 0, 0, .12);
}

.who-card h3 {
  font-size: 26px;
}

.who-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.who-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}

.card--green .bullet-dot,
.card--blue .bullet-dot {
  background: var(--paper);
}

.who-link {
  font-family: var(--f-display);
  font-weight: 600;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1.5px dashed currentColor;
  display: inline-block;
}

/* ───────── TESTIMONIALS ───────── */
.section-testi {
  background: var(--cream-2);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.testi-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
}

.testi-rating {
  display: flex;
  gap: 4px;
}

.testi-q {
  font-size: 17px;
  line-height: 1.5;
  flex: 1;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1.5px solid var(--ink);
}

.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.testi-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
}

.testi-role {
  font-size: 12px;
  color: var(--ink-3);
}

/* ───────── COURSE ───────── */
.section-course {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-course h2,
.section-course h3 {
  color: var(--cream);
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media (max-width: 960px) {
  .course-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.course-h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin-top: 18px;
}

.course-sub {
  color: rgba(255, 253, 247, .75);
  font-size: 18px;
  max-width: 460px;
  margin-top: 20px;
}

.course-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.course-meta-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1.5px solid rgba(255, 253, 247, .2);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .04);
}

.course-meta-ic {
  font-size: 22px;
}

.course-meta-k {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
}

.course-meta-v {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  margin-top: 2px;
}

.course-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.section-course .btn--ghost {
  color: var(--cream);
  border-color: var(--cream);
}

.section-course .btn--ghost:hover {
  background: rgba(255, 253, 247, .1);
  box-shadow: 3px 3px 0 0 var(--cream);
}

.course-right {
  position: relative;
}

.course-card {
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  box-shadow: 8px 8px 0 0 var(--orange);
  border-radius: var(--r-lg);
  transform: rotate(-1.5deg);
}

.course-ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.course-ticket-h {
  font-size: 22px;
  margin-bottom: 18px;
}

.course-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.course-li {
  display: flex;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1.5px dashed rgba(31, 27, 22, .2);
}

.course-li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.course-li-n {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
}

.course-li-t {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.course-li-d {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}

.course-price {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-price-k {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
}

.course-price-v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 30px;
}

.course-price-v span {
  font-size: 13px;
  opacity: .6;
  font-weight: 500;
}

.course-price-tag {
  padding: 8px 14px;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  box-shadow: 3px 3px 0 0 var(--ink);
  transform: rotate(4deg);
}

.course-price-tag b {
  font-size: 14px;
}

.course-floater {
  position: absolute;
  top: -20px;
  right: -10px;
  z-index: 2;
}

/* ───────── FAQ ───────── */
.section-faq {
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .15s;
}

.faq-item.is-open {
  box-shadow: 4px 4px 0 0 var(--ink);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  gap: 20px;
}

.faq-plus {
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  flex-shrink: 0;
  line-height: 1;
}

.faq-a {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 680px;
}

/* ───────── FINAL CTA ───────── */
.section-cta {
  background: var(--cream);
  padding: 60px 0 96px;
}

.cta-card {
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 32px;
  box-shadow: 8px 8px 0 0 var(--ink);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 780px) {
  .cta-card {
    padding: 48px 28px;
  }
}

.cta-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.cta-deco--1 {
  top: 32px;
  right: 40px;
  transform: rotate(15deg);
}

.cta-deco--2 {
  bottom: -20px;
  left: -20px;
  opacity: 0.7;
}

.cta-deco--3 {
  top: 50%;
  right: -40px;
  transform: rotate(-20deg);
}

@media (max-width: 780px) {
  .cta-deco--1 {
    top: 10px;
    right: 10px;
    transform: scale(0.7);
  }

  .cta-deco--3 {
    display: none;
  }
}


.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-h2 {
  font-size: clamp(40px, 5.6vw, 72px);
  margin-top: 20px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.cta-strike {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  opacity: .6;
}

.cta-em {
  color: var(--paper);
  font-style: italic;
  font-family: var(--f-display);
  font-weight: 700;
}

.cta-sub {
  margin-top: 24px;
  font-size: 18px;
  max-width: 560px;
}

.cta-form {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  max-width: 640px;
}

@media (max-width: 680px) {
  .cta-form {
    grid-template-columns: 1fr;
  }
}

.cta-form input {
  padding: 16px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}

.cta-form input:focus {
  box-shadow: 3px 3px 0 0 var(--ink);
  transform: translate(-1px, -1px);
}

.cta-alt {
  margin-top: 18px;
  font-size: 14px;
}

.cta-alt a {
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
}

/* ───────── FOOTER ───────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
  border-top: 2px solid var(--ink);
}

.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1.5px solid rgba(255, 253, 247, .15);
}

@media (max-width: 860px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
}

.foot-brand p {
  margin-top: 16px;
  color: rgba(255, 253, 247, .65);
  max-width: 340px;
  font-size: 14px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 680px) {
  .foot-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.foot-cols h5 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
  color: var(--yellow);
}

.foot-cols a {
  display: block;
  font-size: 14px;
  color: rgba(255, 253, 247, .7);
  margin-bottom: 8px;
  transition: color .15s;
}

.foot-cols a:hover {
  color: var(--cream);
}

.foot-bot {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 253, 247, .5);
}

/* ───────── MATERIALS ───────── */
.section-materials {
  background: var(--cream-2);
  padding: 80px 0;
}

.materials-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 60px;
  box-shadow: 12px 12px 0 0 var(--ink);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.materials-h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-top: 24px;
  line-height: 1.1;
}

.materials-sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 480px;
}

.materials-actions {
  margin-top: 40px;
}

.materials-visual {
  position: relative;
}

.materials-mockup {
  background: var(--ink);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 8px 8px 0 0 var(--orange);
}

.mockup-screen {
  background: #fff;
  border-radius: 12px;
  display: flex;
  padding: 20px;
  gap: 10px;
  overflow: hidden;
  height: 240px;
  align-items: center;
  justify-content: center;
}

.mockup-screen img {
  height: 180px;
  width: auto;
  object-fit: contain;
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.mockup-screen img:nth-child(2) {
  transform: rotate(5deg) translateY(-10px);
}

.mockup-screen img:nth-child(3) {
  transform: rotate(-2deg) translateY(10px);
}

@media (max-width: 960px) {
  .materials-card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
    text-align: center;
  }
  
  .materials-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .mockup-screen {
    height: 180px;
  }
  
  .mockup-screen img {
    height: 120px;
  }
}

/* ───────── INTERNAL PAGES RESPONSIVENESS ───────── */
.page-card-responsive {
  padding: 40px;
}

.page-h2-responsive {
  font-size: 32px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .wrap { padding: 0 16px; }

  .hero-h1 {
    font-size: clamp(24px, 7vw, 32px) !important;
  }
  
  .cta-h2 {
    font-size: clamp(22px, 6vw, 28px) !important;
  }

  .cta-price {
    font-size: 48px !important;
  }

  .page-card-responsive {
    padding: 24px 16px !important;
  }
  
  .page-h2-responsive {
    font-size: 20px !important;
    margin-top: 16px !important;
  }
  
  .cta-card {
    padding: 32px 16px !important;
    border-radius: 24px !important;
  }
}