/* ============================================================
   GERADOR DE PROPOSTAS DA KRONOS — Landing Page
   Camada visual premium: vórtice, feixe de luz, textura de areia,
   símbolo da marca, parallax e scroll-reveal.
   Paleta 100% quente. Cormorant Garamond + Instrument Sans.
   ============================================================ */

:root {
  /* Paleta — exatamente as cinco cores da marca */
  --onix:   #150C06;  /* fundo principal */
  --branco: #FFFFFF;
  --sepia:  #2E2017;  /* superfícies, cards */
  --areia:  #A89070;  /* textos secundários, detalhes, divisores, números */
  --creme:  #F5EFE6;  /* fundos claros, texto sobre escuro */

  /* Derivados (mesma família quente, via rgba) */
  --areia-08: rgba(168, 144, 112, 0.08);
  --areia-14: rgba(168, 144, 112, 0.14);
  --areia-20: rgba(168, 144, 112, 0.20);
  --areia-30: rgba(168, 144, 112, 0.30);
  --areia-45: rgba(168, 144, 112, 0.45);
  --onix-veil: rgba(21, 12, 6, 0.55);

  /* Sombras quentes — nunca preto puro */
  --shadow-soft: 0 24px 60px -28px rgba(21, 12, 6, 0.75);
  --shadow-card: 0 18px 50px -30px rgba(21, 12, 6, 0.85);
  --shadow-glow: 0 40px 90px -40px rgba(168, 144, 112, 0.45);

  /* Tipografia */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Instrument Sans", system-ui, -apple-system, sans-serif;

  /* Ritmo */
  --section-y: clamp(6rem, 12vw, 11rem);
  --container: 1160px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Textura de areia (grão fino via feTurbulence) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--areia-30) transparent;
}
body {
  margin: 0;
  background: var(--onix);
  color: var(--creme);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.04; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.svg-defs { position: absolute; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.75rem);
  position: relative;
  z-index: 2;
}

/* ---------- Textura de areia reutilizável ---------- */
.has-grain { position: relative; }
.has-grain > .grain,
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 200px 200px;
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 1;
}
/* grão direto em superfícies que não têm wrapper .grain */
.has-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 200px 200px;
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 1;
}
.section-light.has-grain::after { mix-blend-mode: soft-light; opacity: 0.5; }

/* ---------- Símbolo oficial da KRONOS como marca d'água (uso contido) ---------- */
.kglyph {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: clamp(150px, 20vw, 300px);
  aspect-ratio: 894 / 1447;            /* proporção do asset oficial */
  background-color: var(--areia);
  opacity: 0.07;
  -webkit-mask: url("assets/kronos-symbol.png") center / contain no-repeat;
          mask: url("assets/kronos-symbol.png") center / contain no-repeat;
  will-change: transform;
}
.kglyph-ink { background-color: var(--sepia); opacity: 0.13; }
.k-center { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.k-right  { right: -4vw; top: 50%; transform: translateY(-50%); }
.k-left   { left: -4vw; top: 50%; transform: translateY(-50%); }
/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--areia);
  font-weight: 500;
  margin: 0;
}
.section-title {
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  letter-spacing: -0.005em;
  line-height: 1.02;
}
.section-title em { color: var(--areia); }
.section-lead {
  margin-top: 0.95rem;
  max-width: 52ch;
  color: var(--areia);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.5;
}
/* lead que deve caber em uma linha (sem quebra órfã) */
.section-lead.lead-wide { max-width: none; text-wrap: balance; }
em { font-style: italic; }

/* ---------- Divisor com ponteiro ---------- */
.hand-divider {
  display: block;
  width: 68px; height: 1px;
  background: var(--areia-30);
  position: relative;
  margin-bottom: 2.1rem;
}
.hand-divider::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--areia);
  transform: translate(-1px, -50%);
}
.hand-divider.center { margin-inline: auto; }
.hand-divider.center::before { left: 50%; transform: translate(-50%, -50%); }

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.98rem 1.8rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease),
              color 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.btn:active { transform: translateY(0) scale(0.99); }

