:root {
  --purple: #703286;
  --purple-dark: #43005b;
  --charcoal: #373435;
  --orange: #ff9000;
  --teal: #006e7a;
  --black: #0c1014;
  --surface-dark: #111318;
  --muted: #6f6a75;
  --border: #e8e3ed;
  --bg: #faf8fc;
  --white: #ffffff;
  --lavender: #f3ecf7;
  --orange-soft: #fff3e2;
  --teal-soft: #e7f6f7;
  --shadow: 0 24px 70px rgba(67, 0, 91, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 16px;
  background: var(--white);
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(232, 227, 237, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 138px;
  height: auto;
}

.brand,
.nav-links,
.nav-actions {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: grid;
  place-items: center;
  padding: 0;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(250, 248, 252, 0.92);
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  opacity: 0.86;
}

.nav-links a:hover {
  color: var(--purple);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(112, 50, 134, 0.22);
}

.btn-primary:hover {
  background: var(--purple-dark);
}

.btn-secondary,
.btn-ghost {
  background: var(--white);
  color: var(--purple-dark);
  border-color: var(--border);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-areas:
    "label ."
    "word count"
    "bar bar";
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 42px;
  background: var(--black);
  color: var(--white);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-label {
  grid-area: label;
  color: #d9d5e2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.loader-word {
  grid-area: word;
  align-self: center;
  font-size: clamp(42px, 8vw, 104px);
  font-weight: 900;
  line-height: 0.95;
}

.loader-count {
  grid-area: count;
  align-self: end;
  font-size: clamp(56px, 10vw, 132px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--orange);
}

.loader-bar {
  grid-area: bar;
  height: 3px;
  background: #2c2435;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}

.btn-large {
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
}

.section {
  padding: 78px 0;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: clamp(24px, 4vh, 52px) 0 clamp(44px, 6vh, 72px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 248, 252, 0.94)),
    radial-gradient(circle at 82% 12%, rgba(112, 50, 134, 0.12), transparent 36%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 500px;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--charcoal);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: clamp(14px, 2vh, 22px);
  font-size: clamp(38px, min(4.8vw, 7.2vh), 64px);
  line-height: 1.03;
}

h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  line-height: 1.16;
  margin-bottom: 10px;
}

.hero-lead,
.section-head p,
.split p,
.operation-copy p,
.implant-card > div > p,
.cta-card > div > p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: clamp(18px, 3vh, 28px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
  min-height: min(500px, calc(100vh - 210px));
}

.name-reveal,
.blur-in {
  opacity: 0;
  transform: translateY(22px);
}

.is-ready .name-reveal {
  animation: rise-in 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.is-ready .blur-in {
  animation: blur-in 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.is-ready .blur-in:nth-of-type(2) {
  animation-delay: 0.08s;
}

.is-ready .hero-actions {
  animation-delay: 0.16s;
}

.is-ready .hero-visual {
  animation-delay: 0.24s;
}

.screen-card {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(500px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: var(--lavender);
}

.screen-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
}

.screen-top span:nth-child(2) {
  background: var(--orange);
}

.screen-top span:nth-child(3) {
  background: var(--teal);
}

.screen-top strong {
  margin-left: auto;
  color: var(--purple-dark);
  font-size: 13px;
}

.screen-body {
  padding: clamp(16px, 2.2vh, 22px);
}

.order-row {
  display: grid;
  grid-template-columns: 116px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: clamp(58px, 9vh, 72px);
  padding: clamp(10px, 1.8vh, 14px);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
}

.order-row.active {
  background: var(--bg);
}

.channel {
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 950;
}

.whatsapp {
  color: var(--teal);
}

.delivery {
  color: var(--orange);
}

.order-row strong {
  font-size: 16px;
}

.order-row em {
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--lavender);
  color: var(--purple-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: clamp(12px, 2vh, 20px);
}

.mini-dashboard div {
  padding: clamp(12px, 2vh, 16px);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
}

.mini-dashboard span {
  display: block;
  color: #d9d5e2;
  font-size: 12px;
}

.mini-dashboard strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 4vh, 28px);
}

.floating-card {
  position: absolute;
  width: 250px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(55, 52, 53, 0.12);
}

.floating-card-left {
  left: 0;
  bottom: clamp(70px, 10vh, 92px);
}

.floating-card-right {
  right: 24px;
  bottom: 0;
}

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

.floating-card small {
  margin-top: 6px;
  color: var(--muted);
}

.icon-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
  margin-bottom: 10px;
}

.icon-dot.teal {
  background: var(--teal);
}

.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.strip-list {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--charcoal);
  font-weight: 950;
}

