/*-----------------------------------*\
  #VARIABLES & RESET
\*-----------------------------------*/
:root {
  /* Colors */
  --bg-dark: #0f172a;       /* Deep Slate Blue */
  --bg-card: #1e293b;       /* Lighter Slate */
  --primary: #8b5cf6;       /* Neon Violet */
  --primary-glow: rgba(139, 92, 246, 0.5);
  --secondary: #06b6d4;     /* Cyan */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --white: #ffffff;
  
  /* Gradients */
  --gradient-text: linear-gradient(to right, #8b5cf6, #06b6d4);
  --gradient-btn: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  
  /* Typography */
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing & Effects */
  --section-padding: 100px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-1: 0 10px 40px -10px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px var(--primary-glow);
  
  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  font-family: var(--ff-body);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-active { overflow: hidden; }

li { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { display: block; max-width: 100%; height: auto; }
button { border: none; background: none; font: inherit; cursor: pointer; }
ion-icon { pointer-events: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/*-----------------------------------*\
  #REUSABLE CLASSES
\*-----------------------------------*/
.container {
  padding-inline: 20px;
  max-width: 1200px;
  margin-inline: auto;
}

.section { padding-block: var(--section-padding); }

.h1, .h2, .h3 {
  color: var(--text-main);
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
}

.h1 { font-size: clamp(3.5rem, 5vw, 6rem); }
.h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.h3 { font-size: 2rem; }

.section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-text {
  max-width: 60ch;
  margin-block: 15px 30px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Styles */
.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-btn);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 15px; }

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  padding-block: 20px;
  z-index: 100;
  transition: var(--transition-fast);
}

.header.active {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  padding-block: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header .container {
  display: flex; justify-content: space-between; align-items: center;
}

.logo {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
}

.logo .highlight { color: var(--primary); }

.navbar {
  display: flex; gap: 30px; align-items: center;
}

/* Mobile Nav Hidden by Default */
@media (max-width: 991px) {
  .navbar {
    position: fixed; top: 0; right: -300px;
    width: 300px; height: 100%;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    visibility: hidden;
  }
  .navbar.active { right: 0; visibility: visible; }
  .navbar-top {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px;
  }
  .navbar-list { flex-direction: column; width: 100%; gap: 10px; }
  .header-actions { margin-top: 30px; display: flex; gap: 15px; flex-direction: column; width: 100%; }
  .header-actions .btn { width: 100%; justify-content: center; }
}

@media (min-width: 992px) {
  .navbar-top, .nav-open-btn, .overlay { display: none; }
  .navbar-list { display: flex; gap: 30px; }
  .header-actions { display: flex; gap: 15px; margin-left: 30px; }
}

.navbar-link {
  color: var(--text-main);
  font-weight: 500;
  position: relative;
}

.navbar-link:hover { color: var(--primary); }
.navbar-link::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: 0.3s;
}
.navbar-link:hover::after { width: 100%; }

.nav-open-btn { color: var(--white); font-size: 3.5rem; }
.nav-close-btn { color: var(--white); font-size: 3rem; }

.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  opacity: 0; visibility: hidden; transition: 0.3s; z-index: 100;
}
.overlay.active { opacity: 1; visibility: visible; }

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/
.hero {
  padding-top: 150px;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 50px;
}

/* Badge */
.hero-badge {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 1.4rem;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero-text { font-size: 1.8rem; margin-bottom: 40px; }

/* Stats */
.stats-wrapper {
  margin-top: 50px;
  display: flex; gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}
.stat-number { display: block; font-size: 2.5rem; color: var(--white); }
.stat-label { font-size: 1.4rem; }

/* Image Animation */
.hero-banner { position: relative; }

.img-holder {
  animation: float 6s ease-in-out infinite;
}

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

/* Background Shapes */
.shape {
  position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1;
}
.shape-1 {
  top: -50px; right: -50px; width: 300px; height: 300px;
  background: rgba(139, 92, 246, 0.2);
}
.shape-2 {
  bottom: -50px; left: 0; width: 250px; height: 250px;
  background: rgba(6, 182, 212, 0.2);
}

@media (max-width: 991px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .btn-group { justify-content: center; }
  .stats-wrapper { justify-content: center; }
  .hero-banner { order: -1; }
  .img-holder img { margin: 0 auto; }
}

/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/
.title-wrapper { text-align: center; margin-bottom: 60px; }
.title-wrapper .section-text { margin-inline: auto; }

.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: var(--shadow-1);
}

.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gradient-btn);
  transform: scaleX(0); transition: 0.4s; transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 60px; height: 60px;
  border-radius: 15px;
  display: flex; justify-content: center; align-items: center;
  font-size: 3rem;
  margin-bottom: 25px;
}

/* Icon Colors */
.card-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.card-icon.purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.card-icon.pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.card-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }

.card-title { margin-bottom: 15px; font-size: 1.8rem; }

/*-----------------------------------*\
  #FAQ
\*-----------------------------------*/
.faq .container {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px;
}

@media (max-width: 991px) { .faq .container { grid-template-columns: 1fr; } }

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

.faq-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.faq-card .card-action {
  width: 100%; padding: 20px 25px;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  color: var(--text-main); font-weight: 600; font-size: 1.6rem;
}

.faq-card .card-action:hover { background: rgba(255,255,255,0.02); }
.faq-card .card-action.active { color: var(--primary); }

.icon-box { font-size: 2rem; color: var(--primary); }
.faq-card .card-action.active .open { display: none; }
.faq-card .card-action:not(.active) .close { display: none; }

.faq-card .card-content {
  padding: 0 25px;
  max-height: 0; overflow: hidden;
  transition: 0.4s ease-out;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

.faq-card .card-action.active + .card-content {
  padding-bottom: 20px;
  border-color: rgba(255,255,255,0.05);
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/
.footer {
  background: #020617;
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 50px;
}

@media (max-width: 991px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .footer-text { margin-block: 20px; font-size: 1.4rem; }

.social-list { display: flex; gap: 10px; }
.social-link {
  width: 35px; height: 35px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; justify-content: center; align-items: center;
  transition: 0.3s;
}
.social-link:hover { background: var(--primary); color: var(--white); }

.footer-list-title { color: var(--white); font-weight: 700; margin-bottom: 20px; }

.footer-link {
  display: block; margin-bottom: 12px; font-size: 1.4rem;
}
.footer-link:hover { color: var(--primary); transform: translateX(5px); }

.email-field {
  width: 100%; padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  margin-bottom: 10px;
}
.email-field:focus { outline: none; border-color: var(--primary); }

.footer-bottom {
  padding: 20px; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 1.4rem;
}

/*-----------------------------------*\
  #SCROLL REVEAL ANIMATION
\*-----------------------------------*/
[data-reveal] {
  opacity: 0;
  transition: 1s ease;
}

[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="bottom"] { transform: translateY(30px); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
}