/* ============================================================
   RankMyGEO — landing re-skin in the "Rank - Site" identity.
   Tokens + component vocabulary lifted from the RankMyApp
   Design System (colors_and_type.css + rankmyapp_site/site.css).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Fonts */
  --font-display: "Helvetica Neue", "Helvetica", "Inter", Arial, sans-serif;
  --font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* Brand */
  --color-primary: #0050e5;
  --color-primary-hover: #00132c;
  --color-primary-soft: #e6efff;
  --color-urgency: #ff5700;
  --color-urgency-hover: #d94800;
  --color-ink: #00132c;
  --color-ink-2: #001e4a;
  --color-ink-deep: #00081a;

  /* Neutrals */
  --color-paper: #ffffff;
  --color-bg: #f8f9fb;
  --color-bg-2: #f1f5f9;
  --color-border: #e8ecf0;
  --color-divider: #f0f2f5;
  --color-muted: #64748b;
  --color-muted-2: #475569;
  --color-text: #00132c;

  /* Product accents */
  --product-rmads: #4da6ff;     /* light blue accent (was lime) */
  --product-rmgeo: #06b6d4;     /* cyan — RankMyGEO */
  --product-rmgeo-bright: #22d3ee;

  --fg1: var(--color-text);
  --fg2: var(--color-muted-2);
  --fg3: var(--color-muted);

  --radius-pill: 100px;
  --radius-button: 8px;
  --radius-card: 16px;
  --radius-image: 8px;
  --radius-badge: 6px;

  --container-max: 1200px;
  --container-pad: 32px;

  --shadow-hover: 0 12px 40px rgba(0, 19, 44, 0.10);
  --shadow-soft: 0 8px 32px rgba(0, 19, 44, 0.08);
  --transition-fast: all 0.15s ease;
  --transition-card: all 0.25s ease;
  --z-nav: 100;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg1);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
