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

html {
    scroll-behavior: smooth;
}

body.BeingyAtlasBodyMain {
    background-color: #050A14;
    color: #f0fdf4;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Helpers */
.BeingyAtlasSectionTitle {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.BeingyAtlasTechnoMarker {
    display: inline-block;
    color: #3BD6FF;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    border-left: 3px solid #3BD6FF;
    padding-left: 10px;
}

.BeingyAtlasWideContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.BeingyAtlasHeaderSection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(12px);
}

.BeingyAtlasHeaderContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.BeingyAtlasLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3BD6FF;
    text-shadow: 0 0 10px rgba(59, 214, 255, 0.5);
    user-select: none;
}

.BeingyAtlasNavMenu {
    display: flex;
    gap: 30px;
}

.BeingyAtlasNavLink {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.BeingyAtlasNavLink:hover {
    color: #3BD6FF;
    text-shadow: 0 0 5px #3BD6FF;
}

.BeingyAtlasHeaderBorderBottom {
    width: 100%;
}

.BeingyAtlasLineDark {
    height: 1px;
    background: #1e293b;
}

.BeingyAtlasLineLight {
    height: 1px;
    background: #3BD6FF;
    opacity: 0.3;
    box-shadow: 0 0 5px #3BD6FF;
}

/* Mobile Burger Hack */
.BeingyAtlasMenuCheckbox {
    display: none;
}

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

.BeingyAtlasMenuIcon span {
    width: 25px;
    height: 3px;
    background: #3BD6FF;
    transition: 0.3s;
}

/* Hero Section */
.BeingyAtlasHeroSection {
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
}

.BeingyAtlasHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.BeingyAtlasHeroImageWrap {
    flex: 1;
}

.BeingyAtlasHeroMainImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(59, 214, 255, 0.2);
    object-fit: cover;
}

.BeingyAtlasHeroTextContent {
    flex: 1.2;
}

.BeingyAtlasHeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.BeingyAtlasHeroSubtitle {
    font-size: 1.25rem;
    color: #3BD6FF;
    margin-bottom: 20px;
}

.BeingyAtlasHeroDescription {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #94a3b8;
}

.BeingyAtlasHeroCtaWrap {
    margin-top: 30px;
}

.BeingyAtlasMainBtnNeon {
    display: inline-block;
    padding: 16px 40px;
    background: #3BD6FF;
    color: #050A14;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(59, 214, 255, 0.5);
    text-align: center;
}

.BeingyAtlasMainBtnNeon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #3BD6FF;
    background: #ffffff;
}

.BeingyAtlasPartnerStrip {
    margin-top: 80px;
    background: rgba(59, 214, 255, 0.05);
    padding: 20px 0;
    border-top: 1px solid rgba(59, 214, 255, 0.1);
    border-bottom: 1px solid rgba(59, 214, 255, 0.1);
}

.BeingyAtlasPartnerContainer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.BeingyAtlasPartnerItem {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: bold;
    letter-spacing: 3px;
}

/* Text Sections */
.BeingyAtlasTextSectionAlt, .BeingyAtlasTextSectionMain {
    padding: 100px 0;
    border-bottom: 1px solid rgba(59, 214, 255, 0.05);
}

.BeingyAtlasTextSectionAlt {
    background: rgba(59, 214, 255, 0.02);
}

.BeingyAtlasSectionHeader {
    margin-bottom: 50px;
}

.BeingyAtlasSectionHeader.Center {
    text-align: center;
}

.BeingyAtlasTextGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.BeingyAtlasLongText p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.BeingyAtlasFeatureList {
    list-style: none;
}

.BeingyAtlasListItem {
    padding: 15px 0;
    border-bottom: 1px solid rgba(59, 214, 255, 0.1);
    position: relative;
    padding-left: 30px;
}

.BeingyAtlasListItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3BD6FF;
}

.BeingyAtlasSubheadingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.BeingyAtlasSubItem {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-left: 2px solid #3BD6FF;
}

.BeingyAtlasSmallTitle {
    color: #3BD6FF;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mt-4 { margin-top: 40px; }

/* Practice Section */
.BeingyAtlasPracticeSection {
    padding: 100px 0;
}

.BeingyAtlasPracticeFlex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.BeingyAtlasPracticeContent {
    flex: 1;
}

.BeingyAtlasPracticeImage {
    flex: 0.8;
}

.BeingyAtlasDecorImg {
    width: 100%;
    border-radius: 10px;
    filter: brightness(0.8) contrast(1.2);
}

.BeingyAtlasBenefitGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.BeingyAtlasBenefitCard {
    background: rgba(59, 214, 255, 0.05);
    padding: 25px;
    border: 1px solid rgba(59, 214, 255, 0.1);
}

.BeingyAtlasBenefitTitle {
    color: #3BD6FF;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.BeingyAtlasBenefitText {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* For Whom Section */
.BeingyAtlasForWhomSection {
    padding: 100px 0;
    background: #070e1b;
}

.BeingyAtlasSectionLead {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
}

.BeingyAtlasVerticalList {
    max-width: 800px;
    margin: 0 auto;
}

.BeingyAtlasAudienceItem {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    align-items: center;
    transition: background 0.3s;
}

.BeingyAtlasAudienceItem:hover {
    background: rgba(59, 214, 255, 0.07);
}

.BeingyAtlasIconCheck {
    color: #3BD6FF;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Expert Quote */
.BeingyAtlasExpertQuoteSection {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 214, 255, 0.1) 0%, transparent 70%);
}

.BeingyAtlasBigQuote {
    font-size: 2rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #ffffff;
    line-height: 1.4;
}

.BeingyAtlasExpertInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.BeingyAtlasExpertAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #3BD6FF;
    padding: 3px;
}

