/* ── ForexTracker Landing Page ── style.css ─────────────────────────────── */

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --bg:           #080d17;
  --bg-2:         #0d1320;
  --bg-card:      #111827;
  --bg-hover:     #161f30;
  --border:       #1e2a3a;
  --border-2:     #2d3748;

  --accent:       #00d9b8;
  --accent-2:     #00b89a;
  --accent-dim:   rgba(0,217,184,.12);
  --accent-glow:  rgba(0,217,184,.28);

  --green:        #10b981;
  --blue:         #3b82f6;
  --amber:        #f59e0b;
  --red:          #ef4444;
  --purple:       #8b5cf6;

  --text:         #e2e8f0;
  --text-2:       #94a3b8;
  --text-3:       #475569;

  --radius:       14px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  --shadow:       0 8px 40px rgba(0,0,0,.6);
  --shadow-card:  0 4px 24px rgba(0,0,0,.4);
  --shadow-glow:  0 0 60px rgba(0,217,184,.15);

  --nav-h:        72px;
  --section-py:   100px;
  --max-w:        1200px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-py  { padding: var(--section-py) 0; }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.d-flex      { display: flex; }
.gap-8       { gap: 8px; }
.gap-16      { gap: 16px; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 60%, #00b8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,217,184,.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* Section heading */
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.7;
}
.section-sub.center { margin: 0 auto; }

/* Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  margin-bottom: 32px;
}
.section-divider.center { margin: 0 auto 32px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
  letter-spacing: .1px;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  background: #00f0cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 16px; border-radius: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.navbar.scrolled {
  background: rgba(8,13,23,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-hover); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
}
.lang-toggle a {
  padding: 6px 12px;
  color: var(--text-3);
  transition: all .2s;
}
.lang-toggle a.active,
.lang-toggle a:hover {
  background: var(--accent-dim);
  color: var(--accent);
}
.nav-cta { display: none; }
@media(min-width: 900px) { .nav-cta { display: inline-flex; } }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,13,23,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text-2);
  transition: all .2s;
}
.mobile-menu a:hover { color: var(--text); background: var(--bg-hover); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }
@media(max-width: 899px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Animated grid background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, var(--bg) 100%),
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(0,217,184,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(0,184,255,.05) 0%, transparent 60%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .35;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 80%);
}
/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(0,217,184,.08);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(0,184,255,.06);
  bottom: 0; left: -80px;
  animation-delay: 3s;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 100px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,217,184,.3);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-badge i { font-size: 11px; }
.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-3);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #009980);
  border: 2px solid var(--bg);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust strong { color: var(--text-2); }

/* ── Dashboard Mockup ─────────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
}
.mockup-wrapper {
  position: relative;
}
.mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(0,217,184,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}
.mockup-browser {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px var(--border);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform .4s ease;
}
.mockup-browser:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }
.mockup-url {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  font-family: monospace;
}
.mockup-screen {
  display: grid;
  grid-template-columns: 56px 1fr;
  height: 340px;
  overflow: hidden;
}
.mockup-sidebar {
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.mockup-sidebar-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-3);
  transition: all .2s;
}
.mockup-sidebar-icon.active {
  background: var(--accent-dim);
  color: var(--accent);
}
.mockup-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  background: var(--bg);
}
.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.mockup-topbar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.mockup-topbar-btn {
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.mockup-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}
.mockup-stat-lbl {
  font-size: 9px;
  color: var(--text-3);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-stat-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.mockup-stat-val.green { color: var(--green); }
.mockup-stat-val.accent { color: var(--accent); }
.mockup-chart-area {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex: 1;
  padding: 10px 12px 8px;
  position: relative;
  overflow: hidden;
}
.mockup-chart-label {
  font-size: 9px;
  color: var(--text-3);
  margin-bottom: 6px;
}
.mockup-chart-line {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  height: 60px;
}
.mockup-chart-svg { width: 100%; height: 100%; }

/* Animated bar chart */
.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
  padding: 0 2px;
}
.mockup-bar-item {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--accent);
  opacity: .7;
  animation: barGrow .8s ease backwards;
}
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
.mockup-bar-item.neg { background: var(--red); opacity: .7; }
.mockup-bar-item:nth-child(2) { animation-delay: .05s; }
.mockup-bar-item:nth-child(3) { animation-delay: .10s; }
.mockup-bar-item:nth-child(4) { animation-delay: .15s; }
.mockup-bar-item:nth-child(5) { animation-delay: .20s; }
.mockup-bar-item:nth-child(6) { animation-delay: .25s; }
.mockup-bar-item:nth-child(7) { animation-delay: .30s; }
.mockup-bar-item:nth-child(8) { animation-delay: .35s; }
.mockup-bar-item:nth-child(9) { animation-delay: .40s; }
.mockup-bar-item:nth-child(10){ animation-delay: .45s; }

