/* ─────────────────────────────────────────────────────────────
   Moraes Digital — design tokens & landing-page styles
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette (overridden live by Tweaks) */
  --accent: #C8F745;          /* electric lime */
  --ink: #0E2A1E;             /* deep forest, near-black */
  --paper: #F1EDE3;           /* warm bone */
  --ink-soft: rgba(14, 42, 30, 0.62);
  --ink-line: rgba(14, 42, 30, 0.14);
  --ink-tint: rgba(14, 42, 30, 0.04);

  /* Typography (overridden live by Tweaks) */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: #0a0a0a;  /* canvas frame around the previews */
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  height: 100vh;
}

button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────────────────────
   App shell — two device previews side-by-side
   ───────────────────────────────────────────────────────────── */
.app {
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(200, 247, 69, 0.05), transparent 60%),
    radial-gradient(1000px 500px at 80% 100%, rgba(255, 255, 255, 0.03), transparent 60%),
    #0a0a0a;
  display: grid;
  grid-template-rows: auto 1fr;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  user-select: none;
}
.app-header .brand-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}
.app-header strong { color: #fff; font-weight: 600; letter-spacing: 0.14em; }

.stage {
  position: relative;
  overflow: hidden;
}

.stage-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 36px;
  align-items: center;
}

/* ─────────────────────────────────────────────────────────────
   Device chrome — minimal, focus on the design
   ───────────────────────────────────────────────────────────── */
.frame {
  position: relative;
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.frame.desktop {
  width: 1180px;
  height: 760px;
}
.frame.desktop .chrome {
  height: 38px;
  background: #f4f1ea;
  border-bottom: 1px solid rgba(14, 42, 30, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  flex-shrink: 0;
}
.frame.desktop .chrome .dots { display: flex; gap: 6px; }
.frame.desktop .chrome .dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(14, 42, 30, 0.18);
}
.frame.desktop .chrome .url {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(14, 42, 30, 0.55);
  letter-spacing: 0.02em;
}
.frame.desktop .chrome .url::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
}

.frame.mobile {
  width: 390px;
  height: 800px;
  border-radius: 44px;
  padding: 14px;
  background: #111;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.frame.mobile .screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.frame.mobile .status {
  position: absolute; top: 0; left: 0; right: 0;
  height: 38px;
  z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 22px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  pointer-events: none;
}
.frame.mobile .notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 105px; height: 28px;
  background: #111;
  border-radius: 99px;
  z-index: 20;
}

/* Scrollable viewport inside each frame */
.viewport {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  background: var(--paper);
  scroll-behavior: smooth;
}
.frame.desktop .viewport { height: calc(100% - 38px); }
.frame.mobile .viewport { padding-top: 38px; }

/* Custom scrollbar */
.viewport::-webkit-scrollbar { width: 10px; height: 10px; }
.viewport::-webkit-scrollbar-track { background: transparent; }
.viewport::-webkit-scrollbar-thumb {
  background: rgba(14, 42, 30, 0.15);
  border-radius: 99px;
  border: 2px solid var(--paper);
}
.viewport::-webkit-scrollbar-thumb:hover { background: rgba(14, 42, 30, 0.3); }

/* ─────────────────────────────────────────────────────────────
   LP — base text rules
   ───────────────────────────────────────────────────────────── */
.lp {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  background: var(--paper);
}
.lp.mobile { font-size: 15px; }

.lp h1, .lp h2, .lp h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-wrap: balance;
}

.lp .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.lp.mobile .eyebrow { font-size: 10px; }

/* ─────────────────────────────────────────────────────────────
   Section primitives
   ───────────────────────────────────────────────────────────── */
.section {
  padding: 120px 80px;
  position: relative;
}
.lp.mobile .section { padding: 72px 22px; }

.section + .section { border-top: 1px solid var(--ink-line); }

.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.dark .eyebrow { color: rgba(241, 237, 227, 0.55); }
.section.dark .eyebrow .dot { background: var(--accent); }