.display {
  font-weight: 700;
  font-size: clamp(44px, 5.4vw, 76px);
  letter-spacing: -0.035em;
  line-height: 1.0;
}
h2.h2, .h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.display em, .h2 em, h2 em { font-style: normal; color: var(--color-primary); }
.hl {
  background-image: linear-gradient(120deg, #0050e5 0%, #4da6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
html[data-accent="cyan"] .hl { background-image: linear-gradient(120deg, #0050e5 0%, #4da6ff 100%); }
.on-dark .display em, .on-dark .h2 em,
.section--dark .display em, .section--dark .h2 em,
.hero .display em { color: var(--product-rmads); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before { display: none; }
.eyebrow--center { display: flex; justify-content: center; width: 100%; }
.eyebrow--on-dark { color: var(--product-rmads); }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg2);
  margin: 0 0 28px;
  max-width: 720px;
}
.lead--on-dark { color: rgba(255,255,255,0.78); }
.section-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg2);
  max-width: 640px;
  margin: 0 0 56px;
}
.section-desc--on-dark { color: rgba(255,255,255,0.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-button);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: none;
  white-space: nowrap;
}
.btn-primary { background: var(--color-ink); color: #fff; }
.btn-primary:hover { background: var(--color-primary); color: #fff; }
.btn-primary-dark { background: var(--color-primary); color: #fff; }
.btn-primary-dark:hover { background: #fff; color: var(--color-ink); }
.btn-white { background: #fff; color: var(--color-ink); }
.btn-white:hover { background: var(--product-rmads); color: var(--color-ink); }
html[data-accent="cyan"] .btn-white:hover { background: var(--product-rmgeo-bright); }
.btn-urgency { background: var(--color-urgency); color: #fff; }
.btn-urgency:hover { background: var(--color-urgency-hover); }
.btn-secondary {
  background: transparent; color: var(--color-primary);
  border: 1.5px solid var(--color-primary); padding: 12.5px 22.5px;
}
.btn-secondary:hover { background: var(--color-primary); color: #fff; }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55); padding: 12.5px 22.5px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-ghost-light {
  background: transparent; color: var(--color-ink);
  border: 1.5px solid var(--color-border); padding: 9px 18px;
  font-size: 11px; letter-spacing: 0.1em;
}
.btn-ghost-light:hover { border-color: var(--color-ink); }
.btn-sm { padding: 9px 18px; font-size: 11px; }
.btn-lg { padding: 17px 30px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }
.btn-disabled {
  background: var(--color-bg-2) !important; color: var(--color-muted) !important;
  border-color: var(--color-border) !important; cursor: not-allowed;
  pointer-events: none; letter-spacing: 0.04em; font-size: 11px;
}
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 14px var(--container-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-badge {
  width: 32px; height: 32px; flex: none;
  border-radius: 9px;
  background: var(--product-rmgeo);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 14px rgba(6,182,212,0.35);
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-badge svg { width: 19px; height: 19px; display: block; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a:not(.btn) {
  font-size: 14px; font-weight: 500; color: var(--color-ink);
  text-decoration: none; transition: color 0.15s;
}
.nav-links > a:not(.btn):hover { color: var(--color-primary); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--color-ink); display: block; transition: 0.2s; }

/* ---------- Wordmark (text only) ---------- */
.wordmark {
  font-family: var(--font-display);
  font-weight: 400; font-size: 18px; letter-spacing: 0.06em;
  color: var(--color-ink); display: inline-flex; align-items: center; gap: 8px;
}
.wordmark .wm-rank { font-weight: 700; }
.wordmark .wm-geo { font-weight: 400; }
.wordmark .wm-divider { font-weight: 300; opacity: 0.4; }
.wordmark--on-dark { color: #fff; }

/* ---------- Section base ---------- */
.section { padding: 120px 0; position: relative; overflow: hidden; }
.section--bg { background: var(--color-bg); }
.section--dark { background: var(--color-ink); color: #fff; }
.section--dark h2, .section--dark .h2, .section--dark h3 { color: #fff; }
.section-pattern {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; color: #fff; opacity: 0.05; pointer-events: none;
}
.section-header {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  align-items: end; margin-bottom: 56px;
}
.section-header .section-desc { margin: 0; max-width: 420px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--color-ink); color: #fff;
  padding: 132px 0 96px; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-pattern {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; color: #fff; opacity: 0.045; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to bottom, var(--color-ink) 0, var(--color-ink) 96px, transparent 220px);
  z-index: 1; pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--product-rmads);
  margin-bottom: 22px; display: block;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
.hero h1.display { color: #fff; margin: 0 0 26px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85); padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--product-rmgeo-bright); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: auto; filter: drop-shadow(0 30px 80px rgba(0,0,0,0.45)); }
.hero-stats {
  display: flex; gap: 72px; flex-wrap: wrap;
  margin-top: 72px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-number {
  font-family: var(--font-display); font-weight: 700; font-size: 34px;
  letter-spacing: -0.025em; line-height: 1; color: #fff; display: block;
}
.hero-stat-number em { font-style: normal; color: var(--product-rmgeo-bright); }
.hero-stat-number--ai {
  background: linear-gradient(120deg, #4da6ff 0%, #22d3ee 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
html[data-accent="cyan"] .hero-stat-number--ai { background: linear-gradient(120deg, #22d3ee 0%, #4d8aff 100%); -webkit-background-clip: text; background-clip: text; }
.hero-stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55); margin-top: 10px; max-width: 220px; display: block;
}

.product-intro-text .lead { font-size: 14.5px; line-height: 1.6; }

/* Produto section ambient background: dot grid + soft gradient blobs */
#produto::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(0,80,229,0.20), transparent 42%),
    radial-gradient(circle at 88% 68%, rgba(34,211,238,0.14), transparent 46%),
    radial-gradient(circle at 60% 100%, rgba(77,166,255,0.10), transparent 40%),
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1.4px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, #000 55%, transparent 100%);
}
#produto > .container { position: relative; z-index: 1; }

/* Apple-style hero entrance: fade + rise + de-blur, staggered */
@media (prefers-reduced-motion: no-preference) {
  .hero--centered .hero-eyebrow,
  .hero--centered .hero-line-1,
  .hero--centered .lead,
  .hero--centered .hero-cta,
  .hero--centered .hero-stats {
    animation: heroReveal 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero--centered .hero-line-1 { display: inline-block; animation-delay: 0.1s; }
  .hero--centered .hero-eyebrow { animation-delay: 0.25s; }
  .hero--centered .lead         { animation-delay: 1.0s; }
  .hero--centered .hero-cta     { animation-delay: 1.15s; }
  .hero--centered .hero-stats   { animation-delay: 1.3s; }
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(18px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* H1 typewriter caret */
.type-caret {
  display: inline-block; width: 3px; height: 0.92em; vertical-align: baseline;
  transform: translateY(0.1em); margin-left: 5px; border-radius: 1px;
  background: var(--product-rmgeo-bright);
  box-shadow: 0 0 10px rgba(34,211,238,0.7);
  animation: caretBlink 0.8s steps(1) infinite;
}
@keyframes caretBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .type-caret { display: none; } }

/* "GEO" highlight effect — animated gradient + soft glow */
.geo-fx {
  position: relative;
  background: linear-gradient(100deg, #0050e5 0%, #22d3ee 38%, #4da6ff 62%, #0050e5 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: geoShift 5s ease-in-out infinite;
}
@keyframes geoShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .geo-fx { animation: none; } }

/* ---------- Problem ---------- */
.stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px;
}
.stats-bar-item {
  background: var(--color-paper); border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 32px;
}
.stats-bar-number {
  font-family: var(--font-display); font-weight: 700; font-size: 48px;
  letter-spacing: -0.03em; color: var(--color-primary); display: block; line-height: 1;
}
.stats-bar-label { font-size: 14px; color: var(--fg2); margin-top: 12px; display: block; line-height: 1.5; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: var(--color-paper); border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-urgency);
  border-radius: var(--radius-card); padding: 32px; transition: var(--transition-card);
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--color-urgency); }
.problem-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--color-urgency-soft, #ffe9dd);
  color: var(--color-urgency); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.problem-card h3 { font-size: 20px; letter-spacing: -0.015em; margin-bottom: 10px; }
.problem-card p { font-size: 15px; color: var(--fg2); margin: 0; line-height: 1.55; }

/* ---------- How it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step {
  background: var(--color-paper); border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 28px 24px; transition: var(--transition-card);
  position: relative;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--color-primary); }
.step-number {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  width: 36px; height: 36px; border-radius: 9px; background: var(--color-ink); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step h3 { font-size: 17px; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--fg2); margin: 0; line-height: 1.5; }

/* ---------- Showcase (product screenshots) ---------- */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.showcase-card {
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-card);
  background: rgba(255,255,255,0.03); padding: 28px 28px 0; overflow: hidden;
  display: flex; flex-direction: column; transition: var(--transition-card);
}
.showcase-card:hover { border-color: var(--product-rmgeo); transform: translateY(-3px); }
.showcase-card--wide { grid-column: 1 / -1; }
.showcase-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--product-rmgeo-bright); margin-bottom: 12px; }
.showcase-card h3 { font-size: 22px; color: #fff; letter-spacing: -0.02em; margin-bottom: 10px; }
.showcase-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0 0 20px; line-height: 1.55; max-width: 460px; }
.showcase-img-wrap { margin-top: auto; }
.showcase-img-wrap img { width: 100%; height: auto; border-radius: 10px 10px 0 0; }
.showcase-card--wide .showcase-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
.showcase-card--wide { padding: 36px; }
.showcase-card--wide .showcase-img-wrap img { border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

/* ---------- Features tabs ---------- */
.features-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.features-tab {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--color-bg-2); color: var(--color-muted-2);
  border: 1px solid var(--color-border); padding: 10px 20px;
  border-radius: var(--radius-pill); cursor: pointer; transition: var(--transition-fast);
}
.features-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.features-tab.active { background: var(--color-ink); color: #fff; border-color: var(--color-ink); }
.features-panel { display: none; }
.features-panel.active { display: block; animation: fadein 0.2s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature-card {
  background: var(--color-paper); border: 1px solid var(--color-border);
  border-top: 4px solid var(--product-rmgeo);
  border-radius: var(--radius-card); padding: 28px; transition: var(--transition-card);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--product-rmgeo); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: #ecfeff; color: var(--product-rmgeo);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; letter-spacing: -0.015em; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--fg2); margin: 0; line-height: 1.5; }

/* ---------- Engines ---------- */
.engines-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }
.engine-item {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 14px 26px; border-radius: var(--radius-pill);
  font-size: 16px; font-weight: 500; transition: var(--transition-fast);
}
.engine-item:hover { border-color: var(--product-rmgeo); }
.engine-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--product-rmgeo-bright); }

/* ---------- Plans ---------- */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 28px; }
.billing-label { font-size: 14px; font-weight: 500; color: var(--color-muted); }
.billing-save { color: var(--color-primary); font-weight: 700; font-size: 12px; }
.toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: var(--color-border);
  border-radius: 100px; transition: 0.2s; cursor: pointer;
}
.toggle-slider::before {
  content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

.pricing-controls {
  display: grid; grid-template-columns: auto auto; gap: 56px; justify-content: center;
  align-items: center; max-width: 860px; margin: 0 auto 48px;
}
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 0; }
.query-slider-section {
  max-width: none; width: 420px; margin: 0; background: var(--color-paper);
  border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 18px 24px;
}
.slider-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.slider-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted-2); }
.slider-value { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--color-primary); letter-spacing: -0.02em; }
.query-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px;
  background: linear-gradient(to right, var(--color-primary) var(--fill, 0%), var(--color-border) var(--fill, 0%));
  outline: none; cursor: pointer;
}
.query-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--color-ink); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,19,44,0.25); cursor: pointer;
}
.query-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--color-ink);
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,19,44,0.25); cursor: pointer;
}
.slider-ticks { display: flex; justify-content: space-between; margin-top: 12px; }
.slider-ticks span { font-size: 12px; color: var(--color-muted); font-family: var(--font-mono); }

