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

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(20, 184, 166, 0.3); }
  50% { box-shadow: 0 0 40px rgba(20, 184, 166, 0.5); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
    display: flex;
    justify-content: space-between;
  align-items: center;
}

.logo {
    display: flex;
    align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
    font-size: 20px;
  color: white;
  letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
  gap: 38px;
}

.nav-links a {
  font-size: 15px;
  color: white;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.auth-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.user-menu {
  display: flex;
  gap: 16px;
  align-items: center;
}

.user-name {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.hidden {
  display: none !important;
}

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

/* Background Effects */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ellipse {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.ellipse-2 { animation-delay: -2s; }
.ellipse-3 { animation-delay: -4s; }
.ellipse-4 { animation-delay: -6s; }

.ellipse-1 {
  width: 140%;
  height: 800px;
  left: -20%;
  top: -400px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.4) 0%, transparent 70%);
}

.ellipse-2 {
  width: 100%;
  height: 600px;
  left: 0;
  top: -200px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.5) 0%, transparent 60%);
}

.ellipse-3 {
  width: 70%;
  height: 500px;
  left: 15%;
  top: -150px;
  background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.6) 0%, transparent 55%);
}

.ellipse-4 {
  width: 50%;
  height: 400px;
  left: 25%;
  top: -100px;
  background: radial-gradient(ellipse at center, rgba(94, 234, 212, 0.7) 0%, transparent 50%);
}

/* Grid Pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
}

.grid-line {
    position: absolute;
    background: white;
}

.grid-line.vertical {
  width: 1px;
  height: 100%;
    top: 0;
}

.grid-line.horizontal {
  height: 1px;
  width: 100%;
    left: 0;
}

/* Arc Line */
.arc-line {
    position: absolute;
  top: 100px;
    left: 50%;
    transform: translateX(-50%);
  width: 500px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 250px 250px;
  border-top: none;
}

