/* =========================================================
   CLINVI — Section styles
   ========================================================= */

/* ====== HERO ====== */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  width: 1400px; height: 1400px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(160,194,158,.25), rgba(160,194,158,0) 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -40%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, rgba(97,145,173,.18), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 50%, transparent 90%);
  opacity: .4;
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 10px;
}
.hero-headline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 28vw, 360px);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-headline-row { grid-template-columns: 1fr; }
  .hero-side { display: none; }
}
.hero h1 {
  max-width: 17ch;
  line-height: .98;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--forest);
}
.hero-sub {
  margin-top: 26px;
  max-width: 56ch;
  font-size: clamp(17px, 1.35vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
}
.hero-cta-row { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 30px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-mute);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-item svg { color: var(--forest); }

/* Hero side cards — fills the right of the headline */
.hero-side { position: relative; align-self: stretch; }
.hero-side-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
}
.hero-side-card {
  position: absolute;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(55,89,67,.12);
  border-radius: 16px;
  box-shadow:
    0 18px 50px -22px rgba(55,89,67,.4),
    0 6px 16px -8px rgba(49,59,60,.18);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.hero-side-card:hover {
  transform: translateY(-3px) rotate(0deg) !important;
  box-shadow:
    0 26px 60px -22px rgba(55,89,67,.5),
    0 10px 22px -8px rgba(49,59,60,.22);
}

/* live now */
.hero-card-live {
  top: 4%;
  left: -2%;
  right: 12%;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  transform: rotate(-2.5deg);
  z-index: 2;
}
.hero-card-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--olive);
  position: relative;
  flex-shrink: 0;
}
.hero-card-pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--olive);
  opacity: .35;
  animation: heroPulse 1.8s ease-out infinite;
}
@keyframes heroPulse {
  0% { transform: scale(.6); opacity: .6; }
  100% { transform: scale(2); opacity: 0; }
}
.hero-card-eyebrow {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.hero-card-name {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--graphite);
  font-weight: 400;
  margin-top: 2px;
}
.hero-card-status {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(160,194,158,.22);
}

/* quote */
.hero-card-quote {
  top: 36%;
  right: -4%;
  left: 8%;
  padding: 18px 18px 16px;
  transform: rotate(2deg);
  z-index: 3;
}
.hero-card-quote-mark {
  color: var(--leaf);
  opacity: .5;
  margin-bottom: 6px;
}
.hero-card-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.25;
  color: var(--graphite);
  margin: 0 0 14px;
}
.hero-card-byline {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.35;
}
.hero-card-byline strong { color: var(--graphite); font-weight: 500; font-size: 12px; }
.hero-card-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--forest));
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  flex-shrink: 0;
}

/* stat */
.hero-card-stat {
  bottom: 0;
  left: -4%;
  right: 22%;
  padding: 14px 16px;
  transform: rotate(-1.5deg);
  z-index: 2;
}
.hero-card-stat-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--forest);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-card-stat-label {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.hero-card-bar {
  margin-top: 10px;
  height: 4px;
  border-radius: 999px;
  background: rgba(55,89,67,.1);
  overflow: hidden;
}
.hero-card-bar span {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--leaf), var(--forest));
  border-radius: 999px;
}

.hero-product {
  margin-top: clamp(60px, 8vw, 90px);
  position: relative;
  z-index: 2;
}
.hero-product-frame {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(55,89,67,.06), rgba(55,89,67,.02));
  padding: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.hero-product-frame::after {
  content: "";
  position: absolute; inset: -40px -40px -80px;
  background: radial-gradient(closest-side, rgba(160,194,158,.35), transparent 75%);
  z-index: -1;
  filter: blur(30px);
}

