/* --- 1. RESET & VARIABLES --- */
:root {
  --primary: #7B16FF;
  --primary-glow: rgba(123, 22, 255, 0.3);
  --accent: #A855F7;
  --bg-dark: #05010d;
  --bg-light: #f4f4f4;
  --text-dark: #ffffff;
  --text-light: #1a1a1a;
  --card-bg: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark); /* Default JS Checkbox is checked (Dark) */
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding { padding: 100px 0; }

/* --- 2. NAVIGATION --- */
header {
  padding: 0 rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem; /* Added vertical padding for better spacing */
}

.brand-logo {
  height: 50px; /* Adjust based on your logo design */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: center;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-move 2s infinite;
}

@keyframes scroll-move {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* Hide indicator when scrolling down */
body.scrolled .scroll-indicator {
    opacity: 0;
    pointer-events: none;
}
/* --- 3. HERO SECTION --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 10px #10b981;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.accent, .highlight, .purple-text { color: var(--primary); }

.hero-content p { font-size: 1.25rem; opacity: 0.8; margin-bottom: 2.5rem; max-width: 600px; }

.cta-group { display: flex; gap: 1rem; margin-bottom: 4rem; }

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary, .btn-purple { background: var(--primary); color: white; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: inherit; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.stats { display: flex; gap: 3rem; }
.stat-item h2 { font-size: 2.5rem; color: var(--primary); }

/* Hero Visual */
.abstract-shape {
  width: 450px;
  height: 450px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: blob 10s infinite alternate;
}

@keyframes blob {
  from { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  to { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
}

/* --- 4. CARDS & GRID --- */
.card-grid, .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.arrow { position: absolute; top: 2rem; right: 2rem; opacity: 0.3; font-size: 1.5rem; }

.card h3 { margin-bottom: 1rem; }
.card p { opacity: 0.7; margin-bottom: 1.5rem; font-size: 0.95rem; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(123, 22, 255, 0.1);
  color: var(--primary);
  border-radius: 4px;
}

/* --- 5. WHY DEVLOY & FEATURES --- */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.stats-grid { display: flex; gap: 2rem; margin-top: 2rem; }
.stat-card {
  background: var(--primary);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  flex: 1;
}
.stat-value { font-size: 2rem; font-weight: 800; display: block; }

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  text-align: center;
  background-color: var(--bg-dark);
}

.testimonials-section .header {
  margin-bottom: 4rem;
}

.testimonials-section .header p {
  opacity: 0.6;
  margin-top: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.testimonial-grid .card {
  background: #0a0516; /* Darker card background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: transform 0.3s ease;
}

.testimonial-grid .card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* Large Quote Icon in Background */
.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: serif;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  z-index: 1;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.user-info .name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.user-info .title {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- 6. ACCORDION & FAQ --- */
/* --- FAQ SECTION --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: flex-start;
}

.faq-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 1.5rem 0;
}

.faq-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-support {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-support:hover {
    text-decoration: underline;
}

/* Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.accordion-header i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.accordion-item.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust based on content length */
    padding-bottom: 24px;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- CONTACT SECTION (LET'S BUILD TOGETHER) --- */
.contact-section {
    background-color: var(--bg-dark);
    position: relative;
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Left Content Side */
.content-side {
    text-align: left;
}

.content-side h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.content-side h1 .highlight {
    color: var(--primary); /* #7c3aed */
}

.content-side p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Step Indicators */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.step-number {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.step p {
    margin: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Form Styling */
.contact-card {
    background: #0a0516; /* Deep dark background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: #120c1f; /* Slightly lighter than card bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #160f25;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    background: #8b5cf6;
}

/* Responsiveness */
@media (max-width: 968px) {
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .content-side {
        text-align: center;
    }
    .content-side p {
        margin-left: auto;
        margin-right: auto;
    }
    .step {
        justify-content: center;
    }
}
/* Left Side Content */
.content-side {
    text-align: left;
}

.content-side .badge {
    background: rgba(123, 22, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(123, 22, 255, 0.2);
}

.content-side h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.content-side p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Steps List */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.step-number {
    background: rgba(123, 22, 255, 0.1);
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
}

.step p {
    margin: 0;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Form Side */
.contact-card {
    background: #0a0516;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: #120c1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Gradient Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #7B16FF 0%, #A855F7 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(123, 22, 255, 0.3);
}

/* --- CTA SECTION (READY TO BUILD) --- */
.cta-container {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at top, rgba(123, 22, 255, 0.15) 0%, #05010d 60%);
    position: relative;
}

.cta-container .badge {
    background: rgba(123, 22, 255, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-container h1 {
    font-size: 4.5rem; /* Large headline like the image */
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-container h1 .highlight {
    color: #a78bfa;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Primary Button with Neon Glow */
.cta-container .btn-primary {
    background: #7B16FF;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(123, 22, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-container .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(123, 22, 255, 0.7);
}

/* Secondary Ghost Button */
.cta-container .btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-container .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

/* Image-matching Footer text */
.cta-footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 22, 255, 0.5);
}


/* --- FOOTER SECTION --- */
.footer {
    padding: 80px 0 40px;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.brand-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-brand .start-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-brand .start-link:hover {
    gap: 12px;
}

/* Link Columns */
.footer-column h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

/* Newsletter Column */
.footer-newsletter h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    background: #0a0516;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    outline: none;
}

.subscribe-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background: var(--accent);
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-info a {
    color: inherit;
    text-decoration: none;
}

.footer-info a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* --- 9. RESPONSIVENESS --- */
@media (max-width: 968px) {
  .hero-grid, .content-wrapper, .faq-container, .contact-section .container, .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual, .nav-links { display: none; }
  h1 { font-size: 2.5rem; }
  .cta-group, .stats { justify-content: center; }
}