.btn-primary {
  background: var(--creme);
  color: var(--onix);
}
.btn-primary:hover {
  background: var(--areia);
  color: var(--onix);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--creme);
  border-color: var(--areia-30);
}
.btn-ghost:hover {
  border-color: var(--areia);
  background: var(--areia-14);
  transform: translateY(-2px);
}
/* botão escuro — para fundos claros (faixa areia/creme) */
.btn-onix {
  background: var(--onix);
  color: var(--creme);
}
.btn-onix:hover {
  background: var(--sepia);
  color: var(--creme);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -28px rgba(21, 12, 6, 0.7);
}
.btn-lg { padding: 1.15rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--areia-14);
  background: rgba(21, 12, 6, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.1rem;
}
.brand { display: inline-flex; align-items: center; color: var(--creme); }
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.brand:hover .brand-logo { opacity: 0.82; }
.brand-footer .brand-logo { height: 38px; }

/* ---------- Seção base ---------- */
.section {
  position: relative;
  padding-block: var(--section-y);
  isolation: isolate;
}
.section-head { margin-bottom: clamp(2.75rem, 5.5vw, 4.25rem); }

/* Superfícies por seção (ritmo claro/escuro) */
.section-light { background: var(--creme); color: var(--onix); }

/* Faixa de big numbers (prova social) */
.section-stats {
  position: relative;
  padding-block: clamp(3.2rem, 6vw, 5rem);
  border-block: 1px solid rgba(168, 144, 112, 0.28);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  text-align: center;
}
.stat { position: relative; padding: 0.4rem 1rem; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: rgba(168, 144, 112, 0.35);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.2vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--areia);
  font-variant-numeric: tabular-nums;
}
.stat-affix { font-size: 0.58em; letter-spacing: 0; }
.stat-label {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.84rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--sepia);
  opacity: 0.82;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .stat:nth-child(odd)::before { display: none; }
}

/* Texturas de areia reais da marca (uso contido nas seções escuras) */
.tex-sand-sepia {
  background-color: var(--sepia);
  background-image: url("assets/tex-areia-sepia.jpg");
  background-size: cover;
  background-position: center;
}
.tex-sand-onix {
  background-color: var(--onix);
  background-image: url("assets/tex-areia-onix.jpg");
  background-size: cover;
  background-position: center;
}
/* No mobile, o JPG com cover amplia demais (areia grosseira). Troca por um
   grão vetorial (feTurbulence) — nítido em qualquer resolução/DPR. */
@media (max-width: 760px) {
  .tex-sand-sepia, .tex-sand-onix { background-image: none; }
  .tex-sand-sepia::before, .tex-sand-onix::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--grain);
    background-size: 150px 150px;
    opacity: 0.06;
    mix-blend-mode: overlay;
  }
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.vortex { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-veil {
  position: absolute; inset: 0;
  /* escurece o lado do texto (esquerda) e preserva o ciclone à direita */
  background:
    linear-gradient(100deg, rgba(21,12,6,0.86) 0%, rgba(21,12,6,0.5) 34%, rgba(21,12,6,0) 58%),
    linear-gradient(to bottom, rgba(21,12,6,0.45), transparent 22%, transparent 72%, rgba(21,12,6,0.6));
  z-index: 1;
}
.hero-inner { position: relative; z-index: 3; max-width: 940px; }
.hero .eyebrow { margin-bottom: 1.9rem; }

.hero-headline {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 40px rgba(21, 12, 6, 0.5);
}
.hero-headline em { color: var(--areia); }

.hero-sub {
  margin-top: 1.9rem;
  max-width: 52ch;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--creme);
  opacity: 0.88;
  font-weight: 300;
}

.hero-actions { margin-top: 2.6rem; }

/* Indicação de scroll */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-cue-line {
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--areia));
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute; left: 0; top: -60px;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--creme));
  animation: cue 2.6s var(--ease-out) infinite;
}
@keyframes cue { to { transform: translateY(120px); } }

