:where([class^="ri-"])::before {
  content: "\f3c2";
}

:root {
  --color-primary: #4f46e5;
  --color-primary-dark: #312e81;
  --color-secondary: #818cf8;
  --color-slate-900: #0f172a;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-surface: rgba(255, 255, 255, 0.9);
  --color-border: rgba(99, 102, 241, 0.14);
  --surface-overlay: linear-gradient(135deg, rgba(129, 140, 248, 0.18) 0%, rgba(79, 70, 229, 0.08) 100%);
  --shadow-soft: 0 26px 48px -28px rgba(15, 23, 42, 0.45);
  --shadow-hover: 0 40px 70px -32px rgba(79, 70, 229, 0.5);
  --radius-xl: 22px;
}

body {
  font-family: 'Inter', sans-serif;
  padding-top: 0;
  color: var(--color-slate-900);
  background: radial-gradient(circle at 5% -10%, rgba(99, 102, 241, 0.25), transparent 32%), radial-gradient(circle at 95% 0%, rgba(45, 212, 191, 0.12), transparent 40%), linear-gradient(180deg, #f8fbff 0%, #eef2ff 28%, #f8fafc 100%);
  letter-spacing: -0.01em;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(129, 140, 248, 0.12), transparent 45%), radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.16), transparent 50%), radial-gradient(circle at 50% 80%, rgba(45, 212, 191, 0.12), transparent 55%);
  z-index: -2;
}

::selection {
  background: rgba(99, 102, 241, 0.3);
  color: #fff;
}

body.nav-fixed {
  padding-top: 0;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(20px);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.fixed-nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(79, 70, 229, 0.22);
  box-shadow: 0 24px 48px -26px rgba(15, 23, 42, 0.55);
  width: 100%;
}

.top-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(129, 140, 248, 0.12), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.top-nav .nav-container {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--color-slate-600);
}

.nav-link {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 18px 32px -20px rgba(79, 70, 229, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -20px rgba(79, 70, 229, 0.72);
}

.nav-cta--compact {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding: 16px;
  background: radial-gradient(circle at 10% 10%, rgba(79, 70, 229, 0.24), transparent 60%), radial-gradient(circle at 85% 15%, rgba(14, 165, 233, 0.18), transparent 65%), rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.mobile-menu-visible {
  opacity: 1;
}

.mobile-menu-panel {
  width: min(320px, 88vw);
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 26px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: 0 32px 60px -30px rgba(15, 23, 42, 0.55);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: translateX(-120%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(129, 140, 248, 0.18), transparent 55%), radial-gradient(circle at 100% 20%, rgba(56, 189, 248, 0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.mobile-menu-panel--open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.mobile-menu-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mobile-menu-logo {
  width: 130px;
  height: auto;
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(248, 250, 252, 0.7);
  color: var(--color-slate-600);
  box-shadow: 0 14px 28px -18px rgba(15, 23, 42, 0.55);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.mobile-menu-close:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.85);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.25rem;
  position: relative;
  z-index: 1;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--color-slate-700);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mobile-menu-link i {
  color: rgba(99, 102, 241, 0.75);
}

.mobile-menu-link:hover {
  transform: translateX(6px);
  border-color: rgba(99, 102, 241, 0.32);
  background: rgba(236, 241, 255, 0.95);
  box-shadow: 0 18px 30px -22px rgba(79, 70, 229, 0.55);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 24px 44px -26px rgba(79, 70, 229, 0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px -24px rgba(79, 70, 229, 0.82);
}

.mobile-menu-note {
  font-size: 0.78rem;
  color: rgba(71, 85, 105, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .mobile-menu-overlay {
    padding: 12px;
  }

  .mobile-menu-panel {
    border-radius: 22px;
    padding: 24px 20px 28px;
  }

  .mobile-menu-links {
    gap: 0.6rem;
  }

  .mobile-menu-link {
    padding: 0.75rem 0.85rem;
  }

  .mobile-menu-cta {
    padding: 0.85rem 1rem;
  }
}

#mobile-menu-button {
  transition: transform 0.3s ease, background 0.3s ease;
}

#mobile-menu-button:hover {
  transform: translateY(-1px);
  background: rgba(99, 102, 241, 0.08);
}

.hero-bg {
  background-image: url('painel.webp');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.45), transparent 60%), radial-gradient(circle at 80% 30%, rgba(30, 64, 175, 0.42), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e0e7ff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #a5b4fc;
}

.hero-title {
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-shadow: 0 30px 50px rgba(15, 23, 42, 0.65);
}

.hero-subtitle {
  color: #e2e8f0;
  max-width: 38rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 20px 35px -18px rgba(79, 70, 229, 0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 42px -18px rgba(79, 70, 229, 0.85);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(129, 140, 248, 0.45);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  color: #f8fafc;
}

.hero-trust p {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.hero-trust .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.hero-avatars > div {
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-metrics {
  margin-top: 3.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.stat-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 30px 50px -32px rgba(15, 23, 42, 0.75);
  overflow: hidden;
  isolation: isolate;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(99, 102, 241, 0.55), transparent 60%), radial-gradient(circle at 75% 80%, rgba(56, 189, 248, 0.35), transparent 60%);
  opacity: 0.85;
  mix-blend-mode: screen;
  z-index: -1;
}

.stat-label {
  color: rgba(226, 232, 240, 0.8);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.stat-value {
  display: block;
  margin-top: 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-footnote {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.75);
}

.section-intro {
  position: relative;
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-intro::after {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  margin: 1.75rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(129, 140, 248, 0.16);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-title {
  color: var(--color-slate-900);
  letter-spacing: -0.02em;
}

.section-description {
  color: var(--color-slate-600);
  font-size: 1.12rem;
  line-height: 1.9;
}

.surface-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  isolation: isolate;
}

.surface-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface-overlay);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.surface-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(99, 102, 241, 0.28);
}

.surface-card:hover::before {
  opacity: 1;
}

.bg-white.rounded-xl.shadow-lg,
.bg-white.rounded-xl.shadow-sm,
.bg-white.p-6.rounded-lg.shadow-sm,
.bg-white.p-8.rounded-lg.shadow-sm {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  isolation: isolate;
}

.bg-white.rounded-xl.shadow-lg::before,
.bg-white.rounded-xl.shadow-sm::before,
.bg-white.p-6.rounded-lg.shadow-sm::before,
.bg-white.p-8.rounded-lg.shadow-sm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface-overlay);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.bg-white.rounded-xl.shadow-lg:hover,
.bg-white.rounded-xl.shadow-sm:hover,
.bg-white.p-6.rounded-lg.shadow-sm:hover,
.bg-white.p-8.rounded-lg.shadow-sm:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(99, 102, 241, 0.24);
}

.bg-white.rounded-xl.shadow-lg:hover::before,
.bg-white.rounded-xl.shadow-sm:hover::before,
.bg-white.p-6.rounded-lg.shadow-sm:hover::before,
.bg-white.p-8.rounded-lg.shadow-sm:hover::before {
  opacity: 1;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(129, 140, 248, 0.26));
  color: var(--color-primary);
  box-shadow: 0 15px 30px -18px rgba(79, 70, 229, 0.55);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-slate-900);
}

.feature-card p {
  color: var(--color-slate-600);
  line-height: 1.75;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.3s ease, gap 0.3s ease;
}

.feature-link:hover {
  color: var(--color-primary-dark);
  gap: 0.7rem;
}

.gradient-text {
  background: linear-gradient(90deg, #c7d2fe, #60a5fa 55%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-bg-gradient {
  position: relative;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.07), rgba(14, 165, 233, 0.05), rgba(129, 140, 248, 0.1));
}

