:root {
  --bg-primary: #09090B;
  --bg-secondary: #111113;
  --bg-card: #18181B;
  --bg-elevated: #1f1f23;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-glow: rgba(59, 130, 246, 0.25);
  --text-primary: #FFFFFF;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --border-color: #27272a;
  --border-light: rgba(255,255,255,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -2px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.4);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

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

@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

/* ==============================
   HEADER / NAVIGATION
   ============================== */

.nova-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nova-header.scrolled {
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.nova-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nova-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nova-logo img {
  height: 36px;
  transition: opacity 0.3s ease;
}

.nova-header.scrolled .logo-light {
  display: none;
}

.nova-header:not(.scrolled) .logo-dark {
  display: none;
}

.nova-nav-collapse {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nova-nav {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
}

.nova-nav .nav-item {
  position: relative;
}

.nova-nav .nav-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
}

.nova-nav .nav-link:hover,
.nova-nav .nav-item.active .nav-link {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

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

.nav-link-login {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.2s ease;
}

.nav-link-login:hover {
  color: var(--text-primary);
}

.nova-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nova-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.nova-btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 0 0 1px var(--accent-glow), 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
}

.nova-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.nova-btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

.nova-btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

.nova-btn-block {
  width: 100%;
}

/* Mobile Toggle */
.nova-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nova-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==============================
   HERO SECTION
   ============================== */

.nova-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.nova-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #8B5CF6;
  bottom: -100px;
  left: -100px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #06B6D4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 15s ease-in-out infinite;
}

.gradient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 20%, black 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 20%, black 70%);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.nova-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-suffix {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.trust-label {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-top: 2px;
}

/* Dashboard Mockup */

.nova-hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.mockup-dots span:first-child { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:last-child { background: #10B981; }

.mockup-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.mockup-body {
  padding: 20px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-stat-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.stat-balance .stat-icon { background: rgba(59, 130, 246, 0.15); color: var(--accent); }
.stat-orders .stat-icon { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.stat-users .stat-icon { background: rgba(139, 92, 246, 0.15); color: #8B5CF6; }

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.mockup-chart {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.chart-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.chart-period {
  font-size: 11px;
  color: var(--text-tertiary);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 80px;
}

.chart-bars .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(59, 130, 246, 0.3) 100%);
  border-radius: 3px 3px 0 0;
  transition: height 0.3s ease;
  min-height: 12px;
}

.mockup-orders {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.orders-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.order-row:last-child {
  border-bottom: none;
}

.order-service {
  font-size: 13px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-service .fa-instagram { color: #E1306C; }
.order-service .fa-youtube { color: #FF0000; }
.order-service .fa-twitter { color: #1DA1F2; }

.order-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.status-complete {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.status-progress {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent);
}

.order-amount {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
  z-index: 2;
}

.floating-card i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.card-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.card-1 i {
  background: rgba(225, 48, 108, 0.15);
  color: #E1306C;
}

.card-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 2s;
}

.card-2 i {
  background: rgba(0, 0, 0, 0.15);
  color: #000;
}

.fc-info {
  display: flex;
  flex-direction: column;
}

.fc-label {
  font-size: 12px;
  color: var(--text-tertiary);
}

.fc-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==============================
   STATS BAR
   ============================== */

.nova-stats {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item .stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.stat-item .stat-suffix {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-top: 4px;
}

/* ==============================
   SECTIONS
   ============================== */

.nova-section {
  padding: 100px 0;
}

.nova-section-dark {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header.text-left {
  text-align: left;
  margin: 0 0 40px;
}

.section-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==============================
   FEATURES
   ============================== */

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--icon-color, var(--accent));
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==============================
   HOW IT WORKS / STEPS
   ============================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 80px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(59,130,246,0.2));
  z-index: 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin: 0 8px;
}

.step-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-arrow {
  display: none;
}

/* ==============================
   POPULAR SERVICES
   ============================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--service-color, var(--accent));
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.service-icon {
  font-size: 32px;
  color: var(--service-color, var(--accent));
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-meta {
  font-size: 12px;
  color: var(--text-tertiary);
}

.service-meta i {
  margin-right: 4px;
}

/* ==============================
   WHY CHOOSE US
   ============================== */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mockup-alt {
  max-width: 500px;
  margin: 0 auto;
}

.mockup-activity {
  margin-bottom: 16px;
}

.activity-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.activity-dot.active { background: var(--accent); box-shadow: 0 0 6px var(--accent-glow); }
.activity-dot.success { background: #10B981; }
.activity-dot.warning { background: #F59E0B; }

.activity-info {
  display: flex;
  flex-direction: column;
}

.activity-text {
  font-size: 13px;
  color: var(--text-primary);
}

.activity-time {
  font-size: 11px;
  color: var(--text-tertiary);
}

.mockup-summary {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.summary-value {
  font-weight: 600;
  color: var(--text-primary);
}

.summary-value.green { color: #10B981; }
.summary-value.yellow { color: #F59E0B; }

/* ==============================
   TESTIMONIALS
   ============================== */

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 14px;
  color: var(--text-primary);
}

.author-info span {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ==============================
   FAQ
   ============================== */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-family);
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-question i {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==============================
   CTA
   ============================== */

.nova-cta {
  padding: 80px 0 100px;
}

.cta-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

.cta-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-meta span {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-meta span i {
  color: var(--accent);
  font-size: 14px;
}

/* ==============================
   AUTH PAGES
   ============================== */

.nova-auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg-primary);
  background-image: radial-gradient(ellipse at 50% -20%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}

.nova-auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.nova-auth-card-lg {
  max-width: 520px;
}

.auth-logo {
  margin-bottom: 24px;
}

.auth-logo img {
  max-height: 44px;
}

.auth-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.auth-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.auth-field {
  margin-bottom: 20px;
}

.auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.auth-field .form-control {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-family);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.auth-field .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.auth-field select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2371717a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.auth-field .form-control::placeholder {
  color: var(--text-tertiary);
}

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.auth-forgot {
  font-size: 13px;
  color: var(--accent);
}

.auth-forgot:hover {
  text-decoration: underline;
}

.auth-footer-text {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-footer-text a {
  color: var(--accent);
  font-weight: 600;
}

.auth-success-icon {
  font-size: 56px;
  color: #10B981;
  margin-bottom: 16px;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1024px) {
  .nova-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-trust {
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-card {
    display: none;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step-card {
    margin: 0 4px;
  }
}

@media (max-width: 768px) {
  .nova-mobile-toggle {
    display: flex;
  }

  .nova-nav-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
  }

  .nova-nav-collapse.open {
    display: flex;
  }

  .nova-nav {
    flex-direction: column;
    width: 100%;
  }

  .nova-nav-actions {
    width: 100%;
    flex-direction: column;
  }

  .nova-nav-actions .nova-btn,
  .nova-nav-actions .nav-link-login {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-trust {
    gap: 16px;
  }

  .trust-number, .trust-suffix {
    font-size: 24px;
  }

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

  .stat-item .stat-number,
  .stat-item .stat-suffix {
    font-size: 32px;
  }

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

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

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

  .steps-grid::before {
    display: none;
  }

  .step-card {
    margin: 0;
  }

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

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

  .nova-section {
    padding: 60px 0;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .nova-auth-card {
    padding: 28px 24px;
  }

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

  .nova-header {
    padding: 12px 0;
  }

  .nova-header.scrolled {
    padding: 8px 0;
  }

  .nova-logo img {
    height: 30px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .dashboard-mockup {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .nova-btn {
    width: 100%;
    justify-content: center;
  }

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

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

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }
}