/* ====== App mock chrome ====== */
.app-mock {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
}
.app-titlebar {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fafaf3, #ffffff);
  font-size: 12px;
  color: var(--ink-mute);
}
.tl-dots { display: flex; gap: 6px; margin-right: 12px; }
.tl-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e5e5db; }
.tl-dots span:nth-child(1){ background:#f1b1a5; }
.tl-dots span:nth-child(2){ background:#f3d693; }
.tl-dots span:nth-child(3){ background:#a4cda1; }
.tl-url { padding: 4px 10px; border-radius: 6px; background: #f4f4ec; }

.app-side {
  background: #FAFAF3;
  border-right: 1px solid var(--line-soft);
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.app-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px 18px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 12px;
}
.app-brand img { height: 22px; }
.app-nav {
  display: flex; flex-direction: column; gap: 2px;
}
.app-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.app-nav a:hover { background: rgba(55,89,67,.05); }
.app-nav a.active { background: var(--forest); color: var(--cream); }
.app-nav a.active svg { color: var(--cream); }
.app-nav a svg { color: var(--ink-mute); flex-shrink: 0; }

.app-main {
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 18px;
  background: #ffffff;
  min-height: 0;
}
.app-h {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.app-h-title { font-family: var(--serif); font-size: 22px; }
.app-h-meta { font-size: 12px; color: var(--ink-mute); }
.app-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.stat {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 12px 14px;
  background: #FCFCF7;
}
.stat-label { font-size: 11px; color: var(--ink-mute); letter-spacing: .04em; text-transform: uppercase; }
.stat-val { font-family: var(--serif); font-size: 22px; margin-top: 4px; }
.stat-trend { font-size: 11px; color: var(--olive); margin-top: 2px; }
.stat-trend.down { color: #b87a5a; }

.app-row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 14px;
}
.panel {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px 16px;
  background: #ffffff;
}
.panel-title { font-size: 13px; font-weight: 500; margin-bottom: 12px; display: flex; justify-content: space-between; }
.panel-title .pill { font-size: 10px; background: rgba(160,194,158,.25); color: var(--olive-deep); padding: 2px 8px; border-radius: 999px; font-weight: 500; }

.appt {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
}
.appt + .appt { margin-top: 4px; }
.appt:hover { background: var(--cream); }
.appt-time { font-size: 11px; color: var(--ink-mute); width: 60px; }
.appt-bar { width: 3px; height: 24px; border-radius: 3px; background: var(--leaf); }
.appt-bar.b2 { background: var(--sky-soft); }
.appt-bar.b3 { background: var(--sand); }
.appt-name { font-size: 13px; }
.appt-meta { font-size: 11px; color: var(--ink-mute); }

.chart {
  height: 110px;
  position: relative;
  margin-top: 6px;
}
.chart svg { width: 100%; height: 100%; }

@media (max-width: 760px) {
  .app-mock { grid-template-columns: 1fr; min-height: 460px; }
  .app-side { display: none; }
  .app-stats { grid-template-columns: repeat(2, 1fr); }
  .app-row { grid-template-columns: 1fr; }
}

/* ====== Logos strip ====== */
.logos-strip {
  padding: 50px 0 30px;
  text-align: center;
}
.logos-strip-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  opacity: .8;
}
.logos-row .logo-item {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-mute);
  letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: 8px;
}

/* ====== Section: Identificação ====== */
.section-pain {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pain-head {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: #ffffff;
  border-radius: var(--r-lg);
  padding: 32px 30px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s, box-shadow .35s;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--leaf);
  line-height: 1;
  margin-bottom: 18px;
}
.pain-quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--forest-deep);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.pain-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.pain-foot {
  margin-top: 60px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
}
.pain-foot-text {
  max-width: 60ch;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: var(--graphite);
}

/* ====== Section: Origem (story) ====== */
.section-origin {
  background: var(--bg);
  position: relative;
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
@media (max-width: 980px) { .origin-grid { grid-template-columns: 1fr; } .origin-side { order: 2; } .origin-body { order: 1; } }
.origin-side { position: sticky; top: 120px; }
.origin-figure {
  position: relative;
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  isolation: isolate;
}
.origin-figure-glow {
  position: absolute;
  inset: -8% -10% -14% -8%;
  z-index: -1;
  background:
    radial-gradient(60% 55% at 25% 30%, rgba(55,89,67,.55) 0%, transparent 65%),
    radial-gradient(70% 60% at 75% 75%, rgba(160,194,158,.55) 0%, transparent 65%);
  filter: blur(40px);
  opacity: .9;
  pointer-events: none;
}
.origin-figure-photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow:
    0 30px 80px -30px rgba(55,89,67,.55),
    0 12px 30px -12px rgba(55,89,67,.4),
    inset 0 0 0 1px rgba(255,255,255,.6);
}
.origin-figure-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(248,249,239,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 14px 40px -16px rgba(49,59,60,.35);
  color: var(--ink);
}
.origin-figure-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 6px;
}
.origin-figure-caption h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--graphite);
  margin: 0 0 6px;
  line-height: 1.1;
}
.origin-figure-caption p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.origin-body p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 20px;
  font-weight: 300;
}
.origin-body p strong {
  color: var(--graphite);
  font-weight: 500;
}
.origin-body .pull {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--forest);
  line-height: 1.25;
  margin: 32px 0;
  padding-left: 26px;
  border-left: 2px solid var(--leaf);
}
.origin-tag {
  display: inline-block;
  margin-top: 30px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(160,194,158,.25);
  color: var(--olive-deep);
  font-size: 13px;
  font-weight: 500;
}

/* ====== Section: Como funciona ====== */
.section-steps {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.steps-head { max-width: 760px; margin: 0 auto 70px; text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 36px 30px 32px;
  background: #ffffff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-marker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}
.step-marker .num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
}
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.2; }
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.step-illust {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.steps-cta-row { margin-top: 54px; display: flex; justify-content: center; }

/* ====== Section: Custo invisível ====== */
.section-cost {
  background: var(--graphite);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-cost::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(160,194,158,.12), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(97,145,173,.10), transparent 55%);
}
.section-cost .container { position: relative; z-index: 1; }
.section-cost h2 { color: var(--cream); }
.section-cost .lede { color: rgba(248,249,239,.75); }
.section-cost .eyebrow { color: var(--leaf); }

.cost-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.cost-calc {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: clamp(30px, 5vw, 60px);
  backdrop-filter: blur(10px);
}
@media (max-width: 880px) { .cost-calc { grid-template-columns: 1fr; } }
.cost-text { font-size: 16px; color: rgba(248,249,239,.85); line-height: 1.7; font-weight: 300; }
.cost-text strong { color: var(--cream); font-weight: 500; }
.cost-numbers {
  display: flex; flex-direction: column; gap: 18px;
}
.cost-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cost-row:last-child { border-bottom: none; }
.cost-row-label { font-size: 13px; color: rgba(248,249,239,.65); text-transform: uppercase; letter-spacing: .1em; }
.cost-row-val { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 44px); color: var(--cream); }
.cost-row-val.danger { color: #f4b8a3; }

.cost-cta-row { margin-top: 50px; display: flex; justify-content: center; }
.section-cost .btn-primary { background: var(--leaf); color: var(--graphite); }
.section-cost .btn-primary:hover { background: var(--cream); }

/* ====== Before/After split ====== */
.split {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  position: relative;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(248,249,239,.08);
  z-index: 2;
}
.split::before {
  content: "→";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  color: var(--graphite);
  font-size: 22px;
  z-index: 3;
}
@media (max-width: 880px) { .split::after, .split::before { display: none; } }
.split-side {
  padding: clamp(30px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
}
.split-before {
  background: rgba(255,255,255,.02);
  border-right: 1px solid rgba(255,255,255,.08);
}
.split-after {
  background: linear-gradient(180deg, rgba(160,194,158,.12), rgba(160,194,158,.04));
}
.split-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500;
  width: fit-content;
}
.split-tag.bad { color: #e5a78d; }
.split-tag.good { color: var(--leaf); }
.split-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.split-title { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); color: var(--cream); }
.split-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.split-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.03);
  font-size: 15px;
  color: rgba(248,249,239,.85);
}
.split-list li svg { flex-shrink: 0; }
.split-before li { color: rgba(248,249,239,.6); text-decoration: line-through; text-decoration-color: rgba(229,167,141,.4); }
.split-after li { color: var(--cream); }
.split-after li svg { color: var(--leaf); }
.split-before li svg { color: #b87a5a; }

/* ====== Section: Funcionalidades ====== */
.section-features { background: var(--bg); }
.features-head { max-width: 760px; margin: 0 auto 80px; text-align: center; }
.features-stack {
  display: flex; flex-direction: column; gap: 24px;
}
.feat-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
}
.feat-row.flip { grid-template-columns: 1.15fr 0.85fr; }
.feat-row.flip .feat-text { order: 2; }
.feat-row.flip .feat-vis { order: 1; }
@media (max-width: 980px) {
  .feat-row, .feat-row.flip { grid-template-columns: 1fr; min-height: 0; }
  .feat-row.flip .feat-text { order: 1; }
  .feat-row.flip .feat-vis { order: 2; }
}
.feat-text {
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.feat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  width: fit-content;
}
.feat-tag svg { color: var(--forest); }
.feat-text h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.6vw, 34px); line-height: 1.15; color: var(--graphite); letter-spacing: -.015em; }
.feat-text p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
.feat-checks {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 8px;
}
.feat-checks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 500; color: var(--ink);
  list-style: none;
}
.feat-checks li svg { color: var(--olive); flex-shrink: 0; }

