/* ===== Variables ===== */
:root {
  --font-body: 'Inter', sans-serif;
  --font-heading: 'IBM Plex Sans', sans-serif;

  /* Purple palette */
  --purple-50: #F3E8FF;
  --purple-100: #E9D5FF;
  --purple-200: #D8B4FE;
  --purple-300: #C084FC;
  --purple-400: #A855F7;
  --purple-500: #7C33D6;
  --purple-600: #6B21A8;
  --purple-700: #581C87;
  --purple-800: #3B0764;
  --purple-900: #1E0338;
  --purple-950: #0F011C;

  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F3F7;
  --gray-200: #E8E4ED;
  --gray-300: #D0C8DA;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --green: #10B981;
  --gold: #F59E0B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--purple-950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(15, 1, 28, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 51, 214, 0.15);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 8px;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.theme-toggle .material-symbols-outlined {
  font-size: 22px;
}

.theme-toggle-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-icon svg {
  width: 20px;
  height: 20px;
}

.theme-toggle-icon-moon,
.theme-toggle-icon-sun {
  display: none;
}

body[data-theme="light"] .theme-toggle-icon-moon {
  display: inline-flex;
}

body[data-theme="dark"] .theme-toggle-icon-sun {
  display: inline-flex;
}

.btn-nav {
  padding: 10px 24px;
  background: var(--purple-500);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--purple-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(124, 51, 214, 0.4);
}

.btn-nav-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.btn-nav-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.btn-nav-outline {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-nav-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.nav-mobile-toggle {
  display: none;
  color: var(--white);
  padding: 8px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--purple-600);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--purple-700);
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--purple-400);
  top: 40%;
  left: 50%;
  opacity: 0.15;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 51, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 51, 214, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  text-align: center;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  margin-bottom: 36px;
}

.hero-logo-img {
  height: clamp(160px, 22vw, 220px);
  width: auto;
}

.hero-slogan {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.1vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 1.6px;
  text-transform: none;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--purple-500);
  color: var(--white);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--purple-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 51, 214, 0.5);
}

.btn-primary .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.2s;
}

.btn-primary:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost .material-symbols-outlined {
  font-size: 22px;
}

/* Trust */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-trust strong {
  color: rgba(255, 255, 255, 0.8);
}

.hero-trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  border: 2px solid var(--purple-950);
  margin-left: -8px;
}

.trust-avatar:first-child {
  margin-left: 0;
}

/* Mockup */
.hero-mockup {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  width: 100%;
  max-width: 900px;
  perspective: 1000px;
}

.mockup-window {
  background: rgba(30, 3, 56, 0.6);
  border: 1px solid rgba(124, 51, 214, 0.25);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(124, 51, 214, 0.1);
}

.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(124, 51, 214, 0.1);
  border-bottom: 1px solid rgba(124, 51, 214, 0.15);
}

