/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #111827;
    --text-muted: #94a3b8;
    --text-light: #e5e7eb;
    --white: #ffffff;
    --accent: #00ffe0; /* Reactor Glow Accent */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.sparkmodeAtlasBody {
    background-color: var(--white);
    color: var(--bg-dark);
    font-family: var(--font-main);
    line-height: 1.6;
}

.sparkmodeAtlasContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Neon Line */
.sparkmodeAtlasHeader {
    background: var(--bg-dark);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.sparkmodeAtlasLogo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.sparkmodeAtlasNavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.sparkmodeAtlasNavLink {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.sparkmodeAtlasNeonLine {
    height: 2px;
    width: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
    margin-top: 15px;
}

/* Mobile Burger (No JS) */
.sparkmodeAtlasMobileToggle {
    display: none;
}

.sparkmodeAtlasBurger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.sparkmodeAtlasBurger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    display: block;
    transition: var(--transition);
}

/* Disclaimer */
.sparkmodeAtlasDisclaimerTop {
    background: #f3f4f6;
    border-bottom: 1px solid var(--text-muted);
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--bg-dark);
}

.sparkmodeAtlasDisclaimerTop p {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.sparkmodeAtlasHero {
    padding: 80px 0;
    background: #f9fafb;
}

.sparkmodeAtlasHeroInner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sparkmodeAtlasHeroImageWrap {
    flex: 1;
    position: relative;
}

.sparkmodeAtlasHeroImg {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--bg-dark);
}

.sparkmodeAtlasHeroBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.sparkmodeAtlasHeroContent {
    flex: 1.2;
}

.sparkmodeAtlasHeroTitle {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--bg-dark);
}

.sparkmodeAtlasHeroText {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px;
}

.sparkmodeAtlasHeroBtnGroup {
    margin-top: 30px;
}

.sparkmodeAtlasBtnMain {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--bg-dark);
}

.sparkmodeAtlasBtnMain:hover {
    background: var(--white);
    color: var(--bg-dark);
}

/* Practitioner Quote */
.sparkmodeAtlasPractitioner {
    padding: 100px 0;
    background: var(--bg-dark);
}

.sparkmodeAtlasQuoteBox {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.sparkmodeAtlasQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.sparkmodeAtlasQuoteAuthor {
    display: flex;
    flex-direction: column;
}

.sparkmodeAtlasAuthorName {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent);
}

.sparkmodeAtlasAuthorTitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 3 Text Sections */
.sparkmodeAtlasThreeThemes {
    padding: 80px 0;
}

.sparkmodeAtlasTextSection {
    margin-bottom: 80px;
}

.sparkmodeAtlasTextSection:last-child {
    margin-bottom: 0;
}

.sparkmodeAtlasSectionTitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
    border-left: 5px solid var(--accent);
    padding-left: 20px;
}

.sparkmodeAtlasTextContent p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.sparkmodeAtlasContentList {
    margin: 25px 0;
    padding-left: 25px;
    list-style: square;
}

.sparkmodeAtlasContentList li {
    margin-bottom: 10px;
}

/* FAQ Section */
.sparkmodeAtlasFAQ {
    background: #f3f4f6;
    padding: 80px 0;
}

.sparkmodeAtlasFAQWrap {
    max-width: 900px;
    margin: 40px auto 0;
}

.sparkmodeAtlasFAQItem {
    background: var(--white);
    margin-bottom: 15px;
    border: 1px solid var(--text-light);
}

.sparkmodeAtlasFAQSummary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.sparkmodeAtlasFAQSummary::after {
    content: '+';
}

.sparkmodeAtlasFAQItem[open] .sparkmodeAtlasFAQSummary::after {
    content: '-';
}

.sparkmodeAtlasFAQContent {
    padding: 0 20px 20px;
    border-top: 1px solid #eee;
}

/* Services / Packages */
.sparkmodeAtlasServices {
    padding: 80px 0;
}

.sparkmodeAtlasServicesGrid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.sparkmodeAtlasServiceCard {
    flex: 1;
    padding: 40px;
    border: 1px solid var(--text-light);
    text-align: center;
    transition: var(--transition);
}

.sparkmodeAtlasServiceFeatured {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 255, 224, 0.1);
    transform: scale(1.05);
}

.sparkmodeAtlasCardTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sparkmodeAtlasCardPrice {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--bg-dark);
}

.sparkmodeAtlasCardList {
    list-style: none;
    text-align: left;
}

.sparkmodeAtlasCardList li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* For Whom Section */
.sparkmodeAtlasForWhom {
    background: #111827;
    color: var(--white);
    padding: 80px 0;
}

.sparkmodeAtlasSectionIntro {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.sparkmodeAtlasWhomItem {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-left: 3px solid var(--accent);
    font-size: 1.05rem;
    transition: var(--transition);
}

.sparkmodeAtlasWhomItem:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Regularity Section */
.sparkmodeAtlasRegularity {
    padding: 80px 0;
}

.sparkmodeAtlasRegularityInner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.sparkmodeAtlasRegularityContent {
    flex: 1.2;
}

.sparkmodeAtlasRegularityImage {
    flex: 1;
}

.sparkmodeAtlasRegularityImg {
    width: 100%;
    border-radius: 4px;
}

.sparkmodeAtlasBenefitsList {
    list-style: none;
    margin-top: 30px;
}

.sparkmodeAtlasBenefitItem {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.sparkmodeAtlasBenefitItem::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Form Section */
.sparkmodeAtlasFormSection {
    background: #f9fafb;
    padding: 100px 0;
}

.sparkmodeAtlasFormContent {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.sparkmodeAtlasFormTitle {
    text-align: center;
    margin-bottom: 10px;
}

.sparkmodeAtlasFormSubtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.sparkmodeAtlasFormGroup {
    margin-bottom: 20px;
}

.sparkmodeAtlasFormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.sparkmodeAtlasInput, .sparkmodeAtlasTextarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--text-light);
    font-family: inherit;
    font-size: 1rem;
}

.sparkmodeAtlasTextarea {
    height: 120px;
    resize: vertical;
}

.sparkmodeAtlasFormCheckbox {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sparkmodeAtlasSubmitBtn {
    width: 100%;
    background: var(--bg-dark);
    color: var(--white);
    padding: 18px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sparkmodeAtlasSubmitBtn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Footer */
.sparkmodeAtlasFooter {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.sparkmodeAtlasFooterTop {
    text-align: center;
    margin-bottom: 40px;
}

.sparkmodeAtlasFooterBrand {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sparkmodeAtlasFooterLinks {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.sparkmodeAtlasFooterLinks a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.sparkmodeAtlasFooterBottom {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .sparkmodeAtlasHeroInner {
        flex-direction: column;
        text-align: center;
    }
    .sparkmodeAtlasHeroTitle {
        font-size: 2.2rem;
    }
    .sparkmodeAtlasServicesGrid {
        flex-direction: column;
    }
    .sparkmodeAtlasServiceFeatured {
        transform: scale(1);
    }
    .sparkmodeAtlasRegularityInner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .sparkmodeAtlasNav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        display: none;
        padding: 20px;
    }
    .sparkmodeAtlasNavList {
        flex-direction: column;
        align-items: center;
    }
    .sparkmodeAtlasBurger {
        display: flex;
    }
    .sparkmodeAtlasMobileToggle:checked ~ .sparkmodeAtlasNav {
        display: block;
    }
    .sparkmodeAtlasWhomGrid {
        grid-template-columns: 1fr;
    }
    .sparkmodeAtlasFormContent {
        padding: 30px 20px;
    }
}