/* ═══════════════════════════════════════════
   Pessoar LP v3 — HR Tech + AI
   Bold, dark, immersive
   ═══════════════════════════════════════════ */

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

:root {
  --bg:           #0a0f1e;
  --bg-subtle:    #111827;
  --bg-card:      #1a1f35;
  --border:       #1f2937;
  --border-light: #374151;
  --text:         #f8fafc;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;

  --primary:       #1A2B56;
  --primary-light: #4FD1C5;
  --primary-hover: #38B2AC;
  --accent:        #E6FFFA;
  --gradient:      linear-gradient(135deg, #1A2B56 0%, #4FD1C5 50%, #38B2AC 100%);
  --gradient-hero: linear-gradient(135deg, #0f1629 0%, #1A2B56 40%, #0f2027 100%);
  --glow-teal:     rgba(79, 209, 197, 0.15);
  --glow-navy:     rgba(26, 43, 86, 0.3);

  --success: #22c55e;
  --warning: #f59e0b;
  --star:    #fbbf24;

  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --container:  1180px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Skip link (a11y + SEO) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--primary-light);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}
.btn__icon {
  width: 16px;
  height: 16px;
}
.btn--primary {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-light);
  font-weight: 700;
}
.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79, 209, 197, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn--outline:hover {
  border-color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 10px 16px;
}
.btn--ghost:hover { color: var(--text); }
.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn--block { width: 100%; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar--scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
}
.navbar__links {
  display: flex;
  gap: 32px;
}
.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--text); }
.navbar__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO — Split layout, bold
   ══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 30% 20%, var(--glow-navy) 0%, transparent 60%);
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 209, 197, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 209, 197, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 70%);
}
.hero__glow {
  position: absolute;
  top: -100px;
  left: 20%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, var(--glow-teal) 0%, transparent 70%);
  pointer-events: none;
}
.hero__glow-secondary {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26, 43, 86, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.hero__content { max-width: 520px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(79, 209, 197, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(79, 209, 197, 0); }
}
.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__note {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Dashboard mockup */
.hero__visual {
  perspective: 1200px;
}
.hero__dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.1),
    0 20px 60px rgba(0,0,0,0.3),
    0 0 80px rgba(79, 209, 197, 0.05);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.hero__dashboard:hover {
  transform: rotateY(-1deg) rotateX(1deg);
}
.hero__dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.hero__dashboard-dots {
  display: flex;
  gap: 6px;
}
.hero__dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
}
.hero__dashboard-dots span:first-child { background: #ef4444; }
.hero__dashboard-dots span:nth-child(2) { background: #f59e0b; }
.hero__dashboard-dots span:nth-child(3) { background: #22c55e; }
.hero__dashboard-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.hero__dashboard-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 260px;
}
.hero__dashboard-sidebar {
  padding: 12px 8px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.hero__sidebar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.hero__sidebar-item--active {
  background: rgba(79, 209, 197, 0.1);
  color: var(--primary-light);
}
.hero__dashboard-content {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero__dash-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.hero__dash-card--wide {
  grid-column: span 2;
}
.hero__dash-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.hero__dash-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero__dash-big {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__dash-trend {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--success);
}
.hero__dash-trend svg {
  width: 10px;
  height: 10px;
}
.hero__dash-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  margin-top: 8px;
  overflow: hidden;
}
.hero__dash-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gradient);
}
.hero__dash-chat {
  margin-top: 4px;
}
.hero__dash-chat-msg {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(79, 209, 197, 0.06);
  border: 1px solid rgba(79, 209, 197, 0.1);
  border-radius: 6px;
  padding: 8px 10px;
  line-height: 1.4;
}

/* Hero shape */
.hero__shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero__shape svg {
  width: 100%;
  height: 80px;
}

/* ══════════════════════════════════════
   COUNTER
   ══════════════════════════════════════ */
.counter {
  padding: 64px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.counter__item {
  text-align: center;
  padding: 24px 16px;
}
.counter__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter__icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary-light);
}
.counter__number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.counter__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════
   FEATURES
   ══════════════════════════════════════ */
.features {
  padding: 110px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(79, 209, 197, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 0 40px rgba(79, 209, 197, 0.05);
}
.feature-card:hover::before { opacity: 1; }
.feature-card--highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(26, 43, 86, 0.25) 0%, rgba(79, 209, 197, 0.05) 100%);
  border-color: rgba(79, 209, 197, 0.15);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid rgba(79, 209, 197, 0.12);
  margin-bottom: 18px;
}
.feature-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-light);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.feature-card__tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid rgba(79, 209, 197, 0.15);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   SERVICE (side-by-side)
   ══════════════════════════════════════ */
.service {
  padding: 110px 0;
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}
.service__glow {
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow-teal) 0%, transparent 60%);
  pointer-events: none;
}
.service__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.service__content .section-tag { margin-bottom: 16px; }
.service__content .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.service__content > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.service__content .btn { margin-top: 8px; }
.service__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.service__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.service__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid rgba(79, 209, 197, 0.15);
  flex-shrink: 0;
}
.service__check svg {
  width: 12px;
  height: 12px;
  color: var(--primary-light);
}