/* ============================================================
   2. AGITAÇÃO DA DOR
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.pain-card {
  padding: 2.6rem 2.1rem;
  border: 1px solid var(--areia-14);
  border-radius: 6px;
  background: rgba(21, 12, 6, 0.42);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease);
}
.pain-card:hover { transform: translateY(-5px); border-color: var(--areia-30); }
.pain-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--areia);
}

/* ---- Visuais animados dos cards de dor ---- */
.pain-visual {
  position: relative;
  height: 58px;
  margin-bottom: 1.7rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* 1 — propostas genéricas: três documentos idênticos + varredura de luz */
/* 1 — propostas genéricas: cópias idênticas saindo da pilha */
.pv-generic { position: relative; }
.pv-generic .doc {
  position: absolute;
  top: 9px; left: 0;
  width: 30px; height: 40px;
  border: 1.4px solid var(--areia);
  border-radius: 3px;
  background:
    linear-gradient(var(--areia), var(--areia)) 6px 10px / 18px 1.4px no-repeat,
    linear-gradient(var(--areia), var(--areia)) 6px 17px / 18px 1.4px no-repeat,
    linear-gradient(var(--areia), var(--areia)) 6px 24px / 11px 1.4px no-repeat;
}
.pv-generic .doc-1 { left: 0;     opacity: 0.45; }
.pv-generic .doc-2 { left: 36px;  opacity: 0.6; }
.pv-generic .doc-3 { left: 72px;  opacity: 0.75; }
.pv-generic .doc-4 { left: 108px; opacity: 0.92; }
.pv-generic .doc-copy { left: 108px; opacity: 0; }

/* 2 — quem demora, perde: corrida (concorrente em creme chega na frente) */
.pv-race { flex-direction: column; gap: 13px; justify-content: center; }
.pv-race .track { position: relative; width: 190px; height: 1.4px; background: var(--areia-30); }
.pv-race .flag { position: absolute; right: 0; top: -5px; width: 1.4px; height: 12px; background: var(--areia); }
.pv-race .runner { position: absolute; top: -3px; left: 0; width: 7px; height: 7px; border-radius: 50%; }
.pv-race .runner-fast { background: var(--creme); }
.pv-race .runner-slow { background: var(--areia); }

/* 3 — refém do desconto: de R$ 100 por R$ 70 (o desconto que você dá) */
.pv-discount { gap: 0.8rem; }
.pd-old, .pd-new {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  opacity: 0;
}
.pd-old { color: var(--areia); position: relative; }
.pd-old .pd-strike {
  position: absolute; left: -3px; right: -3px; top: 54%;
  height: 1.5px; background: var(--areia);
  transform: scaleX(0); transform-origin: left;
}
.pd-new { color: var(--creme); }

@media (prefers-reduced-motion: no-preference) {
  .pv-generic .doc-copy { animation: pvCopy 2.8s ease-in-out infinite; }
  .pv-race .runner-fast { animation: pvFast 3.4s ease-in-out infinite; }
  .pv-race .runner-slow { animation: pvSlow 3.4s ease-in-out infinite; }
  .pd-old { animation: pdOld 4s ease-in-out infinite; }
  .pd-old .pd-strike { animation: pdStrike 4s ease-in-out infinite; }
  .pd-new { animation: pdNew 4s ease-in-out infinite; }
}
@keyframes pvCopy {
  0%   { left: 108px; opacity: 0; }
  14%  { left: 108px; opacity: 0.95; }
  60%  { left: 152px; opacity: 0; }
  100% { left: 152px; opacity: 0; }
}
@keyframes pvFast {
  0% { left: 0; opacity: 0; }
  7% { opacity: 1; }
  40% { left: calc(100% - 7px); }
  86% { left: calc(100% - 7px); opacity: 1; }
  96%, 100% { left: calc(100% - 7px); opacity: 0; }
}
@keyframes pvSlow {
  0% { left: 0; opacity: 0; }
  7% { opacity: 1; }
  70% { left: 52%; }
  86% { left: 55%; opacity: 1; }
  96%, 100% { left: 55%; opacity: 0; }
}
@keyframes pdOld {
  0%, 4% { opacity: 0; }
  12% { opacity: 0.85; }
  88% { opacity: 0.85; }
  96%, 100% { opacity: 0; }
}
@keyframes pdStrike {
  0%, 26% { transform: scaleX(0); }
  44%, 100% { transform: scaleX(1); }
}
@keyframes pdNew {
  0%, 46% { opacity: 0; transform: translateY(4px); }
  58%, 88% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(0); }
}
.pain-card h3 { margin-top: 0.8rem; font-size: 1.85rem; }
.pain-card p { margin-top: 0.9rem; color: var(--areia); font-weight: 300; }