.section.accent {
  background: var(--accent);
  color: var(--ink);
}

/* Reveal on scroll — driven by IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.14s; }
.reveal.d3 { transition-delay: 0.22s; }
.reveal.d4 { transition-delay: 0.3s; }
.reveal.d5 { transition-delay: 0.38s; }

/* ─────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
  position: relative;
  overflow: hidden;
}
.btn .arr {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover .arr { transform: translate(2px, -2px) rotate(-12deg); }

.btn.lg { padding: 22px 34px; font-size: 17px; }
.btn.lg .arr { width: 34px; height: 34px; }

.btn.invert { background: var(--accent); color: var(--ink); }
.btn.invert .arr { background: var(--ink); color: var(--accent); }

.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.ghost .arr { background: var(--ink); color: var(--paper); }

.lp.mobile .btn { padding: 16px 22px; font-size: 14px; width: 100%; justify-content: space-between; }
.lp.mobile .btn.lg { padding: 18px 24px; font-size: 15px; }

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  padding: 28px 80px 100px;
  position: relative;
  overflow: hidden;
}
.lp.mobile .hero { padding: 22px 22px 64px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 80px;
}
.lp.mobile .nav { padding: 6px 0 36px; }

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  display: flex; align-items: center; gap: 10px;
}
.logo .mark {
  width: 30px; height: 30px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 800;
  position: relative;
}
.logo .mark::after {
  content: '';
  position: absolute;
  inset: -3px -3px auto auto;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--paper);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.lp.mobile .nav-links { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow-row .rule {
  flex: 1;
  height: 1px;
  background: var(--ink-line);
  max-width: 200px;
}

.hero h1 {
  font-size: clamp(64px, 7.2vw, 132px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 32px;
  font-weight: 700;
}
.lp.mobile .hero h1 { font-size: 52px; letter-spacing: -0.035em; }

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg, var(--accent) 0%, var(--accent) 50%, transparent 50%, transparent 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  padding: 0 0.1em;
  animation: highlightSweep 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
@keyframes highlightSweep {
  to { background-position: 0% 0; }
}

.hero-sub {
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 44px;
  text-wrap: pretty;
}
.lp.mobile .hero-sub { font-size: 16px; margin-bottom: 32px; max-width: none; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cta-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Hero stat strip */
.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.lp.mobile .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }

.stat {
  padding: 28px 22px;
  border-right: 1px solid var(--ink-line);
  display: flex; flex-direction: column; gap: 4px;
}
.stat:last-child { border-right: 0; }
.lp.mobile .stat:nth-child(2n) { border-right: 0; }
.lp.mobile .stat:nth-child(-n+2) { border-bottom: 1px solid var(--ink-line); }

.stat .num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat .num .unit {
  font-size: 22px;
  color: var(--ink-soft);
  font-weight: 500;
}
.stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.4;
}
.lp.mobile .stat .num { font-size: 36px; }

/* Floating decorative orb */
.hero-orb {
  position: absolute;
  top: 60px;
  right: 80px;
  width: 220px; height: 220px;
  pointer-events: none;
}
.hero-orb .ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--ink-line);
  border-radius: 50%;
}
.hero-orb .ring.r2 { inset: 20px; border-color: var(--ink-line); }
.hero-orb .ring.r3 { inset: 40px; border-color: var(--ink-line); }
.hero-orb .pill {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: var(--accent);
  color: var(--ink);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 600;
  border-radius: 99px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.hero-orb .spin {
  position: absolute;
  inset: 0;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.lp.mobile .hero-orb { display: none; }

/* ─────────────────────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 48px;
}
.marquee-item::after {
  content: '';
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.lp.mobile .marquee-item { font-size: 24px; gap: 28px; }
.lp.mobile .marquee-item::after { width: 10px; height: 10px; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────
   PILARES (Solution)
   ───────────────────────────────────────────────────────────── */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.lp.mobile .sec-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }

.sec-head h2 {
  font-size: clamp(40px, 5.2vw, 86px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 700;
}
.lp.mobile .sec-head h2 { font-size: 40px; }
.sec-head h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
}

.sec-head .right {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.5;
  text-wrap: pretty;
  padding-bottom: 8px;
}
.lp.mobile .sec-head .right { font-size: 15px; }

.pilares {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-line);
}

