/* ============ Ímpar Contabilidade — tokens ============ */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f6f3;
  --bg-warm: #fbf9ed;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --dark: #0a0a0a;
  --dark-2: #141416;
  --dark-3: #1c1c20;
  --muted: #6a6a6a;
  --muted-dark: #9a9690;
  --line: rgba(10, 10, 10, 0.08);
  --line-dark: rgba(255, 255, 255, 0.08);
  --yellow: #f6c026;
  --yellow-deep: #d9a40c;
  --yellow-soft: #ffd454;
  --yellow-shadow: rgba(246, 192, 38, 0.45);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-md: 0 14px 40px -16px rgba(0,0,0,0.18);
  --shadow-yellow: 0 14px 40px -14px rgba(246,192,38,0.55);
  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.italic-display {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-yellow {
  background: linear-gradient(180deg, #ffce3a 0%, #f6c026 100%);
  color: #1a1300;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 -1px 0 rgba(0,0,0,0.12) inset, 0 8px 22px -8px var(--yellow-shadow);
}
.btn-yellow:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 -1px 0 rgba(0,0,0,0.12) inset, 0 14px 32px -10px var(--yellow-shadow); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(0,0,0,0.03); }
.btn-ghost-dark {
  border: 1px solid var(--line-dark);
  color: #fff;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.05); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-wa {
  background: #25D366;
  color: #073d20;
  box-shadow: 0 8px 22px -8px rgba(37,211,102,0.5);
}
.btn-wa:hover { transform: translateY(-1px); }

/* ============ Header ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .25s ease;
  color: #f5f3ee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #0a0a0a;
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid rgba(246,192,38,0.18);
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-text strong { font-size: 15.5px; letter-spacing: -0.01em; color: #fff; }
.logo-text small { font-size: 10.5px; color: var(--yellow); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 5px; font-weight: 600;}
.nav {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
}
.nav a {
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  color: #d9d6cf;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

/* ============ Hero ============ */
.hero {
  padding: 140px 0 100px;
  position: relative;
  background: var(--dark);
  color: #f5f3ee;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(246,192,38,0.12), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(246,192,38,0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 30px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--yellow);
  transform: rotate(45deg);
  display: inline-block;
}
.eyebrow.no-dot::before { display: none; }
.eyebrow.line::before {
  width: 30px; height: 1px;
  background: var(--yellow);
  transform: none;
}
h1.headline {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 26px;
  color: #fff;
  text-wrap: balance;
}
h1.headline em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.subheadline {
  font-size: 18.5px;
  color: #c9c5bc;
  max-width: 540px;
  line-height: 1.6;
  text-wrap: pretty;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 36px;
  align-items: start;
}
.trust-item small {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); font-weight: 600;
}
.trust-item div {
  font-size: 15px;
  color: #f5f3ee;
  margin-top: 6px;
  max-width: 180px;
}