.feat-vis {
  background: linear-gradient(160deg, var(--cream-warm), var(--cream));
  border-left: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
}
.feat-row.flip .feat-vis { border-left: none; border-right: 1px solid var(--line-soft); }

/* Real screenshot inside feature row */
.feat-real {
  margin: 0;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-real-frame {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -28px rgba(20, 35, 25, .28), 0 6px 18px -10px rgba(20, 35, 25, .14);
  position: relative;
}
.feat-real-frame::before {
  content: "";
  display: block;
  height: 22px;
  background: linear-gradient(#FAFAF3, #F4F4EC);
  border-bottom: 1px solid var(--line-soft);
  background-image:
    radial-gradient(circle at 11px 11px, #E5A99A 3.5px, transparent 4px),
    radial-gradient(circle at 25px 11px, #E8C47A 3.5px, transparent 4px),
    radial-gradient(circle at 39px 11px, #A0C29E 3.5px, transparent 4px),
    linear-gradient(#FAFAF3, #F4F4EC);
  background-repeat: no-repeat;
}
.feat-real-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Google Calendar sync chip */
.feat-gcal {
  position: absolute;
  bottom: -18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 16px 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 28px -16px rgba(20, 35, 25, .22), 0 4px 10px -6px rgba(20, 35, 25, .12);
  animation: feat-gcal-float 4s ease-in-out infinite;
}
@keyframes feat-gcal-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.feat-gcal-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.feat-gcal-text { line-height: 1.25; }
.feat-gcal-eyebrow {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.feat-gcal-name {
  font-size: 13px;
  color: var(--graphite);
  font-weight: 500;
}
.feat-gcal-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34a853;
  position: relative;
  margin-left: 2px;
}
.feat-gcal-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #34a853;
  animation: feat-gcal-ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes feat-gcal-ping {
  0% { transform: scale(1); opacity: .65; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}
@media (max-width: 720px) {
  .feat-gcal { right: 10px; bottom: -14px; padding: 8px 12px 8px 10px; }
  .feat-gcal-icon { width: 30px; height: 30px; }
  .feat-gcal-icon svg { width: 18px; height: 18px; }
  .feat-gcal-eyebrow { font-size: 8px; }
  .feat-gcal-name { font-size: 11px; }
}

/* ============================================================
   Cartao do financeiro — "voce nao digita, voce clica"

   Mesma familia visual do .feat-gcal: cartao branco flutuando
   sobre o print. Encena em 9s o fluxo REAL do produto, que nao
   e lancamento automatico: a sessao realizada cai em "Sessoes a
   receber", voce lanca com um clique, e ai o total do mes sobe.

   Os valores conversam com o print atras ("Voce ja recebeu
   R$ 5.350,00"): 5.350 + 180 = 5.530.

   IMPORTANTE — o estado base do CSS e o estado FINAL da historia
   (botao ja "Lancado", total ja atualizado). A animacao so
   acrescenta o movimento. Assim, com movimento reduzido ligado
   (o `animation: none` do base.css), o cartao fica parado num
   estado que faz sentido em vez de invisivel ou pela metade.
   ============================================================ */
.feat-fin {
  position: absolute;
  bottom: -22px;
  left: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px 11px;
  box-shadow: 0 14px 28px -16px rgba(20, 35, 25, .22), 0 4px 10px -6px rgba(20, 35, 25, .12);
  animation: feat-fin-card 9s ease-in-out infinite;
}
.feat-fin-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feat-fin-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.feat-fin-label {
  display: block;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  white-space: nowrap;
}
.feat-fin-name {
  display: block;
  font-size: 12px;
  color: var(--graphite);
  font-weight: 500;
  white-space: nowrap;
}

/* --- Botao "Lancar" -> "Lancado" ---------------------------------
   Mesma tecnica do odometro: janela de uma linha com o excedente
   escondido e dois estados empilhados. */
.feat-fin-btn {
  height: 26px;
  overflow: hidden;
  border-radius: 999px;
  flex-shrink: 0;
}
.feat-fin-btn-roll {
  /* -50% da propria altura = uma linha exata, porque sao 2 filhos.
     Base = segundo estado ("Lancado"). Ver nota no topo do bloco. */
  transform: translateY(-50%);
  animation: feat-fin-btn 9s cubic-bezier(.2,.7,.2,1) infinite;
}
.feat-fin-btn-roll span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
/* Estado 1: botao a ser clicado */
.feat-fin-btn-roll span:first-child {
  background: var(--forest);
  color: var(--cream);
}
/* Estado 2: confirmado */
.feat-fin-btn-roll span:last-child {
  background: rgba(160, 194, 158, .22);
  border: 1px solid rgba(55, 89, 67, .16);
  color: var(--forest-deep);
}

/* --- Odometro do total ------------------------------------------- */
.feat-fin-odo {
  height: 24px;
  overflow: hidden;
}
.feat-fin-roll {
  transform: translateY(-50%);
  animation: feat-fin-roll 9s cubic-bezier(.2,.7,.2,1) infinite;
}
.feat-fin-roll span {
  display: block;
  height: 24px;
  line-height: 24px;
  font-size: 19px;
  font-weight: 600;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* O cartao inteiro entra, segura, e sai. A saida existe para o
   reinicio do ciclo acontecer com o cartao invisivel — sem ela, o
   total voltaria de 5.530 para 5.350 na frente do visitante. */
@keyframes feat-fin-card {
  0%          { opacity: 0; transform: translateY(10px); }
  7%, 88%     { opacity: 1; transform: translateY(0); }
  97%, 100%   { opacity: 0; transform: translateY(6px); }
}

/* O clique acontece aos 34%. */
@keyframes feat-fin-btn {
  0%, 30%     { transform: translateY(0); }     /* "Lancar" */
  38%, 100%   { transform: translateY(-50%); }  /* "Lancado" */
}

/* O total reage DEPOIS do clique — e isso que mostra causa e efeito. */
@keyframes feat-fin-roll {
  0%, 46%     { transform: translateY(0); }     /* R$ 5.350,00 */
  57%, 100%   { transform: translateY(-50%); }  /* R$ 5.530,00 */
}

@media (max-width: 720px) {
  .feat-fin { left: 10px; bottom: -18px; padding: 8px 12px 9px; }
  .feat-fin-top { gap: 10px; }
  .feat-fin-label { font-size: 8px; }
  .feat-fin-name { font-size: 11px; }
  .feat-fin-btn { height: 23px; }
  .feat-fin-btn-roll span { height: 23px; font-size: 10px; padding: 0 9px; }
  .feat-fin-odo { height: 21px; }
  .feat-fin-roll span { height: 21px; line-height: 21px; font-size: 16px; }
}

/* mock micro-cards */
.mock {
  background: #ffffff;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 460px;
  overflow: hidden;
}
.mock-h {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  background: #FCFCF7;
}
.mock-h-title { font-size: 13px; font-weight: 500; color: var(--graphite); }
.mock-h-pill { font-size: 10px; padding: 3px 10px; border-radius: 999px; background: rgba(160,194,158,.3); color: var(--olive-deep); font-weight: 500; }
.mock-body { padding: 18px; }

.mock-record {
  display: flex; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mock-record:last-child { border: none; padding-bottom: 0; }
.mock-record-time { font-size: 11px; color: var(--ink-mute); white-space: nowrap; padding-top: 2px; }
.mock-record-text { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.mock-record-text strong { color: var(--graphite); font-weight: 500; }

.mock-cal {
  display: grid;
  grid-template-columns: 60px repeat(5, 1fr);
  gap: 0;
  font-size: 11px;
}
.mock-cal-cell {
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  min-height: 28px;
  padding: 4px 6px;
  position: relative;
}
.mock-cal-cell:nth-last-child(-n+6) { border-bottom: none; }
.mock-cal-cell:nth-child(6n) { border-right: none; }
.mock-cal-h { font-weight: 500; color: var(--ink-mute); background: #FAFAF3; text-align: center; padding: 6px 0; }
.mock-cal-time { color: var(--ink-mute); padding: 4px 8px; text-align: right; background: #FAFAF3; }
.mock-cal-evt {
  position: absolute;
  inset: 4px 4px;
  background: var(--leaf);
  border-radius: 4px;
  padding: 4px 6px;
  color: var(--forest-darker);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
}
.mock-cal-evt.b { background: var(--sky-soft); color: #2c4659; }
.mock-cal-evt.c { background: var(--sand); color: #6a5d3b; }
.mock-cal-evt.tall { inset: 4px 4px -28px; }

/* mic / IA */
.mic-card {
  background: #ffffff;
  border-radius: var(--r-md);
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 380px;
  display: flex; flex-direction: column; gap: 16px;
}
.mic-row {
  display: flex; align-items: center; gap: 14px;
}
.mic-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.mic-btn::before, .mic-btn::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(55,89,67,.25);
  animation: pulse 2.5s ease-out infinite;
}
.mic-btn::after { animation-delay: 1.25s; }
@keyframes pulse {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.mic-wave {
  flex: 1;
  height: 30px;
  display: flex; align-items: center; gap: 3px;
}
.mic-wave span {
  flex: 1;
  background: var(--leaf);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
  height: 30%;
}
.mic-wave span:nth-child(1){ animation-delay: 0s; }
.mic-wave span:nth-child(2){ animation-delay: .1s; }
.mic-wave span:nth-child(3){ animation-delay: .2s; }
.mic-wave span:nth-child(4){ animation-delay: .3s; }
.mic-wave span:nth-child(5){ animation-delay: .4s; }
.mic-wave span:nth-child(6){ animation-delay: .5s; }
.mic-wave span:nth-child(7){ animation-delay: .6s; }
.mic-wave span:nth-child(8){ animation-delay: .7s; }
.mic-wave span:nth-child(9){ animation-delay: .6s; }
.mic-wave span:nth-child(10){ animation-delay: .5s; }
.mic-wave span:nth-child(11){ animation-delay: .4s; }
.mic-wave span:nth-child(12){ animation-delay: .3s; }
.mic-wave span:nth-child(13){ animation-delay: .2s; }
.mic-wave span:nth-child(14){ animation-delay: .1s; }
@keyframes wave {
  0%, 100% { height: 20%; opacity: .6; }
  50% { height: 90%; opacity: 1; }
}

.mic-transcript {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  border: 1px solid var(--line-soft);
}
.mic-transcript .typing::after {
  content: "▋";
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  color: var(--forest);
}
@keyframes blink { 50% { opacity: 0; } }

/* finance mock */
.fin-card { width: 100%; max-width: 460px; }
.fin-summary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.fin-cell { background: #ffffff; padding: 14px 12px; }
.fin-cell-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.fin-cell-val { font-family: var(--serif); font-size: 22px; margin-top: 4px; color: var(--graphite); }
.fin-cell-val.green { color: var(--olive); }
.fin-list { margin-top: 14px; display: flex; flex-direction: column; gap: 0; }
.fin-list-item {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  align-items: center;
}
.fin-list-item:last-child { border-bottom: none; }
.fin-name { color: var(--graphite); }
.fin-status { font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 500; }
.fin-status.paid { background: rgba(160,194,158,.3); color: var(--olive-deep); }
.fin-status.pend { background: rgba(212,207,186,.5); color: #6a5d3b; }
.fin-amt { font-weight: 500; color: var(--graphite); font-feature-settings: "tnum" 1; }

/* contracts */
.docs-card { width: 100%; max-width: 380px; position: relative; }
.docs-stack { position: relative; height: 320px; }
.doc-paper {
  position: absolute;
  width: 240px; height: 300px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 22px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 8px;
}
.doc-paper.p1 { left: 0; top: 10px; transform: rotate(-6deg); }
.doc-paper.p2 { left: 50px; top: 0; transform: rotate(2deg); background: #FCFCF7; }
.doc-paper.p3 { left: 90px; top: 8px; transform: rotate(8deg); }
.doc-paper-h { font-family: var(--serif); font-size: 13px; color: var(--forest); padding-bottom: 8px; border-bottom: 1px solid var(--line-soft); }
.doc-line { height: 4px; background: var(--mist); border-radius: 2px; }
.doc-line.short { width: 60%; }
.doc-line.mid { width: 80%; }
.doc-sig {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--forest);
  border-top: 1px solid var(--line-soft);
  padding-top: 8px;
}
.doc-stamp {
  position: absolute;
  right: -10px; bottom: 30px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--forest-darker);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  text-align: center;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  transform: rotate(-12deg);
  z-index: 5;
}

/* reports */
.report-card { width: 100%; max-width: 460px; }
.report-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.bars {
  display: flex; align-items: flex-end; gap: 4px; height: 100px;
  padding: 8px 0;
}
.bar {
  flex: 1; background: var(--leaf); border-radius: 3px 3px 0 0;
  min-height: 8px;
  transition: height .8s cubic-bezier(.2,.7,.2,1);
}
.bar.active { background: var(--forest); }
.bar-row {
  display: flex; gap: 2px; margin-top: 6px;
  font-size: 9px; color: var(--ink-mute);
  text-align: center;
}
.bar-row span { flex: 1; }

/* ====== Section: Segurança ====== */
.section-security {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.security-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.security-head h2 { margin-top: 12px; }
.security-cards {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
  gap: 16px;
  margin-bottom: 80px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 880px) { .security-cards { display: flex; flex-direction: row; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 16px; gap: 12px; align-items: flex-start; justify-content: center; } .sec-shot { min-width: 52vw; max-width: 52vw; flex-shrink: 0; max-height: 55vh; overflow: hidden; } }
/* Real screenshot version of security report comparison */
.security-source {
  display: flex; justify-content: center; align-items: center; gap: 4px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: -36px 0 28px;
}
.security-source a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(55,89,67,.3);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.security-source a:hover { border-color: var(--forest); }

.sec-shot {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px -16px rgba(49,59,60,.18);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
  filter: saturate(.92);
  opacity: .55;
}
.sec-shot.featured {
  filter: none;
  opacity: 1;
  transform: translateY(-14px) scale(1.04);
  z-index: 2;
  box-shadow:
    0 30px 60px -20px rgba(55,89,67,.4),
    0 12px 28px -12px rgba(55,89,67,.25),
    0 0 0 2px var(--forest);
}
.sec-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.sec-shot-label {
  position: absolute;
  top: 22%; left: 46%;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(49,59,60,.92);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 3;
  backdrop-filter: blur(8px);
}
.sec-shot-label.is-clinvi {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 14px -4px rgba(55,89,67,.6);
}
.sec-shot-label.is-clinvi::before {
  content: "✦";
  font-size: 10px;
}

/* Discreet corner tag — bottom-right, small, doesn't overlap report */
.sec-shot-corner {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(49,59,60,.78);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sec-shot-corner.is-clinvi {
  background: var(--forest);
  color: var(--cream);
  padding: 6px 14px;
  font-size: 11px;
  box-shadow: 0 6px 16px -4px rgba(55,89,67,.55);
}
.sec-shot-corner.is-clinvi::before {
  content: "✦ ";
}

/* Redact — two slim bars, only over Site URL and IP Address values.
   Calibrated to securityheaders.com layout. */
.sec-shot-redact {
  position: absolute;
  left: 32%; right: 6%;
  top: 35.5%;
  height: 5%;
  z-index: 2;
  border-radius: 4px;
  background: var(--graphite);
  opacity: .92;
  pointer-events: none;
}
.sec-shot-redact::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 145%;
  height: 100%;
  border-radius: 4px;
  background: var(--graphite);
}
@media (max-width: 880px) {
  .sec-shot.featured { transform: none; }
}

/* trust list */
/* Trust pillars — dark glass slab, premium */
.trust-pillars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(160, 194, 158, .14), transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 100%, rgba(160, 194, 158, .10), transparent 60%),
    linear-gradient(160deg, #1F3329 0%, #0F1F18 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -28px rgba(15, 31, 24, .55),
    0 10px 24px -14px rgba(15, 31, 24, .35),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}
.trust-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: .55;
}
.trust-pillars::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}
.pillar {
  position: relative;
  padding: 56px 22px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transition: background .35s ease;
  z-index: 1;
}
.pillar + .pillar::before {
  content: "";
  position: absolute;
  left: 0; top: 22%;
  height: 56%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .12) 30%, rgba(255, 255, 255, .12) 70%, transparent);
}
.pillar:hover { background: linear-gradient(180deg, rgba(160, 194, 158, .06), transparent 70%); }
.pillar-icon {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8F3E5;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .08), transparent 60%),
    linear-gradient(160deg, rgba(160, 194, 158, .22), rgba(160, 194, 158, .04));
  border: 1px solid rgba(160, 194, 158, .25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 0 0 6px rgba(160, 194, 158, .04),
    0 6px 18px -8px rgba(160, 194, 158, .35);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
}
.pillar-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(160, 194, 158, .18);
  opacity: 0;
  transform: scale(.92);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2, .8, .2, 1);
}
.pillar-icon::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 194, 158, .25), transparent 65%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: -1;
}
.pillar:hover .pillar-icon {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 0 0 6px rgba(160, 194, 158, .06),
    0 14px 28px -10px rgba(160, 194, 158, .55);
}
.pillar:hover .pillar-icon::before { opacity: 1; transform: scale(1); }
.pillar:hover .pillar-icon::after { opacity: 1; }
.pillar h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #F4F7F2;
  letter-spacing: -.005em;
  margin: 0;
}
@media (max-width: 980px) {
  .trust-pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar { padding: 40px 18px 38px; }
  .pillar + .pillar::before { display: none; }
  .pillar:nth-child(n+3)::before {
    content: "";
    position: absolute;
    top: 0; left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  }
  .pillar:nth-child(2n)::after {
    content: "";
    position: absolute;
    left: 0; top: 22%;
    height: 56%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .1), transparent);
  }
}
@media (max-width: 520px) {
  .trust-pillars { grid-template-columns: 1fr; }
  .pillar { padding: 32px 20px; }
  .pillar::before, .pillar::after { display: none !important; }
  .pillar + .pillar { border-top: 1px solid rgba(255, 255, 255, .08); }
}

/* Legacy trust-grid (deprecated, kept harmless) */
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-card {
  background: #ffffff;
  border-radius: var(--r-md);
  padding: 24px 22px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s, box-shadow .25s;
}
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(160,194,158,.2);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.trust-card h4 { font-family: var(--sans); font-weight: 500; font-size: 14px; color: var(--graphite); }
.trust-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

.security-foot {
  margin-top: 50px;
  text-align: center;
}
.security-foot p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--graphite);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.3;
}

/* ====== Section: Tudo em um só lugar (Telas) ====== */
.section-all {
  background: var(--bg);
  overflow: hidden;
}
.all-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.all-tabs {
  display: flex; justify-content: flex-start; gap: 4px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  max-width: calc(100vw - 48px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
  margin: 0 auto 40px;
}
.all-tab {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 400;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.all-tab:hover { color: var(--forest); }
.all-tab.active {
  background: var(--forest);
  color: var(--cream);
  font-weight: 500;
}

.all-stage {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--cream-warm), var(--cream));
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 40px);
  min-height: 580px;
  overflow: hidden;
}
.all-stage::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(55,89,67,.08), transparent 60%);
  pointer-events: none;
}
.all-screen {
  position: absolute;
  inset: 30px;
  opacity: 0;
  transition: opacity .5s;
  display: flex; align-items: stretch; justify-content: center;
}
.all-screen.active { opacity: 1; position: relative; inset: 0; }
.all-screen .app-mock { box-shadow: var(--shadow-lg); width: 100%; max-width: 1080px; margin: 0 auto; min-height: 540px; }