.plans-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; align-items: start; }
.plan-card {
  background: var(--color-paper); border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-border);
  border-radius: var(--radius-card); padding: 32px 28px; transition: var(--transition-card);
  display: flex; flex-direction: column; position: relative;
}
.plan-card:hover { box-shadow: var(--shadow-hover); }
.plan-featured { border-top-color: var(--color-primary); box-shadow: var(--shadow-soft); }
.plan-recommended { border-top-color: var(--product-rmgeo); }
.plan-dimmed { opacity: 0.5; filter: saturate(0.4); }
.plan-badge {
  position: absolute; top: -12px; left: 28px; background: var(--color-primary); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: var(--radius-badge);
}
.plan-limit-label { font-size: 11px; color: var(--color-urgency); font-weight: 600; margin-bottom: 8px; display: none; }
.plan-card h3 { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 8px; }
.plan-audience { font-size: 13px; color: var(--fg2); margin: 0 0 20px; line-height: 1.5; min-height: 56px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 20px; }
.plan-currency { font-size: 18px; font-weight: 500; color: var(--color-ink); }
.plan-amount { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--color-ink); letter-spacing: -0.03em; line-height: 1; }
.plan-custom { font-size: 26px; }
.plan-period { font-size: 14px; color: var(--color-muted); }
.plan-cta { margin-bottom: 24px; }
.plan-includes { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted-2); margin-bottom: 14px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 14px; color: var(--fg1); padding-left: 26px; position: relative; line-height: 1.4; }
.plan-features li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  background: var(--color-primary-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230050e5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.plan-features li strong { color: var(--color-primary); }
.plan-excluded { margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--color-divider); }
.plan-excluded li { color: var(--color-muted); }
.plan-excluded li::before {
  background: var(--color-bg-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

.compare-toggle { text-align: center; margin-top: 48px; }
.compare-toggle .btn { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-border); }
.compare-toggle .btn:hover { border-color: var(--color-primary); }
.compare-table-wrap { margin-top: 32px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--color-border); }
.compare-table th { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }
.compare-table .col-featured { background: var(--color-primary-soft); }
.compare-divider td { background: var(--color-ink); color: #fff; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit { padding: 0; }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 13px; background: var(--color-primary-soft);
  color: var(--color-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.benefit h3 { font-size: 19px; letter-spacing: -0.015em; margin-bottom: 10px; }
.benefit p { font-size: 14px; color: var(--fg2); margin: 0; line-height: 1.55; }

/* ---------- White-label ---------- */
.wl-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.wl-badge {
  display: inline-block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: var(--product-rmgeo-bright); font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 20px;
}
.wl-text h2 { color: #fff; margin-bottom: 16px; }
.wl-text > p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.6; margin: 0 0 28px; }
.wl-features { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.wl-features li { font-size: 15px; color: rgba(255,255,255,0.85); padding-left: 28px; position: relative; }
.wl-features li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.wl-visual img { width: 100%; border-radius: var(--radius-card); filter: drop-shadow(0 24px 60px rgba(0,0,0,0.4)); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-paper); border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 4px 24px; transition: var(--transition-fast);
}
.faq-item[open] { border-color: var(--color-primary); }
.faq-item summary {
  font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
  padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230050e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; color: var(--fg2); line-height: 1.6; margin: 0 0 18px; max-width: 700px; }

/* ---------- Final CTA ---------- */
.section-cta { text-align: center; }
.section-cta .cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.section-cta h2 { color: #fff; margin-bottom: 16px; }
.section-cta p { color: rgba(255,255,255,0.75); font-size: 18px; margin: 0 auto 28px; max-width: 560px; }
.section-cta .cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--color-ink-deep); color: #fff; padding: 80px 0 32px; }
.footer-content { display: grid; grid-template-columns: 320px 1fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; margin: 16px 0 0; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; margin: 0 0 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-copy { padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero { padding: 96px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .section-header { grid-template-columns: 1fr; gap: 20px; }
  .stats-bar, .problem-grid, .features-grid, .showcase-grid { grid-template-columns: 1fr; }
  .wl-content { grid-template-columns: 1fr; gap: 36px; }
  .wl-visual { display: none; }
  .showcase-card--wide .showcase-inner { grid-template-columns: 1fr; gap: 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--color-border);
    flex-direction: column; align-items: stretch; gap: 4px; padding: 16px var(--container-pad);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
}
@media (max-width: 640px) {
  .steps-grid, .benefits-grid, .plans-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }

html, body { overflow-x: hidden; max-width: 100%; }

/* ============================================================
   v2 — 3-section landing: glass nav, consolidated product,
   big numbers, case logos, FAQ lightbox, slim footer.
   ============================================================ */

/* ---------- Glass nav (full-width bar) ---------- */
.nav--glass {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
}
.nav--glass .nav-inner {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 16px var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}
.nav--glass .wordmark { color: #fff; }
.nav--glass .nav-links > a:not(.btn),
.nav--glass .nav-link { color: rgba(255,255,255,0.82); }
.nav--glass .nav-links > a:not(.btn):hover,
.nav--glass .nav-link:hover { color: #fff; }
.nav--glass .nav-toggle span { background: #fff; }
/* Apple-style frosted-glass buttons */
.nav--glass .btn-ghost-light {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nav--glass .btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.32); }
.nav--glass .btn-primary {
  background: rgba(0,80,229,0.42); border: 1px solid rgba(77,166,255,0.55); color: #fff;
  box-shadow: 0 2px 16px rgba(0,80,229,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nav--glass .btn-primary:hover { background: rgba(0,80,229,0.62); border-color: rgba(77,166,255,0.8); color: #fff; }
.nav--glass .nav-link {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
}
body.has-glass-nav { padding-top: 0; }

/* ---------- Product section (consolidated) ---------- */
.product-intro {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.92fr);
  gap: 56px; align-items: center;
}
.product-intro-text { max-width: 560px; }
.product-intro .h2 { margin-bottom: 18px; }
.product-intro-visual img { width: 100%; height: auto; filter: drop-shadow(0 24px 60px rgba(0,0,0,0.45)); }
@media (max-width: 900px) {
  .product-intro { grid-template-columns: 1fr; gap: 32px; }
  .product-intro-visual { display: none; }
}

/* Big numbers band */
.bignum {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0;
  border: 1px solid var(--color-border); border-radius: var(--radius-card);
  overflow: hidden; margin: 64px 0; background: var(--color-paper);
}
.bignum-item { padding: 36px 32px; border-right: 1px solid var(--color-border); }
.bignum-item:last-child { border-right: none; }
.bignum-value {
  font-family: var(--font-display); font-weight: 700; font-size: 42px;
  letter-spacing: -0.035em; line-height: 1; color: var(--color-primary);
  display: flex; align-items: center; gap: 8px; flex-wrap: nowrap;
}
.bignum-unit { color: #fff; font-size: 19px; letter-spacing: -0.01em; }
.bignum-value em { font-style: normal; color: var(--color-ink); }
.bignum-label { font-size: 13px; color: var(--fg2); margin-top: 12px; line-height: 1.45; }

/* Metrics + testimonial row */
.product-metrics {
  display: grid; grid-template-columns: 1fr 0.7fr 2.1fr; gap: 40px;
  margin: 64px 0; align-items: center;
}
.product-metrics > .bignum-item { padding: 0; border-right: none; }
.product-metrics .engines-line { margin-top: 18px; }
.bignum-ico {
  font-family: "Material Symbols Outlined"; font-size: 24px; line-height: 1;
  color: var(--product-rmgeo-bright); flex-shrink: 0;
}

.testimonial {
  background: transparent; border: none; border-left: 2px solid rgba(255,255,255,0.14);
  border-radius: 0; padding: 4px 0 4px 32px; margin: 0;
  display: flex; flex-direction: column; gap: 18px; justify-content: center; position: relative;
}
.testimonial-mark {
  font-family: "Material Symbols Outlined"; font-size: 36px; line-height: 1;
  color: var(--product-rmgeo-bright); opacity: 0.6;
}
.testimonial blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px); line-height: 1.4; letter-spacing: -0.01em; color: #fff;
}
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0050e5, #22d3ee); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-meta strong { color: #fff; font-size: 15px; font-weight: 700; }
.testimonial-meta span { color: rgba(255,255,255,0.55); font-size: 13px; }
@media (max-width: 900px) {
  .product-metrics { grid-template-columns: 1fr; gap: 28px; }
  .testimonial { border-left: none; border-top: 1px solid rgba(255,255,255,0.14); padding: 24px 0 0; }
}

/* Dark showcase panel inside the product section */
.product-panel {
  background: var(--color-ink); color: #fff; border-radius: 24px;
  padding: 64px; position: relative; overflow: hidden; margin-bottom: 64px;
}
.product-panel .section-pattern { opacity: 0.05; border-radius: 24px; }
.product-panel--plain {
  background: transparent; border-radius: 0; padding: 0; overflow: visible;
  margin: 96px 0;
}
.product-panel-inner { position: relative; z-index: 1; }
.product-panel-head { max-width: 620px; margin-bottom: 44px; }
.product-panel-head .h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); }
.product-showcase-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; min-width: 0; }
.product-showcase-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 860px) { .product-showcase-grid--3 { grid-template-columns: 1fr; } }

/* Product showcase slider (2 cards visíveis por vez) */
.ps-slider { position: relative; }
.ps-slider-viewport { overflow: hidden; }
.ps-slider-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.65,0,0.35,1); }
.ps-slider--2up .ps-slide {
  flex: 0 0 42%; min-width: 0;
  margin-top: 0;
}
.ps-slider--2up .ps-slide.ps-card { padding: 28px 28px 0; }
.ps-slide h3 { font-size: 20px; color: #fff; letter-spacing: -0.02em; margin-bottom: 8px; }
.ps-slide p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0 0 18px; line-height: 1.5; }
.ps-slider-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 32px; gap: 24px;
}
.ps-dots { display: flex; gap: 10px; }
.ps-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.25); border: none; transition: var(--transition-fast);
}
.ps-dot:hover { background: rgba(255,255,255,0.5); }
.ps-dot.is-active { background: var(--product-rmgeo-bright); width: 28px; border-radius: 100px; }
.ps-arrows { display: flex; gap: 10px; }
.ps-arrow {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: var(--transition-fast);
}
.ps-arrow:hover { background: rgba(255,255,255,0.14); border-color: var(--product-rmgeo); }
@media (max-width: 760px) {
  .ps-slider--2up .ps-slide { flex: 0 0 100%; }
}
.ps-card {
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-card);
  background: rgba(255,255,255,0.03); padding: 28px 28px 0; overflow: hidden;
  display: flex; flex-direction: column; transition: var(--transition-card);
}
.ps-card:hover { border-color: var(--product-rmgeo); transform: translateY(-3px); }
.ps-card--feature { grid-row: span 2; }
.ps-card--wide {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr);
  gap: 32px; align-items: center; padding: 32px 0 32px 32px;
}
.ps-card--wide .ps-card-wide-text { padding-bottom: 0; }
.ps-card--wide h3 { font-size: 24px; }
.ps-card--wide p { max-width: 420px; }
.ps-img--wide { margin-top: 0; }
.ps-img--wide img {
  border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) {
  .ps-card--wide { grid-template-columns: 1fr; padding: 28px 28px 0; }
  .ps-card--wide .ps-img--wide { margin: 8px -28px 0; }
  .ps-card--wide .ps-img--wide img { border-radius: 0; }
}
.ps-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--product-rmgeo-bright); margin-bottom: 12px; }
.ps-card h3 { font-size: 20px; color: #fff; letter-spacing: -0.02em; margin-bottom: 8px; }
.ps-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0 0 18px; line-height: 1.5; }
.ps-img { margin-top: auto; }
.ps-img img { width: 100%; height: auto; border-radius: 10px 10px 0 0; }

