:root {
  --navy: #17324d;
  --navy-2: #244a68;
  --green: #36a852;
  --green-dark: #23823d;
  --leaf: #73c55b;
  --yellow: #ffd34e;
  --coral: #ff7468;
  --sky: #dff4ff;
  --cream: #fffaf0;
  --paper: #ffffff;
  --ink: #1c3348;
  --muted: #607487;
  --line: #d9e6ee;
  --shadow: 0 20px 50px rgba(23, 50, 77, 0.13);
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 50, 77, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.17rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green);
  color: white;
  box-shadow: 0 8px 18px rgba(54, 168, 82, 0.26);
}

.header-link {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.header-link:hover, .header-link:focus { border-color: currentColor; }

.hero {
  position: relative;
  isolation: isolate;
  padding: 58px 0 72px;
  background:
    radial-gradient(circle at 6% 14%, rgba(255, 211, 78, 0.46) 0 70px, transparent 71px),
    radial-gradient(circle at 92% 9%, rgba(115, 197, 91, 0.28) 0 110px, transparent 111px),
    linear-gradient(160deg, #f0fbff 0%, #ffffff 48%, #f7fff2 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  right: -90px;
  bottom: -80px;
  border-radius: 50%;
  border: 36px solid rgba(255, 116, 104, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #e6f7e8;
  color: #1f7338;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--navy);
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  font-weight: 900;
}

.hero .lead {
  max-width: 690px;
  margin: 22px 0 14px;
  color: #38566f;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.identity-line {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #42b85c 0%, #269246 100%);
  box-shadow: 0 11px 0 #197333, 0 18px 28px rgba(35, 130, 61, 0.2);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-decoration: none;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover, .cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 13px 0 #197333, 0 20px 34px rgba(35, 130, 61, 0.25);
}

.cta:active {
  transform: translateY(7px);
  box-shadow: 0 4px 0 #197333;
}

.cta-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.journey-ribbon {
  position: absolute;
  z-index: 3;
  inset: 12px 20px auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(23, 50, 77, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 36px rgba(23, 50, 77, 0.12);
}

.journey-step {
  text-align: center;
  min-width: 0;
}

.journey-step span {
  display: block;
  font-size: 1.38rem;
}

.journey-step strong {
  display: block;
  color: var(--navy);
  font-size: 0.74rem;
}

.journey-step small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.25;
}

.journey-arrow { color: var(--green); font-weight: 900; }

.screen-stack {
  position: absolute;
  inset: 86px 0 0;
}

.phone {
  position: absolute;
  width: 230px;
  padding: 12px;
  border: 7px solid var(--navy);
  border-radius: 38px;
  background: var(--navy);
  box-shadow: var(--shadow);
  transform-origin: center bottom;
}

.phone:nth-child(1) { left: 0; top: 76px; transform: rotate(-8deg) scale(0.9); }
.phone:nth-child(2) { left: 50%; top: 0; z-index: 2; transform: translateX(-50%); }
.phone:nth-child(3) { right: 0; top: 76px; transform: rotate(8deg) scale(0.9); }

.phone-notch {
  width: 62px;
  height: 7px;
  margin: -2px auto 9px;
  border-radius: 9px;
  background: #718296;
}

.app-placeholder {
  min-height: 376px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 24px 18px;
  border: 2px dashed rgba(23, 50, 77, 0.25);
  border-radius: 25px;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbff 100%);
  text-align: center;
}

.app-placeholder .icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: var(--yellow);
  font-size: 2.25rem;
  box-shadow: 0 12px 24px rgba(255, 211, 78, 0.28);
}

.phone:nth-child(2) .icon { background: #d9f4df; }
.phone:nth-child(3) .icon { background: #ffe1dd; }

.app-placeholder strong { font-size: 1.05rem; }
.app-placeholder small { color: var(--muted); font-size: 0.74rem; }

.visual-caption {
  position: absolute;
  inset: auto 18px 0;
  margin: 0;
  padding: 13px 16px;
  border-radius: 15px;
  background: var(--navy);
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 12px 30px rgba(23, 50, 77, 0.18);
}

.development-note {
  position: absolute;
  z-index: 5;
  right: 8px;
  bottom: 66px;
  padding: 7px 10px;
  border-radius: 9px;
  background: #fff3bd;
  color: #765a00;
  font-size: 0.69rem;
  font-weight: 800;
  transform: rotate(-2deg);
}

.section { padding: 96px 0; }

.section-heading { max-width: 820px; margin: 0 auto 48px; }
.section-heading.center { text-align: center; }

.section-kicker {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
}

.section-subtitle {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.section-copy h2 { margin-bottom: 28px; }
.prose p { margin: 0 0 18px; }

.prose blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 6px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  background: #fff8d9;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.family-card {
  position: relative;
  margin: 0;
  padding: 12px;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.family-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 25px -18px -18px 25px;
  border-radius: 30px;
  background: var(--yellow);
}

.family-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 21px;
}

.family-card figcaption {
  padding: 14px 12px 8px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.mechanism { background: var(--cream); }

.comparison {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: stretch;
  gap: 18px;
  margin: 0 auto 38px;
}

.comparison-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 34px rgba(23, 50, 77, 0.07);
}

.comparison-card.connected { border-color: rgba(54, 168, 82, 0.35); background: #f2fff4; }

.comparison-label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3f6;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
}

.connected .comparison-label { background: #dff4e4; color: var(--green-dark); }
.comparison-card h3 { margin: 18px 0; font-size: 1.55rem; }
.comparison-card p { margin: 20px 0 0; color: var(--muted); }

.loose-pieces {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.loose-pieces span {
  padding: 13px;
  border: 2px dashed #cbd7de;
  border-radius: 13px;
  background: #fafcfd;
  text-align: center;
  transform: rotate(-1.5deg);
}

.loose-pieces span:nth-child(2n) { transform: rotate(1.5deg); }

.connected-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.connected-flow span {
  padding: 12px 14px;
  border-radius: 13px;
  background: white;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(54, 168, 82, 0.1);
}

.connected-flow b { color: var(--green); }

.comparison-arrow {
  display: grid;
  place-items: center;
  color: var(--coral);
  font-size: 2.5rem;
  font-weight: 900;
}

.explanation-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #e8f4fa;
  box-shadow: var(--shadow);
}

.explanation-card p { margin: 0 0 15px; }
.explanation-card p:last-child { margin-bottom: 0; }
.explanation-card strong { color: var(--yellow); }

.solution {
  position: relative;
  background: var(--navy);
  color: #e8f4fa;
  overflow: hidden;
}

.solution::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -180px;
  top: -140px;
  border-radius: 50%;
  background: rgba(255, 211, 78, 0.1);
}

.light-heading h2, .solution h3 { color: white; }
.light-heading .section-kicker { color: #a9e7b8; }
.light-heading .section-subtitle { color: #c9dae6; }

.lesson-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lesson-card {
  position: relative;
  padding: 18px 18px 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
}

.lesson-card::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 46%;
  z-index: 3;
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
}

.lesson-card:last-child::after { display: none; }

.lesson-number {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 6px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.screen-placeholder {
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.screen-placeholder .placeholder-icon { font-size: 3rem; }
.screen-placeholder small { color: #aabfcc; font-size: 0.72rem; }
.lesson-card h3 { margin: 22px 4px 10px; font-size: 1.45rem; }
.lesson-card p { margin: 0 4px; color: #c9dae6; }

.solution-summary {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 1.1rem;
}

.center-cta { margin-top: 36px; text-align: center; }

.cta-yellow {
  background: linear-gradient(180deg, #ffe375 0%, #ffc92d 100%);
  color: var(--navy);
  box-shadow: 0 11px 0 #d69e00, 0 18px 28px rgba(0, 0, 0, 0.2);
}

.cta-yellow:hover, .cta-yellow:focus-visible { box-shadow: 0 13px 0 #d69e00, 0 20px 34px rgba(0, 0, 0, 0.22); }

.benefits { background: #f7fbfd; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: white;
  box-shadow: 0 10px 28px rgba(23, 50, 77, 0.055);
}

.benefit-card > span {
  grid-row: 1 / 3;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: #eef9e9;
  font-size: 1.8rem;
}

.benefit-card:nth-child(2) > span { background: #e9f7ff; }
.benefit-card:nth-child(3) > span { background: #fff5cf; }
.benefit-card:nth-child(4) > span { background: #ffeae7; }
.benefit-card h3 { margin: 2px 0 8px; font-size: 1.18rem; }
.benefit-card p { margin: 0; color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  padding: 12px 12px 20px;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.gallery-placeholder {
  min-height: 240px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border: 2px dashed #b6cbd6;
  border-radius: 16px;
  background: linear-gradient(145deg, #f1fbff, #f8fff4);
  text-align: center;
}

.gallery-placeholder span { font-size: 3rem; }
.gallery-placeholder small { color: var(--muted); font-size: 0.67rem; font-weight: 900; }
.gallery-card h3 { margin: 18px 8px 7px; font-size: 1.08rem; }
.gallery-card p { margin: 0 8px; color: var(--muted); font-size: 0.92rem; }

.simple-steps { background: linear-gradient(180deg, #fffaf0, #fff); }

.steps-list {
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps-list li {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 36px;
}

.steps-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 62px;
  bottom: 6px;
  width: 3px;
  background: #cce8d1;
}

.steps-list li > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.steps-list h3 { margin: 4px 0 7px; font-size: 1.35rem; }
.steps-list p { margin: 0; color: var(--muted); }

.social-proof { padding-top: 72px; background: #eaf8ff; }

.proof-fallback {
  max-width: 820px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid #b8dae9;
  border-radius: var(--radius);
  background: white;
}

.proof-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  background: #e7f6eb;
  font-size: 2rem;
}

.proof-fallback h3 { margin: 0 0 6px; font-size: 1.25rem; }
.proof-fallback p { margin: 0; color: var(--muted); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { padding: 24px; border-radius: 20px; background: white; box-shadow: var(--shadow); }
.testimonial-card p { margin: 0 0 18px; }
.testimonial-card footer { display: grid; gap: 2px; color: var(--muted); font-size: 0.88rem; }
.testimonial-card strong { color: var(--navy); }

.receive-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.receive h2 { margin-bottom: 28px; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 12px 10px 46px; border-radius: 13px; background: #f4fbf5; font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 14px; top: 8px; color: var(--green); font-size: 1.3rem; font-weight: 900; }
.conditional-note { margin-top: 18px; color: var(--muted); font-size: 0.85rem; }

.product-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border-radius: 44% 56% 52% 48% / 46% 44% 56% 54%;
  background: #e8f8eb;
}

.product-device {
  width: 245px;
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  border: 9px solid var(--navy);
  border-radius: 42px;
  background: linear-gradient(180deg, #fff, #effaff);
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-3deg);
}

.product-device > span { font-size: 4rem; }
.product-device > strong { font-size: 1.4rem; color: var(--navy); }
.product-device > small { color: var(--muted); font-size: 0.7rem; }
.product-chip { position: absolute; padding: 10px 14px; border-radius: 999px; background: white; color: var(--navy); font-weight: 900; box-shadow: 0 10px 25px rgba(23, 50, 77, 0.14); }
.product-chip:nth-of-type(2) { top: 90px; right: 16px; }
.product-chip:nth-of-type(3) { bottom: 100px; left: 8px; }
.product-chip:nth-of-type(4) { right: 8px; bottom: 45px; }

.bonuses { background: var(--cream); }
.bonus-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.bonus-card { padding: 22px; border-radius: 18px; background: white; box-shadow: 0 10px 25px rgba(23, 50, 77, 0.07); }
.bonus-card > span { color: var(--green-dark); font-size: 0.72rem; font-weight: 900; }
.bonus-card h3 { margin: 12px 0 8px; font-size: 1.1rem; }
.bonus-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.offer-section {
  background: linear-gradient(145deg, #17324d 0%, #255677 100%);
  color: white;
}

.offer-wrap {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.offer-copy h2 { color: white; }
.offer-copy > p:not(.section-kicker) { max-width: 650px; color: #d7e7ef; font-size: 1.05rem; }
.light-kicker { color: #a9e7b8; }

.offer-route { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 26px; }
.offer-route span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.1); font-weight: 800; }
.offer-route b { color: var(--yellow); }

.price-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  background: white;
  color: var(--ink);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.price-label { display: block; color: var(--green-dark); font-weight: 900; }
.price-prefix { margin: 18px 0 0; color: var(--muted); }
.price { margin: 0; color: var(--navy); font-size: clamp(3rem, 6vw, 4.35rem); line-height: 1.1; font-weight: 900; letter-spacing: -0.06em; }
.price-detail { margin: 8px 0 24px; color: var(--muted); font-size: 0.88rem; }
.price-card .cta { width: 100%; }
.secure-note { margin: 22px 0 0; color: var(--muted); font-size: 0.78rem; }
.checkout-notice { margin: 18px 0 0; padding: 12px; border-radius: 12px; background: #fff3bd; color: #6d5400; font-size: 0.82rem; }

.guarantee { padding-top: 70px; padding-bottom: 70px; background: #f7fbfd; }
.guarantee-card { display: grid; grid-template-columns: 112px 1fr; gap: 32px; align-items: center; max-width: 980px; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: white; }
.guarantee-seal { width: 112px; height: 112px; display: grid; place-items: center; border: 8px double var(--green); border-radius: 50%; color: var(--green-dark); font-size: 3rem; font-weight: 900; }
.guarantee-card h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.guarantee-card p { margin: 14px 0 0; color: var(--muted); }
.guarantee-card .guarantee-note { font-size: 0.83rem; font-weight: 800; }

.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: white; overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 22px; border: 0; background: transparent; color: var(--navy); cursor: pointer; font: inherit; font-size: 1rem; font-weight: 900; text-align: left; }
.faq-question span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #eaf8ed; color: var(--green-dark); font-size: 1.25rem; transition: transform 180ms ease; }
.faq-question[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; color: var(--muted); }
.faq-answer p { margin: 0; }

.final-cta { padding: 38px 0 80px; }
.final-card { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 50px; border-radius: 32px; background: var(--green-dark); color: white; box-shadow: var(--shadow); }
.final-card h2 { color: white; }
.final-card p:not(.section-kicker) { max-width: 720px; margin-bottom: 0; color: #e4f5e8; }
.final-card .cta { min-width: 280px; }

.site-footer { padding: 48px 0; border-top: 1px solid var(--line); background: #f7fbfd; }
.footer-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; align-items: start; }
.footer-brand { margin-bottom: 12px; }
.footer-grid p { color: var(--muted); font-size: 0.84rem; }
.legal-copy p { margin-top: 0; }

[hidden] { display: none !important; }

/* Revisão enxuta: hierarquia, contraste e demonstração visual */
.hero-grid-revised {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 52px;
}

.hero-grid-revised .lead {
  max-width: 640px;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
}

.hero-grid-revised .lead strong { color: var(--green-dark); }

.one-belief {
  max-width: 650px;
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 6px solid var(--yellow);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(23, 50, 77, 0.07);
}

.soft-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-weight: 900;
  text-underline-offset: 5px;
}

.hero-family {
  position: relative;
  margin: 0;
  padding: 10px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-family::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -14px -14px 22px;
  border-radius: 28px;
  background: var(--yellow);
}

.hero-family img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
}

.hero-family figcaption {
  padding: 12px 8px 5px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.compact-section { padding-block: 72px; }

.pain-focus {
  max-width: 900px;
  text-align: center;
}

.pain-focus > p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.pain-highlight {
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px auto 0;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--navy);
  color: white;
  font-size: 1.08rem;
  box-shadow: var(--shadow);
}

.section-heading.center h2::after {
  content: "";
  width: 66px;
  height: 7px;
  display: block;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
}

.visual-comparison { align-items: center; }

.comparison-illustration {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 17px;
}

.visual-comparison .comparison-card { padding: 14px 14px 24px; }
.visual-comparison .comparison-card h3 { margin: 15px 10px 12px; font-size: 1.35rem; }
.visual-comparison .comparison-card p { margin: 16px 10px 0; }
.visual-comparison .comparison-label { margin-inline: 10px; }
.visual-comparison .loose-pieces,
.visual-comparison .connected-flow { margin-inline: 10px; }

.mechanism-statement {
  max-width: 880px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  margin: 42px auto 0;
  padding: 24px 28px;
  border-radius: 22px;
  background: var(--navy);
  color: #eaf5fb;
  box-shadow: var(--shadow);
}

.mechanism-statement > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--green);
  font-size: 2rem;
}

.mechanism-statement p { margin: 0; font-size: 1.05rem; }
.mechanism-statement strong { color: var(--yellow); }

.journey-mini {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px auto 0;
}

.journey-mini article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}

.journey-mini article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f6eb;
  color: var(--green-dark);
  font-weight: 900;
}

.journey-mini h3 { margin: 0 0 2px; font-size: 1rem; }
.journey-mini p { margin: 0; color: var(--muted); font-size: 0.86rem; }

.product-demo {
  margin-top: 92px;
  padding-top: 82px;
  border-top: 1px solid rgba(23, 50, 77, 0.12);
}

.demo-heading { margin-bottom: 28px; }

.mockup-stage {
  position: relative;
  width: min(100%, 670px);
  min-height: 555px;
  margin-inline: auto;
}

.product-demo .center-cta { margin-top: 34px; }
.product-demo .center-cta .cta-note { margin-top: 20px; }

.horizontal-steps {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.horizontal-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: white;
}

.horizontal-steps li:not(:last-child)::after { display: none; }
.horizontal-steps li > span { width: 54px; height: 54px; }

.offer-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.offer-includes li {
  position: relative;
  padding-left: 24px;
  color: #e6f2f8;
  font-weight: 800;
}

.offer-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a9e7b8;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero .lead, .identity-line { margin-inline: auto; }
  .hero-visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .split-grid, .receive-grid, .offer-wrap { grid-template-columns: 1fr; }
  .family-card { max-width: 650px; margin-inline: auto; }
  .lesson-path { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .lesson-card::after { content: "↓"; right: 50%; top: auto; bottom: -28px; transform: translateX(50%); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .product-visual { max-width: 620px; width: 100%; margin-inline: auto; }
  .final-card { grid-template-columns: 1fr; text-align: center; }
  .final-card .cta { justify-self: center; }
  .hero-grid-revised { grid-template-columns: 1fr; }
  .hero-family { max-width: 560px; margin-inline: auto; }
  .horizontal-steps { grid-template-columns: 1fr; max-width: 760px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1140px); }
  .header-inner { min-height: 64px; }
  .brand { font-size: 1rem; }
  .brand-mark { width: 38px; height: 38px; }
  .header-link { font-size: 0.84rem; }
  .hero { padding: 36px 0 54px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero .lead { font-size: 1.02rem; }
  .cta { width: 100%; min-height: 62px; padding-inline: 16px; }
  .hero-visual { min-height: 488px; }
  .journey-ribbon { inset-inline: 0; gap: 4px; padding: 11px 7px; }
  .journey-step strong { font-size: 0.65rem; }
  .journey-step small { display: none; }
  .screen-stack { inset-top: 73px; }
  .phone { width: 176px; padding: 8px; border-width: 5px; border-radius: 30px; }
  .phone:nth-child(1) { left: -26px; top: 102px; transform: rotate(-7deg) scale(0.78); }
  .phone:nth-child(2) { top: 20px; }
  .phone:nth-child(3) { right: -26px; top: 102px; transform: rotate(7deg) scale(0.78); }
  .app-placeholder { min-height: 305px; border-radius: 20px; padding-inline: 12px; }
  .app-placeholder .icon { width: 62px; height: 62px; font-size: 1.8rem; }
  .app-placeholder strong { font-size: 0.92rem; }
  .development-note { right: 0; bottom: 54px; }
  .visual-caption { inset-inline: 0; bottom: 0; font-size: 0.78rem; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 34px; }
  .split-grid { gap: 42px; }
  .family-card { transform: none; }
  .comparison { grid-template-columns: 1fr; }
  .comparison-arrow { transform: rotate(90deg); min-height: 32px; }
  .comparison-card { padding: 23px; }
  .explanation-card { padding: 24px 21px; }
  .benefit-grid, .gallery-grid, .testimonial-grid, .bonus-grid { grid-template-columns: 1fr; }
  .benefit-card { grid-template-columns: 52px 1fr; padding: 20px; }
  .benefit-card > span { width: 52px; height: 52px; }
  .gallery-placeholder { min-height: 210px; }
  .proof-fallback { grid-template-columns: 1fr; text-align: center; }
  .proof-icon { margin-inline: auto; }
  .product-visual { min-height: 440px; }
  .product-device { width: 215px; min-height: 365px; }
  .offer-wrap { gap: 38px; }
  .price-card { padding: 28px 18px; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .guarantee-seal { width: 92px; height: 92px; margin-inline: auto; }
  .final-card { padding: 34px 22px; }
  .final-card .cta { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .offer-route { justify-content: center; }
  .hero-grid-revised .hero-copy { text-align: left; }
  .hero-grid-revised .eyebrow { justify-content: flex-start; }
  .one-belief { margin-inline: 0; }
  .hero-family { transform: none; }
  .pain-highlight { align-items: flex-start; text-align: left; }
  .mechanism-statement { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 24px 20px; }
  .journey-mini { grid-template-columns: 1fr; }
  .product-demo { margin-top: 70px; padding-top: 62px; }
  .mockup-stage { min-height: 488px; }
  .offer-includes { grid-template-columns: 1fr; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Direção visual lúdica: formas orgânicas, cores primárias e interações táteis */
:root {
  --blue: #0066cc;
  --blue-dark: #004b99;
  --yellow: #ffd700;
  --yellow-dark: #e6c200;
  --coral: #ff6b6b;
  --teal: #4ecdc4;
  --navy: #17233c;
  --navy-2: #253557;
  --green: #4ecdc4;
  --green-dark: #087f78;
  --leaf: #4ecdc4;
  --sky: #dbeafe;
  --cream: #fffdf5;
  --ink: #24324b;
  --muted: #65738c;
  --line: #dce6f2;
  --shadow: 0 25px 50px -12px rgba(21, 48, 84, 0.16);
  --radius: 3rem;
  --pop: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
  background-color: #f9fbff;
  background-image: radial-gradient(rgba(0, 102, 204, 0.05) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  font-family: "Plus Jakarta Sans", "Trebuchet MS", Arial, sans-serif;
}

h1, h2, h3, .price {
  font-family: "Quicksand", "Trebuchet MS", sans-serif;
  letter-spacing: -0.045em;
}

.container { width: min(1200px, calc(100% - 40px)); }

.site-header {
  top: 0;
  padding: 12px 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.header-inner {
  min-height: 68px;
  padding: 8px 10px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 35px rgba(23, 35, 60, 0.1);
  backdrop-filter: blur(22px);
}

.brand-mark {
  border-radius: 1rem;
  background: var(--teal);
  box-shadow: 0 8px 0 #2aa89f;
}

.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav > a { color: #53627a; font-size: 0.84rem; font-weight: 800; text-decoration: none; }
.header-nav > a:not(.header-link):hover { color: var(--blue); }

.header-nav .header-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 6px 0 var(--blue-dark);
  color: white;
  transition: var(--pop);
}

.header-nav .header-link:hover { transform: translateY(-2px); }
.header-nav .header-link:active { transform: translateY(4px); box-shadow: none; }

.hero {
  min-height: 780px;
  padding: 72px 0 104px;
  background:
    radial-gradient(rgba(0, 102, 204, 0.055) 1.5px, transparent 1.5px),
    linear-gradient(145deg, #f4f9ff 0%, #fffdf2 56%, #effdfb 100%);
  background-size: 24px 24px, auto;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 0;
  border-radius: 44% 56% 63% 37% / 48% 42% 58% 52%;
  filter: blur(2px);
  animation: float-blob 6s ease-in-out infinite;
}

.hero::before {
  width: 330px;
  height: 330px;
  left: -110px;
  top: 120px;
  background: rgba(191, 219, 254, 0.72);
}

.hero::after {
  width: 300px;
  height: 300px;
  right: -82px;
  bottom: -70px;
  background: rgba(254, 240, 138, 0.65);
  animation-delay: -3s;
}

.hero-grid-revised {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: 76px;
}

.eyebrow {
  padding: 10px 16px;
  background: rgba(78, 205, 196, 0.17);
  color: #087f78;
}

.eyebrow::before { background: var(--teal); box-shadow: 0 0 0 5px rgba(78, 205, 196, 0.18); }

h1 {
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(3.6rem, 6.6vw, 6.9rem);
  line-height: 0.95;
}

.hero-grid-revised .lead { margin-top: 30px; color: #4c5d77; }
.hero-grid-revised .lead strong { color: var(--blue); }

.one-belief {
  margin: 26px 0 28px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 102, 204, 0.08);
  border-left: 7px solid var(--coral);
  border-radius: 0 2.5rem 2.5rem 0;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 45px rgba(30, 74, 120, 0.1);
}

.cta,
.soft-cta {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.05rem 2rem;
  border: 0;
  border-radius: 1.5rem;
  background: var(--yellow);
  box-shadow: 0 11px 0 var(--yellow-dark), 0 18px 30px rgba(167, 134, 0, 0.18);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  transition: var(--pop);
}

.cta:hover, .cta:focus-visible,
.soft-cta:hover, .soft-cta:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 0 var(--yellow-dark), 0 22px 38px rgba(167, 134, 0, 0.22);
}

.cta:active, .soft-cta:active { transform: translateY(4px); box-shadow: none; }

.hero-family {
  min-height: 540px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.hero-family::before { display: none; }

.hero-main-photo {
  position: absolute;
  inset: 35px 0 35px 44px;
  overflow: hidden;
  border: 12px solid white;
  border-radius: 3.5rem;
  background: white;
  box-shadow: 0 30px 60px rgba(29, 59, 94, 0.22);
  transform: rotate(2deg);
}

.hero-main-photo img,
.hero-family .hero-main-photo img {
  width: 100%;
  height: 100%;
  border-radius: 2.65rem;
  object-fit: cover;
}

.hero-mini-photo {
  position: absolute;
  z-index: 3;
  left: -20px;
  bottom: 0;
  width: 43%;
  overflow: hidden;
  border: 9px solid white;
  border-radius: 2.5rem;
  background: white;
  box-shadow: 0 22px 45px rgba(29, 59, 94, 0.24);
  transform: rotate(-6deg);
}

.hero-mini-photo img,
.hero-family .hero-mini-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.8rem;
  object-fit: cover;
}

.hero-float-badge {
  position: absolute;
  z-index: 4;
  top: 0;
  right: -30px;
  width: 9rem;
  height: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid white;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 18px 40px rgba(30, 129, 121, 0.25);
  color: var(--navy);
  line-height: 1;
  text-align: center;
  animation: float-badge 6s ease-in-out infinite;
}

.hero-float-badge strong { font-family: "Quicksand", sans-serif; font-size: 1.7rem; }
.hero-float-badge span { margin-top: 7px; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }

.hero-family figcaption {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 12px 30px rgba(29, 59, 94, 0.14);
  color: #53627a;
  font-weight: 800;
}

.section { padding-block: 96px; }
.section-heading { margin-bottom: 54px; }
.section-heading h2, .pain-focus h2 { font-size: clamp(2.4rem, 5vw, 4.7rem); }
.section-kicker { color: var(--blue); }
.section-heading.center h2::after { height: 9px; background: linear-gradient(90deg, var(--yellow), var(--coral), var(--teal)); }

.pain { background: transparent; }
.pain-focus {
  max-width: 980px;
  padding: 64px 70px;
  border: 1px solid rgba(0, 102, 204, 0.08);
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.pain-highlight {
  border-radius: 2rem;
  background: #fff1f1;
  color: #913e49;
}

.pain-highlight span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 1rem; background: white; }

.mechanism {
  position: relative;
  background-color: #fffdf5;
  background-image: radial-gradient(rgba(255, 107, 107, 0.07) 1.5px, transparent 1.5px);
  background-size: 25px 25px;
}

.comparison { gap: 24px; }
.comparison-card {
  border-radius: 3rem;
  box-shadow: 0 18px 45px rgba(36, 50, 75, 0.09);
  transition: var(--pop);
}

.comparison-card:hover { transform: translateY(-8px) scale(1.025) rotate(0.4deg); box-shadow: var(--shadow); }
.comparison-card.connected { border-color: rgba(78, 205, 196, 0.6); background: #effcfb; }
.comparison-illustration { border-radius: 2rem; }
.comparison-label { border-radius: 999px; background: #eaf2fb; color: var(--blue-dark); }
.connected .comparison-label { background: #d9f7f4; color: #087f78; }
.comparison-arrow { width: 58px; height: 58px; border-radius: 50%; background: var(--coral); color: white; box-shadow: 0 8px 0 #d94b4b; }
.loose-pieces span { border-radius: 1rem; }
.connected-flow span { border-radius: 1.2rem; }
.connected-flow b { color: var(--coral); }

.mechanism-statement {
  border-radius: 3.5rem;
  background-color: var(--blue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
}

.mechanism-statement > span { border-radius: 1.5rem; background: var(--teal); }
.mechanism-statement strong { color: var(--yellow); }

.journey-mini article,
.horizontal-steps li {
  border-radius: 2.5rem;
  box-shadow: 0 14px 35px rgba(36, 50, 75, 0.08);
  transition: var(--pop);
}

.journey-mini article:hover,
.horizontal-steps li:hover { transform: translateY(-6px) rotate(0.6deg); box-shadow: var(--shadow); }
.journey-mini article > span, .horizontal-steps li > span { background: #d9f7f4; color: #087f78; }

.product-demo {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 76px 38px 66px;
  border: 0;
  border-radius: 4rem;
  background: var(--blue);
  box-shadow: 0 30px 70px rgba(0, 73, 153, 0.25);
}

.product-demo::before,
.product-demo::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.42;
  pointer-events: none;
}

.product-demo::before { left: -90px; top: -110px; background: var(--teal); }
.product-demo::after { right: -80px; bottom: -130px; background: var(--yellow); }
.product-demo > * { position: relative; z-index: 1; }
.product-demo .demo-heading h2 { color: white; }
.product-demo .section-kicker { color: var(--yellow); }
.product-demo .section-heading.center h2::after { background: var(--teal); }
.product-demo .mockup-stage { width: min(100%, 720px); }
.product-demo .cta-note { color: rgba(255, 255, 255, 0.82); }

.benefits {
  background-color: #f3f8ff;
  background-image: radial-gradient(rgba(0, 102, 204, 0.05) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.benefit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.benefit-card {
  display: block;
  min-height: 280px;
  padding: 26px;
  border-radius: 3rem;
  transition: var(--pop);
}

.benefit-card:nth-child(1) { background: #eef6ff; }
.benefit-card:nth-child(2) { background: #fff9da; }
.benefit-card:nth-child(3) { background: #eafbf9; }
.benefit-card:nth-child(4) { background: #fff0f0; }
.benefit-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow); }
.benefit-card > span { width: 68px; height: 68px; margin-bottom: 28px; border-radius: 1.5rem; background: white !important; box-shadow: 0 12px 30px rgba(36, 50, 75, 0.1); }
.benefit-card h3 { margin-top: 0; font-size: 1.32rem; }

.simple-steps { background: white; }
.horizontal-steps li { min-height: 155px; background: #fff; }
.horizontal-steps li:nth-child(1) { border-bottom: 7px solid var(--blue); }
.horizontal-steps li:nth-child(2) { border-bottom: 7px solid var(--yellow); }
.horizontal-steps li:nth-child(3) { border-bottom: 7px solid var(--coral); }

.social-proof { background: #effcfb; }
.proof-fallback { border-radius: 3rem; border-color: rgba(78, 205, 196, 0.4); box-shadow: var(--shadow); }
.proof-icon { border-radius: 1.5rem; background: #d9f7f4; }

.offer-section {
  padding-block: 96px;
  background: transparent;
}

.offer-wrap {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: 4rem;
  background-color: #17233c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  box-shadow: 0 32px 70px rgba(23, 35, 60, 0.28);
}

.offer-route span { background: rgba(255, 255, 255, 0.12); }
.light-kicker { color: var(--teal); }
.price-card { border-radius: 3rem; }
.price-label { color: var(--blue); }
.price { color: var(--blue); }

.guarantee { background: #f3f8ff; }
.guarantee-card { border-radius: 4rem; box-shadow: var(--shadow); }
.guarantee-seal { border-color: var(--teal); color: #087f78; }
.faq-item { border-radius: 2rem; box-shadow: 0 10px 28px rgba(36, 50, 75, 0.05); }
.faq-question span { background: #d9f7f4; color: #087f78; }

.final-card {
  overflow: hidden;
  border-radius: 4rem;
  background-color: var(--blue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.final-card p:not(.section-kicker) { color: #e7f2ff; }
.site-footer { background: #f3f8ff; }

@keyframes float-blob {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(14px, -18px, 0) rotate(5deg); }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}

@media (max-width: 980px) {
  .header-nav > a:not(.header-link) { display: none; }
  .hero { min-height: auto; }
  .hero-grid-revised { grid-template-columns: 1fr; gap: 44px; }
  .hero-family { width: min(100%, 680px); min-height: 610px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-card { min-height: 240px; }
  .offer-wrap { padding: 58px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1200px); }
  .site-header { padding: 8px 0; }
  .header-inner { min-height: 58px; padding: 7px 8px 7px 14px; }
  .brand { font-size: 0.88rem; }
  .brand-mark { width: 36px; height: 36px; box-shadow: 0 5px 0 #2aa89f; }
  .header-nav .header-link { min-height: 39px; padding: 8px 13px; font-size: 0.74rem; box-shadow: 0 5px 0 var(--blue-dark); }
  .hero { padding: 44px 0 78px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-grid-revised .lead { margin-top: 24px; }
  .one-belief { padding: 20px 18px; border-radius: 0 2rem 2rem 0; }
  .soft-cta, .cta { width: 100%; padding-inline: 1rem; }
  .hero-family { min-height: 405px; margin-top: 8px; }
  .hero-main-photo { inset: 24px 6px 30px 22px; border-width: 8px; border-radius: 2.7rem; }
  .hero-main-photo img, .hero-family .hero-main-photo img { border-radius: 2.05rem; }
  .hero-mini-photo { left: -4px; width: 43%; border-width: 6px; border-radius: 1.8rem; }
  .hero-mini-photo img, .hero-family .hero-mini-photo img { border-radius: 1.25rem; }
  .hero-float-badge { top: -8px; right: -4px; width: 6.6rem; height: 6.6rem; border-width: 5px; }
  .hero-float-badge strong { font-size: 1.25rem; }
  .hero-float-badge span { font-size: 0.58rem; }
  .hero-family figcaption { right: 0; bottom: 2px; max-width: 70%; font-size: 0.68rem; }
  .section { padding-block: 72px; }
  .section-heading h2, .pain-focus h2 { font-size: clamp(2.25rem, 11vw, 3.35rem); }
  .pain-focus { padding: 42px 22px; border-radius: 2.75rem; }
  .pain-highlight { flex-direction: column; border-radius: 2rem; text-align: center; }
  .comparison-card { border-radius: 2.5rem; }
  .comparison-arrow { width: 50px; height: 50px; }
  .mechanism-statement { border-radius: 2.5rem; }
  .product-demo { margin-top: 72px; padding: 54px 12px 46px; border-radius: 2.75rem; }
  .product-demo .section-heading { padding-inline: 12px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; padding: 24px; border-radius: 2.5rem; }
  .offer-section { padding-block: 72px; }
  .offer-wrap { padding: 42px 22px; border-radius: 2.75rem; }
  .price-card { border-radius: 2.5rem; }
  .guarantee-card { border-radius: 2.75rem; }
  .proof-fallback { border-radius: 2.5rem; }
  .final-card { border-radius: 2.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .hero-float-badge { animation: none !important; }
}

/* Revisão com os materiais reais enviados */
.hero { min-height: auto; }
.hero-grid-revised { grid-template-columns: 1fr; }
.hero-copy { width: 100%; }
.hero-copy h1 { max-width: 980px; }
.hero-grid-revised .lead { max-width: 820px; }
.hero-grid-revised .one-belief { max-width: 900px; }

.hero-family-inline {
  width: min(100%, 900px);
  min-height: 560px;
  margin: 34px auto 34px;
}

.hero-family-inline .hero-main-photo {
  inset: 8px 34% 28px 4%;
  transform: rotate(-2deg);
}

.hero-family-inline .hero-main-photo img {
  object-position: center 45%;
}

.hero-family-inline .hero-mini-photo {
  left: auto;
  right: 1%;
  bottom: 40px;
  width: 43%;
  transform: rotate(5deg);
}

.hero-family-inline .hero-mini-photo img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-position: center;
}

.hero-family-inline .hero-float-badge {
  top: -6px;
  right: 4%;
}

.hero-family-inline figcaption {
  right: 8%;
  bottom: 0;
}

.real-app-showcase {
  width: min(100%, 1050px);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 40, 88, 0.28);
}

.real-app-showcase img {
  width: 100%;
  height: auto;
  border: 8px solid rgba(255, 255, 255, 0.95);
  border-radius: 2.3rem;
}

.real-app-showcase figcaption {
  padding: 17px 18px 6px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.real-app-showcase figcaption strong { color: var(--yellow); }

.photo-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.carousel-viewport {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 8px 26px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  cursor: grab;
}

.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport:active { cursor: grabbing; }

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 10px solid white;
  border-radius: 3.5rem;
  background: white;
  box-shadow: var(--shadow);
  scroll-snap-align: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.carousel-slide:nth-child(1) img { object-position: center 38%; }
.carousel-slide:nth-child(2) img { object-position: center 42%; }

.carousel-slide figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px 20px;
  border-radius: 1.5rem;
  background: rgba(23, 35, 60, 0.82);
  backdrop-filter: blur(12px);
  color: white;
  font-weight: 800;
  text-align: center;
}

.carousel-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 0 var(--blue-dark), 0 16px 34px rgba(0, 64, 140, 0.22);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  font-weight: 900;
  transition: var(--pop);
}

.carousel-button:hover { transform: translateY(-50%) scale(1.08); }
.carousel-button:active { margin-top: 5px; box-shadow: none; }
.carousel-button:disabled { opacity: 0.38; cursor: default; }
.carousel-prev { left: -27px; transform: translateY(-50%); }
.carousel-next { right: -27px; transform: translateY(-50%); }

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 12px 0;
}

.carousel-dots { display: flex; gap: 9px; }
.carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b9c9d9;
  cursor: pointer;
  transition: var(--pop);
}

.carousel-dots button[aria-current="true"] { width: 34px; background: var(--blue); }

.drag-hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #4f6077;
  font-size: 0.82rem;
  font-weight: 900;
}

.drag-hint span {
  display: inline-block;
  color: var(--coral);
  font-size: 1.35rem;
  animation: drag-nudge 1.8s ease-in-out infinite;
}

.offer-product-image {
  width: 100%;
  max-height: 300px;
  margin: -18px auto 24px;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(23, 35, 60, 0.14);
}

@keyframes drag-nudge {
  0%, 100% { transform: translateX(-4px); }
  50% { transform: translateX(7px); }
}

@media (max-width: 640px) {
  .hero-family-inline { min-height: 430px; margin-block: 28px; }
  .hero-family-inline .hero-main-photo { inset: 4px 28% 26px 0; }
  .hero-family-inline .hero-mini-photo { right: 0; bottom: 45px; width: 46%; }
  .hero-family-inline .hero-float-badge { top: -13px; right: -4px; }
  .hero-family-inline figcaption { right: 0; bottom: 0; max-width: 78%; }
  .real-app-showcase { padding: 7px; border-radius: 2rem; }
  .real-app-showcase img { border-width: 4px; border-radius: 1.5rem; }
  .real-app-showcase figcaption { padding: 14px 10px 7px; font-size: 0.82rem; }
  .carousel-slide, .carousel-slide img { min-height: 500px; }
  .carousel-slide { border-width: 7px; border-radius: 2.5rem; }
  .carousel-slide figcaption { left: 14px; right: 14px; bottom: 14px; padding: 13px 15px; font-size: 0.82rem; }
  .carousel-button { top: auto; bottom: -2px; width: 48px; height: 48px; border-width: 4px; }
  .carousel-prev { left: 8px; transform: none; }
  .carousel-next { right: 8px; transform: none; }
  .carousel-button:hover { transform: scale(1.06); }
  .carousel-footer { min-height: 70px; justify-content: center; }
  .drag-hint { display: none; }
  .offer-product-image { max-height: 260px; margin-top: -10px; }
}

@media (prefers-reduced-motion: reduce) {
  .drag-hint span { animation: none !important; }
  .carousel-viewport { scroll-behavior: auto; }
}

/* Ajustes finais de campanha e materiais de prova */
html { scroll-padding-top: 54px; }

.offer-strip {
  position: sticky;
  z-index: 60;
  top: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  background: linear-gradient(180deg, #ef3f4d 0%, #cf2434 100%);
  box-shadow: 0 5px 0 #a81726, 0 10px 24px rgba(168, 23, 38, 0.22);
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.offer-strip span { color: var(--yellow); }

.hero-copy { text-align: center; }
.hero-copy .eyebrow { justify-content: center; }

.hero-copy h1 {
  margin-inline: auto;
  font-family: "Fredoka", "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: center;
}

.hero-grid-revised .lead {
  margin-inline: auto;
  font-family: "Fredoka", "Quicksand", sans-serif;
  font-size: clamp(1.22rem, 2.3vw, 1.62rem);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.hero-grid-revised .one-belief { margin-inline: auto; text-align: left; }
.hero-copy .soft-cta { margin-inline: auto; }
.hero-copy > .cta-note { text-align: center; }

.hero-product-shot {
  width: min(100%, 940px);
  margin: 44px auto 24px;
  padding: 12px;
  border-radius: 3.5rem;
  background: white;
  box-shadow: 0 28px 58px rgba(29, 59, 94, 0.18);
  transform: rotate(-0.7deg);
}

.hero-product-shot img {
  width: 100%;
  height: auto;
  border-radius: 2.7rem;
}

.hero-product-shot figcaption {
  padding: 13px 14px 7px;
  color: #53627a;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.testimonial-carousel { max-width: 1080px; }
.testimonial-carousel .carousel-viewport { align-items: flex-start; }

.testimonial-carousel .carousel-slide {
  min-height: 0;
  padding: 10px;
  border-width: 0;
  border-radius: 2.5rem;
  background: white;
}

.testimonial-carousel .carousel-slide img {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 1.9rem;
  object-fit: contain;
  object-position: center;
}

.testimonial-carousel .carousel-button { top: 43%; }

.offer-product-image {
  max-height: none;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .offer-strip { min-height: 44px; padding: 9px 12px; font-size: 0.72rem; letter-spacing: 0.055em; }
  .hero { padding-top: 42px; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.35rem); }
  .hero-grid-revised .lead { font-size: 1.18rem; }
  .hero-grid-revised .one-belief { text-align: left; }
  .hero-product-shot { margin-top: 36px; padding: 7px; border-radius: 2.3rem; }
  .hero-product-shot img { border-radius: 1.8rem; }
  .hero-product-shot figcaption { font-size: 0.7rem; }
  .testimonial-carousel .carousel-slide { padding: 6px; border-radius: 1.6rem; }
  .testimonial-carousel .carousel-slide img { border-radius: 1.2rem; }
  .testimonial-carousel .carousel-button { top: auto; }
}