.pilar {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 60px;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: start;
  position: relative;
  transition: background 0.4s;
}
.lp.mobile .pilar { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }

.pilar:hover { background: var(--ink-tint); }
.pilar:hover .pilar-num { color: var(--ink); }
.pilar:hover .pilar-visual { transform: rotate(-3deg) scale(1.05); }

.pilar-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink-soft);
  line-height: 1;
  transition: color 0.3s;
}
.lp.mobile .pilar-num { font-size: 40px; }

.pilar-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.lp.mobile .pilar-title { font-size: 26px; }

.pilar-desc {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.lp.mobile .pilar-desc { font-size: 15px; }

.pilar-visual {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp.mobile .pilar-visual { width: 50px; height: 50px; }

.flow-line {
  margin-top: 48px;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.03em;
  flex-wrap: wrap;
}
.lp.mobile .flow-line { font-size: 22px; gap: 10px; padding: 24px 0; }
.flow-line .arrow {
  display: inline-flex;
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.lp.mobile .flow-line .arrow { width: 24px; height: 24px; }

/* ─────────────────────────────────────────────────────────────
   BENEFICIOS
   ───────────────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(241, 237, 227, 0.16);
}
.lp.mobile .benefits-grid { grid-template-columns: 1fr; }

.benefit {
  padding: 38px 32px;
  display: flex;
  gap: 22px;
  border-bottom: 1px solid rgba(241, 237, 227, 0.16);
  border-right: 1px solid rgba(241, 237, 227, 0.16);
  align-items: flex-start;
  transition: background 0.3s;
}
.benefit:nth-child(2n) { border-right: 0; }
.benefit:hover { background: rgba(255, 255, 255, 0.03); }
.lp.mobile .benefit { border-right: 0; padding: 28px 0; }

.benefit-check {
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.benefit-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: pretty;
}
.lp.mobile .benefit-text { font-size: 18px; }

/* ─────────────────────────────────────────────────────────────
   OBJEÇÕES
   ───────────────────────────────────────────────────────────── */
.objections {
  display: grid;
  gap: 18px;
}

.objection {
  border: 1px solid var(--ink-line);
  border-radius: 22px;
  padding: 38px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  background: var(--paper);
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp.mobile .objection { padding: 24px; grid-template-columns: 1fr; gap: 14px; }
.objection:hover { border-color: var(--ink); transform: translateY(-2px); }

.objection-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  width: 280px;
  padding-right: 24px;
  border-right: 1.5px solid var(--ink-line);
  position: relative;
}
.lp.mobile .objection-quote { width: auto; padding-right: 0; padding-bottom: 14px; border-right: 0; border-bottom: 1.5px solid var(--ink-line); font-size: 20px; }
.objection-quote::before {
  content: '"';
  position: absolute;
  left: -18px; top: -12px;
  font-size: 60px;
  color: var(--accent);
  font-family: var(--font-display);
  line-height: 1;
}
.lp.mobile .objection-quote::before { left: -2px; top: -16px; font-size: 44px; }

.objection-answer {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.lp.mobile .objection-answer { font-size: 14.5px; }

/* ─────────────────────────────────────────────────────────────
   GARANTIA
   ───────────────────────────────────────────────────────────── */
.guarantee {
  background: var(--accent);
  border-radius: 28px;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp.mobile .guarantee { grid-template-columns: 1fr; padding: 44px 28px; gap: 24px; border-radius: 22px; }

.guarantee::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(14, 42, 30, 0.04);
  top: -300px; right: -200px;
}

.guarantee-seal {
  width: 180px; height: 180px;
  position: relative;
  animation: spin 24s linear infinite;
}
.lp.mobile .guarantee-seal { width: 120px; height: 120px; margin: 0 auto; }
.guarantee-seal svg { width: 100%; height: 100%; }

.guarantee h3 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  line-height: 1;
}
.lp.mobile .guarantee h3 { font-size: 30px; }
.guarantee p {
  font-size: 18px;
  line-height: 1.5;
  text-wrap: pretty;
}
.lp.mobile .guarantee p { font-size: 15px; }

/* ─────────────────────────────────────────────────────────────
   OFERTA
   ───────────────────────────────────────────────────────────── */
.offer-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp.mobile .offer-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; border-radius: 22px; }

.offer-card h3 {
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 16px;
  font-weight: 700;
}
.lp.mobile .offer-card h3 { font-size: 34px; }

.offer-card .lead {
  font-size: 17px;
  color: rgba(241, 237, 227, 0.7);
  line-height: 1.5;
  margin-bottom: 28px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(241, 237, 227, 0.05);
  border: 1px solid rgba(241, 237, 227, 0.12);
  border-radius: 14px;
  transition: background 0.3s, transform 0.3s;
}
.offer-item:hover { background: rgba(241, 237, 227, 0.08); transform: translateX(6px); }
.offer-item-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  width: 28px;
  font-weight: 600;
}
.offer-item-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  flex: 1;
}
.lp.mobile .offer-item-name { font-size: 16px; }
.offer-item-check {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.offer-cta-meta {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241, 237, 227, 0.5);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-top: 1px solid var(--ink-line);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-item:last-child { border-bottom: 1px solid var(--ink-line); }

.faq-q {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: pretty;
}
.lp.mobile .faq-q { font-size: 18px; padding: 22px 0; }

.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s, opacity 0.4s;
  opacity: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 60px 32px 0;
  opacity: 1;
}
.lp.mobile .faq-a { font-size: 14.5px; }
.lp.mobile .faq-item.open .faq-a { padding-right: 0; }

