* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f5f6f1;
  --panel: #ffffff;
  --ink: #17201d;
  --muted: #5e6d68;
  --line: #d8dfd8;
  --accent: #20845e;
  --accent-dark: #14583f;
  --accent-soft: #e9f4ee;
  --warm: #f4ba4d;
  --warm-soft: #fff5df;
  --danger: #b42318;
  --shadow: 0 20px 58px rgba(23, 32, 29, .12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(216, 223, 216, .86);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 850;
  padding: 8px 9px;
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent-dark);
}

.button,
button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 920;
  line-height: 1.15;
  text-decoration: none;
}

.button:hover,
button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent-dark);
}

.button.whatsapp {
  background: #128c5b;
}

.button.whatsapp:hover {
  background: #0e7049;
}

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #17201d;
}

.hero.short {
  min-height: 720px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 25, 20, .90) 0%, rgba(12, 25, 20, .68) 42%, rgba(12, 25, 20, .18) 100%);
}

.hero.right-copy::after {
  background: linear-gradient(270deg, rgba(12, 25, 20, .88) 0%, rgba(12, 25, 20, .64) 45%, rgba(12, 25, 20, .12) 100%);
}

.hero.center-copy::after {
  background: linear-gradient(180deg, rgba(12, 25, 20, .54) 0%, rgba(12, 25, 20, .70) 52%, rgba(12, 25, 20, .90) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 46px;
  color: #fff;
}

.hero-copy {
  max-width: 690px;
}

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

.center-copy .hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
  padding: 4px 11px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 6vw, 5.35rem);
}

.lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.center-copy .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.center-copy .hero-actions {
  justify-content: center;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.center-copy .proof-strip {
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .90);
  font-size: .86rem;
  font-weight: 850;
  padding: 4px 10px;
}

.trust-band {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 20px 52px rgba(21, 25, 36, .10);
}

.trust-item {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: #fff;
  padding: 18px;
}

.trust-item strong {
  color: var(--accent-dark);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 850;
}

.section {
  padding: 64px 0;
}

.section.tight {
  padding-top: 38px;
}

.section.alt {
  background: #fffdf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: .88rem;
  font-weight: 950;
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.section-head p,
.muted {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card,
.price-card,
.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card {
  padding: 20px;
}

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

.card p,
.card li {
  color: var(--muted);
}

.card ul,
.price-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.card li + li,
.price-card li + li {
  margin-top: 7px;
}

.price-card .price-gift {
  list-style: none;
  margin: 16px 0 6px;
  margin-left: -18px;
  color: var(--accent);
  font-weight: 800;
}

.feature-number {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
}

.mock-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mock-head {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  background: #fbfcf9;
  font-weight: 900;
}

.mock-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.mock-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.mock-row strong {
  display: block;
}

.mock-row span {
  color: var(--muted);
  font-size: .92rem;
}

.mock-row.good {
  border-color: #b9dac8;
  background: var(--accent-soft);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.product-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 28px 70px rgba(21, 25, 36, .18);
}

.product-top {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 0 14px;
}

.product-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f87171;
}

.product-dot:nth-child(2) {
  background: #facc15;
}

.product-dot:nth-child(3) {
  background: #34d399;
}

.product-screen {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
}

.mini-sidebar,
.mini-main,
.mini-result {
  border: 1px solid #d9dde8;
  border-radius: 8px;
  background: #fff;
}

.mini-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

.mini-menu {
  min-height: 34px;
  border-radius: 8px;
  background: #f3f4f6;
}

.mini-menu.active {
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: .82rem;
  font-weight: 950;
}

.mini-main {
  padding: 14px;
}

.mini-label {
  color: var(--accent-dark);
  font-size: .8rem;
  font-weight: 950;
}

.mini-question {
  margin: 8px 0 12px;
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1.2;
}

.mini-options {
  display: grid;
  gap: 8px;
}

.mini-option {
  min-height: 34px;
  border: 1px solid #d9dde8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #374151;
  font-size: .85rem;
  font-weight: 800;
}

.mini-option.correct {
  border-color: #80c7a4;
  background: #e9f8f0;
  color: #105b3f;
}

.mini-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.mini-score {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 950;
}

.mini-result strong {
  display: block;
  margin-bottom: 4px;
}

.mini-result span {
  color: var(--muted);
  font-size: .88rem;
}

.step-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 950;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
}