.BeingyAtlasExpertName {
    font-weight: bold;
    font-size: 1.2rem;
}

.BeingyAtlasExpertRole {
    color: #3BD6FF;
    font-size: 0.9rem;
}

/* Packages */
.BeingyAtlasServicePackages {
    padding: 100px 0;
}

.BeingyAtlasPackageGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.BeingyAtlasPriceCard {
    background: #0a1324;
    padding: 40px;
    border: 1px solid rgba(59, 214, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, border 0.3s;
}

.BeingyAtlasPriceCard:hover {
    transform: translateY(-10px);
    border-color: #3BD6FF;
}

.BeingyAtlasPriceCard.Featured {
    border: 2px solid #3BD6FF;
    box-shadow: 0 0 20px rgba(59, 214, 255, 0.2);
    transform: scale(1.05);
}

.BeingyAtlasPriceCard.Featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.BeingyAtlasCardIcon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.BeingyAtlasCardTitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.BeingyAtlasPriceTag {
    font-size: 2rem;
    font-weight: 800;
    color: #3BD6FF;
    margin-bottom: 25px;
}

.BeingyAtlasCardFeatures {
    list-style: none;
    margin-bottom: 30px;
    text-align: center;
}

.BeingyAtlasCardFeatures li {
    padding: 8px 0;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* FAQ */
.BeingyAtlasFaqSection {
    padding: 100px 0;
    background: #050A14;
}

.BeingyAtlasFaqGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.BeingyAtlasFaqItem {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 214, 255, 0.1);
}

.BeingyAtlasFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #3BD6FF;
    list-style: none;
    position: relative;
}

.BeingyAtlasFaqSummary::-webkit-details-marker {
    display: none;
}

.BeingyAtlasFaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.BeingyAtlasFaqItem[open] .BeingyAtlasFaqSummary::after {
    content: '-';
}

.BeingyAtlasFaqContent {
    padding: 0 20px 20px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Contact Form */
.BeingyAtlasContactForm {
    padding: 100px 0;
    background: #070e1b;
}

.BeingyAtlasFormContainer {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.BeingyAtlasFormSubtext {
    color: #94a3b8;
    margin-bottom: 30px;
}

.BeingyAtlasFormGroup {
    margin-bottom: 20px;
}

.BeingyAtlasFormLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #3BD6FF;
}

.BeingyAtlasFormInput, .BeingyAtlasFormTextarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 214, 255, 0.2);
    color: #ffffff;
    border-radius: 4px;
}

.BeingyAtlasFormInput:focus, .BeingyAtlasFormTextarea:focus {
    outline: none;
    border-color: #3BD6FF;
    box-shadow: 0 0 10px rgba(59, 214, 255, 0.3);
}

.BeingyAtlasFormTextarea {
    height: 120px;
    resize: none;
}

.CheckboxGroup {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
}

.CheckboxGroup a {
    color: #3BD6FF;
}

.FullWidth {
    width: 100%;
}

.BeingyAtlasDisclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}

/* Footer */
.BeingyAtlasFooterSection {
    padding: 60px 0;
    border-top: 1px solid rgba(59, 214, 255, 0.1);
}

.BeingyAtlasFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.BeingyAtlasFooterBrand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3BD6FF;
}

.BeingyAtlasFooterMid {
    text-align: center;
    color: #64748b;
    margin-bottom: 20px;
}

.BeingyAtlasFooterLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.BeingyAtlasFooterLinks a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8rem;
}

.BeingyAtlasFooterLinks a:hover {
    color: #3BD6FF;
}

/* Responsive */
@media (max-width: 992px) {
    .BeingyAtlasHeroContainer, .BeingyAtlasTextGrid, .BeingyAtlasPracticeFlex {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .BeingyAtlasSubheadingGrid, .BeingyAtlasPackageGrid, .BeingyAtlasFaqGrid {
        grid-template-columns: 1fr;
    }
    .BeingyAtlasHeroTitle {
        font-size: 2.5rem;
    }
    .BeingyAtlasHeroImageWrap {
        order: -1;
    }
}

@media (max-width: 768px) {
    .BeingyAtlasNavMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #050A14;
        padding: 20px;
        border-bottom: 1px solid #3BD6FF;
    }

    .BeingyAtlasMenuIcon {
        display: flex;
    }

    .BeingyAtlasMenuCheckbox:checked ~ .BeingyAtlasNavMenu {
        display: flex;
    }

    .BeingyAtlasSectionTitle {
        font-size: 1.8rem;
    }
}