/* Floating badges on mockup */
.mockup-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  animation: badgeFloat 5s ease-in-out infinite;
}
.mockup-badge-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.mockup-badge-1 {
  top: -16px; right: -20px;
  animation-delay: 0s;
}
.mockup-badge-2 {
  bottom: 40px; left: -30px;
  animation-delay: 2s;
}
.mockup-badge-val { font-size: 15px; font-weight: 800; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── Logos bar (brokers) ──────────────────────────────────────────────────── */
.logos-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.logos-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.logos-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 16px;
}
.broker-logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  transition: all .2s;
}
.broker-logo-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.broker-logo-pill i { font-size: 14px; color: var(--accent); }

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  padding: 60px 0;
  background: var(--bg-2);
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats-bar-item {
  background: var(--bg-card);
  padding: 32px 28px;
  text-align: center;
  transition: background .2s;
}
.stats-bar-item:hover { background: var(--bg-hover); }
.stats-bar-val {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stats-bar-lbl {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}

/* ── Problem section ──────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  transition: all .2s;
}
.problem-item:hover {
  background: rgba(239,68,68,.1);
  border-color: rgba(239,68,68,.3);
}
.problem-item i {
  color: var(--red);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}
.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.solution-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
.solution-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.solution-list li i { color: var(--accent); font-size: 14px; }

/* ── Features ─────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px var(--accent-dim);
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover::after { opacity: 1; }
.feature-card.featured {
  background: linear-gradient(135deg, rgba(0,217,184,.08) 0%, var(--bg-card) 60%);
  border-color: rgba(0,217,184,.3);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,217,184,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform .2s;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.feature-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 100px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Metrics section ──────────────────────────────────────────────────────── */
.metrics-section { background: var(--bg-2); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}
.metric-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.metric-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.metric-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.metric-formula {
  margin-top: 12px;
  font-size: 11px;
  font-family: monospace;
  color: var(--text-3);
  background: var(--bg-2);
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-block;
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(0,217,184,.2), var(--accent));
  opacity: .4;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #009980 100%);
  color: #000;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Comparison table ─────────────────────────────────────────────────────── */
.comparison-section { background: var(--bg-2); }
.comparison-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th {
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-2);
  color: var(--text-2);
}
.comparison-table th:first-child { text-align: left; color: var(--text-3); font-weight: 600; }
.comparison-table th.highlight {
  background: rgba(0,217,184,.1);
  color: var(--accent);
  position: relative;
}
.comparison-table th.highlight::after {
  content: '✦ Você';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.comparison-table td {
  padding: 14px 20px;
  font-size: 13px;
  text-align: center;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  transition: background .15s;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-hover); }
.comparison-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.comparison-table td.highlight { background: rgba(0,217,184,.06); }
.comparison-table tr:hover td.highlight { background: rgba(0,217,184,.1); }
.check { color: var(--green); font-size: 16px; }
.cross { color: var(--red); font-size: 14px; opacity: .7; }
.partial { color: var(--amber); font-size: 13px; }

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,217,184,.08) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 0 1px var(--accent-dim), var(--shadow-glow);
  transform: scale(1.03);
}
.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  margin-bottom: 12px;
}
.pricing-card.popular .pricing-plan { color: var(--accent); }
.pricing-price {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--text-2); letter-spacing: 0; }
.pricing-period {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 6px;
}
.pricing-annual {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 18px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.4;
}
.pricing-features li i { color: var(--accent); font-size: 13px; margin-top: 1px; flex-shrink: 0; }
.pricing-features li.muted { color: var(--text-3); }
.pricing-features li.muted i { color: var(--text-3); }
.pricing-btn { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pricing-note span { display: flex; align-items: center; gap: 6px; }
.pricing-note i { color: var(--accent); }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: all .3s;
}
.testimonial-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.testimonial-stars {
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #009980);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--text-3); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg-2); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border-2); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: all .3s;
  color: var(--text-3);
}
.faq-item.open .faq-icon {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ── CTA Final ────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,217,184,.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,184,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-card p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-sub {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-3);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-3);
  transition: all .2s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ── Cookie banner ────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow);
  z-index: 2000;
  transition: transform .4s ease;
  font-size: 13px;
  color: var(--text-2);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { flex: 1; line-height: 1.5; }