/* ==================== HERO CONTENT ==================== */
.hero-content {
    position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 960px;
    text-align: center;
  animation: fadeInUp 1s ease forwards;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
  gap: 10px;
  padding: 4px 16px 4px 4px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid white;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(152, 84, 166, 0.08);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.badge-new {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  background: linear-gradient(160deg, #f5f5f5 10%, #14b8a6 90%);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
}

.badge-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.2px;
}

.badge-text strong {
    font-weight: 700;
}

/* Main Title */
.hero-title {
  font-family: 'Poppins', sans-serif;
    font-weight: 600;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  text-transform: capitalize;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #5eead4;
}

/* Camera Icon */
.camera-icon {
  display: inline-flex;
    align-items: center;
    justify-content: center;
  width: 54px;
  height: 54px;
    background: white;
  border-radius: 12px;
  vertical-align: middle;
  margin: 0 4px;
  transform: rotate(10deg);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(145, 70, 196, 0.1),
    inset 0 -2px 4px rgba(145, 70, 196, 0.1);
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.camera-icon:hover {
  transform: rotate(10deg) scale(1.1);
}

.camera-icon img {
    width: 44px;
    height: 44px;
  object-fit: contain;
  transform: rotate(-10deg);
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* ==================== CTA BUTTONS ==================== */
.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
  margin-top: 8px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.btn {
  display: inline-flex;
    align-items: center;
    justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  gap: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #14b8a6 100%);
  color: #000;
  letter-spacing: -0.3px;
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(20, 184, 166, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* ==================== DASHBOARD SECTION ==================== */
.dashboard-section {
    position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  margin-top: 60px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.dashboard-frame {
  position: relative;
  border-radius: 32px;
  padding: 3px;
  background: linear-gradient(180deg, #14b8a6 0%, rgba(20, 184, 166, 0) 100%);
}

.dashboard-inner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 16 / 9;
}

/* Dashboard Header */
.dash-header {
    display: flex;
    align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-logo-placeholder {
  width: 100px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.dash-nav {
  display: flex;
  gap: 8px;
}

.dash-nav-item {
  width: 60px;
  height: 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.dash-nav-item.active {
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.dash-avatar {
    width: 32px;
    height: 32px;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Dashboard Content */
.dash-content {
  display: flex;
  height: calc(100% - 65px);
}

/* Sidebar */
.dash-sidebar {
  width: 200px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-menu-item {
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.dash-menu-item.active {
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

/* Main Area */
.dash-main {
  flex: 1;
  padding: 20px 24px;
    display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Stats Row */
.dash-stats {
    display: flex;
  gap: 16px;
}

.dash-stat-card {
  flex: 1;
    display: flex;
    align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
}

.stat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  height: 10px;
  width: 60%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.stat-value {
  height: 18px;
  width: 40%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

/* Cards */
.dash-cards {
  display: flex;
  gap: 16px;
  flex: 1;
}

.dash-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-card.large {
  flex: 2;
}

.dash-card:not(.large) {
  flex: 1;
}

.card-header {
  height: 16px;
  width: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.card-chart {
  flex: 1;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.08) 0%, transparent 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.card-chart::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: rgba(20, 184, 166, 0.3);
  border-radius: 2px;
}

.card-list {
    display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-list-item {
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

/* Coming Soon Overlay */
.dash-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
  border-radius: 30px;
}

.coming-soon {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  padding: 16px 40px;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 16px;
  letter-spacing: -0.5px;
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Bottom Glow */
.bottom-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* ==================== NAV CTA ==================== */
.nav-cta {
  background: rgba(20, 184, 166, 0.15) !important;
  border: 1px solid rgba(94, 234, 212, 0.3);
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(20, 184, 166, 0.25) !important;
  border-color: rgba(94, 234, 212, 0.5);
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

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

/* ==================== SECTION HEADERS ==================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  transition: all 0.3s ease;
}

.section-tag:hover {
  transform: scale(1.05);
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #5eead4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: #5eead4;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== TRUSTED SECTION ==================== */
.trusted-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trusted-label {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trusted-stats {
  display: flex;
  justify-content: center;
  align-items: center;
    gap: 60px;
}

.trusted-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
    font-weight: 700;
  color: #5eead4;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

/* ==================== FEATURES SECTION ==================== */
.features-section {
  padding: 120px 0;
}

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

.feature-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(20, 184, 166, 0.15);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(20, 184, 166, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 16px;
  margin-bottom: 20px;
  color: #5eead4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Aurora Background Effect */
.how-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora-beam {
  position: absolute;
  filter: blur(100px);
  opacity: 0.6;
  animation: aurora-float 8s ease-in-out infinite;
}

.aurora-1 {
  width: 600px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: linear-gradient(135deg, #14b8a6 0%, #5eead4 50%, #a5f3fc 100%);
  transform: rotate(-15deg);
  animation-delay: 0s;
}

.aurora-2 {
  width: 500px;
  height: 300px;
  top: 50px;
  right: 100px;
  background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 50%, #5eead4 100%);
  transform: rotate(-25deg);
  animation-delay: -2s;
}

.aurora-3 {
  width: 400px;
  height: 250px;
  top: 0;
  right: 200px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  transform: rotate(-10deg);
  animation-delay: -4s;
}

@keyframes aurora-float {
  0%, 100% {
    transform: translateY(0) rotate(-15deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-30px) rotate(-20deg);
    opacity: 0.7;
  }
}

.how-section .section-header {
  position: relative;
  z-index: 1;
}

.how-section .section-tag {
  display: inline-flex;
    align-items: center;
  gap: 8px;
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
}

.how-section .section-tag svg {
  width: 16px;
  height: 16px;
}

.how-section .section-title {
  font-size: clamp(36px, 5vw, 56px);
}

.how-section .section-subtitle {
  max-width: 700px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Step Cards */
.step-card {
  position: relative;
  padding: 32px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
    display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.15);
}

.step-card.featured {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-color: rgba(20, 184, 166, 0.3);
}

.step-card.featured::before {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.5) 0%, transparent 50%);
}

/* Step Card Icon */
.step-card-icon {
  width: 48px;
  height: 48px;
    display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  color: #5eead4;
  margin-bottom: 20px;
}

.step-card.featured .step-card-icon {
  background: linear-gradient(135deg, #14b8a6, #5eead4);
  border: none;
  color: #000;
}

/* Step Number */
.step-card-number {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
    font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Step Description */
.step-card-desc {
    font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
  margin-bottom: 16px;
}

/* Step Title */
.step-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #5eead4;
}

.step-card.featured .step-card-title {
  background: linear-gradient(135deg, #5eead4, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Step Features */
.step-card-features {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.features-label {
  display: block;
    font-size: 12px;
    font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.step-card-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
    font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.step-card-features li svg {
  color: #5eead4;
  flex-shrink: 0;
}

/* How CTA */
.how-cta {
    display: flex;
    justify-content: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

/* ==================== AUDIENCE SECTION WITH TOGGLE ==================== */
.audience-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.02) 0%, transparent 50%, rgba(20, 184, 166, 0.02) 100%);
}

/* Toggle Switch Container */
.audience-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.toggle-label.active {
  color: white;
}

.toggle-label:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
  width: 64px;
  height: 34px;
  cursor: pointer;
}

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

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-slider::before {
  content: '';
    position: absolute;
  height: 26px;
  width: 26px;
  left: 3px;
  bottom: 3px;
  background: linear-gradient(135deg, #14b8a6, #5eead4);
    border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(20, 184, 166, 0.4);
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(30px);
}

/* Audience Content */
.audience-content {
  animation: fadeIn 0.4s ease;
}

.audience-content.hidden {
  display: none;
}

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

/* Audience CTA */
.audience-cta {
    display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  padding: 120px 0;
}

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

.testimonial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
    display: flex;
    flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 184, 166, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card.featured {
  background: rgba(20, 184, 166, 0.05);
  border-color: rgba(20, 184, 166, 0.2);
}

.testimonial-content {
  flex: 1;
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #14b8a6, #5eead4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  font-weight: 600;
    font-size: 14px;
  color: #000;
}

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

.author-name {
  font-weight: 600;
  font-size: 15px;
}

.author-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 184, 166, 0.03) 100%);
}

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

.pricing-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  position: relative;
}

.pricing-card.popular {
  background: rgba(20, 184, 166, 0.05);
  border-color: rgba(20, 184, 166, 0.3);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, #14b8a6, #5eead4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
}

.plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-amount {
  margin-bottom: 32px;
}

.price {
  font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
  color: #5eead4;
}

.period {
    font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.plan-features {
    list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features svg {
  color: #5eead4;
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 120px 0;
}

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

.faq-item {
    padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(20, 184, 166, 0.3);
  background: rgba(20, 184, 166, 0.03);
  transform: translateY(-3px);
}

.faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
    font-weight: 600;
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 120px 0;
}

.cta-card {
  position: relative;
  padding: 80px 40px;
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 32px;
    overflow: hidden;
}

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

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
  filter: blur(60px);
}

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

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  font-weight: 400;
  color: #5eead4;
}

.cta-subtitle {
  font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-section .cta-buttons {
  justify-content: center;
  margin-bottom: 20px;
}

.btn-large {
  height: 56px;
  padding: 0 36px;
    font-size: 16px;
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col a {
    display: block;
    font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
  color: #5eead4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: rgba(20, 184, 166, 0.15);
  color: #5eead4;
}

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

  .pricing-card.popular {
    transform: none;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 24px;
  }

  .nav-links a:not(.nav-cta) {
        display: none;
    }

  .hero {
    padding: 120px 20px 60px;
  }

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

  .camera-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .camera-icon img {
    width: 32px;
    height: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
        flex-direction: column;
    width: 100%;
  }

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

  .dashboard-section {
    margin-top: 40px;
  }

  .arc-line {
    width: 280px;
    height: 40px;
  }

  .trusted-stats {
        flex-direction: column;
    gap: 32px;
  }

  .trusted-divider {
    width: 60px;
    height: 1px;
  }

  .stat-number {
    font-size: 36px;
  }

  .features-grid,
  .testimonials-grid,
  .pricing-grid,
  .faq-grid {
        grid-template-columns: 1fr;
    }

  .step {
        grid-template-columns: 1fr;
    text-align: center;
  }

  .step-number {
    font-size: 36px;
  }

  .step-visual {
    width: 100%;
    height: 100px;
  }

  .footer-main {
    flex-direction: column;
        gap: 40px;
    }

    .footer-links {
    flex-wrap: wrap;
    gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
    gap: 20px;
        text-align: center;
    }
}

/* ==================== AUTHENTICATION MODALS ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.2px;
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: white;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -4px;
}

/* Custom Dropdown */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-selected {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: white;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  user-select: none;
}

.dropdown-selected:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.dropdown-selected svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom-dropdown.active .dropdown-selected {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.custom-dropdown.active .dropdown-selected svg {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.custom-dropdown.active .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-option {
  padding: 14px 16px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background: rgba(20, 184, 166, 0.15);
  color: #5eead4;
}

.dropdown-option.selected {
  background: rgba(20, 184, 166, 0.2);
  color: #5eead4;
  font-weight: 500;
}

.form-error {
  color: #ef4444;
  font-size: 14px;
  min-height: 20px;
  margin-top: -8px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.modal-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.modal-footer a {
  color: #14b8a6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.modal-footer a:hover {
  color: #5eead4;
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  color: white;
  font-size: 14px;
  z-index: 2000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: 320px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-success {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(20, 184, 166, 0.1);
}

.notification-error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.1);
}

/* Responsive modals */
@media (max-width: 768px) {
  .modal-content {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .auth-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .nav-cta {
    padding: 6px 16px;
    font-size: 14px;
    }
}