.strip-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.split,
.operation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

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

.pain-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.pain-grid span {
  color: var(--orange);
  font-weight: 950;
}

.pain-grid p,
.module-card p,
.module-card li,
.flow-step small,
.support-list p,
.faq-list p {
  color: var(--muted);
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 820px;
  margin-bottom: 16px;
}

.section-head p:not(.eyebrow) {
  max-width: 720px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.module-card {
  min-height: 360px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(55, 52, 53, 0.04);
}

.module-card.featured {
  background: var(--purple-dark);
  color: var(--white);
}

.module-card.featured h3,
.module-card.featured p,
.module-card.featured li {
  color: var(--white);
}

.module-tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--lavender);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 950;
}

.module-tag.teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.module-tag.orange {
  background: var(--orange-soft);
  color: #925000;
}

.module-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.module-card li + li {
  margin-top: 8px;
}

.social-proof-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: end;
}

.social-proof-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

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

.proof-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(55, 52, 53, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(112, 50, 134, 0.38);
  box-shadow: 0 24px 58px rgba(67, 0, 91, 0.1);
}

.proof-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.proof-card strong {
  display: block;
  color: var(--purple-dark);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.proof-card h3 {
  margin: 14px 0 10px;
  font-size: 18px;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.channel-proof {
  margin-top: 42px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(55, 52, 53, 0.05);
}

.channel-proof p {
  margin: 0 0 14px;
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 950;
}

.channel-proof div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.channel-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 900;
}

.bento-section {
  background: var(--white);
}

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

.bento-card {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(112, 50, 134, 0.42);
  box-shadow: 0 24px 58px rgba(67, 0, 91, 0.1);
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(112, 50, 134, 0.1), rgba(255, 144, 0, 0.1));
}

.bento-card span {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.bento-card h3 {
  max-width: 560px;
  font-size: 23px;
}

.bento-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.bento-large {
  grid-column: span 2;
  min-height: 300px;
  background: linear-gradient(135deg, var(--purple-dark), var(--black));
  color: var(--white);
}

.bento-large h3,
.bento-large p {
  color: var(--white);
}

.bento-dark {
  grid-column: span 2;
  background: var(--black);
  color: var(--white);
}

.bento-accent {
  background: #fbf9fc;
}

.bento-dark h3,
.bento-dark p {
  color: var(--white);
}

.operation-section {
  background: var(--white);
}

.flow-panel {
  display: grid;
  gap: 14px;
}

.flow-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 18px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.flow-step strong {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 8px;
}

.flow-step span {
  font-size: 20px;
  font-weight: 950;
}

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

.audience-grid span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--purple-dark);
  font-weight: 950;
  text-align: center;
}

.pricing-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.pricing-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.pricing-head p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

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

.pricing-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(55, 52, 53, 0.04);
}

.pricing-card.pricing-featured {
  background: var(--purple-dark);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(67, 0, 91, 0.22);
}

.plan-label {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 950;
}

.pricing-featured .plan-label {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.pricing-card h3 {
  font-size: 31px;
  line-height: 1;
}

.pricing-card h3 small {
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.pricing-featured h3 small {
  color: #eadff0;
}

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

.plan-platform {
  min-height: 74px;
  margin-top: 16px;
  font-weight: 850;
}

.pricing-featured p,
.pricing-featured li {
  color: #eadff0;
}

.pricing-card ul {
  margin: 20px 0 24px;
  padding-left: 18px;
}

.pricing-card li + li {
  margin-top: 8px;
}

.pricing-card a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 950;
}

.pricing-featured a {
  background: var(--orange);
  color: var(--black);
}

.included-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 22px;
  margin-top: 18px;
  padding: 28px;
  background: var(--purple-dark);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 26px 70px rgba(67, 0, 91, 0.16);
}

.included-card .eyebrow,
.included-card h3 {
  color: var(--white);
}

.included-card h3 {
  font-size: 28px;
}

.included-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-card li {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #f7effa;
  font-weight: 850;
}

.included-card > p {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #eadff0;
}

.addons-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  margin-top: 18px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.addons-card h3 {
  font-size: 28px;
}

.addons-card > p {
  grid-column: 1 / -1;
  color: var(--muted);
}

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

.addons-grid span {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
}

.pricing-note {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--orange-soft);
  border-radius: 8px;
  color: var(--charcoal);
}

.pricing-note strong {
  color: var(--purple-dark);
}

.implant-section {
  background: var(--black);
  color: var(--white);
}