.cookie-banner a { color: var(--accent); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content    { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual     { max-width: 560px; margin: 0 auto; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .stats-bar-grid  { grid-template-columns: repeat(2, 1fr); }
  .problem-grid    { grid-template-columns: 1fr; }
  .metrics-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid      { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-6px); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  :root { --section-py: 56px; }
  .features-grid   { grid-template-columns: 1fr; }
  .metrics-grid    { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid  { grid-template-columns: 1fr 1fr; }
  .stats-bar-val   { font-size: 32px; }
  .footer-grid     { grid-template-columns: 1fr; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-card        { padding: 48px 24px; }
  .cta-actions     { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .mockup-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mockup-browser  { transform: none; }
}

/* ── Lead capture section ──────────────────────────────────────────────────── */
.lead-section { background: var(--bg-2); }

.lead-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lead-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0,217,184,.07) 0%, transparent 70%);
  pointer-events: none;
}
.lead-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(0,217,184,.12);
  border: 1px solid rgba(0,217,184,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  margin: 0 auto 24px;
}
.lead-card h2 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 12px;
}
.lead-card > p {
  color: var(--text-3);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-input {
  width: 100%;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-1);
  transition: border-color .2s;
  box-sizing: border-box;
}
.lead-input:focus {
  outline: none;
  border-color: var(--accent);
}
.lead-input::placeholder { color: var(--text-4); }
.lead-form .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
  margin-top: 4px;
}
.lead-msg {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
  font-weight: 500;
}
.lead-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-4);
}
@media (max-width: 640px) {
  .lead-card { padding: 40px 24px; }
}

/* ── Legal pages ────────────────────────────────────────────────────────────── */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}
.legal-hero-inner {
  text-align: center;
}
.legal-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(0,217,184,.1);
  border: 1px solid rgba(0,217,184,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin: 0 auto 24px;
}
.legal-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 8px;
}
.legal-hero p {
  color: var(--text-3);
  font-size: 15px;
}
.legal-content {
  padding: 64px 0 96px;
}
.legal-body {
  max-width: 760px;
  margin: 0 auto;
}
.legal-intro {
  background: rgba(0,217,184,.06);
  border: 1px solid rgba(0,217,184,.15);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-intro p {
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}
.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin: 24px 0 10px;
}
.legal-body p {
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul {
  margin: 0 0 16px 0;
  padding-left: 20px;
  color: var(--text-2);
  line-height: 1.75;
}
.legal-body ul li { margin-bottom: 6px; }
.legal-body a { color: var(--accent); text-decoration: underline; }
.legal-body a:hover { opacity: .8; }
.legal-body strong { color: var(--text-1); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 32px;
  font-size: 14px;
}
.legal-table th {
  background: var(--bg-2);
  color: var(--text-2);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.legal-table td {
  padding: 11px 16px;
  border: 1px solid var(--border);
  color: var(--text-3);
  vertical-align: top;
}
.legal-table tr:nth-child(even) td { background: var(--bg-1); }

/* ── Contact page ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--accent); }
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,217,184,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent);
  margin-bottom: 14px;
}
.contact-card h3 { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.contact-card p  { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-bottom: 10px; }
.contact-card a  { font-size: 13px; color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }
.contact-form-wrap { background: var(--bg-1); border: 1px solid var(--border); border-radius: 20px; padding: 36px 32px; }
.contact-form h2  { font-size: 20px; font-weight: 800; color: var(--text-1); margin-bottom: 24px; }
.form-group       { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.contact-textarea { min-height: 130px; resize: vertical; }
select.lead-input { cursor: pointer; }
select.lead-input option { background: var(--bg-1); color: var(--text-1); }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