/* Hero visual — stacked cards */
.hero-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.hero-card:hover { transform: translateX(-4px); border-color: rgba(246,192,38,0.4); }
.hero-card::before {
  content: "";
  position: absolute;
  left: 0; top: 14%; bottom: 14%;
  width: 3px;
  background: var(--yellow);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.hero-card:hover::before { opacity: 1; }
.hero-card.featured {
  background: linear-gradient(135deg, var(--yellow) 0%, #f0b400 100%);
  color: #1a1300;
  border: none;
}
.hero-card.featured .hc-ic {
  background: rgba(10,10,10,0.12);
  color: #1a1300;
}
.hero-card.featured small { color: rgba(26,19,0,0.7); }
.hc-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(246,192,38,0.12);
  color: var(--yellow);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card small {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-card strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: inherit;
}
.hero-card .hc-arr {
  margin-left: auto;
  color: inherit;
  opacity: 0.5;
}

/* ============ Pilares ============ */
.pillars {
  padding: 110px 0 110px;
  background: var(--bg);
}
.pillars-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.eyebrow-light {
  color: var(--yellow-deep);
}
.eyebrow-light::before {
  background: var(--yellow);
}
h2.section-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
h2.section-title em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow-deep);
}
.section-dark h2.section-title em { color: var(--yellow); }
.section-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 580px;
  text-wrap: pretty;
  margin-top: 18px;
}
.pillars-head .section-sub { margin-left: auto; margin-right: auto; }
.section-dark .section-sub { color: var(--muted-dark); }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pillar-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 38px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-card.dark {
  background: var(--dark);
  color: #f5f3ee;
  border-color: rgba(255,255,255,0.06);
}
.pillar-card.dark .pillar-desc { color: var(--muted-dark); }
.pillar-card::after {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(246,192,38,0.10), transparent 65%);
  pointer-events: none;
}
.pillar-num {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  font-weight: 600;
  font-feature-settings: "tnum";
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.pillar-card.dark .pillar-num { color: var(--yellow); }
.pillar-num::before {
  content: "";
  width: 28px; height: 28px;
  background: var(--yellow);
  display: inline-block;
  transform: rotate(45deg);
  border-radius: 4px;
  position: relative;
}
.pillar-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  text-wrap: balance;
}
.pillar-title em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--yellow-deep); }
.pillar-card.dark .pillar-title em { color: var(--yellow); }
.pillar-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 460px;
  text-wrap: pretty;
}
.pillar-points {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14.5px;
}
.pillar-points li {
  display: flex; align-items: center; gap: 12px;
}
.pillar-points .diamond {
  width: 10px; height: 10px;
  background: var(--yellow);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============ Vídeo ============ */
.video-section {
  padding: 0 0 110px;
  background: var(--bg);
}
.video-section.standalone { padding-top: 110px; }
.video-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.4);
  max-width: 1100px;
  margin: 0 auto;
}
.video-frame img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7;
}
.video-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.55) 100%);
}
.play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 12px 40px -8px rgba(246,192,38,0.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
.play-btn::before {
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(246,192,38,0.4);
  animation: pulse-ring 2.4s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6;}
  100% { transform: scale(1.4); opacity: 0;}
}
.play-btn svg { margin-left: 6px; }
.video-meta {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  color: #fff;
}
.video-meta small {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); font-weight: 600;
  margin-bottom: 8px;
}
.video-meta small::before {
  content: ""; width: 8px; height: 8px; background: var(--yellow); transform: rotate(45deg);
}
.video-meta strong {
  display: block; font-size: 22px; font-weight: 600; letter-spacing: -0.015em;
  max-width: 420px;
}

/* ============ Serviços ============ */
.services {
  padding: 110px 0;
  background: var(--dark);
  color: #f5f3ee;
}
.section-dark { background: var(--dark); color: #f5f3ee; }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.services-head h2 { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(246,192,38,0.35);
  background: var(--dark-3);
}
.service-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(246,192,38,0.10);
  border: 1px solid rgba(246,192,38,0.22);
  color: var(--yellow);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #fff;
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted-dark);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}
.service-arrow {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--yellow);
  text-transform: uppercase;
}

/* ============ Oferta (escassez) ============ */
.offer {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
}
.offer-card {
  background: linear-gradient(135deg, var(--yellow) 0%, #f0b400 100%);
  border-radius: 28px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(246,192,38,0.45);
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 30% 50%, transparent 0%, black 70%);
}
.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,10,0.9);
  color: var(--yellow);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
}
.offer-tag .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(246,192,38,0.7);
  animation: pulse-mini 1.8s infinite;
}
@keyframes pulse-mini {
  0% { box-shadow: 0 0 0 0 rgba(246,192,38,0.7);}
  70% { box-shadow: 0 0 0 10px rgba(246,192,38,0);}
  100% { box-shadow: 0 0 0 0 rgba(246,192,38,0);}
}
.offer h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 18px;
  color: #0a0a0a;
  text-wrap: balance;
  position: relative;
}
.offer h2 em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }
.offer p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(10,10,10,0.78);
  margin: 0 0 28px;
  max-width: 460px;
  position: relative;
}
.offer .btn-dark { position: relative; }