.quote-panel {
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 42px rgba(21, 25, 36, .08);
}

.quote-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 25, 36, .08);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-caption {
  padding: 16px;
}

.visual-caption strong {
  display: block;
  margin-bottom: 5px;
}

.visual-caption span {
  color: var(--muted);
  font-size: .92rem;
}

.prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.prices.single {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.price-card {
  position: relative;
  padding: 22px;
}

.price-card.featured {
  border-color: #8ebaa6;
  box-shadow: var(--shadow);
}

.price-label {
  color: var(--accent-dark);
  font-weight: 950;
}

.price {
  margin: 12px 0 4px;
  font-size: 2.55rem;
  font-weight: 950;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--warm-soft);
  color: #75510c;
  font-size: .8rem;
  font-weight: 950;
  padding: 3px 10px;
}

.order-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, 1.1fr);
  gap: 18px;
  align-items: start;
}

.order-card {
  padding: 22px;
  box-shadow: var(--shadow);
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-form button[type="submit"] {
  background: #c62828 !important;
}

.order-form button[type="submit"]:hover {
  background: #a61f1f !important;
}

.order-whatsapp {
  width: 100%;
  margin-top: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.fine {
  color: var(--muted);
  font-size: .86rem;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-section {
  max-width: 900px;
}

.faq-section .section-kicker {
  font-size: 1.25rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(18, 34, 28, .04);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  list-style-position: outside;
  padding-right: 8px;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: #fffdf8;
  color: var(--muted);
  font-size: .9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal-main {
  padding: 54px 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .35fr) minmax(0, .65fr);
  gap: 18px;
  align-items: start;
}

.legal-nav,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.legal-nav {
  position: sticky;
  top: 86px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--muted);
  font-weight: 850;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a.active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.legal-card {
  padding: 24px;
}

.legal-card h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 10px;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 20px;
}

.variant-student {
  --bg: #f6f7fb;
  --ink: #151924;
  --muted: #596073;
  --line: #d9dde8;
  --accent: #d93d35;
  --accent-dark: #a42722;
  --accent-soft: #fff0ee;
  --warm: #17a7a1;
  --warm-soft: #e7fbfa;
}

.variant-premium {
  --bg: #f4f1ea;
  --ink: #14201b;
  --muted: #5b665f;
  --line: #d9d0bf;
  --accent: #0e6d55;
  --accent-dark: #084434;
  --accent-soft: #e8f2ed;
  --warm: #c49a42;
  --warm-soft: #fff4d9;
}

.variant-fast {
  --bg: #f7fbfb;
  --ink: #142226;
  --muted: #586b70;
  --line: #d7e3e4;
  --accent: #0c7a8a;
  --accent-dark: #075260;
  --accent-soft: #e5f6f8;
  --warm: #2bb673;
  --warm-soft: #e9f9f1;
}

.variant-student .hero::after {
  background: linear-gradient(270deg, rgba(36, 11, 14, .90) 0%, rgba(36, 11, 14, .66) 42%, rgba(36, 11, 14, .12) 100%);
}

.variant-premium .hero::after {
  background: linear-gradient(90deg, rgba(7, 30, 23, .92) 0%, rgba(7, 30, 23, .68) 42%, rgba(7, 30, 23, .16) 100%);
}

.variant-fast .hero::after {
  background: linear-gradient(90deg, rgba(6, 35, 42, .86) 0%, rgba(6, 35, 42, .58) 43%, rgba(6, 35, 42, .10) 100%);
}

.home-page {
  --bg: #fbfaf4;
  --panel: #ffffff;
  --ink: #17201d;
  --muted: #61706b;
  --line: #dce4dc;
  --accent: #1f8a63;
  --accent-dark: #105c41;
  --accent-soft: #e8f6ef;
  --warm: #f1b73f;
  --warm-soft: #fff2ce;
  background:
    radial-gradient(circle at 15% 10%, rgba(244, 186, 77, .20), transparent 26rem),
    radial-gradient(circle at 85% 20%, rgba(32, 132, 94, .16), transparent 28rem),
    var(--bg);
}

.home-topbar {
  background: rgba(251, 250, 244, .88);
}

.nav-cta {
  min-height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--warm);
  color: #3e2b04;
  font-size: .9rem;
  font-weight: 950;
  text-decoration: none;
}

.home-hero {
  padding: 82px 0 54px;
  overflow: hidden;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
  gap: 44px;
  align-items: center;
}

.home-hero-copy {
  max-width: 760px;
}

.home-badge {
  min-height: 34px;
  border: 1px solid rgba(16, 92, 65, .18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: #f0e9ff;
  color: #54319a;
  font-size: .88rem;
  font-weight: 950;
}

.home-badge.warm {
  background: var(--warm-soft);
  color: #76510d;
}

.home-hero h1 {
  max-width: 780px;
  color: #16201d;
  font-size: clamp(2.75rem, 6.2vw, 5.85rem);
  line-height: .98;
}

.home-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.checkout-red {
  background: #c62828 !important;
}

.checkout-red:hover {
  background: #a61f1f !important;
}

.home-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.home-proof span {
  min-height: 30px;
  border: 1px solid rgba(16, 92, 65, .16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255, 255, 255, .74);
  color: var(--accent-dark);
  font-size: .86rem;
  font-weight: 900;
}

.home-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(16, 92, 65, .14);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 34px 90px rgba(23, 32, 29, .16);
}

.home-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: left center;
}