/* ─────────────────────────────────────────────────────────────
   CTA FINAL + P.S.
   ───────────────────────────────────────────────────────────── */
.final {
  padding: 140px 80px 80px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.lp.mobile .final { padding: 80px 22px 60px; }

.final-grid {
  position: relative;
  z-index: 2;
}

.final h2 {
  font-size: clamp(54px, 7vw, 120px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 28px;
  font-weight: 700;
}
.lp.mobile .final h2 { font-size: 44px; }

.final h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.final-sub {
  font-size: 19px;
  color: rgba(241, 237, 227, 0.7);
  line-height: 1.5;
  margin-bottom: 44px;
  max-width: 620px;
  text-wrap: pretty;
}
.lp.mobile .final-sub { font-size: 16px; margin-bottom: 32px; }

.final-bg-text {
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 700;
  font-style: italic;
  color: rgba(241, 237, 227, 0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 0.85;
}
.lp.mobile .final-bg-text { font-size: 140px; bottom: -10px; }

.ps {
  margin-top: 88px;
  padding: 32px;
  border: 1.5px dashed rgba(241, 237, 227, 0.25);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.lp.mobile .ps { padding: 22px; grid-template-columns: 1fr; gap: 12px; margin-top: 56px; }
.ps-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-top: 4px;
}
.ps-text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(241, 237, 227, 0.85);
  text-wrap: pretty;
}
.lp.mobile .ps-text { font-size: 14.5px; }

.footer {
  border-top: 1px solid rgba(241, 237, 227, 0.12);
  margin-top: 100px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 237, 227, 0.45);
  position: relative;
  z-index: 2;
}
.lp.mobile .footer { flex-direction: column; gap: 14px; align-items: flex-start; padding-top: 24px; margin-top: 60px; }