.implant-card {
  display: grid;
  grid-template-columns: 1.1fr 360px;
  gap: 28px;
  padding: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(112, 50, 134, 0.22), rgba(255, 144, 0, 0.08));
  border: 1px solid #2d2138;
}

.implant-card h2,
.implant-card .eyebrow {
  color: var(--white);
}

.offer-card {
  padding: 28px;
  background: var(--white);
  color: var(--charcoal);
  border-radius: 8px;
}

.offer-card span,
.offer-card strong,
.offer-card em {
  display: block;
}

.offer-card strong {
  margin: 18px 0;
  color: var(--orange);
  font-size: 32px;
  line-height: 1;
}

.offer-card em {
  color: var(--purple-dark);
  font-style: normal;
  font-weight: 950;
}

.support-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #2d2138;
  border-radius: 8px;
}

.support-list h3 {
  color: var(--white);
}

.support-list p {
  color: #d9d5e2;
  margin-bottom: 0;
}

.implant-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 18px;
  background: rgba(255, 144, 0, 0.14);
  border-radius: 8px;
  color: #ffe3bd;
  font-weight: 800;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 950;
}

.faq-list p {
  margin: 14px 0 0;
}

.cta-section {
  padding-top: 40px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  padding: 52px;
  background: linear-gradient(135deg, var(--lavender), #fff4e7);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(55, 52, 53, 0.08);
}

.lead-form label {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 950;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 44px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
}

.interest-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.interest-field legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 950;
}

.interest-field label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.interest-field.is-invalid label {
  border-color: rgba(200, 38, 38, 0.44);
  background: #fff8f8;
}

.interest-field input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--purple);
}

.interest-field span {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 850;
}

.form-error {
  grid-column: 1 / -1;
  display: none;
  margin: -4px 0 0;
  color: #b3261e;
  font-size: 13px;
  font-weight: 850;
}

.form-error.is-visible {
  display: block;
}

.btn-form {
  grid-column: 1 / -1;
  background: var(--orange);
  color: var(--black);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: var(--black);
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.28);
}

.whatsapp-float::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 5px #25d366, 0 0 0 2px var(--white);
}

.site-footer {
  padding: 44px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-grid img {
  width: 148px;
}

.footer-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--purple-dark);
  font-weight: 950;
}

.legal-header {
  position: sticky;
}

.legal-hero {
  padding: 140px 0 70px;
  background:
    linear-gradient(135deg, rgba(112, 50, 134, 0.1), rgba(255, 144, 0, 0.08)),
    var(--white);
  border-bottom: 1px solid var(--border);
}

.legal-hero .container {
  max-width: 980px;
}

.legal-hero h1 {
  max-width: 820px;
  margin-top: 12px;
  font-size: clamp(44px, 7vw, 76px);
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.legal-section {
  padding: 70px 0;
  background: var(--bg);
}

.legal-document {
  max-width: 980px;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(55, 52, 53, 0.05);
}

.legal-document h2 {
  margin-top: 42px;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-document strong {
  color: var(--charcoal);
}

.legal-document a {
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blur-in {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 78px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero-grid,
  .split,
  .operation-grid,
  .implant-card,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .screen-card {
    position: relative;
    inset: auto;
  }

  .floating-card-left {
    left: 10px;
    bottom: 68px;
  }

  .floating-card-right {
    right: 10px;
  }

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

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

  .bento-card,
  .bento-large,
  .bento-dark {
    grid-column: span 1;
  }

  .support-list,
  .audience-grid,
  .proof-card-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .included-card,
  .addons-card {
    grid-template-columns: 1fr;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    padding-top: 22px;
    padding-bottom: 38px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(36px, 6.3vh, 54px);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.55;
  }

  .screen-card {
    width: min(460px, 100%);
  }

  .floating-card {
    padding: 14px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .nav {
    height: 70px;
  }

  .brand img {
    width: 126px;
  }

  .nav-links {
    top: 70px;
  }

  h1 {
    max-width: 100%;
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    padding-top: 46px;
  }

  .pain-grid,
  .module-grid,
  .bento-grid,
  .proof-card-grid,
  .pricing-grid,
  .support-list,
  .audience-grid,
  .lead-form,
  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px;
  }

  .pricing-head {
    gap: 18px;
  }

  .included-card ul,
  .interest-field,
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .order-row {
    grid-template-columns: 1fr;
  }

  .implant-card,
  .cta-card,
  .legal-document {
    padding: 28px;
  }

  .legal-hero {
    padding: 110px 0 54px;
  }

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

  .loading-screen {
    padding: 24px;
  }
}