.hero-floating-card {
  position: absolute;
  border: 1px solid rgba(16, 92, 65, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 46px rgba(23, 32, 29, .14);
  padding: 14px 16px;
  backdrop-filter: blur(12px);
}

.hero-floating-card strong,
.hero-floating-card span {
  display: block;
}

.hero-floating-card strong {
  color: var(--accent-dark);
  font-size: 1.08rem;
}

.hero-floating-card span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.card-score {
  right: 24px;
  bottom: 24px;
  max-width: 220px;
}

.card-topic {
  left: 24px;
  top: 24px;
  max-width: 220px;
}

.home-stats {
  padding: 18px 0 52px;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 20px 54px rgba(23, 32, 29, .08);
}

.home-stats-grid div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: #fff;
  padding: 20px;
}

.home-stats-grid strong {
  color: var(--accent-dark);
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  line-height: 1;
}

.home-stats-grid span {
  color: var(--muted);
  font-weight: 850;
}

.home-section {
  padding: 72px 0;
}

.home-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .72);
}

.home-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: .92rem;
  font-weight: 950;
}

.home-section h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
}

.home-section p {
  color: var(--muted);
}

.home-split,
.home-product {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.home-problem-list {
  display: grid;
  gap: 12px;
}

.home-problem-list article,
.home-note,
.home-feature-grid article,
.home-price-card,
.home-image-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(23, 32, 29, .06);
}

.home-problem-list article {
  padding: 20px;
}

.home-problem-list strong,
.home-problem-list span,
.home-note strong,
.home-note span {
  display: block;
}

.home-problem-list strong {
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.home-problem-list span,
.home-note span {
  color: var(--muted);
}

.preview-window {
  overflow: hidden;
  border: 1px solid #d7e0da;
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 28px 70px rgba(23, 32, 29, .15);
}

.preview-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
}

.preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f87171;
}

.preview-bar span:nth-child(2) {
  background: #facc15;
}

.preview-bar span:nth-child(3) {
  background: #34d399;
}

.preview-body {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f4 100%);
}

.preview-label {
  color: var(--accent-dark);
  font-size: .85rem;
  font-weight: 950;
}

.preview-body h3 {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.preview-option {
  border: 1px solid #d7e0da;
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
  color: #33413d;
  font-weight: 850;
}

.preview-option.active {
  border-color: #8bc8a9;
  background: #e8f6ef;
  color: var(--accent-dark);
}

.preview-answer {
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.preview-answer strong,
.preview-answer span {
  display: block;
}

.preview-answer span {
  color: var(--muted);
  font-size: .92rem;
}

.home-note {
  margin-top: 20px;
  padding: 20px;
}

.home-section-head {
  max-width: 880px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-section-head h2 {
  margin-left: auto;
  margin-right: auto;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-feature-grid article {
  padding: 22px;
}

.home-feature-grid article > span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 950;
}

.home-feature-grid h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.home-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-image-grid article {
  overflow: hidden;
}

.home-image-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-image-grid article div {
  padding: 18px;
}

.home-image-grid strong,
.home-image-grid span {
  display: block;
}

.home-image-grid span {
  color: var(--muted);
  margin-top: 4px;
}

.home-price-card {
  max-width: 760px;
  display: grid;
  gap: 22px;
  margin: 0 auto;
  padding: 28px;
}

.home-price {
  margin-top: 10px;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 950;
  line-height: .9;
}

.home-price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 800;
}

.home-order-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(180, 35, 24, .08), transparent 20rem),
    var(--bg);
}