/* Engines line inside product */
.engines-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; align-items: center; }
.engines-line-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); font-weight: 700; margin-right: 8px; }
.engine-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 9px 16px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 500;
}
.engine-pill .engine-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--product-rmgeo-bright); }
.engines-line--standalone { margin-top: 56px; margin-bottom: 4px; }
.engines-line--compact { margin-top: 24px; gap: 8px; }
.engines-line--compact .engines-line-label { font-size: 11px; margin-right: 4px; }
.engines-line--compact .engine-pill { padding: 6px 13px; font-size: 12.5px; }
.engines-line--compact .engine-dot { width: 6px; height: 6px; }
.engines-line--nowrap { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.engines-line--nowrap::-webkit-scrollbar { display: none; }
.engines-line--nowrap .engine-pill { flex: 0 0 auto; white-space: nowrap; }
.engines-line--nowrap .engines-line-label { flex: 0 0 auto; }

/* Capabilities (condensed features) — reuse .features-* */
.product-caps { margin-bottom: 64px; }
.product-caps .features-tabs { margin-top: 32px; }
.caps-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.cap-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85); padding: 9px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; transition: var(--transition-fast);
}
.cap-chip::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--product-rmgeo-bright); flex-shrink: 0; }
.cap-chip:hover { border-color: var(--product-rmgeo); color: #fff; }
.product-caps { margin-top: 24px; }
.caps-title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.02em; color: #fff; margin: 0 0 28px;
}
.caps-tabs { display: grid; grid-template-columns: 168px 1fr; gap: 28px; align-items: start; }
.caps-nav {
  display: flex; flex-direction: column; gap: 2px;
  background: none; border: none; border-radius: 0; padding: 0;
}
.caps-nav-item {
  text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.55); padding: 11px 14px; border-radius: 10px;
  transition: var(--transition-fast); line-height: 1.2;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.caps-nav-item::after {
  content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(-45deg); opacity: 0; transition: var(--transition-fast); margin-right: 2px;
}
.caps-nav-item:hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.9); }
.caps-nav-item.is-active { background: rgba(34,211,238,0.12); color: #fff; }
.caps-nav-item.is-active::after { opacity: 1; color: var(--product-rmgeo-bright); }
.caps-panels { min-width: 0; }
.caps-row { display: none; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px; }
.caps-row.is-active { display: grid; animation: fadein 0.2s ease; }
.cap-ico {
  font-family: "Material Symbols Outlined"; font-size: 24px; line-height: 1;
  color: var(--product-rmgeo-bright); display: block; margin-bottom: 12px;
  font-variation-settings: 'opsz' 24, 'wght' 400, 'FILL' 0, 'GRAD' 0;
}
.cap-block {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; padding: 20px 17px; transition: var(--transition-card);
}
.cap-block:hover { border-color: var(--product-rmgeo); transform: translateY(-3px); }
.cap-block h4 { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; color: #fff; margin: 0 0 6px; }
.cap-block p { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.4; margin: 0; }
@media (max-width: 1100px) { .caps-row { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 760px) {
  .caps-tabs { grid-template-columns: 1fr; gap: 24px; }
  .caps-nav { flex-direction: row; flex-wrap: wrap; gap: 8px; border-left: none; }
  .caps-nav-item {
    padding: 8px 16px; margin-left: 0; font-size: 14px; border-left: none;
    border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-pill);
  }
  .caps-nav-item.is-active { border-color: var(--product-rmgeo-bright); background: rgba(34,211,238,0.1); }
}
@media (max-width: 460px) { .caps-row { grid-template-columns: 1fr; } }

/* White-label compact callout */
.wl-callout {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-left: 4px solid var(--product-rmgeo); border-radius: var(--radius-card);
  padding: 32px 36px; margin-bottom: 64px;
}
.wl-callout h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; }
.wl-callout p { font-size: 15px; color: var(--fg2); margin: 0; max-width: 620px; line-height: 1.55; }

/* Case logos band */
.cases { text-align: center; }
.cases-eyebrow { justify-content: center; }
.cases-grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; margin-top: 36px; align-items: center;
}
.case-logo {
  aspect-ratio: 3 / 1; background: var(--color-bg-2); border-radius: var(--radius-image);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  color: var(--color-muted); border: 1px solid var(--color-border);
}

