/* ─────────────────────────────────────────
   VALTI Landing Page — style.css
───────────────────────────────────────── */

/* ── Variables ── */
:root {
  --purple:       #7c3aed;
  --purple-light: #8b5cf6;
  --purple-dark:  #6d28d9;
  --purple-50:    #faf5ff;
  --purple-100:   #f3e8ff;
  --purple-200:   #e9d5ff;

  --green:  #10b981;
  --red:    #ef4444;
  --blue:   #3b82f6;
  --orange: #f59e0b;
  --teal:   #14b8a6;
  --pink:   #ec4899;

  --bg:        #ffffff;
  --bg-alt:    #f8f7ff;
  --bg-dark:   #0d0814;
  --bg-dark2:  #130f1f;

  --text:        #111827;
  --text-muted:  #6b7280;
  --text-light:  rgba(255,255,255,0.75);

  --border:      #e5e7eb;
  --border-dark: rgba(255,255,255,0.08);

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(124,58,237,0.08);
  --shadow-lg: 0 16px 56px rgba(124,58,237,0.18);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 68px;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 99px;
  padding: 13px 20px 13px 16px;
  text-decoration: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float__label { white-space: nowrap; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.08); }
}

@media (max-width: 480px) {
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .whatsapp-float__label { display: none; }
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

input, textarea, button { font-family: var(--font); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 50%, #10b981 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124,58,237,0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #9333ea 50%, #059669 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.45);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.btn--sm  { font-size: 14px; padding: 8px 18px; }
.btn--lg  { font-size: 16px; padding: 14px 28px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section helpers ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-100);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle--light { color: var(--text-light); max-width: 520px; }

.gradient-text {
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(13,8,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: rgba(124,58,237,0.3);
  top: -200px; left: -100px;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(139,92,246,0.2);
  bottom: -100px; right: -80px;
  animation: orb-drift 10s ease-in-out infinite alternate-reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: rgba(192,132,252,0.12);
  top: 40%; right: 20%;
  animation: orb-drift 14s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.05); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #a855f7, #10b981);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}

.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

/* ── Dashboard Card (Hero Visual) ── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.dashboard-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.dashboard-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dashboard-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.dc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dc-dot--purple { background: var(--purple-light); }

.dc-badge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 99px;
}

.dashboard-card__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dc-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.dc-stat__label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.dc-stat__value {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.dc-stat__value--green  { color: #34d399; }
.dc-stat__value--red    { color: #f87171; }
.dc-stat__value--purple { color: #a78bfa; }

/* mini chart */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  margin-bottom: 20px;
  padding: 0 4px;
}
.mini-chart__bar {
  flex: 1;
  height: var(--h);
  background: rgba(124,58,237,0.25);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.mini-chart__bar--active {
  background: var(--purple-light);
}
.mini-chart__bar span {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  position: absolute;
  bottom: -16px;
}

/* transaction list */
.dc-transactions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dc-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.dc-tx__icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dc-tx__icon--green  { background: rgba(16,185,129,0.15); color: #34d399; }
.dc-tx__icon--red    { background: rgba(239,68,68,0.15);  color: #f87171; }
.dc-tx__icon--purple { background: rgba(124,58,237,0.2);  color: #a78bfa; }

.dc-tx__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dc-tx__info span { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.8); }
.dc-tx__info small { font-size: 10px; color: rgba(255,255,255,0.35); }

.dc-tx__amount {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.dc-tx__amount--green  { color: #34d399; }
.dc-tx__amount--red    { color: #f87171; }

/* floating badges */
.hero__floating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 99px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.hero__floating--1 { top: -20px; left: -30px; animation: float-badge 5s ease-in-out infinite; }
.hero__floating--2 { bottom: -20px; right: -20px; animation: float-badge 5s ease-in-out infinite 1.5s; }
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform: translateY(0); opacity:0.5; }
  50%      { transform: translateY(8px); opacity:1; }
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.features {
  padding: 96px 0;
  background: var(--bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__icon--purple { background: var(--purple-100); color: var(--purple); }
.feature-card__icon--blue   { background: #eff6ff; color: var(--blue); }
.feature-card__icon--green  { background: #ecfdf5; color: var(--green); }
.feature-card__icon--orange { background: #fffbeb; color: var(--orange); }
.feature-card__icon--teal   { background: #f0fdfa; color: var(--teal); }
.feature-card__icon--pink   { background: #fdf2f8; color: var(--pink); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.feature-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-card__list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  padding-left: 16px;
  position: relative;
}
.feature-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 11px;
}

/* ─────────────────────────────────────────
   ESTOQUE
───────────────────────────────────────── */
.estoque {
  padding: 96px 0;
  background: var(--bg-alt);
}

/* ─────────────────────────────────────────
   REPORTS
───────────────────────────────────────── */
.reports {
  background: linear-gradient(135deg, #1a0b2e 0%, #0d0814 60%, #1a0b2e 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.reports::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(139,92,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.reports__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.reports__content .section-tag { margin-bottom: 16px; }
.reports__content .section-title { margin-bottom: 16px; }
.reports__content .section-subtitle { margin: 0 0 36px; }

.reports__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reports__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.reports__item-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
}
.reports__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2px;
}
.reports__item span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Report card visual */
.report-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
}

.report-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.report-card__title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.report-card__actions { display: flex; gap: 5px; }
.rc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.report-card__summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.rc-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.rc-summary-item--total {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.2);
}
.rc-summary-item strong { font-size: 15px; font-weight: 700; }
.rc-green  { color: #34d399; }
.rc-red    { color: #f87171; }
.rc-purple { color: #a78bfa; }

.report-card__chart {
  margin-bottom: 16px;
}
.rc-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
  padding: 0 4px;
  margin-bottom: 8px;
}
.rc-bar-pair {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.rc-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: opacity 0.3s;
}
.rc-bar--green { background: rgba(52,211,153,0.5); }
.rc-bar--red   { background: rgba(248,113,113,0.4); }
.rc-bar-pair--active .rc-bar--green { background: #34d399; }
.rc-bar-pair--active .rc-bar--red   { background: #f87171; }

.rc-bar-labels {
  display: flex;
  justify-content: space-around;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}

.report-card__legend {
  display: flex;
  gap: 16px;
}
.rc-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.rc-legend-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
}
.rc-legend-dot--green { background: #34d399; }
.rc-legend-dot--red   { background: #f87171; }

/* ─────────────────────────────────────────
   MULTI-COMPANY
───────────────────────────────────────── */
.multicompany {
  padding: 96px 0;
  background: var(--bg-alt);
}
.multicompany__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Company Switcher */
.company-switcher {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
}
.cs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.cs-item:hover { background: var(--bg-alt); }
.cs-item--active { background: var(--purple-50); }

.cs-avatar {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.cs-item div:not(.cs-avatar):not(.cs-check) {
  flex: 1;
}
.cs-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.cs-item small  { font-size: 11px; color: var(--text-muted); }

.cs-check {
  margin-left: auto;
}

.cs-add {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  background: none;
  border: 1px dashed var(--purple-200);
  border-radius: 9px;
  padding: 8px 14px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  transition: background 0.2s;
}
.cs-add:hover { background: var(--purple-50); }

.role-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.role-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
  padding: 4px 12px;
  border-radius: 99px;
}

.mc-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.mc-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.mc-feature__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mc-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.mc-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SECURITY
───────────────────────────────────────── */
.security {
  padding: 96px 0;
  background: var(--bg);
}
.security__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.security-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.security-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.security-card__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--purple-100);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.security-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.security-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   STATS
───────────────────────────────────────── */
.stats {
  padding: 72px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 50%, #10b981 100%);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__number {
  display: block;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.stats__plus, .stats__pct {
  font-size: 0.6em;
  vertical-align: super;
}
.stats__label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section {
  background: var(--bg-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-section__orb--1 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.25);
  top: -150px; right: -100px;
}
.cta-section__orb--2 {
  width: 350px; height: 350px;
  background: rgba(139,92,246,0.15);
  bottom: -100px; left: -50px;
}

.cta-section__inner {
  position: relative;
  max-width: 680px;
}
.cta-section__content { max-width: 620px; margin: 0 auto; text-align: center; }

.cta-section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-section__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Form */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.cta-form__field input,
.cta-form__field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.cta-form__field input::placeholder,
.cta-form__field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.cta-form__field input:focus,
.cta-form__field textarea:focus {
  border-color: var(--purple-light);
  background: rgba(124,58,237,0.1);
}

.cta-form .btn--primary {
  margin-top: 8px;
  font-size: 16px;
  padding: 15px 28px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 48px 24px;
  display: none;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #34d399;
}
.form-success h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.form-success p  { font-size: 15px; color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--bg-dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 56px;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}
.footer__brand {
  max-width: 280px;
}
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.footer__links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col strong {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__col a:hover { color: rgba(255,255,255,0.8); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .features__grid    { grid-template-columns: repeat(2, 1fr); }
  .security__grid    { grid-template-columns: repeat(2, 1fr); }
  .stats__grid       { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reports__inner    { grid-template-columns: 1fr; gap: 48px; }
  .multicompany__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__inner       { grid-template-columns: 1fr; gap: 48px; padding-top: 60px; }
  .hero__visual      { order: -1; }
  .dashboard-card    { max-width: 480px; margin: 0 auto; }
  .hero__floating--1 { top: -12px; left: 0; }
  .hero__floating--2 { bottom: -12px; right: 0; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,8,20,0.97);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__hamburger { display: flex; }
  .nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__hamburger.open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .features__grid    { grid-template-columns: 1fr; }
  .security__grid    { grid-template-columns: 1fr 1fr; }
  .stats__grid       { grid-template-columns: 1fr 1fr; }
  .cta-form__row     { grid-template-columns: 1fr; }

  .hero__floating { display: none; }

  .features, .reports, .multicompany, .security, .cta-section { padding: 64px 0; }
  .stats { padding: 56px 0; }

  .footer__inner { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .security__grid { grid-template-columns: 1fr; }
  .stats__grid    { grid-template-columns: 1fr 1fr; }
  .role-badge-group { gap: 6px; }
}