/* Real screenshot variant */
.all-screen { flex-direction: column; gap: 22px; }
.all-screen .real-shot {
  margin: 0;
  width: 100%;
  max-width: 1180px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -28px rgba(20, 35, 25, .25), 0 8px 24px -12px rgba(20, 35, 25, .12);
  position: relative;
  align-self: center;
}
.all-screen .real-shot::before {
  content: "";
  display: block;
  height: 30px;
  background: linear-gradient(#FAFAF3, #F4F4EC);
  border-bottom: 1px solid var(--line-soft);
  background-image:
    radial-gradient(circle at 14px 15px, #E5A99A 5px, transparent 5.5px),
    radial-gradient(circle at 32px 15px, #E8C47A 5px, transparent 5.5px),
    radial-gradient(circle at 50px 15px, #A0C29E 5px, transparent 5.5px),
    linear-gradient(#FAFAF3, #F4F4EC);
  background-repeat: no-repeat;
}
.all-screen .real-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.all-meta {
  align-self: center;
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.all-meta-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(55, 89, 67, .08);
  border: 1px solid rgba(55, 89, 67, .15);
}
.all-meta p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.all-stage { min-height: auto; }
.all-screen { position: relative; inset: auto; }
.all-screen:not(.active) { display: none; }

/* Different stages share .app-mock */
/* Patient list */
.tbl { width: 100%; font-size: 12px; }
.tbl thead th {
  text-align: left;
  padding: 10px 12px;
  background: #FAFAF3;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line-soft);
}
.tbl tbody tr { border-bottom: 1px solid var(--line-soft); }
.tbl tbody tr:hover { background: #FCFCF7; }
.tbl td {
  padding: 12px;
  vertical-align: middle;
  font-size: 13px;
  color: var(--ink-soft);
}
.tbl-name { display: flex; align-items: center; gap: 10px; }
.tbl-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--forest-darker);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500;
}
.tbl-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-block;
}
.tbl-tag.green { background: rgba(160,194,158,.3); color: var(--olive-deep); }
.tbl-tag.blue { background: rgba(186,204,219,.4); color: #2c4659; }
.tbl-tag.sand { background: rgba(212,207,186,.5); color: #6a5d3b; }

/* ====== Section: Planos ====== */
.section-plans {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: 0px;
}
.plans-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 980px) { .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.plan {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  position: relative;
  box-shadow: var(--shadow-glow);
  transform: translateY(-12px);
}
.plan.featured:hover { transform: translateY(-16px); }
.plan-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--forest-darker);
  font-weight: 500;
  position: absolute;
  top: -12px; left: 32px;
}
.plan-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--graphite);
}
.plan.featured .plan-name { color: var(--cream); }
.plan-desc { font-size: 13px; color: var(--ink-mute); }
.plan.featured .plan-desc { color: rgba(248,249,239,.7); }
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--serif);
  color: var(--graphite);
  letter-spacing: -.02em;
}
.plan.featured .plan-price { color: var(--cream); }
.plan-price .currency { font-size: 18px; }
.plan-price .amount { font-size: 56px; line-height: 1; font-weight: 400; }
.plan-price .period { font-size: 14px; color: var(--ink-mute); font-family: var(--sans); margin-left: 4px; }
.plan.featured .plan-price .period { color: rgba(248,249,239,.6); }
.plan-cta { margin-top: 6px; }
.plan-cta .btn { width: 100%; justify-content: center; }
.plan.featured .btn-primary { background: var(--leaf); color: var(--graphite); }
.plan.featured .btn-primary:hover { background: var(--cream); }