/* ---------- FAQ lightbox ---------- */
.faq-trigger-row { text-align: center; margin-top: 16px; }
.faq-modal {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(0, 19, 44, 0.6); backdrop-filter: blur(4px);
}
.faq-modal.open { display: flex; animation: fadein 0.2s ease; }
.faq-modal-panel {
  background: var(--color-paper); border-radius: 20px; max-width: 760px; width: 100%;
  max-height: 86vh; overflow-y: auto; padding: 40px; position: relative;
  box-shadow: 0 24px 64px rgba(0, 19, 44, 0.24);
}
.faq-modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 24px; }
.faq-modal-head h2 { font-size: 32px; }
.faq-close {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-bg-2); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--color-ink); transition: var(--transition-fast);
}
.faq-close:hover { background: var(--color-ink); color: #fff; }

/* ---------- Slim footer (no links) ---------- */
.footer--slim { padding: 48px 0; }
.footer--slim .footer-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer--slim .footer-tag { font-size: 13px; color: rgba(255,255,255,0.55); max-width: 380px; line-height: 1.5; margin: 14px 0 0; }
.footer--slim .footer-wl { font-size: 12px; color: rgba(255,255,255,0.5); max-width: 360px; line-height: 1.55; margin: 0; }
.footer--slim .footer-wl strong { color: rgba(255,255,255,0.7); font-weight: 700; }
.footer-wl-link { color: var(--product-rmgeo-bright); text-decoration: none; font-weight: 600; white-space: nowrap; }
.footer-wl-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer--slim .footer-copy { padding: 0; font-size: 13px; color: rgba(255,255,255,0.45); }
@media (max-width: 640px) { .footer--slim .footer-top { flex-direction: column; gap: 20px; } }

@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav--glass { top: 0; }
  .nav--glass .nav-inner { border-radius: 0; margin: 0; }
  .nav--glass .nav-links {
    background: rgba(0,19,44,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.12); border-radius: 0 0 16px 16px;
  }
  .bignum { grid-template-columns: repeat(2, 1fr); }
  .bignum-item:nth-child(2) { border-right: none; }
  .bignum-item:nth-child(1), .bignum-item:nth-child(2) { border-bottom: 1px solid var(--color-border); }
  .product-panel { padding: 36px 24px; }
  .product-showcase-grid { grid-template-columns: 1fr; }
  .ps-card--feature { grid-row: auto; }
  .wl-callout { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .bignum { grid-template-columns: 1fr; }
  .bignum-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .bignum-item:last-child { border-bottom: none; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-modal-panel { padding: 28px 20px; }
}

/* ============================================================
   v3 — Full dark mode + gradient AI names + hero cursor glow
   ============================================================ */

/* Gradient AI names */
.ai {
  background: linear-gradient(90deg, #4d8aff 0%, #22d3ee 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 700;
}

/* Hero cursor-following glow */
.hero-glow {
  position: absolute; width: 620px; height: 620px; left: 50%; top: 56%;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(34,211,238,0.20) 0%, rgba(0,80,229,0.12) 38%, transparent 70%);
  transform: translate(-50%, -50%); transition: left 0.2s cubic-bezier(0.22,1,0.36,1), top 0.2s cubic-bezier(0.22,1,0.36,1);
  will-change: left, top;
}
html[data-accent="cyan"] .hero-glow { background: radial-gradient(circle, rgba(34,211,238,0.26) 0%, rgba(6,182,212,0.12) 40%, transparent 70%); }

/* Floating engine-name tokens (parallax + idle float) */
.hero-orbits { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orbit-token {
  position: absolute; transform: translate(0, 0); opacity: 0.4;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); will-change: transform;
}
.orbit-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body); font-weight: 600; font-size: 14px; white-space: nowrap;
  animation: orbitFloat var(--dur, 7s) ease-in-out infinite; animation-delay: var(--delay, 0s);
}
.orbit-chip .ai { font-weight: 700; }
.orbit-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--product-rmgeo-bright); opacity: 0.8; }
@keyframes orbitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .orbit-chip { animation: none; } }