/* ============================================================
   3. VIRADA — feixe de luz
   ============================================================ */
.section-turn {
  text-align: center;
  overflow: hidden;
  background-color: var(--onix);
  position: relative;
}
/* feixe de luz real da marca com leve movimento (ken burns) */
.turn-bg {
  position: absolute; inset: -8%;
  z-index: 0;
  /* feixe de luz + brilho quente em CSS puro (sem grãos estáticos) */
  background:
    linear-gradient(122deg,
      transparent 30%,
      rgba(168, 144, 112, 0.14) 46%,
      rgba(208, 180, 142, 0.28) 52%,
      rgba(168, 144, 112, 0.12) 58%,
      transparent 72%),
    radial-gradient(72% 92% at 52% 42%,
      rgba(168, 144, 112, 0.22),
      rgba(120, 86, 54, 0.10) 42%,
      transparent 70%);
  animation: turnPan 26s ease-in-out infinite alternate;
}
/* véu para legibilidade do texto */
.turn-veil {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(rgba(21, 12, 6, 0.55), rgba(21, 12, 6, 0.62)),
    radial-gradient(120% 85% at 50% 46%, transparent 38%, rgba(21, 12, 6, 0.5));
}
/* poeira dourada flutuando (canvas) */
.turn-particles {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
@keyframes turnPan {
  from { transform: scale(1.06) translate(-1.5%, -1%); }
  to   { transform: scale(1.14) translate(1.5%, 1.2%); }
}

/* emblema: você (núcleo) amplificado em um time (rede de nós) */
.turn-emblem { display: block; width: 80px; margin: 0 auto 1.8rem; }
.turn-emblem svg { width: 100%; height: auto; display: block; overflow: visible; }
.te-lines line { stroke: var(--areia); stroke-width: 1; opacity: 0.5; }
.te-nodes circle { fill: var(--areia); transform-box: fill-box; transform-origin: center; opacity: 0.5; }
.te-ring { fill: none; stroke: var(--creme); stroke-width: 1; transform-box: fill-box; transform-origin: center; opacity: 0; }
.te-core { fill: var(--creme); transform-box: fill-box; transform-origin: center; filter: drop-shadow(0 0 5px rgba(245, 239, 230, 0.55)); }
@media (prefers-reduced-motion: no-preference) {
  .te-ring { animation: teRing 3.2s ease-out infinite; }
  .te-core { animation: teCore 3.2s ease-in-out infinite; }
  .te-nodes circle { animation: teNode 3.2s ease-in-out infinite; }
  .te-nodes circle:nth-child(1) { animation-delay: 0s; }
  .te-nodes circle:nth-child(2) { animation-delay: 0.18s; }
  .te-nodes circle:nth-child(3) { animation-delay: 0.36s; }
  .te-nodes circle:nth-child(4) { animation-delay: 0.54s; }
  .te-nodes circle:nth-child(5) { animation-delay: 0.72s; }
  .te-nodes circle:nth-child(6) { animation-delay: 0.9s; }
}
@keyframes teRing { 0% { transform: scale(0.5); opacity: 0.7; } 75%, 100% { transform: scale(4); opacity: 0; } }
@keyframes teCore { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
@keyframes teNode { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.95; } }

.turn-inner { max-width: 860px; margin-inline: auto; position: relative; z-index: 2; }
.turn-rupture {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  color: var(--areia);
  margin-bottom: 1.5rem;
}
.turn-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  letter-spacing: -0.005em;
}
.turn-title em { color: var(--areia); }
.turn-sub {
  margin-top: 1.7rem;
  font-size: 1.22rem;
  color: var(--creme);
  opacity: 0.84;
  font-weight: 300;
}

/* ============================================================
   4. COMO FUNCIONA
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  position: relative;
}
/* linha-divisor conectando os passos */
.steps::before {
  content: "";
  position: absolute;
  top: 24px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--areia-30) 12%, var(--areia-30) 88%, transparent);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--areia-30);
  background: var(--sepia);
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--areia);
  margin-bottom: 1.4rem;
  transition: transform 0.45s var(--ease-out), color 0.45s var(--ease),
              border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.step:hover .step-num {
  transform: translateY(-4px);
  color: var(--creme);
  border-color: var(--areia);
  box-shadow: 0 14px 30px -16px rgba(168, 144, 112, 0.6);
}
.step-body h3 { font-size: 1.6rem; }
.step-body p { margin-top: 0.7rem; color: var(--areia); font-weight: 300; }