.mockup-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mockup-bar .dot:nth-child(1) { background: #FF5F56; }
.mockup-bar .dot:nth-child(2) { background: #FFBD2E; }
.mockup-bar .dot:nth-child(3) { background: #27C93F; }

.mockup-content {
  display: flex;
  min-height: 300px;
}

.mockup-sidebar {
  width: 180px;
  padding: 16px 12px;
  border-right: 1px solid rgba(124, 51, 214, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-sidebar-item {
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.mockup-sidebar-item.active {
  background: rgba(124, 51, 214, 0.3);
}

.mockup-main {
  flex: 1;
  padding: 20px;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.mockup-card {
  height: 60px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 51, 214, 0.1);
}

.mockup-card.c1 { background: rgba(124, 51, 214, 0.15); }
.mockup-card.c2 { background: rgba(168, 85, 247, 0.1); }
.mockup-card.c3 { background: rgba(192, 132, 252, 0.08); }
.mockup-card.c4 { background: rgba(216, 180, 254, 0.06); }

.mockup-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-row {
  height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.mockup-row.header {
  background: rgba(124, 51, 214, 0.1);
  height: 32px;
}

/* ===== Credibility ===== */
.credibility {
  padding: 48px 0;
  background: rgba(124, 51, 214, 0.06);
  border-top: 1px solid rgba(124, 51, 214, 0.1);
  border-bottom: 1px solid rgba(124, 51, 214, 0.1);
}

.credibility-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.credibility-item .material-symbols-outlined {
  font-size: 20px;
  color: var(--purple-400);
}

.credibility-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--purple-400);
  margin-bottom: 18px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== Features ===== */
.features {
  padding: 120px 0;
}

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

.feature-item {
  padding: 36px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(124, 51, 214, 0.12);
  transition: all 0.3s;
}

.feature-item:hover {
  background: rgba(124, 51, 214, 0.08);
  border-color: rgba(124, 51, 214, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(124, 51, 214, 0.3);
}

.feature-icon .material-symbols-outlined {
  font-size: 26px;
  color: var(--white);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ===== Modules ===== */
.modules {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 51, 214, 0.04) 50%, transparent 100%);
}

.modules-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.module-card {
  display: flex;
  gap: 60px;
  align-items: center;
}

.module-card.reverse {
  flex-direction: row-reverse;
}

.module-card-visual {
  flex: 1;
  min-height: 320px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.module-card-visual .material-symbols-outlined {
  font-size: 80px;
  color: var(--white);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.v-clients {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  box-shadow: 0 20px 60px rgba(124, 51, 214, 0.3);
}

.v-finance {
  background: linear-gradient(135deg, #1E3A5F, #2563EB);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}

.v-network {
  background: linear-gradient(135deg, #064E3B, #10B981);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.v-whatsapp {
  background: linear-gradient(135deg, #4A3470, #9B59B6);
  box-shadow: 0 20px 60px rgba(155, 89, 182, 0.2);
}

.module-card-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -40px;
  right: -40px;
}

.module-card-visual::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -30px;
  left: -30px;
}

.module-card-body {
  flex: 1;
}

.module-card-body h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.module-card-body p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.module-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-card-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.module-card-body li .material-symbols-outlined {
  font-size: 20px;
  color: var(--green);
}

/* ===== Stats ===== */
.stats {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-700));
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 132px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 36px;
}

.final-cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.final-cta-feat .material-symbols-outlined {
  font-size: 20px;
  color: var(--green);
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid rgba(124, 51, 214, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  justify-items: center;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 360px;
}

.footer-brand-logo {
  width: clamp(150px, 18vw, 210px);
  height: auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-self: center;
}

.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  color: var(--white);
  transform: translateX(2px);
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 51, 214, 0.16);
  border: 1px solid rgba(124, 51, 214, 0.22);
  color: var(--white);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--purple-400);
  color: var(--purple-400);
  background: rgba(124, 51, 214, 0.1);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-card {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 1, 28, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(124, 51, 214, 0.15);
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .module-card,
  .module-card.reverse {
    flex-direction: column;
    gap: 32px;
  }

  .module-card-visual {
    min-height: 220px;
    width: 100%;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .credibility-divider {
    display: none;
  }

  .credibility-items {
    gap: 16px;
  }

  .mockup-sidebar {
    width: 80px;
  }

  .mockup-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .final-cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

body[data-theme="light"] {
  color: var(--gray-900);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(59, 130, 246, 0.14), transparent 18%),
    radial-gradient(circle at bottom left, rgba(29, 78, 216, 0.18), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eef4ff 52%, #e6eefc 100%);
}

body[data-theme="light"] .nav {
  background: transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body[data-theme="light"] .nav.scrolled {
  background: rgba(247, 251, 255, 0.86);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.06);
}

body[data-theme="light"] .nav-links a {
  color: rgba(31, 41, 55, 0.72);
}

body[data-theme="light"] .nav-links a:hover {
  color: var(--gray-900);
}

body[data-theme="light"] .nav-mobile-toggle {
  color: #1d4ed8;
}

body[data-theme="light"] .nav-links.open {
  background: rgba(247, 251, 255, 0.96);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

body[data-theme="light"] .theme-toggle {
  border-color: rgba(37, 99, 235, 0.14);
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.48);
}

body[data-theme="light"] .theme-toggle:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

body[data-theme="light"] .btn-nav {
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
}

body[data-theme="light"] .btn-nav-secondary {
  border-color: rgba(37, 99, 235, 0.16);
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.44);
}

body[data-theme="light"] .btn-nav-secondary:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.24);
}

body[data-theme="light"] .hero-grid-lines {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.09) 1px, transparent 1px);
}

body[data-theme="light"] .hero-orb-1 {
  background: rgba(37, 99, 235, 0.34);
  opacity: 0.62;
}

body[data-theme="light"] .hero-orb-2 {
  background: rgba(29, 78, 216, 0.28);
  opacity: 0.54;
}

body[data-theme="light"] .hero-orb-3 {
  background: rgba(96, 165, 250, 0.26);
  opacity: 0.48;
}

body[data-theme="light"] .hero-content {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-theme="light"] .hero-slogan,
body[data-theme="light"] .hero-sub,
body[data-theme="light"] .section-header p,
body[data-theme="light"] .module-card-body p,
body[data-theme="light"] .footer-brand p,
body[data-theme="light"] .footer-bottom,
body[data-theme="light"] .final-cta p,
body[data-theme="light"] .credibility-item,
body[data-theme="light"] .feature-item p,
body[data-theme="light"] .module-card-body li,
body[data-theme="light"] .final-cta-feat {
  color: rgba(55, 65, 81, 0.78);
}

body[data-theme="light"] .hero h1,
body[data-theme="light"] .section-header h2,
body[data-theme="light"] .feature-item h3,
body[data-theme="light"] .module-card-body h3,
body[data-theme="light"] .final-cta h2 {
  color: #160f24;
}

body[data-theme="light"] .section-tag {
  color: #2563eb;
}

body[data-theme="light"] .credibility {
  background: rgba(37, 99, 235, 0.045);
  border-top: 1px solid rgba(37, 99, 235, 0.09);
  border-bottom: 1px solid rgba(37, 99, 235, 0.09);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-theme="light"] .credibility-divider {
  background: rgba(37, 99, 235, 0.16);
}

body[data-theme="light"] .feature-item {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(37, 99, 235, 0.1);
  box-shadow: none;
}

body[data-theme="light"] .feature-item:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.08);
}

body[data-theme="light"] .modules {
  background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.05) 50%, transparent 100%);
}

