/* ========================================
   THEME: VIOLET NIGHT (2026 STANDARD)
   ======================================== */
:root {
    --bg-dark: #0F0B1F;
    --primary: #312E81;
    --accent: #4F46E5;
    --highlight: #C084FC;
    --text-light: #F5F3FF;
    --card-bg: rgba(49, 46, 129, 0.3);
    --gradient-main: linear-gradient(135deg, #4F46E5 0%, #C084FC 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top left, rgba(79, 70, 229, 0.15), transparent 50%),
                      radial-gradient(circle at bottom right, rgba(192, 132, 252, 0.1), transparent 50%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; border-radius: 12px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Utility Classes */
.btn-primary {
    display: inline-block; padding: 12px 32px; background: var(--gradient-main);
    color: white; border-radius: 50px; font-weight: 600; transition: 0.3s;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(192, 132, 252, 0.6); }

.section { padding: 100px 0; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; }
.section-subtitle { text-align: center; color: var(--highlight); margin-bottom: 3rem; font-weight: 500; }

/* Scroll Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(15, 11, 31, 0.8); backdrop-filter: blur(10px);
    padding: 20px 0; border-bottom: 1px solid rgba(245, 243, 255, 0.1);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; }
.logo-icon { width: 40px; height: 40px; background: var(--gradient-main); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a:hover { color: var(--highlight); }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    background: url('https://i.pinimg.com/736x/d9/dd/15/d9dd15c6974c83498835c68708ca07c6.jpg') center/cover;
}
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,11,31,0.95) 40%, rgba(15,11,31,0.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-sub { color: var(--highlight); font-weight: 600; letter-spacing: 2px; margin-bottom: 1rem; }
.hero-title { font-size: 3rem; margin-bottom: 1.5rem; background: linear-gradient(to right, #fff, #C084FC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-desc { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }

/* ========================================
   CARDS & GRIDS
   ======================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.card {
    background: var(--card-bg); backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 243, 255, 0.1); border-radius: 20px;
    padding: 2rem; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card:hover { transform: translateY(-10px); border-color: var(--highlight); box-shadow: 0 15px 40px rgba(192, 132, 252, 0.2); }
.card-icon { font-size: 2.5rem; color: var(--highlight); margin-bottom: 1rem; }

/* ========================================
   STATS & PROCESS
   ======================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h2 { font-size: 3rem; color: var(--highlight); }
.process-timeline { display: flex; justify-content: space-between; position: relative; margin-top: 50px; }
.process-timeline::before { content: ''; position: absolute; top: 20px; left: 0; width: 100%; height: 2px; background: rgba(192, 132, 252, 0.3); z-index: 1; }
.process-step { position: relative; z-index: 2; text-align: center; flex: 1; }
.step-circle { width: 50px; height: 50px; background: var(--accent); border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 4px solid var(--bg-dark); }

/* ========================================
   FORMS
   ======================================== */
.form-group { margin-bottom: 1.5rem; }
.form-control {
    width: 100%; padding: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: white; font-family: inherit; transition: 0.3s;
}
.form-control:focus { outline: none; border-color: var(--highlight); background: rgba(255,255,255,0.1); }

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 15px 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.1rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: rgba(255,255,255,0.8); }
.faq-item.active .faq-answer { max-height: 200px; padding-top: 15px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: 0.3s; }

/* ========================================
   FOOTER
   ======================================== */
footer { background: #080514; padding: 80px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 100px; }
.footer-col h4 { margin-bottom: 20px; color: var(--highlight); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--highlight); }
.copyright { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
.copyright a { color: var(--highlight); margin: 0 10px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .grid-3, .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.5rem; }
    .process-timeline { flex-direction: column; gap: 30px; }
    .process-timeline::before { display: none; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: var(--bg-dark); flex-direction: column; align-items: center; padding-top: 50px; transition: 0.4s; }
    .nav-links.active { left: 0; }
    .menu-toggle { display: block; }
    .grid-3, .grid-4, .stats-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .section { padding: 60px 0; }
}