/* "O mais completo" — secondary highlight */
.plan.plan-complete {
  border-color: var(--olive);
  background: linear-gradient(180deg, #ffffff 0%, rgba(160,194,158,.08) 100%);
  position: relative;
}
.plan.plan-complete:hover { border-color: var(--forest); }
.plan-tag-complete {
  background: var(--graphite) !important;
  color: var(--cream) !important;
}

/* Reveal slide-from-left/right for split section */
.split-side.split-before { transform: translateX(-30px); opacity: 0; transition: transform .9s cubic-bezier(.2,.7,.2,1), opacity .9s; }
.split-side.split-after { transform: translateX(30px); opacity: 0; transition: transform .9s cubic-bezier(.2,.7,.2,1) .15s, opacity .9s .15s; }
.split.in .split-side.split-before { transform: translateX(0); opacity: 1; }
.split.in .split-side.split-after { transform: translateX(0); opacity: 1; }
.split-side.split-before li { transform: translateX(-20px); opacity: 0; transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .6s; }
.split-side.split-after li { transform: translateX(20px); opacity: 0; transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .6s; }
.split.in .split-side.split-before li { transform: translateX(0); opacity: 1; }
.split.in .split-side.split-after li { transform: translateX(0); opacity: 1; }
.split.in .split-side li:nth-child(2) { transition-delay: .25s; }
.split.in .split-side li:nth-child(3) { transition-delay: .35s; }
.split.in .split-side li:nth-child(4) { transition-delay: .45s; }
.split.in .split-side li:nth-child(5) { transition-delay: .55s; }
.split.in .split-side li:nth-child(6) { transition-delay: .65s; }

/* Cost section — clearer "loss" framing */
.cost-loss-banner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(244,184,163,.15);
  color: #f4b8a3;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(244,184,163,.25);
  margin-bottom: 18px;
}
.cost-loss-banner svg { color: currentColor; }
.cost-numbers-title {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,249,239,.55);
  font-weight: 500;
  margin-bottom: 8px;
}
.cost-row-sub {
  font-size: 11px;
  color: rgba(244,184,163,.7);
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.plan-divider { height: 1px; background: var(--line-soft); }
.plan.featured .plan-divider { background: rgba(248,249,239,.15); }
.plan-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.plan-feats li svg { color: var(--forest); flex-shrink: 0; margin-top: 2px; }
.plan.featured .plan-feats li { color: rgba(248,249,239,.85); }
.plan.featured .plan-feats li svg { color: var(--leaf); }

/* Cents display in plan price */
.plan-price .cents {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: -2px;
  align-self: flex-start;
  margin-top: 6px;
}
.plan.featured .plan-price .cents { color: rgba(248,249,239,.65); }

/* Small button variant */
.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

/* Eyebrow variant on dark backgrounds */
.eyebrow-on-dark {
  color: var(--sky-soft);
}
.eyebrow-on-dark::before { background: var(--sky-soft) !important; }

/* ====== Comparison banner ====== */
.compare-banner {
  margin: 96px auto 0;
  max-width: 1100px;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(186, 204, 219, .14), transparent 60%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(160, 194, 158, .14), transparent 60%),
    linear-gradient(135deg, #1B2A3A 0%, #15212E 100%);
  color: #F4F7F2;
  border-radius: 22px;
  padding: 44px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 50px -32px rgba(20, 35, 50, .45);
}
.compare-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.compare-banner h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -.01em;
  color: #F4F7F2;
  margin: 16px auto 0;
  max-width: 38ch;
  position: relative;
}
.compare-banner h3 em.serif { color: var(--sky-soft); }