/* tag "Como funciona" */
.section-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--areia);
  border: 1px solid var(--areia-30);
  border-radius: 100px;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.5rem;
}

/* retângulo placeholder de GIF (preview) */
.step-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 1.5rem;
  border: 1px solid var(--areia-20);
  border-radius: 8px;
  background: rgba(21, 12, 6, 0.32);
  overflow: hidden;
}
.step-media::after {
  content: "GIF";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--areia); opacity: 0.4;
}
.step-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(245, 239, 230, 0.06) 50%, transparent 70%);
  transform: translateX(-100%);
}
@media (prefers-reduced-motion: no-preference) {
  .step-media::before { animation: mediaShimmer 2.8s ease-in-out infinite; }
}
@keyframes mediaShimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* ============================================================
   PERSONALIZAÇÃO REAL — o que entra "sob medida"
   ============================================================ */
.facets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem) clamp(1.8rem, 3vw, 3rem);
  position: relative;
  z-index: 2;
}
.facet {
  position: relative;
  padding-left: 1.9rem;
  border-top: 1px solid var(--areia-14);
  padding-top: 1.4rem;
}
.facet h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  color: var(--creme);
}
.facet p { margin-top: 0.4rem; color: var(--areia); font-weight: 300; font-size: 0.98rem; }
.facet::before {
  content: "";
  position: absolute;
  left: 0; top: calc(1.4rem + 0.62em);
  width: 14px; height: 1.5px;
  background: var(--areia);
}
.facet::after {
  content: "";
  position: absolute;
  left: 12px; top: calc(1.4rem + 0.62em);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--areia);
  transform: translateY(-1.75px);
}

/* tag mais forte (Metodologia Kronos) */
.section-tag-strong {
  color: var(--creme);
  border-color: var(--areia);
  background: var(--areia-14);
}

/* ---- Metodologia: cards numerados (bloco + gatilho) ---- */
.method {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  z-index: 2;
}
.method-block {
  display: flex;
  flex-direction: column;
  padding: 1.7rem 1.6rem 1.8rem;
  border: 1px solid var(--areia-14);
  border-radius: 10px;
  background: rgba(46, 32, 23, 0.55);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease);
}
.method-block:hover { transform: translateY(-5px); border-color: var(--areia-30); }
.mb-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--areia);
}
.mb-name {
  margin-top: 0.7rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--creme);
}
.mb-trigger {
  align-self: flex-start;
  margin-top: 0.8rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--areia);
  background: var(--areia-08);
  border: 1px solid var(--areia-20);
  border-radius: 100px;
  padding: 0.32rem 0.75rem;
}
.method-block p {
  margin-top: 1rem;
  color: var(--areia);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.5;
}
.method-foot {
  margin-top: clamp(2.8rem, 5vw, 3.8rem);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--creme);
  position: relative;
  z-index: 2;
}

/* ============================================================
   5. O QUE VOCÊ GANHA (creme)
   ============================================================ */
.section-gains .section-lead { color: var(--sepia); opacity: 0.78; }
.section-gains .hand-divider { background: rgba(46,32,23,0.25); }
.section-gains .hand-divider::before { background: var(--sepia); }

/* Tabela comparativa: Na mão  x  Com a Kronos */
.compare {
  display: grid;
  grid-template-columns: 28% 36% 36%;
  position: relative;
  z-index: 2;
}
.compare-row { display: contents; }
/* painel destacado da coluna "Com a Kronos" (atrás da 3a coluna) */
.compare-panel {
  position: absolute;
  top: 0; bottom: 0;
  left: 64%; right: 0;
  background: var(--sepia);
  border-radius: 10px;
  box-shadow: 0 36px 70px -38px rgba(46, 32, 23, 0.6);
  z-index: 0;
}
.c-dim, .c-bad, .c-good {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  position: relative;
  z-index: 1;
}
.c-dim, .c-bad { border-bottom: 1px solid rgba(46, 32, 23, 0.1); }
.compare-row:last-child .c-dim,
.compare-row:last-child .c-bad { border-bottom: none; }
.c-dim {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--onix);
}
.c-bad { color: var(--areia); font-weight: 300; }
.c-good { color: var(--creme); font-weight: 400; }
.c-txt { line-height: 1.3; }

