/* --- Imports --- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap");
:root {
    --color-dark: #09090b;
    --color-light: #f4f4f5;
    --color-secondary: #a1a1aa;
    --color-accent: #7c3aed;
    --color-accent-light: #a855f7;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- General Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-dark);
    font-family: var(--font-body);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-light);
    font-weight: 600;
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-head {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* --- Navbar (Adjusted to match main theme) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar a.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-light);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    font-weight: 500;
    color: var(--color-secondary);
}

.nav-links li a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-light);
}

/* --- Hero --- */
.hero {
    padding: 10rem 1.5rem 6rem;
    text-align: center;
    background: transparent; /* Assuming the hero background is handled by the main body/stars */
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--color-secondary);
}

/* --- Services Sections --- */
.section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-light);
    text-align: center;
}

.section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 6px auto 0;
    border-radius: 3px;
}

.list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.list li::before {
    content: "✓ ";
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan {
    background: #111;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
}

.plan h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--color-light);
}

.plan p span {
    color: var(--color-accent-light);
    font-weight: 700;
}

.plan ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.plan ul li {
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.plan ul li::before {
    content: "✅";
    margin-right: 0.5rem;
}

.plan .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-accent);
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.plan .btn:hover {
    transform: translateY(-3px);
    background: var(--color-accent-light);
}

/* --- Process & Why Us --- */
.steps,
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step,
.feature {
    background: #111;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #222;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.step:hover,
.feature:hover {
    transform: translateY(-5px);
    background: #16161a;
}

.step {
    color: var(--color-light);
}

.feature h4 {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--color-secondary);
    font-size: 0.95rem;
}

/* --- FAQ --- */
.faq details {
    margin-bottom: 1rem;
    background: #111;
    border: 1px solid #222;
    padding: 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
}

.faq summary {
    font-weight: 600;
    color: var(--color-light);
    cursor: pointer;
}

.faq summary:hover {
    color: var(--color-accent);
}

.faq p {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--color-secondary);
    border-top: 1px solid #333;
    padding-top: 1rem;
}

/* --- CTA --- */
.cta {
    text-align: center;
    margin: 4rem 0;
}

.cta a {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    background: var(--color-accent);
    border-radius: 9999px;
    color: #fff;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta a:hover {
    transform: translateY(-5px);
    background: var(--color-accent-light);
}

/* --- Footer --- */
footer {
    background: #000;
    color: #ccc;
    text-align: center;
    padding: 40px 20px;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: left;
}

footer h4 {
    margin-bottom: 1rem;
    color: var(--color-light);
}

footer p {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

footer ul {
    list-style: none;
}

footer ul li a {
    color: var(--color-secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* --- Responsive adjustments --- */
@media(max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(9, 9, 11, 0.9);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 4rem;
        right: 1.5rem;
        padding: 1.5rem;
        border-radius: 0.75rem;
        border: 1px solid #222;
        gap: 1rem;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
        color: var(--color-light);
    }
}