/* Countdown */
.countdown {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.countdown-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(10,10,10,0.7);
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.countdown-unit {
  background: rgba(10,10,10,0.92);
  color: var(--yellow);
  border-radius: 14px;
  padding: 18px 8px 12px;
  text-align: center;
  font-feature-settings: "tnum";
}
.countdown-unit .num {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.countdown-unit small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-weight: 600;
}

/* ============ Prova social ============ */
.proof {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-head {
  text-align: center;
  margin-bottom: 50px;
}
.proof-head .eyebrow { justify-content: center; }
.proof-title {
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
.proof-title em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--yellow-deep);}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.logo-cell {
  aspect-ratio: 2.4 / 1;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  transition: background .2s ease;
}
.logo-cell:hover { background: var(--bg-warm); }
.logo-cell:nth-child(5n) { border-right: none; }
.logo-cell:nth-last-child(-n+5) { border-bottom: none; }
.logo-cell svg, .logo-cell .logo-text-mark {
  max-width: 100%;
  opacity: 0.55;
  transition: opacity .2s ease;
  color: #2a2a2a;
}
.logo-cell:hover svg, .logo-cell:hover .logo-text-mark { opacity: 1; }
.logo-text-mark {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 19px;
  color: #1a1a1a;
  display: flex; align-items: center; gap: 8px;
}
.logo-text-mark .accent {
  width: 8px; height: 8px;
  background: var(--yellow-deep);
  display: inline-block;
  transform: rotate(45deg);
}

/* ============ Form ============ */
.form-section {
  padding: 110px 0;
  background: var(--dark);
  color: #f5f3ee;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(246,192,38,0.12), transparent 60%);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.form-side h2 { color: #fff; margin-bottom: 22px;}
.form-side p {
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 460px;
  text-wrap: pretty;
}
.form-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.form-meta a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: all .2s ease;
}
.form-meta a:hover { border-color: rgba(246,192,38,0.4); background: rgba(246,192,38,0.04); }
.form-meta .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(246,192,38,0.10);
  color: var(--yellow);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.form-meta small { display: block; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); font-weight: 600; margin-bottom: 2px;}
.form-meta strong { font-size: 15.5px; font-weight: 500; letter-spacing: -0.005em; color: #fff;}

.form-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;}
.form-field label {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(246,192,38,0.04);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field textarea { resize: vertical; min-height: 110px;}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 18px 22px;
  font-size: 16px;
}
.form-disclaimer {
  font-size: 12.5px;
  color: var(--muted-dark);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.55;
}

/* ============ Chat Mockup ============ */
.chat-mockup {
  position: relative;
}
.chat-frame {
  background: #0e0f12;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(246,192,38,0.04);
  display: flex;
  flex-direction: column;
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #1a1a1f 0%, #141417 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(246,192,38,0.25);
  flex-shrink: 0;
}
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-id { flex: 1; line-height: 1.2; }
.chat-id strong { display: block; font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -0.005em;}
.chat-id small {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--muted-dark);
  margin-top: 4px;
}
.online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: pulse-mini 1.8s infinite;
}
.chat-actions {
  display: flex; gap: 16px;
  color: var(--yellow);
  opacity: 0.7;
}
.chat-body {
  background:
    radial-gradient(circle at 30% 20%, rgba(246,192,38,0.04), transparent 50%),
    #0a0a0c;
  padding: 22px 20px 18px;
  display: flex; flex-direction: column;
  gap: 10px;
  min-height: 440px;
  position: relative;
}
.chat-day {
  align-self: center;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--muted-dark);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.msg {
  display: flex; flex-direction: column;
  max-width: 78%;
}
.msg-in { align-self: flex-start; }
.msg-out { align-self: flex-end; align-items: flex-end; }
.bubble {
  padding: 11px 14px 10px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  text-wrap: pretty;
}
.msg-in .bubble {
  background: #1c1d22;
  color: #ececec;
  border-bottom-left-radius: 4px;
}
.msg-out .bubble {
  background: linear-gradient(180deg, #f6c026 0%, #e8b41a 100%);
  color: #1a1300;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.msg-time {
  font-size: 10.5px;
  color: var(--muted-dark);
  margin-top: 4px;
  padding: 0 4px;
}
.msg-in .msg-time { align-self: flex-start; }

.bubble-card {
  padding: 14px;
  min-width: 240px;
}
.bubble-card-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10,10,10,0.18);
  margin-bottom: 12px;
}
.bcs-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(10,10,10,0.12);
  display: grid; place-items: center;
  color: #1a1300;
  flex-shrink: 0;
}
.bubble-card strong { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: -0.005em;}
.bubble-card small { display: block; font-size: 11px; color: rgba(26,19,0,0.65); margin-top: 2px; font-weight: 500;}
.bubble-cta {
  display: block;
  text-align: center;
  background: #0a0a0a;
  color: var(--yellow);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.typing {
  align-self: flex-start;
  display: inline-flex; gap: 4px;
  background: #1c1d22;
  padding: 12px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  margin-top: 4px;
}
.typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted-dark);
  animation: typing-bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.18s; }
.typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 20px;
  background: #15161a;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted-dark);
  font-size: 14px;
  transition: background .2s ease;
}
.chat-input:hover { background: #1a1b1f; }
.chat-input > span:first-child { flex: 1; }
.send-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: #1a1300;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -6px var(--yellow-shadow);
}
.chat-footnote {
  text-align: center;
  color: var(--muted-dark);
  font-size: 13px;
  margin: 18px auto 0;
  max-width: 380px;
  line-height: 1.5;
}

/* ============ CTA Final ============ */
.cta-final {
  background: var(--bg);
  padding: 100px 0;
}
.cta-card {
  background: var(--yellow);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  left: -100px; bottom: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
}
.cta-card::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(10,10,10,0.08), transparent 60%);
}
.cta-card h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  font-weight: 700;
  color: #0a0a0a;
  position: relative;
  text-wrap: balance;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.cta-card h2 em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400;}
.cta-card p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(10,10,10,0.75);
  margin: 0 auto 36px;
  max-width: 540px;
  position: relative;
  text-wrap: pretty;
}
.cta-card .hero-ctas { justify-content: center; position: relative; }

/* ============ Footer ============ */
.footer {
  background: #050506;
  color: #d6d2c7;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 56px;
}
.footer p.foot-desc {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
  margin: 20px 0 0;
}
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 18px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14.5px;}
.footer ul a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: var(--muted-dark);
}
.footer-bottom .lockup { display: flex; align-items: center; gap: 14px; }
.footer-bottom .yellow-line { width: 30px; height: 2px; background: var(--yellow);}

/* ============ Floating WhatsApp ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #073d20;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 14px 36px -10px rgba(37,211,102,0.55);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5);}
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0);}
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);}
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float .wa-ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  color: #25D366;
  position: relative;
  z-index: 2;
}
.whatsapp-float span.wa-label { position: relative; z-index: 2;}

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px;}
  .services-head { grid-template-columns: 1fr; gap: 24px;}
  .form-grid { grid-template-columns: 1fr; gap: 50px;}
  .offer-card { grid-template-columns: 1fr; padding: 44px 40px; gap: 40px;}
  .services-grid { grid-template-columns: repeat(2, 1fr);}
  .pillars-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-cell:nth-child(5n) { border-right: 1px solid var(--line); }
  .logo-cell:nth-child(3n) { border-right: none; }
  .logo-cell:nth-last-child(-n+5) { border-bottom: 1px solid var(--line); }
  .logo-cell:nth-last-child(-n+3) { border-bottom: none; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .header-inner .btn { display: none; }
  .hero { padding: 110px 0 70px;}
  .services-grid { grid-template-columns: 1fr;}
  .footer-grid { grid-template-columns: 1fr 1fr;}
  .hero-trust { grid-template-columns: 1fr; gap: 18px;}
  .cta-card { padding: 60px 28px;}
  .offer-card { padding: 36px 26px;}
  .form-card { padding: 30px 24px;}
  .form-row { grid-template-columns: 1fr;}
  .pillars, .services, .offer, .proof, .form-section, .cta-final, .video-section { padding: 70px 0;}
  .countdown-grid { gap: 8px;}
  .play-btn { width: 78px; height: 78px;}
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .logo-cell:nth-child(2n) { border-right: none; }
  .logo-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .logo-cell:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr;}
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center;}
  .whatsapp-float span.wa-label { display: none;}
  .whatsapp-float { padding: 14px;}
  h1.headline { font-size: 36px;}
}