.home-page .faq-section {
  max-width: 1040px;
}

.fun-page {
  --bg: #fffaf0;
  --ink: #15201c;
  --muted: #5f6f68;
  --line: #dedfd2;
  --accent: #188b61;
  --accent-dark: #0d5e42;
  --accent-soft: #e7f8ef;
  --warm: #ffbf3f;
  --warm-soft: #fff1bf;
  background:
    linear-gradient(90deg, rgba(24, 139, 97, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 139, 97, .08) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf0 0%, #f8fbf1 46%, #fffaf0 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.fun-page .home-topbar {
  border-bottom: 2px solid rgba(13, 94, 66, .12);
  background: rgba(255, 250, 240, .92);
}

.fun-page .brand-mark {
  border: 2px solid rgba(13, 94, 66, .14);
  border-radius: 12px;
  background: #dff7e9;
  box-shadow: 4px 4px 0 rgba(13, 94, 66, .10);
}

.fun-page .nav a {
  border-radius: 999px;
}

.fun-page .nav a:hover {
  background: #fff1bf;
}

.fun-page .nav-cta {
  border: 2px solid rgba(62, 43, 4, .13);
  box-shadow: 4px 4px 0 rgba(62, 43, 4, .12);
}

.fun-page .home-hero {
  padding-top: 70px;
}

.fun-page .home-badge {
  border: 2px solid rgba(84, 49, 154, .18);
  background: #efe7ff;
  box-shadow: 4px 4px 0 rgba(84, 49, 154, .12);
}

.fun-page .home-hero h1 {
  text-wrap: balance;
}

.fun-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.fun-chip-row span {
  min-height: 34px;
  border: 2px solid rgba(21, 32, 28, .10);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  color: #3f2a07;
  font-size: .9rem;
  font-weight: 950;
  box-shadow: 3px 3px 0 rgba(21, 32, 28, .08);
}

.fun-chip-row span:nth-child(1) {
  background: #fff1bf;
}

.fun-chip-row span:nth-child(2) {
  background: #dff7e9;
}

.fun-chip-row span:nth-child(3) {
  background: #e9f0ff;
}

.fun-page .button {
  border-radius: 12px;
  box-shadow: 5px 5px 0 rgba(21, 32, 28, .12);
}

.fun-page .button:hover,
.fun-page button:hover {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 rgba(21, 32, 28, .12);
}

.fun-page .home-proof span {
  border-width: 2px;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(13, 94, 66, .08);
}

.fun-page .home-visual {
  border: 3px solid #fff;
  border-radius: 18px;
  box-shadow:
    0 28px 80px rgba(23, 32, 29, .16),
    10px 10px 0 rgba(255, 191, 63, .28),
    -10px -10px 0 rgba(24, 139, 97, .12);
  transform: rotate(1deg);
}

.fun-page .home-visual img {
  transform: scale(1.02);
}

.fun-sticker {
  position: absolute;
  z-index: 2;
  border: 2px solid rgba(21, 32, 28, .12);
  border-radius: 999px;
  background: #ffdf75;
  color: #4f3504;
  font-weight: 950;
  box-shadow: 4px 4px 0 rgba(21, 32, 28, .11);
}

.sticker-top {
  top: 22px;
  right: 22px;
  padding: 8px 13px;
  transform: rotate(4deg);
}

.fun-page .hero-floating-card {
  border: 2px solid rgba(13, 94, 66, .15);
  border-radius: 14px;
  box-shadow: 6px 6px 0 rgba(13, 94, 66, .11), 0 18px 40px rgba(23, 32, 29, .10);
}

.fun-page .card-score {
  transform: rotate(-2deg);
}

.fun-page .card-topic {
  transform: rotate(2deg);
}

.fun-page .home-stats-grid {
  border: 2px solid rgba(13, 94, 66, .12);
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(13, 94, 66, .08);
}

.fun-page .home-stats-grid div:nth-child(1) {
  background: #fff7d9;
}

.fun-page .home-stats-grid div:nth-child(2) {
  background: #e9f0ff;
}

.fun-page .home-stats-grid div:nth-child(3) {
  background: #e7f8ef;
}

.fun-page .home-stats-grid div:nth-child(4) {
  background: #ffe9e5;
}

.fun-page .home-soft {
  background:
    linear-gradient(135deg, rgba(255, 191, 63, .13) 0%, rgba(255, 255, 255, .70) 44%, rgba(24, 139, 97, .10) 100%);
}

.fun-page .home-problem-list article,
.fun-page .home-note,
.fun-page .home-feature-grid article,
.fun-page .home-price-card,
.fun-page .home-image-grid article,
.fun-page .order-card,
.fun-page .faq details {
  border: 2px solid rgba(13, 94, 66, .12);
  border-radius: 16px;
  box-shadow: 6px 6px 0 rgba(13, 94, 66, .07), 0 18px 40px rgba(23, 32, 29, .04);
}

.fun-page .home-feature-grid article:nth-child(3n+1) > span {
  background: #fff1bf;
  color: #674507;
}

.fun-page .home-feature-grid article:nth-child(3n+2) > span {
  background: #e9f0ff;
  color: #28427c;
}

.fun-page .home-feature-grid article:nth-child(3n+3) > span {
  background: #ffe9e5;
  color: #8b2a22;
}

.fun-page .preview-window {
  border-radius: 18px;
  box-shadow: 8px 8px 0 rgba(255, 191, 63, .24), 0 28px 70px rgba(23, 32, 29, .13);
}

.fun-page .preview-option,
.fun-page .preview-answer,
.fun-page input,
.fun-page select {
  border-radius: 12px;
}

.fun-page .home-price-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #fff8df 54%, #ecfff4 100%);
}