/* ====== Comparison table ====== */
.compare-wrap {
  margin-top: 56px;
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 30px 60px -36px rgba(20, 35, 25, .22);
  overflow: visible;
  padding-top: 18px;
}
/* Pro column "lifted" effect */
.compare-tbl thead .ct-pro-col,
.compare-tbl tbody td.ct-pro-col {
  position: relative;
}
.compare-tbl thead .ct-pro-col::before {
  content: "";
  position: absolute;
  inset: -18px -1px 0 -1px;
  background: linear-gradient(180deg, rgba(97,145,173,.18), rgba(97,145,173,.06) 60%, rgba(97,145,173,.04));
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(97,145,173,.22);
  border-bottom: none;
  z-index: 0;
  box-shadow: 0 -10px 30px -16px rgba(97,145,173,.35);
}
.compare-tbl thead .ct-pro-col > * { position: relative; z-index: 1; }
.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}

/* Header */
.compare-tbl thead th {
  padding: 28px 22px 26px;
  text-align: center;
  vertical-align: top;
  font-weight: 400;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  position: relative;
}
.compare-tbl thead th.ct-feat-h { background: transparent; border-bottom-color: var(--line-soft); padding: 0; width: 26%; }
.compare-tbl thead .ct-pro-col {
  border-left: none;
  border-right: none;
  border-bottom-color: transparent;
  padding-top: 38px;
}
.ct-plan-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--sky);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px -6px rgba(97,145,173,.6);
}
.ct-plan-tag-muted {
  background: rgba(255,255,255,.6);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  box-shadow: none;
  font-weight: 600;
}
.ct-plan-tag-perf {
  background: rgba(55,89,67,.15);
  color: var(--forest);
  border: 1px solid rgba(55,89,67,.35);
  font-weight: 600;
}
.ct-plan-perf { color: var(--forest); font-weight: 700; }
.ct-plan {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -.015em;
  color: var(--graphite);
  line-height: 1.1;
}
.ct-pro-col .ct-plan { color: var(--sky); }
.ct-plan-price {
  margin: 14px 0 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  color: var(--graphite);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ct-plan-price .ct-currency {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-right: 4px;
  align-self: flex-start;
  margin-top: 8px;
}
.ct-plan-price .ct-amount {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--graphite);
}
.ct-pro-col .ct-plan-price .ct-amount { color: var(--sky); }
.ct-plan-price .ct-cents {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--graphite);
  letter-spacing: -.01em;
}
.ct-pro-col .ct-plan-price .ct-cents { color: var(--sky); }
.ct-plan-price .ct-period {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 6px;
  align-self: flex-end;
  margin-bottom: 6px;
}
.ct-cta {
  width: 100%;
  max-width: 240px;
  justify-content: center;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  letter-spacing: -.005em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ct-cta.btn-primary {
  box-shadow: 0 14px 30px -10px rgba(34, 60, 39, .5), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.ct-cta.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(34, 60, 39, .6); }
.ct-cta.btn-ghost {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--graphite);
}
.ct-cta.btn-ghost:hover {
  border-color: var(--graphite);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(20, 35, 25, .25);
}

