/* RESET AND BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ZogaqaSphereBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #07090C;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HEADER SECTION (Variant 4: Shadow + Cyan Rail) */
.ZogaqaSphere_HdrWrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #07090C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #4FF7FF;
}

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

.ZogaqaSphere_LogoWrap {
    font-size: 28px;
    font-weight: 800;
    color: #4FF7FF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ZogaqaSphere_MenuToggleInp {
    display: none;
}

.ZogaqaSphere_BurgerLabel {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.ZogaqaSphere_BurgerLabel span {
    width: 100%;
    height: 3px;
    background: #4FF7FF;
    transition: 0.3s;
}

.ZogaqaSphere_NavList {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ZogaqaSphere_NavLink {
    font-weight: 500;
    color: #B0B0B0;
    font-size: 15px;
}

.ZogaqaSphere_NavLink:hover {
    color: #4FF7FF;
    text-shadow: 0 0 8px #4FF7FF;
}

.ZogaqaSphere_NavBtn {
    background: transparent;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.ZogaqaSphere_NavBtn:hover {
    background: #4FF7FF;
    color: #07090C;
    box-shadow: 0 0 15px #4FF7FF;
}

/* HERO SECTION (Variant 10: Photo Right) */
.ZogaqaSphere_HeroSection {
    padding: 100px 20px;
    background: radial-gradient(circle at 10% 20%, rgba(79, 247, 255, 0.05) 0%, transparent 40%);
}

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

.ZogaqaSphere_HeroTextPart {
    flex: 1;
}

.ZogaqaSphere_HeroImgPart {
    flex: 1;
}

.ZogaqaSphere_HeroTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.ZogaqaSphere_HeroSub {
    font-size: 20px;
    color: #4FF7FF;
    margin-bottom: 25px;
    font-weight: 500;
}

.ZogaqaSphere_HeroDesc {
    margin-bottom: 20px;
    color: #B0B0B0;
}

.ZogaqaSphere_HeroBtnWrap {
    margin-top: 35px;
}

.ZogaqaSphere_HeroMainBtn {
    display: inline-block;
    padding: 18px 45px;
    background: #4FF7FF;
    color: #07090C;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: 0.3s;
}

.ZogaqaSphere_HeroMainBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 247, 255, 0.4);
}

.ZogaqaSphere_HeroMainImg {
    border: 1px solid rgba(79, 247, 255, 0.3);
    box-shadow: 20px 20px 0px rgba(79, 247, 255, 0.1);
    border-radius: 8px;
    object-fit: cover;
}

/* SERVICES SECTION (Variant 12: Icons + Prices) */
.ZogaqaSphere_PricesSection {
    padding: 100px 20px;
    background: #0B0E13;
}

.ZogaqaSphere_PriceContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ZogaqaSphere_PriceMainTitle {
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.ZogaqaSphere_PriceSubtitle {
    color: #B0B0B0;
    margin-bottom: 60px;
}

.ZogaqaSphere_PriceGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ZogaqaSphere_PriceCard {
    background: #07090C;
    border: 1px solid #1E252D;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.ZogaqaSphere_PriceCard_Popular {
    border-color: #4FF7FF;
    position: relative;
    transform: scale(1.05);
}

.ZogaqaSphere_PriceCard_Popular::before {
    content: 'Популярний';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4FF7FF;
    color: #07090C;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.ZogaqaSphere_PriceIcon {
    margin-bottom: 25px;
}

.ZogaqaSphere_PriceImg {
    margin: 0 auto;
    border-radius: 50%;
}

.ZogaqaSphere_PriceTitle {
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.ZogaqaSphere_PriceValue {
    font-size: 32px;
    color: #4FF7FF;
    font-weight: 800;
    margin-bottom: 25px;
}

.ZogaqaSphere_PriceList {
    text-align: left;
    margin-bottom: 35px;
    flex-grow: 1;
}

.ZogaqaSphere_PriceListItem {
    padding: 8px 0;
    color: #B0B0B0;
    font-size: 14px;
    border-bottom: 1px solid #1E252D;
}

.ZogaqaSphere_PriceListItem::before {
    content: '—';
    color: #4FF7FF;
    margin-right: 10px;
}

.ZogaqaSphere_PriceBtn {
    padding: 12px;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    font-weight: 600;
    border-radius: 4px;
}

.ZogaqaSphere_PriceBtn:hover {
    background: #4FF7FF;
    color: #07090C;
}

/* PRACTITIONER SECTION (Variant 6: Photo top + quote) */
.ZogaqaSphere_ExpertSection {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #0B0E13, #07090C);
}

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

.ZogaqaSphere_ExpertPhoto {
    margin-bottom: 30px;
}

.ZogaqaSphere_ExpertImg {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid #4FF7FF;
    padding: 5px;
}

.ZogaqaSphere_ExpertQuote {
    font-size: 24px;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 25px;
    position: relative;
    padding: 0 40px;
}

.ZogaqaSphere_ExpertName {
    font-size: 22px;
    font-weight: 700;
    color: #4FF7FF;
    margin-bottom: 5px;
}

.ZogaqaSphere_ExpertStatus {
    color: #B0B0B0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

/* FAQ SECTION (Variant 13: Accent line) */
.ZogaqaSphere_FaqSection {
    padding: 100px 20px;
}

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

.ZogaqaSphere_FaqTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.ZogaqaSphere_FaqItem {
    background: #0B0E13;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.ZogaqaSphere_FaqSummary {
    padding: 20px 30px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    border-left: 4px solid #4FF7FF;
    color: #FFFFFF;
    transition: background 0.3s;
}

.ZogaqaSphere_FaqSummary:hover {
    background: #14181E;
}

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

.ZogaqaSphere_FaqContent {
    padding: 20px 30px;
    color: #B0B0B0;
    border-top: 1px solid #1E252D;
}

/* TEXT SECTIONS (Variant 9: Horizontal dividers) */
.ZogaqaSphere_TextSection {
    padding: 80px 20px;
}

.ZogaqaSphere_SectionAltBg {
    background: #0B0E13;
}

.ZogaqaSphere_TextContainer {
    max-width: 1000px;
    margin: 0 auto;
}

.ZogaqaSphere_TextTitle {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 40px;
    border-left: 5px solid #4FF7FF;
    padding-left: 20px;
}

.ZogaqaSphere_TextContent p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #B0B0B0;
}

.ZogaqaSphere_TextDivider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #4FF7FF, transparent);
    margin: 40px 0;
}

.ZogaqaSphere_TextList {
    margin: 30px 0;
}

.ZogaqaSphere_TextList li {
    padding: 10px 0;
    color: #FFFFFF;
    font-weight: 500;
    padding-left: 30px;
    position: relative;
}

.ZogaqaSphere_TextList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4FF7FF;
}

/* TARGET AUDIENCE (Variant 1: Vert list, soft bg) */
.ZogaqaSphere_TargetSection {
    padding: 100px 20px;
}

.ZogaqaSphere_TargetContainer {
    max-width: 1100px;
    margin: 0 auto;
}

.ZogaqaSphere_TargetTitle {
    text-align: center;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.ZogaqaSphere_TargetLead {
    text-align: center;
    color: #B0B0B0;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ZogaqaSphere_TargetList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ZogaqaSphere_TargetItem {
    background: rgba(79, 247, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.ZogaqaSphere_TargetItem:hover {
    background: rgba(79, 247, 255, 0.1);
    transform: translateX(10px);
}

.ZogaqaSphere_TargetIcon {
    font-size: 24px;
    color: #4FF7FF;
    font-weight: bold;
}

.ZogaqaSphere_TargetText {
    color: #FFFFFF;
    font-weight: 500;
}

/* BENEFITS SECTION (Variant 14: Text left, photo right) */
.ZogaqaSphere_BenefitsSection {
    padding: 100px 20px;
    background: #0B0E13;
}

.ZogaqaSphere_BenefitsContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ZogaqaSphere_BenefitsText {
    flex: 1.2;
}

.ZogaqaSphere_BenefitsImgWrap {
    flex: 0.8;
}

.ZogaqaSphere_BenefitsTitle {
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.ZogaqaSphere_BenefitsDesc {
    margin-bottom: 40px;
    color: #B0B0B0;
}

.ZogaqaSphere_BenefitGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ZogaqaSphere_BenefitItem h4 {
    color: #4FF7FF;
    margin-bottom: 10px;
    font-size: 18px;
}

.ZogaqaSphere_BenefitItem p {
    font-size: 14px;
    color: #B0B0B0;
}

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

.ZogaqaSphere_BenefitMiniImg {
    border-radius: 4px;
}

.ZogaqaSphere_BenefitsImg {
    border-radius: 12px;
    filter: grayscale(0.5);
    border: 1px solid rgba(79, 247, 255, 0.2);
}

/* FORM SECTION */
.ZogaqaSphere_FormSection {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #14181E 0%, #07090C 100%);
}

.ZogaqaSphere_FormContainer {
    max-width: 600px;
    margin: 0 auto;
    background: #0B0E13;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #1E252D;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.ZogaqaSphere_FormTitle {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
}

.ZogaqaSphere_FormSubtitle {
    text-align: center;
    color: #B0B0B0;
    margin-bottom: 40px;
}

.ZogaqaSphere_FormGroup {
    margin-bottom: 20px;
}

.ZogaqaSphere_FormLabel {
    display: block;
    margin-bottom: 8px;
    color: #4FF7FF;
    font-size: 14px;
    font-weight: 600;
}

.ZogaqaSphere_FormInput,
.ZogaqaSphere_FormTextarea {
    width: 100%;
    background: #07090C;
    border: 1px solid #1E252D;
    padding: 15px;
    color: #FFFFFF;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.ZogaqaSphere_FormInput:focus,
.ZogaqaSphere_FormTextarea:focus {
    border-color: #4FF7FF;
}

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

.ZogaqaSphere_FormCheck {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 25px;
}

.ZogaqaSphere_FormCheckLabel {
    font-size: 13px;
    color: #B0B0B0;
}

.ZogaqaSphere_FormCheckLabel a {
    color: #4FF7FF;
    text-decoration: underline;
}

.ZogaqaSphere_SubmitBtn {
    width: 100%;
    background: #4FF7FF;
    color: #07090C;
    padding: 18px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.ZogaqaSphere_SubmitBtn:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.6);
}

/* FOOTER */
.ZogaqaSphere_FooterWrap {
    padding: 80px 20px 40px;
    border-top: 1px solid #1E252D;
    background: #07090C;
}

.ZogaqaSphere_FooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ZogaqaSphere_FooterBrand {
    font-size: 22px;
    font-weight: 700;
    color: #4FF7FF;
    margin-bottom: 20px;
}

.ZogaqaSphere_FooterTop {
    margin-bottom: 40px;
}

.ZogaqaSphere_FooterTop p {
    color: #B0B0B0;
    margin: 5px 0;
}

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

.ZogaqaSphere_FooterLink {
    font-size: 13px;
    color: #707070;
}

.ZogaqaSphere_FooterLink:hover {
    color: #4FF7FF;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .ZogaqaSphere_HeroContainer,
    .ZogaqaSphere_BenefitsContainer {
        flex-direction: column;
        text-align: center;
    }

    .ZogaqaSphere_HeroTitle {
        font-size: 36px;
    }

    .ZogaqaSphere_BenefitGrid {
        grid-template-columns: 1fr;
    }

    .ZogaqaSphere_HeroImgPart, .ZogaqaSphere_BenefitsImgWrap {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ZogaqaSphere_BurgerLabel {
        display: flex;
    }

    .ZogaqaSphere_MainNav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #07090C;
        transition: 0.4s;
        padding-top: 50px;
    }

    .ZogaqaSphere_NavList {
        flex-direction: column;
        gap: 30px;
    }

    .ZogaqaSphere_MenuToggleInp:checked ~ .ZogaqaSphere_MainNav {
        left: 0;
    }

    .ZogaqaSphere_MenuToggleInp:checked ~ .ZogaqaSphere_BurgerLabel span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .ZogaqaSphere_MenuToggleInp:checked ~ .ZogaqaSphere_BurgerLabel span:nth-child(2) {
        opacity: 0;
    }

    .ZogaqaSphere_MenuToggleInp:checked ~ .ZogaqaSphere_BurgerLabel span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .ZogaqaSphere_PriceCard_Popular {
        transform: scale(1);
    }

    .ZogaqaSphere_FormContainer {
        padding: 30px 20px;
    }
}

/* Batch legal/thank pages shared styles */
.policy-page,
.legal-page,
.thank-page {
    min-height: 100vh;
}

.policy-shell,
.legal-container,
.thank-shell {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 0;
}

.policy-card,
.thank-card {
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 28px;
    background: var(--card-bg, var(--plasma-card, var(--white, #ffffff)));
    color: inherit;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    padding: clamp(26px, 5vw, 56px);
}

.policy-title,
.thank-card h1 {
    margin: 0 0 18px;
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.policy-subtitle,
.policy-lead,
.thank-eyebrow,
.thank-card p {
    color: var(--text-secondary, var(--text-dim, var(--plasma-subtext, var(--gray-text, inherit))));
}

.policy-lead,
.thank-card > p {
    font-size: clamp(1rem, 2vw, 1.16rem);
    margin-bottom: 28px;
}

.policy-section {
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.policy-section h2,
.thank-next h2 {
    margin: 0 0 12px;
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.policy-section p,
.thank-next p {
    margin: 0 0 12px;
    line-height: 1.75;
}

.policy-nav,
.thank-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.policy-back-link,
.thank-button,
.thank-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.thank-button,
.policy-nav .policy-back-link:first-child {
    background: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb)))));
    color: var(--main-bg, var(--plasma-bg, #ffffff));
    border-color: transparent;
}

.thank-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.thank-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #22c55e)))));
    color: var(--main-bg, var(--plasma-bg, #ffffff));
    font-size: 42px;
    font-weight: 900;
}

.thank-next {
    margin: 28px auto 0;
    padding: 22px;
    border-radius: 20px;
    background: rgba(148, 163, 184, 0.12);
    text-align: left;
}

.policy-card a,
.thank-card a {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
}

@media (max-width: 680px) {
    .policy-shell,
    .legal-container,
    .thank-shell {
        width: min(100% - 20px, 1040px);
        padding: 28px 0;
    }

    .policy-card,
    .thank-card {
        border-radius: 20px;
        padding: 22px;
    }

    .policy-nav,
    .thank-actions {
        flex-direction: column;
    }

    .policy-back-link,
    .thank-button,
    .thank-link {
        width: 100%;
    }
}
/* Batch legal readability patch */
.policy-page,
.legal-page,
.thank-page {
    background-color: var(--main-bg, var(--plasma-bg, var(--behogino-bg, var(--berry-soft, #0f172a))));
}

.policy-card,
.thank-card {
    background: rgba(255, 255, 255, 0.97) !important;
    color: #172033 !important;
    border-color: rgba(15, 23, 42, 0.10) !important;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.24) !important;
}

.policy-title,
.thank-card h1,
.policy-section h2,
.thank-next h2 {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb))))) !important;
    -webkit-text-fill-color: currentColor !important;
}

.policy-subtitle,
.policy-lead,
.thank-eyebrow,
.thank-card p,
.policy-section p,
.thank-next p {
    color: #334155 !important;
}

.policy-section {
    border-top-color: rgba(15, 23, 42, 0.12) !important;
}

.policy-card a,
.thank-card a {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb))))) !important;
}

.policy-nav .policy-back-link:first-child,
.thank-button {
    color: #06111f !important;
}

.thank-next {
    background: #f1f5f9 !important;
}

/* Batch mobile overflow safety */
@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    body * {
        min-width: 0;
    }

    img,
    video,
    svg {
        max-width: 100%;
        height: auto;
    }

    h1,
    h2,
    .policy-title,
    .thank-card h1 {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}