/* cabeçalho */
.c-head {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 1.4rem; padding-bottom: 1.4rem;
}
.c-bad.c-head { color: var(--areia); justify-content: center; text-align: center; }
.c-good.c-head {
  color: var(--creme);
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  padding-block: 1.3rem;
}
.c-head-logo { height: 40px; width: auto; display: block; }
.c-head-pre { line-height: 1; opacity: 0.8; }

/* marcas de check / x */
.mk {
  flex: none;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.mk svg { width: 12px; height: 12px; }
.mk svg path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mk-x { border: 1px solid var(--areia-30); color: var(--areia); }
.mk-v { background: rgba(245, 239, 230, 0.16); color: var(--creme); }

/* tag "com a Kronos" — só no mobile */
.c-tag { display: none; }

/* ============================================================
   PROVA SOCIAL — depoimentos (faixa creme)
   ============================================================ */
.section-proof .section-head { text-align: center; }
.section-proof .section-lead { margin-inline: auto; color: var(--sepia); opacity: 0.82; font-size: 1.2rem; }
/* símbolo da Kronos (lembra um X) acima do título, semi-transparente */
.proof-glyph {
  position: static;
  display: block;
  width: clamp(54px, 8vw, 76px);
  margin: 0 auto 1.5rem;
  background-color: var(--sepia);
  opacity: 0.15;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  align-items: stretch;
  position: relative;
  z-index: 2;
  margin-top: clamp(2.2rem, 4vw, 3rem);
}
.proof-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 2rem 1.9rem;
  border: 1px solid rgba(46, 32, 23, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 44px -34px rgba(46, 32, 23, 0.42);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
}
.proof-card:hover { transform: translateY(-5px); box-shadow: 0 28px 60px -34px rgba(46, 32, 23, 0.5); }
.proof-card blockquote {
  margin: 0;
  position: relative;
  padding-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  line-height: 1.42;
  color: var(--sepia);
}
.proof-card blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.35em; left: -0.05em;
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--areia);
}
.proof-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(168, 144, 112, 0.3);
}
.proof-avatar {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--sepia);
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  color: var(--creme);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(168, 144, 112, 0.45);
}
.proof-id { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.proof-name { font-weight: 500; color: var(--onix); }
.proof-role { font-size: 0.86rem; color: var(--areia); }

/* ============================================================
   6. PLANOS
   ============================================================ */
.billing-toggle {
  position: relative;
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  border: 1px solid var(--areia-20);
  border-radius: 4px;
  margin-bottom: clamp(2.75rem, 5vw, 3.75rem);
  z-index: 2;
}
.billing-thumb {
  position: absolute;
  top: 0.3rem; left: 0.3rem;
  height: calc(100% - 0.6rem);
  width: calc(50% - 0.3rem);
  background: var(--creme);
  border-radius: 2px;
  transition: transform 0.45s var(--ease-out);
  z-index: 0;
}
.billing-toggle.is-annual .billing-thumb { transform: translateX(100%); }
.billing-opt {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--areia);
  background: transparent;
  border: none;
  border-radius: 2px;
  padding: 0.62rem 1.4rem;
  cursor: pointer;
  transition: color 0.4s var(--ease);
}
.billing-opt.is-active { color: var(--onix); }
.billing-save { font-size: 0.74rem; letter-spacing: 0.04em; margin-left: 0.3rem; opacity: 0.8; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 2.7rem 2.1rem;
  border: 1px solid var(--areia-14);
  border-radius: 6px;
  background: var(--sepia);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: var(--areia-30); }