/* Group rows */
.compare-tbl .ct-group td {
  padding: 26px 24px 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--graphite);
  background: #FAFAF3;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.ct-group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Body rows */
.compare-tbl tbody tr {
  transition: background .2s ease;
}
.compare-tbl tbody tr:not(.ct-group):hover {
  background: rgba(160, 194, 158, .05);
}
.compare-tbl tbody td {
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.compare-tbl tbody td.ct-feat {
  text-align: left;
  color: var(--graphite);
  font-weight: 400;
  padding-left: 28px;
}
.compare-tbl tbody td.ct-pro-col {
  background: rgba(97, 145, 173, .045);
  border-left: 1px solid rgba(97,145,173,.12);
  border-right: 1px solid rgba(97,145,173,.12);
  font-weight: 500;
  color: var(--graphite);
}

/* Yes / No icons */
.ct-y, .ct-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  position: relative;
}
.ct-y {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 2px 6px -2px rgba(106,141,103,.5);
}
.ct-y::before {
  content: "";
  width: 11px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -2px);
}
.ct-n {
  background: rgba(232, 226, 213, .65);
  color: var(--ink-mute);
  border: 1px solid var(--line-soft);
}
.ct-n::before, .ct-n::after {
  content: "";
  position: absolute;
  width: 10px; height: 1.5px;
  background: var(--ink-mute);
  border-radius: 1px;
}
.ct-n::before { transform: rotate(45deg); }
.ct-n::after { transform: rotate(-45deg); }
.ct-text {
  display: inline-block;
  font-size: 13px;
  color: var(--graphite);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Pro column extends down */
.compare-tbl tbody tr:last-child td.ct-pro-col {
  border-bottom: 1px solid rgba(97,145,173,.18);
}

/* Responsive: scroll horizontally on small screens */
@media (max-width: 880px) {
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-tbl { min-width: 560px; }
  .compare-banner { padding: 32px 22px; }
}

.plans-foot {
  margin-top: 50px;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-mute);
}
.plans-foot .stripe-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 12px;
}

