/* =============================================================
   Hootnotes V3 — Brand-True
   Strictly follows official brand guidelines v1.0
   Palette: #59D128 / #44369A / #1D1D1D / #F5FAFC / #FFFFFF / #C7CBD8
   Type: Work Sans (headings) + Lato (body)
   ============================================================= */

:root {
  /* Brand palette — exact values from guidelines */
  --green:        #59D128;
  --green-dk:     #46a81f;
  --green-tint:   #e8f8de;   /* derived: ~10% green for soft fills */
  --purple:       #44369A;
  --purple-dk:    #372b7c;
  --purple-tint:  #ece9f5;   /* derived: ~10% for soft fills */
  --black:        #1D1D1D;
  --white:        #FFFFFF;
  --gray:         #C7CBD8;
  --neutral:      #F5FAFC;
  --ink-muted:    #5a5a5e;

  /* Type */
  --sans: 'Work Sans', system-ui, -apple-system, sans-serif;
  --body: 'Lato', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.2,.6,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

::selection { background: var(--green); color: var(--black); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ==================== SHARED TYPE ==================== */
.eyebrow {
  font-family: var(--body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dk);
  display: inline-block;
  margin-bottom: 20px;
}
.eyebrow--light { color: var(--green); }

.section-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 980px;
  margin-bottom: 28px;
}
.section-title--light { color: var(--white); }

.hl {
  position: relative;
  display: inline;
  padding: 0 2px;
}
.hl--green { color: var(--green); }
.hl--purple { color: var(--purple); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease); }

.btn--green {
  background: var(--green);
  color: var(--black);
}
.btn--green:hover {
  background: var(--green-dk);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(89,209,40,0.6);
}
.btn--green:hover svg { transform: translateX(3px); }

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--purple);
  transform: translateY(-1px);
}
.btn--dark:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--ghost:hover {
  background: var(--black);
  color: var(--white);
}

.btn--sm { font-size: 14px; padding: 11px 20px; }
.btn--lg { font-size: 16px; padding: 16px 28px; }
.btn--xl { font-size: 17px; padding: 20px 32px; }

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.header.is-scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--neutral);
  box-shadow: 0 4px 24px -12px rgba(29,29,29,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}
.header__nav {
  display: flex;
  gap: 36px;
}
.header__link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
  transition: color .2s var(--ease);
}
.header__link:hover { color: var(--green-dk); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--white);
  overflow: hidden;
}
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.decor-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.decor-dot--green { background: var(--green); }
.decor-dot--purple { background: var(--purple); }
.decor-dot--1 { width: 12px; height: 12px; top: 18%; left: 6%; animation: float 8s ease-in-out infinite; }
.decor-dot--2 { width: 10px; height: 10px; top: 68%; left: 48%; animation: float 11s ease-in-out infinite 1s; }
.decor-dot--3 { width: 14px; height: 14px; top: 78%; right: 10%; animation: float 9s ease-in-out infinite 2s; }
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-20px) translateX(10px); }
}

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

.hero__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
}
.hero__subhead {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 14px;
  max-width: 600px;
}
.hero__subhead strong { font-weight: 700; }
.hero__lede {
  font-family: var(--body);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 580px;
  margin-bottom: 18px;
}
.hero__note-italic {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  perspective: 1200px;
}
.hero__card {
  background: var(--white);
  border: 1px solid var(--neutral);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(29,29,29,0.04),
    0 30px 60px -20px rgba(68,54,154,0.18),
    0 10px 30px -10px rgba(29,29,29,0.1);
  transform: rotate(1deg);
  transition: transform .5s var(--ease);
}
.hero__card:hover { transform: rotate(0deg) translateY(-4px); }
.hero__card-bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: var(--neutral);
  border-bottom: 1px solid #e7ebef;
}
.hero__card-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray);
}
.hero__card-bar span:first-child { background: var(--green); }
.hero__card-bar span:nth-child(2) { background: var(--purple); }
.hero__card img {
  width: 100%;
  display: block;
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px -10px rgba(29,29,29,0.4);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.4); }
}

/* ==================== PROBLEM (PURPLE) ==================== */
.problem {
  background: var(--purple);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(89,209,40,0.10), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.04), transparent 40%);
  pointer-events: none;
}
.problem .container { position: relative; }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.problem__grid--two { grid-template-columns: repeat(2, 1fr); }

.pcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all .35s var(--ease);
  position: relative;
}
.pcard:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--green);
  transform: translateY(-4px);
}
.pcard__num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 28px;
  color: var(--green);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.pcard p {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}
.pcard strong { color: var(--white); font-weight: 700; }

.problem__context {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 820px;
  margin-top: 40px;
  font-style: italic;
}

.problem__bridge {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem__bridge-lead {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--white);
  max-width: 780px;
  letter-spacing: -0.01em;
}
.problem__bridge-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.problem__bridge-aside {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ==================== GUIDE ==================== */
.guide {
  background: var(--white);
  padding: 120px 0;
}
.guide__showcase {
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eaeef2;
  box-shadow:
    0 1px 0 rgba(29,29,29,0.04),
    0 30px 60px -20px rgba(68,54,154,0.15),
    0 10px 30px -10px rgba(29,29,29,0.08);
}
.guide__showcase img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.guide__body {
  margin-top: 64px;
  max-width: 1100px;
}
.guide__label {
  font-family: var(--body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-block;
  padding: 8px 16px;
  background: var(--purple-tint);
  border-radius: 40px;
  margin-bottom: 28px;
}

.guide__contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
}
.guide__contrast::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid #eaeef2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--purple);
  box-shadow: 0 8px 20px -10px rgba(68,54,154,0.2);
  z-index: 2;
}

.gcard {
  background: var(--white);
  border: 1px solid #eaeef2;
  border-radius: 20px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .35s var(--ease);
}
.gcard--muted {
  background: var(--neutral);
  border-color: #e3e7ec;
}
.gcard--muted p {
  color: var(--ink-muted);
  font-family: var(--body);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
}
.gcard--accent {
  background: linear-gradient(135deg, #ffffff 0%, var(--green-tint) 100%);
  border-color: var(--green);
  box-shadow: 0 24px 48px -24px rgba(89,209,40,0.35);
  position: relative;
}
.gcard--accent::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--green);
  border-radius: 20px 0 0 20px;
}
.gcard--accent p {
  color: var(--black);
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.gcard--accent p strong {
  font-weight: 700;
}
.gcard:hover {
  transform: translateY(-3px);
}
.gcard--accent:hover {
  box-shadow: 0 30px 56px -20px rgba(89,209,40,0.45);
}

.gcard__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gcard__icon--muted {
  background: var(--gray);
  color: var(--white);
}
.gcard__icon--accent {
  background: var(--green);
  color: var(--black);
}

.guide__support {
  font-family: var(--body);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 860px;
  padding-left: 20px;
  border-left: 3px solid var(--purple-tint);
}

.guide__cta {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.guide__cta-aside {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  color: var(--purple);
}

/* ==================== SUCCESS ==================== */
.success {
  background: var(--neutral);
  padding: 120px 0;
}
.success__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  max-width: 1080px;
}
.success__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid #eaeef2;
  border-radius: 16px;
  padding: 24px 26px;
  transition: all .35s var(--ease);
}
.success__item:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -16px rgba(89,209,40,0.3);
}
.success__check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.success__item p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--black);
}
.success__cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ==================== FAILURE ==================== */
.failure {
  background: var(--white);
  padding: 120px 0;
}
.failure__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.fcard {
  background: var(--neutral);
  border: 1px solid #eaeef2;
  border-left: 4px solid var(--purple);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .35s var(--ease);
}
.fcard:hover {
  border-left-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(68,54,154,0.2);
}
.fcard__num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 24px;
  color: var(--purple);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.fcard p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--black);
}

/* ==================== PLAN ==================== */
.plan {
  background: var(--neutral);
  padding: 120px 0;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps__grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--gray) 0, var(--gray) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step {
  background: var(--white);
  border: 1px solid #eaeef2;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  z-index: 1;
  transition: all .35s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 20px 40px -20px rgba(89,209,40,0.25);
}
.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px var(--neutral);
}
.step h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.step p {
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}

.steps__cta {
  margin-top: 48px;
  display: flex;
  justify-content: flex-start;
}