.plan-featured {
  background: var(--creme);
  color: var(--onix);
  border-color: var(--areia-45);
  box-shadow: var(--shadow-glow), 0 30px 60px -30px rgba(21,12,6,0.7);
  transform: translateY(-10px);
  animation: floatCard 7s var(--ease) infinite;
}
.plan-featured:hover { transform: translateY(-16px); }
@keyframes floatCard {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(-16px); }
}
.plan-featured.has-grain::after { mix-blend-mode: soft-light; opacity: 0.4; }
.plan-badge {
  position: absolute;
  top: -0.9rem; left: 50%;
  transform: translateX(-50%);
  background: var(--onix);
  color: var(--creme);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.42rem 1.05rem;
  border-radius: 2px;
  white-space: nowrap;
  z-index: 2;
}
.plan-name { font-size: 2rem; }
.plan-for { margin-top: 0.5rem; color: var(--areia); font-weight: 300; font-size: 0.98rem; }
.plan-featured .plan-for { color: var(--sepia); opacity: 0.82; }
.plan-price { margin-top: 1.8rem; display: flex; align-items: baseline; gap: 0.25rem; }
.plan-currency { font-size: 1.1rem; color: var(--areia); }
.plan-featured .plan-currency { color: var(--sepia); }
.plan-amount {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-period { color: var(--areia); font-size: 0.95rem; }
.plan-featured .plan-period { color: var(--sepia); }
.plan-annual-note { margin-top: 0.6rem; font-size: 0.82rem; color: var(--areia); }
.plan-featured .plan-annual-note { color: var(--sepia); opacity: 0.78; }
.plan-feats {
  margin-top: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-weight: 300;
  flex: 1;
  position: relative;
  z-index: 2;
}
.plan-feats li { position: relative; padding-left: 1.65rem; color: var(--creme); }
.plan-featured .plan-feats li { color: var(--sepia); }
.plan-feats li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 12px; height: 1.5px;
  background: var(--areia);
}
.plan-feats li::after {
  content: "";
  position: absolute;
  left: 10px; top: 0.62em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--areia);
  transform: translateY(-1.25px);
}
.plan .btn-block { margin-top: 2rem; position: relative; z-index: 2; }

/* ============================================================
   7. GARANTIA — faixa areia (quebra clara)
   ============================================================ */
.section-sand {
  color: var(--onix);
  text-align: center;
  overflow: hidden;
  /* profundidade no fundo areia: brilho creme em cima, vinheta sépia embaixo */
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(245, 239, 230, 0.25), transparent 55%),
    radial-gradient(150% 130% at 50% 125%, rgba(46, 32, 23, 0.22), transparent 60%),
    var(--areia);
}
.section-sand::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 150px 150px;
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.guarantee-inner { max-width: 680px; margin-inline: auto; position: relative; z-index: 2; }

/* selo de garantia */
.seal { display: block; width: clamp(118px, 16vw, 148px); margin: 0 auto 1.9rem; }
.seal svg { width: 100%; height: auto; display: block; overflow: visible; }
.seal-ring { fill: none; stroke: var(--sepia); stroke-width: 1; opacity: 0.85; }
.seal-arc {
  fill: var(--sepia);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-anchor: middle;
}
.seal-num {
  fill: var(--onix);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 41px;
  text-anchor: middle;
  letter-spacing: -0.01em;
}
.seal-dot { fill: var(--sepia); }

.guarantee-title {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  color: var(--onix);
  text-wrap: balance;
}
.guarantee-text {
  margin-top: 1.3rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--sepia);
  font-weight: 300;
  max-width: 54ch;
  margin-inline: auto;
}

/* pontos de tranquilidade */
.guarantee-points {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.9rem auto 0;
  padding: 0;
  text-align: left;
}
.guarantee-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--sepia);
  font-size: 1.02rem;
}
.gp-check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(46, 32, 23, 0.12);
  color: var(--sepia);
}
.gp-check svg { width: 11px; height: 11px; }
.gp-check svg path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.guarantee-confidence {
  margin: 2.1rem auto 0;
  max-width: 34ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  color: var(--onix);
}
.guarantee-cta { margin-top: 2.2rem; }

/* ============================================================
   8. FAQ
   ============================================================ */