/* ====== Section: FAQ ====== */
.section-faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-side h2 { margin-bottom: 18px; }
.faq-side p { color: var(--ink-soft); }

.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--graphite);
  font-weight: 400;
  letter-spacing: -.01em;
  transition: color .2s;
}
.faq-q:hover { color: var(--forest); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s, background .25s, border-color .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--forest); border-color: var(--forest); color: var(--cream); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.7,.2,1);
}
.faq-a-inner {
  padding: 0 0 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 65ch;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ====== Section: CTA Final ====== */
.section-final {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 0%, rgba(160,194,158,.25), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 100%, rgba(248,249,239,.06), transparent 60%);
}
.section-final .container { position: relative; z-index: 1; }
.final-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.section-final h2 {
  color: var(--cream);
  font-size: clamp(40px, 5.6vw, 76px);
}
.section-final h2 em { color: var(--leaf); font-style: italic; }
.final-sub {
  margin-top: 26px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(248,249,239,.8);
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
.final-cta-row {
  margin-top: 44px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.section-final .btn-primary { background: var(--leaf); color: var(--graphite); }
.section-final .btn-primary:hover { background: var(--cream); }
.section-final .btn-ghost { color: var(--cream); border-color: rgba(248,249,239,.25); }
.section-final .btn-ghost:hover { background: rgba(248,249,239,.06); border-color: rgba(248,249,239,.4); }

.final-bg-mark {
  position: absolute;
  bottom: -120px; right: -100px;
  width: 600px; height: 600px;
  opacity: .04;
}