.fun-page .home-price-card::before {
  content: "Popular";
  position: absolute;
  top: 20px;
  right: -38px;
  width: 150px;
  min-height: 34px;
  display: grid;
  place-items: center;
  background: #c62828;
  color: #fff;
  font-size: .82rem;
  font-weight: 950;
  transform: rotate(36deg);
}

.fun-page .order-card {
  background: #fff;
}

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

  .grid-3,
  .grid-2,
  .visual-pair,
  .home-hero-inner,
  .home-split,
  .home-product,
  .home-feature-grid,
  .home-image-grid,
  .split,
  .product-showcase,
  .step-track,
  .prices,
  .order-wrap,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    padding-top: 54px;
  }

  .home-hero-inner {
    gap: 28px;
  }

  .home-visual {
    min-height: 430px;
  }

  .home-visual img {
    min-height: 430px;
  }

  .fun-page .home-visual {
    transform: none;
  }

  .hero,
  .hero.short {
    min-height: 760px;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .right-copy .hero-copy,
  .center-copy .hero-copy {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .center-copy .hero-actions,
  .center-copy .proof-strip {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .wrap,
  .hero-content {
    width: min(100% - 24px, 1160px);
  }

  .topbar-inner {
    min-height: 60px;
  }

  .nav-cta {
    display: none;
  }

  .brand {
    font-size: .98rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 790px;
  }

  .home-hero {
    padding: 38px 0 34px;
  }

  .home-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .home-actions {
    display: grid;
  }

  .home-visual,
  .home-visual img {
    min-height: 360px;
  }

  .hero-floating-card {
    position: static;
    margin: 10px;
  }

  .fun-sticker {
    position: static;
    width: fit-content;
    margin: 10px;
  }

  .fun-page .card-score,
  .fun-page .card-topic,
  .sticker-top {
    transform: none;
  }

  .home-stats {
    padding-bottom: 34px;
  }

  .home-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 52px 0;
  }

  .home-section h2 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .home-price-card {
    padding: 22px;
  }

  .hero::after,
  .hero.right-copy::after,
  .hero.center-copy::after {
    background: linear-gradient(180deg, rgba(12, 25, 20, .32) 0%, rgba(12, 25, 20, .70) 44%, rgba(12, 25, 20, .94) 100%);
  }

  h1 {
    font-size: clamp(2.05rem, 12vw, 3.4rem);
  }

  .section {
    padding: 48px 0;
  }

  .button,
  button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    display: grid;
  }

  .trust-band {
    margin-top: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 82px;
  }

  .mini-dashboard,
  .mini-result {
    grid-template-columns: 1fr;
  }

  .mini-sidebar {
    display: none;
  }

  .product-screen {
    padding: 12px;
  }
}