.section-bg-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(30, 64, 175, 0.08), transparent 40%), radial-gradient(circle at 85% 20%, rgba(99, 102, 241, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.section-bg-gradient > * {
  position: relative;
  z-index: 1;
}

.section-bg-pattern {
  background-color: #f8fafc;
  background-image: radial-gradient(rgba(148, 163, 184, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  position: relative;
}

.section-bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.78), rgba(248, 250, 252, 0.9));
  pointer-events: none;
}

.section-bg-pattern > * {
  position: relative;
  z-index: 1;
}

.cta-highlight {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.12), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(99, 102, 241, 0.22);
  box-shadow: 0 22px 45px -26px rgba(59, 130, 246, 0.55);
}

.surface-panel {
  padding: 2.25rem;
  border-radius: calc(var(--radius-xl) + 4px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(8px);
  box-shadow: 0 32px 60px -32px rgba(15, 23, 42, 0.4);
}

.table-elevated {
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
}

.table-elevated thead {
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.08), rgba(129, 140, 248, 0.04));
}

.table-elevated tbody tr + tr {
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

a.bg-primary,
button.bg-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 20px 35px -18px rgba(79, 70, 229, 0.55);
}

a.bg-primary:hover,
button.bg-primary:hover {
  box-shadow: 0 26px 40px -18px rgba(79, 70, 229, 0.65);
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5f5;
  transition: 0.4s;
  border-radius: 34px;
  box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 10px 20px -12px rgba(79, 70, 229, 0.65);
}

input:checked + .slider {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.65), rgba(129, 140, 248, 0.85));
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-radio-input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
  transition: border 0.3s ease;
}

.custom-radio-input:checked {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.custom-radio-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-checkbox-input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease;
}

.custom-checkbox-input:checked {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
  box-shadow: 0 12px 24px -16px rgba(79, 70, 229, 0.58);
}

.custom-checkbox-input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.faq-answer {
  text-align: justify;
  line-height: 1.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in {
  animation: slideIn 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

[class*="animate-"] {
  opacity: 0;
}

@media (max-width: 1024px) {
  .top-nav {
    padding: 14px 0;
  }

  .hero-title {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .feature-card {
    padding: 1.75rem;
  }
}

@media (max-width: 640px) {
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-avatars {
    display: flex;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section-intro::after {
    margin-top: 1.25rem;
  }
}