.faq-list { max-width: 780px; position: relative; z-index: 2; }
.faq-item { border-bottom: 1px solid var(--areia-14); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 2.6rem 1.6rem 0;
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--creme);
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--areia); }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.4rem; top: 50%;
  width: 16px; height: 1.5px;
  background: var(--areia);
  transform: translateY(-50%);
  transition: transform 0.4s var(--ease);
}
.faq-item summary::before {
  content: "";
  position: absolute;
  right: 1.15rem; top: 50%;
  width: 1.5px; height: 16px;
  background: var(--areia);
  transform: translateY(-50%) scaleY(1);
  transition: transform 0.4s var(--ease);
}
.faq-item[open] summary::before { transform: translateY(-50%) scaleY(0) rotate(90deg); }
.faq-item[open] summary { color: var(--creme); }
.faq-answer {
  padding: 0 2.6rem 1.8rem 0;
  color: var(--areia);
  font-weight: 300;
  max-width: 60ch;
}
.faq-item[open] .faq-answer { animation: faqIn 0.45s var(--ease-out); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   9. CTA FINAL
   ============================================================ */
.section-final {
  text-align: center;
  padding-block: clamp(7rem, 13vw, 12rem);
  overflow: hidden;
  isolation: isolate;
}
.final-bg { position: absolute; inset: 0; z-index: 0; }
.final-bg .vortex { opacity: 0.7; }
.final-inner { max-width: 800px; margin-inline: auto; position: relative; z-index: 3; }
.final-title { font-size: clamp(2.2rem, 5vw, 3.7rem); letter-spacing: -0.005em; }
.final-title em { color: var(--areia); }
.final-sub { margin-top: 1.5rem; color: var(--areia); font-size: 1.12rem; }
.section-final .btn { margin-top: 2.7rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  border-top: 1px solid var(--areia-14);
  padding-block: 4rem;
  overflow: hidden;
  isolation: isolate;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--areia); font-size: 1.1rem; }
.footer-divider { width: 48px; height: 1px; background: var(--areia-30); margin-block: 0.4rem; }
.footer-signature {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--areia);
}
.footer-legal { font-size: 0.85rem; color: var(--areia); opacity: 0.6; }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 940px) {
  /* vórtice mais discreto e fundo mais escuro para legibilidade do texto */
  .hero-bg .vortex { opacity: 0.6; }
  .hero-veil {
    background:
      radial-gradient(135% 92% at 50% 44%, rgba(21,12,6,0.34) 0%, rgba(21,12,6,0.64) 58%, var(--onix) 100%),
      linear-gradient(to bottom, rgba(21,12,6,0.55), rgba(21,12,6,0.2) 28%, rgba(21,12,6,0.24) 64%, rgba(21,12,6,0.72));
  }
  .pain-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.6rem; max-width: 460px; margin-inline: auto; }
  .steps::before { display: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan-featured { transform: none; order: -1; animation: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .kglyph { opacity: 0.05; width: clamp(120px, 34vw, 220px); }
  .facets { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { min-height: auto; }
  .steps { grid-template-columns: 1fr; }
  .facets { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
}

/* Comparativo no mobile: tabela compacta de 3 colunas (igual ao print) —
   rótulo | processo manual (x) | coluna Kronos destacada com logo no topo (v) */
@media (max-width: 680px) {
  .compare { grid-template-columns: 23% 38.5% 38.5%; }
  /* destaque da coluna Kronos por célula (em vez do painel absoluto) */
  .compare-panel { display: none; }
  .c-tag { display: none; }
  .c-good { background: var(--sepia); }
  .compare-row.is-head .c-good { border-radius: 8px 8px 0 0; }
  .compare-row:last-child .c-good { border-radius: 0 0 8px 8px; }

  .c-dim, .c-bad, .c-good {
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.7rem 0.55rem;
  }
  .c-dim {
    font-size: 0.92rem;
    justify-content: center;
  }
  .c-txt { font-size: 0.78rem; line-height: 1.28; }

  /* cabeçalho */
  .c-head { font-size: 0.58rem; letter-spacing: 0.08em; padding-block: 0.9rem; }
  .c-good.c-head { gap: 0.45rem; align-items: center; }
  .c-head-logo { height: 26px; }

  /* marcas menores */
  .mk { width: 18px; height: 18px; }
  .mk svg { width: 10px; height: 10px; }
}

/* ============================================================
   ACESSIBILIDADE — movimento reduzido
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .plan-featured { transform: translateY(-10px); }
}