/* Readiness demo */
.readiness-demo {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.readiness-demo__ring {
  position: relative;
  width: 130px;
  height: 130px;
}
.readiness-demo__ring svg { width: 100%; height: 100%; }
.readiness-demo__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  font-weight: 900;
}
.readiness-demo__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.readiness-demo__bars {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bar { display: flex; align-items: center; gap: 12px; }
.bar__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 80px;
  flex-shrink: 0;
}
.bar__track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.bar__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient);
  transition: width 1.2s ease;
}
.bar__value {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  width: 32px;
  text-align: right;
}

/* ══════════════════════════════════════
   DISCOVER (side-by-side reversed)
   ══════════════════════════════════════ */
.discover {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.discover__glow {
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow-navy) 0%, transparent 60%);
  pointer-events: none;
}
.discover__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.discover__content .section-tag { margin-bottom: 16px; }
.discover__content .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.discover__content > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.discover__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.discover__highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.discover__highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.discover__highlight-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
}
.discover__highlight strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.discover__highlight span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Coach chat demo */
.coach-demo {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.coach-demo__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(26, 43, 86, 0.15);
}
.coach-demo__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(79, 209, 197, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach-demo__avatar svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
}
.coach-demo__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}
.coach-demo__status {
  font-size: 0.7rem;
  color: var(--success);
  font-weight: 500;
}
.coach-demo__messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coach-demo__msg {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 88%;
}
.coach-demo__msg--bot {
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.1);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.coach-demo__msg--user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.coach-demo__typing {
  display: flex;
  gap: 4px;
  padding: 8px 16px;
  align-self: flex-start;
}
.coach-demo__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: typing-bounce 1.4s infinite;
}
.coach-demo__typing span:nth-child(2) { animation-delay: 0.2s; }
.coach-demo__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ══════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════ */
.how-it-works {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f1a3a 0%, var(--primary) 50%, #0f1a3a 100%);
}
.how-it-works__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(79, 209, 197, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.how-it-works__container {
  position: relative;
  z-index: 1;
}
.how-it-works .section-title,
.how-it-works .section-subtitle { color: #fff; }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.65); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 32px 28px;
  flex: 1;
}
.step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(79, 209, 197, 0.1);
  border: 2px solid rgba(79, 209, 197, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.step:hover .step__number {
  background: rgba(79, 209, 197, 0.2);
  border-color: var(--primary-light);
  transform: scale(1.1);
}
.step__number span {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-light);
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.step__connector {
  width: 48px;
  height: 2px;
  background: rgba(79, 209, 197, 0.2);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials {
  padding: 110px 0;
  background: var(--bg-subtle);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(79, 209, 197, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  color: var(--star);
}
.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}
.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.pricing {
  padding: 110px 0;
}

/* Toggle */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.pricing__toggle-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.pricing__toggle-label--active {
  color: var(--text);
  font-weight: 600;
}
.pricing__toggle-save {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(79, 209, 197, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
}
.pricing__toggle-switch {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.pricing__toggle-switch.active {
  background: var(--primary-light);
}
.pricing__toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}
.pricing__toggle-switch.active .pricing__toggle-knob {
  transform: translateX(20px);
}

/* Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.pricing-card--featured {
  border-color: rgba(79, 209, 197, 0.35);
  background: linear-gradient(180deg, rgba(79, 209, 197, 0.08) 0%, var(--bg-subtle) 25%);
  transform: scale(1.03);
  z-index: 1;
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
  background: var(--gradient);
  color: #fff;
  white-space: nowrap;
}
.pricing-card--enterprise {
  border-color: rgba(168, 85, 247, 0.25);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.06) 0%, var(--bg-subtle) 25%);
}
.pricing-card__plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.pricing-card__plan-badge--slate { background: rgba(148, 163, 184, 0.12); color: #94a3b8; }
.pricing-card__plan-badge--blue { background: rgba(96, 165, 250, 0.12); color: #60a5fa; }
.pricing-card__plan-badge--purple { background: rgba(168, 85, 247, 0.12); color: #a855f7; }
.pricing-card__header { margin-bottom: 20px; }
.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.pricing-card__currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 10px;
}
.pricing-card__amount {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: all 0.2s ease;
}
.pricing-card__period {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-left: 4px;
}
.pricing-card__minimum {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-card__features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
}
.pricing-card__features li.included::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  background-size: 9px;
}
.pricing-card__features li.not-included {
  color: rgba(148, 163, 184, 0.35);
}
.pricing-card__features li.not-included::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center;
  background-size: 9px;
}
.pricing__partner {
  text-align: center;
  margin-top: 44px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.pricing__partner a {
  color: var(--primary-light);
  font-weight: 600;
}
.pricing__partner a:hover { opacity: 0.8; }

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq {
  padding: 110px 0;
  background: var(--bg-subtle);
}
.faq__grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: border-color var(--transition);
}
.faq__item:hover { border-color: rgba(79, 209, 197, 0.15); }
.faq__item--open { border-color: rgba(79, 209, 197, 0.25); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq__question svg {
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item--open .faq__question svg { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item--open .faq__answer { max-height: 200px; }
.faq__answer p {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CONTACT / LEAD CAPTURE
   ══════════════════════════════════════ */
.contact {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--primary) 70%, #0a0f1e 100%);
}
.contact__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(79, 209, 197, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact__glow {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(79, 209, 197, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact__info h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #fff;
}
.contact__info > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.contact__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid rgba(79, 209, 197, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
}
.contact__feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.contact__feature span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* Lead form */
.contact__form-wrapper {
  position: relative;
}
.lead-form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.lead-form__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.lead-form__subtitle {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.lead-form__field {
  margin-bottom: 16px;
}
.lead-form__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.lead-form__field input,
.lead-form__field select,
.lead-form__field textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.lead-form__field input::placeholder,
.lead-form__field textarea::placeholder {
  color: var(--text-dim);
}
.lead-form__field input:focus,
.lead-form__field select:focus,
.lead-form__field textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}
.lead-form__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.lead-form__field select option {
  background: var(--bg-card);
  color: var(--text);
}
.lead-form__field textarea {
  resize: vertical;
  min-height: 72px;
}
.lead-form__input--error,
.lead-form__field input.lead-form__input--error,
.lead-form__field select.lead-form__input--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.lead-form__error {
  display: block;
  font-size: 0.72rem;
  color: #f87171;
  margin-top: 4px;
  min-height: 16px;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Submit button states */
.lead-form .btn { margin-top: 8px; }
.lead-form__btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}
.lead-form__btn-loading svg {
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.lead-form__btn--loading .lead-form__btn-text { display: none; }
.lead-form__btn--loading .lead-form__btn-loading { display: inline-flex; }
.lead-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Feedback messages */
.lead-form__feedback {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  padding: 0;
  transition: all var(--transition);
}
.lead-form__feedback:empty {
  display: none;
}
.lead-form__feedback--success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 12px 16px;
}
.lead-form__feedback--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
  padding: 12px 16px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.6;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(2).animate-on-scroll { transition-delay: 0.08s; }
.feature-card:nth-child(3).animate-on-scroll { transition-delay: 0.16s; }
.feature-card:nth-child(4).animate-on-scroll { transition-delay: 0.24s; }
.feature-card:nth-child(5).animate-on-scroll { transition-delay: 0.32s; }
.feature-card:nth-child(6).animate-on-scroll { transition-delay: 0.4s; }
.step:nth-child(2).animate-on-scroll { transition-delay: 0.15s; }
.step:nth-child(3).animate-on-scroll { transition-delay: 0.3s; }
.pricing-card:nth-child(2).animate-on-scroll { transition-delay: 0.12s; }
.pricing-card:nth-child(3).animate-on-scroll { transition-delay: 0.24s; }
.testimonial-card:nth-child(2).animate-on-scroll { transition-delay: 0.1s; }
.testimonial-card:nth-child(3).animate-on-scroll { transition-delay: 0.2s; }
.counter__item:nth-child(2).animate-on-scroll { transition-delay: 0.08s; }
.counter__item:nth-child(3).animate-on-scroll { transition-delay: 0.16s; }
.counter__item:nth-child(4).animate-on-scroll { transition-delay: 0.24s; }
.faq__item:nth-child(2).animate-on-scroll { transition-delay: 0.06s; }
.faq__item:nth-child(3).animate-on-scroll { transition-delay: 0.12s; }
.faq__item:nth-child(4).animate-on-scroll { transition-delay: 0.18s; }
.faq__item:nth-child(5).animate-on-scroll { transition-delay: 0.24s; }
.faq__item:nth-child(6).animate-on-scroll { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content { max-width: 600px; margin: 0 auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { display: none; }
  .counter__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-card--highlight { grid-column: span 2; }
  .service__inner,
  .discover__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service__content .section-title,
  .discover__content .section-title { text-align: center; }
  .service__content,
  .discover__content { text-align: center; }
  .service__list { align-items: center; }
  .discover__highlights { align-items: center; }
  .discover__highlight { text-align: left; }
  .discover__visual { order: -1; }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step__connector {
    width: 2px;
    height: 32px;
    margin: 0;
  }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__info { text-align: center; }
  .contact__info > p { margin-left: auto; margin-right: auto; }
  .contact__features { align-items: center; }
  .contact__feature { text-align: left; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 680px) {
  .navbar__links,
  .navbar__actions {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }
  .navbar__links.active,
  .navbar__actions.active { display: flex; }
  .navbar__actions { top: calc(100% + 140px); }
  .navbar__toggle { display: flex; }

  .hero { padding: 130px 0 100px; }
  .hero__title { font-size: 2.25rem; }

  .counter__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .counter__item { padding: 16px 8px; }
  .counter__number { font-size: 1.5rem; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card--highlight { grid-column: span 1; }

  .lead-form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}