/* ==================== PROOF ==================== */
.proof {
  background: var(--white);
  padding: 120px 0;
}
.quote {
  background: var(--neutral);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid #eaeef2;
  position: relative;
  max-width: 980px;
  margin-top: 40px;
  box-shadow: 0 30px 60px -30px rgba(68,54,154,0.12);
}
.quote__mark {
  color: var(--green);
  opacity: 0.35;
  margin-bottom: 16px;
}
.quote blockquote {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--black);
  letter-spacing: -0.005em;
}
.quote blockquote p { margin-bottom: 0; }

.proof__cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.proof__cta-aside {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-muted);
}

/* ==================== CTA BAND (GREEN) ==================== */
.cta-band {
  background: var(--green);
  color: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: var(--purple);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -120px;
  width: 360px; height: 360px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.cta-band__copy h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}
.cta-band__copy p {
  font-family: var(--body);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(29,29,29,0.82);
  max-width: 520px;
  margin-bottom: 8px;
}
.cta-band__badges-line {
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: var(--black) !important;
  letter-spacing: 0.02em;
  margin-top: 14px !important;
}
.cta-band__note {
  font-family: var(--body) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: rgba(29,29,29,0.78) !important;
  margin-top: 6px !important;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.cta-band__aside {
  font-family: var(--body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(29,29,29,0.72);
  line-height: 1.5;
  max-width: 360px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__logo img { filter: brightness(0) invert(1); }
.footer__tag {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: all .25s var(--ease);
}
.footer__social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
  transform: translateY(-2px);
}
.footer__legal {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: right;
}

/* ==================== REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.pcard:nth-child(1).reveal { transition-delay: 0ms; }
.pcard:nth-child(2).reveal { transition-delay: 100ms; }
.fcard:nth-child(1).reveal { transition-delay: 0ms; }
.fcard:nth-child(2).reveal { transition-delay: 100ms; }
.fcard:nth-child(3).reveal { transition-delay: 200ms; }
.step:nth-child(1).reveal { transition-delay: 0ms; }
.step:nth-child(2).reveal { transition-delay: 100ms; }
.step:nth-child(3).reveal { transition-delay: 200ms; }
.success__item:nth-child(1).reveal { transition-delay: 0ms; }
.success__item:nth-child(2).reveal { transition-delay: 80ms; }
.success__item:nth-child(3).reveal { transition-delay: 160ms; }
.success__item:nth-child(4).reveal { transition-delay: 240ms; }
.success__item:nth-child(5).reveal { transition-delay: 320ms; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero { padding: 140px 0 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero__visual { max-width: 560px; }

  .problem { padding: 90px 0; }
  .problem__grid,
  .problem__grid--two { grid-template-columns: 1fr; gap: 16px; }

  .guide { padding: 90px 0; }
  .guide__contrast { grid-template-columns: 1fr; gap: 28px; }
  .guide__contrast::after {
    content: "↓";
    top: 50%;
    left: 50%;
  }

  .success { padding: 90px 0; }
  .success__list { grid-template-columns: 1fr; }

  .failure { padding: 90px 0; }
  .failure__grid { grid-template-columns: 1fr; }

  .plan { padding: 90px 0; }
  .steps__grid { grid-template-columns: 1fr; gap: 16px; }
  .steps__grid::before { display: none; }

  .proof { padding: 90px 0; }

  .cta-band { padding: 80px 0; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 32px; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer__brand { justify-content: center; flex-wrap: wrap; }
  .footer__legal { text-align: center; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  .header__nav { display: none; }
  .header__inner { gap: 12px; }

  .hero { padding: 120px 0 64px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__badge { left: 0; bottom: -12px; font-size: 12px; }

  .pcard { padding: 28px 24px; }
  .pcard__num { font-size: 24px; }

  .guide__showcase img { aspect-ratio: 4 / 3; }

  .success__item { padding: 20px 22px; }

  .fcard { padding: 26px 22px; }

  .step__num { width: 54px; height: 54px; font-size: 24px; }

  .quote { padding: 28px 24px; }

  .cta-band__actions .btn { width: 100%; justify-content: center; }
  .problem__bridge-cta .btn,
  .guide__cta .btn,
  .proof__cta .btn { width: 100%; justify-content: center; }
}