/* ---------- DARK MODE (whole page) ---------- */
body { background: var(--color-ink); color: #fff; }
.section { background: var(--color-ink); }
.section--bg { background: #001E4A; }
/* tighter gap between produto and planos */
#produto { padding-bottom: 64px; }
#planos { padding-top: 64px; }

.section .lead, .product-intro .lead { color: rgba(255,255,255,0.72); }
.section .section-desc { color: rgba(255,255,255,0.68); }
.section .h2, .section h2, .section h3 { color: #fff; }
.display em, .h2 em, h2 em { color: var(--product-rmads); }
html[data-accent="cyan"] .display em, html[data-accent="cyan"] .h2 em, html[data-accent="cyan"] h2 em { color: var(--product-rmgeo-bright); }

/* Big numbers */
.bignum { background: transparent; border: none; border-radius: 0; }
.bignum-item { border-right-color: rgba(255,255,255,0.12); padding-top: 8px; padding-bottom: 8px; }
.bignum-item:first-child { padding-left: 0; }
.bignum-item:last-child { padding-right: 0; }
.bignum-value { color: var(--product-rmgeo-bright); }
.bignum-value em { color: #fff; }
.bignum-label { color: rgba(255,255,255,0.6); }

/* Feature cards */
.feature-card { background: var(--color-ink-2); border-color: rgba(255,255,255,0.08); }
.feature-card h3 { color: #fff; }
.feature-card p { color: rgba(255,255,255,0.65); }
.feature-icon { background: rgba(34,211,238,0.12); }

/* Tabs */
.features-tab { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.features-tab:hover { color: #fff; border-color: var(--product-rmgeo); }
.features-tab.active { background: #fff; color: var(--color-ink); border-color: #fff; }

/* White-label callout */
.wl-callout { background: var(--color-ink-2); border-color: rgba(255,255,255,0.08); border-left-color: var(--product-rmgeo); }
.wl-callout h3 { color: #fff; }
.wl-callout p { color: rgba(255,255,255,0.65); }

/* Case logos */
.case-logo { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.4); }

/* Pricing */
.billing-label { color: rgba(255,255,255,0.6); }
.query-slider-section { background: var(--color-ink-2); border-color: rgba(255,255,255,0.08); }
.slider-label { color: rgba(255,255,255,0.7); }
.slider-ticks span { color: rgba(255,255,255,0.5); }
@media (max-width: 720px) {
  .pricing-controls { grid-template-columns: 1fr; gap: 20px; }
}
.query-slider { background: linear-gradient(to right, var(--color-primary) var(--fill,0%), rgba(255,255,255,0.16) var(--fill,0%)); }
.query-slider::-webkit-slider-thumb { background: #fff; border-color: var(--color-ink); }
.query-slider::-moz-range-thumb { background: #fff; border-color: var(--color-ink); }

.plan-card { background: var(--color-ink-2); border-color: rgba(255,255,255,0.08); border-top-color: rgba(255,255,255,0.12); }
.plan-card h3 { color: #fff; }
.plan-audience { color: rgba(255,255,255,0.6); }
.plan-currency, .plan-amount { color: #fff; }
.plan-period { color: rgba(255,255,255,0.5); }
.plan-includes { color: rgba(255,255,255,0.6); }
.plan-features li { color: rgba(255,255,255,0.85); }
.plan-features li strong { color: var(--product-rmgeo-bright); }
.plan-features li::before {
  background-color: rgba(34,211,238,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.plan-excluded { border-top-color: rgba(255,255,255,0.10); }
.plan-excluded li { color: rgba(255,255,255,0.4); }
.plan-excluded li::before {
  background-color: rgba(255,255,255,0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}
.plan-featured { border-top-color: var(--color-primary); background: #00224f; box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.plan-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.35); }

/* Plan CTAs — polished for dark cards */
.plan-cta { margin-bottom: 24px; padding: 15px 24px; font-size: 12.5px; }
.plan-card .btn-secondary {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}
.plan-card .btn-secondary:hover {
  background: var(--color-primary); border-color: var(--color-primary); color: #fff;
  transform: translateY(-1px);
}
.plan-featured .btn-primary {
  background: var(--color-primary); color: #fff;
  box-shadow: 0 10px 28px rgba(0,80,229,0.45);
}
.plan-featured .btn-primary:hover {
  background: #fff; color: var(--color-ink);
  box-shadow: 0 10px 28px rgba(255,255,255,0.22); transform: translateY(-1px);
}
.plan-card .btn-urgency {
  background: var(--color-urgency); color: #fff;
  box-shadow: 0 10px 28px rgba(255,87,0,0.32);
}
.plan-card .btn-urgency:hover {
  background: var(--color-urgency-hover);
  box-shadow: 0 12px 32px rgba(255,87,0,0.45); transform: translateY(-1px);
}
html[data-accent="cyan"] .plan-featured .btn-primary { box-shadow: 0 10px 28px rgba(6,182,212,0.4); }

/* Buttons inside dark content sections (nav stays light over glass) */
.section .btn-primary { background: var(--color-primary); color: #fff; }
.section .btn-primary:hover { background: #fff; color: var(--color-ink); }
.section .btn-ghost-light { border-color: rgba(255,255,255,0.4); color: #fff; }
.section .btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.compare-toggle .btn { color: var(--product-rmgeo-bright); border-color: rgba(255,255,255,0.2); background: transparent; }
.compare-toggle .btn:hover { border-color: var(--product-rmgeo); }

/* Compare table */
.compare-table th { color: #fff; }
.compare-table th, .compare-table td { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.compare-table .col-featured { background: rgba(0,80,229,0.18); }
.compare-divider td { background: rgba(255,255,255,0.06); color: #fff; }

/* FAQ modal (dark) */
.faq-modal-panel { background: var(--color-ink); border: 1px solid rgba(255,255,255,0.1); }
.faq-modal-head h2 { color: #fff; }
.faq-close { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.faq-close:hover { background: #fff; color: var(--color-ink); }
.faq-item { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.faq-item[open] { border-color: var(--product-rmgeo); }
.faq-item summary { color: #fff; }
.faq-item p { color: rgba(255,255,255,0.65); }

/* Eyebrows read as lime (cyan when accent=cyan) on the dark page */
.section .eyebrow:not(.eyebrow--on-dark) { color: var(--product-rmads); }
html[data-accent="cyan"] .section .eyebrow:not(.eyebrow--on-dark) { color: var(--product-rmgeo-bright); }
html[data-accent="cyan"] .hero-eyebrow { color: var(--product-rmgeo-bright); }

/* ---------- Consultor lightbox (HubSpot) ---------- */
.consultant-modal {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(0, 19, 44, 0.6); backdrop-filter: blur(4px);
}
.consultant-modal.open { display: flex; animation: fadein 0.2s ease; }
.consultant-panel {
  background: #fff; border-radius: 20px; max-width: 600px; width: 100%;
  max-height: 88vh; overflow-y: auto; padding: 40px; position: relative;
  box-shadow: 0 24px 64px rgba(0, 19, 44, 0.32);
}
.consultant-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 28px; }
.consultant-head .eyebrow { color: var(--color-primary); margin-bottom: 12px; }
.consultant-head h2 { font-size: 30px; color: var(--color-ink); }
.consultant-sub { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--color-muted); max-width: 42ch; }
.consultant-modal .faq-close { background: var(--color-bg-2); border: 1px solid var(--color-border); color: var(--color-ink); }
.consultant-modal .faq-close:hover { background: var(--color-ink); color: #fff; }

/* HubSpot form theming to match brand */
.consultant-form .hs-form-field { margin-bottom: 16px; }
.consultant-form label { display: block; font-size: 13px; font-weight: 500; color: var(--color-ink); margin-bottom: 6px; }
.consultant-form .hs-form-field > label { font-weight: 600; }
.consultant-form input[type="text"],
.consultant-form input[type="email"],
.consultant-form input[type="tel"],
.consultant-form input[type="number"],
.consultant-form textarea,
.consultant-form select {
  width: 100%; box-sizing: border-box; padding: 12px 14px; font-size: 15px;
  font-family: inherit; color: var(--color-ink);
  background: #fff; border: 1px solid var(--color-border); border-radius: 8px;
  transition: var(--transition-fast);
}
.consultant-form input:focus,
.consultant-form textarea:focus,
.consultant-form select:focus {
  outline: 2px solid var(--color-primary); outline-offset: 2px; border-color: var(--color-primary);
}
.consultant-form textarea { min-height: 96px; resize: vertical; }
.consultant-form .hs-error-msg, .consultant-form .hs-error-msgs label { color: #d32f2f; font-size: 12px; font-weight: 400; }
.consultant-form .legal-consent-container, .consultant-form .hs-richtext { font-size: 12px; color: var(--color-muted); line-height: 1.5; }
.consultant-form .hs-button {
  background: var(--color-urgency); color: #fff; border: none; cursor: pointer;
  padding: 14px 24px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 8px; width: 100%; margin-top: 8px;
  transition: var(--transition-fast);
}
.consultant-form .hs-button:hover { filter: brightness(0.92); }
@media (max-width: 600px) {
  .consultant-panel { padding: 28px 20px; }
  .consultant-head h2 { font-size: 24px; }
}