body[data-theme="light"] .module-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

body[data-theme="light"] .module-card-visual::before {
  background: rgba(255, 255, 255, 0.18);
}

body[data-theme="light"] .module-card-visual::after {
  background: rgba(255, 255, 255, 0.12);
}

body[data-theme="light"] .final-cta {
  background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.05) 100%);
}

body[data-theme="light"] .final-cta-content {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

body[data-theme="light"] .final-cta-features {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

body[data-theme="light"] .btn-ghost {
  color: rgba(31, 41, 55, 0.8);
  border-color: rgba(37, 99, 235, 0.14);
}

body[data-theme="light"] .btn-ghost:hover {
  color: var(--gray-900);
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.24);
}

body[data-theme="light"] .footer {
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

body[data-theme="light"] .footer-brand {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

body[data-theme="light"] .footer-contact h3 {
  color: #160f24;
}

body[data-theme="light"] .contact-link {
  color: rgba(55, 65, 81, 0.82);
}

body[data-theme="light"] .contact-link:hover {
  color: #160f24;
}

body[data-theme="light"] .contact-icon {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.16);
  color: #1d4ed8;
}

body[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

body[data-theme="dark"] {
  color: var(--white);
  background: var(--purple-950);
}

@media (max-width: 768px) {
  body[data-theme="light"] .hero-content,
  body[data-theme="light"] .final-cta-content,
  body[data-theme="light"] .footer-brand,
  body[data-theme="light"] .module-card {
    padding: 0;
    border-radius: 0;
  }

  body[data-theme="light"] .final-cta-features {
    border-radius: 0;
    padding: 0;
  }
}
