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

html {
    scroll-behavior: smooth;
}

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

/* FLUX LINES EFFECT (Pseudo-element background) */
body.cosmosetBodyMainContainer::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(22, 163, 74, 0.03) 100px,
        rgba(22, 163, 74, 0.03) 101px
    );
    pointer-events: none;
    z-index: -1;
}

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

/* HEADER */
.cosmosetHeaderWrapper {
    background: rgba(5, 46, 22, 0.95);
    border-bottom: 1px solid #16a34a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.cosmosetLogoText {
    font-size: 28px;
    font-weight: 800;
    color: #86efac;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cosmosetNavUl {
    list-style: none;
    display: flex;
    gap: 25px;
}

.cosmosetNavLink {
    text-decoration: none;
    color: #f0fdf4;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cosmosetNavLink:hover {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.cosmosetHeaderDisclaimer {
    background: #16a34a;
    color: #052e16;
    text-align: center;
    font-size: 12px;
    padding: 5px 0;
    font-weight: bold;
}

/* BURGER MENU (NO JS) */
.cosmosetMenuCheckbox {
    display: none;
}

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

.cosmosetBurgerIcon span {
    width: 25px;
    height: 3px;
    background: #86efac;
    border-radius: 2px;
}

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

    .cosmosetNavigationLinks {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #052e16;
        display: none;
        padding: 20px;
        border-bottom: 1px solid #16a34a;
    }

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

    .cosmosetMenuCheckbox:checked ~ .cosmosetNavigationLinks {
        display: block;
    }
}

/* WAVE DIVIDER */
.cosmosetWaveDivider {
    width: 100%;
    line-height: 0;
}

.cosmosetWaveDivider svg {
    width: 100%;
    height: 60px;
}

/* HERO SECTION */
.cosmosetHeroSection {
    padding: 60px 0;
}

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

.cosmosetHeroTextCol {
    flex: 1;
}

.cosmosetHeroImageCol {
    flex: 1;
}

.cosmosetHeroH1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #86efac;
}

.cosmosetHeroP {
    font-size: 18px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.cosmosetHeroBtn {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.cosmosetHeroBtn:hover {
    background: #00ffff;
    color: #052e16;
    box-shadow: 0 0 20px #00ffff;
}

.cosmosetHeroImgFrame {
    border: 1px solid rgba(134, 239, 172, 0.3);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cosmosetHeroImgElement {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cosmosetHeroContainer {
        flex-direction: column;
        text-align: center;
    }
    .cosmosetHeroH1 {
        font-size: 36px;
    }
}

/* TEXT INFO SECTIONS */
.cosmosetTextInfoSection {
    padding: 80px 0;
}

.cosmosetAltBg {
    background: rgba(22, 163, 74, 0.05);
}

.cosmosetSectionH2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #86efac;
}

.cosmosetTextGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cosmosetTextItem {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #16a34a;
}

.cosmosetSubH3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f0fdf4;
}

.cosmosetTextP {
    font-size: 16px;
    color: #cbd5e1;
}

.cosmosetContentUl {
    margin: 25px 0;
    list-style: none;
}

.cosmosetContentUl li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.cosmosetContentUl li::before {
    content: "◈";
    position: absolute;
    left: 0;
    color: #16a34a;
}

.cosmosetMtop {
    margin-top: 40px;
    text-align: center;
    font-style: italic;
}

/* PRACTIC SECTION */
.cosmosetPracticSection {
    padding: 100px 0;
    background: #022010;
}

.cosmosetPracticBox {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #16a34a;
    padding: 60px 40px;
    position: relative;
    text-align: center;
    border-radius: 20px;
}

.cosmosetQuoteIcon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #052e16;
    padding: 0 20px;
    font-size: 60px;
    color: #00ffff;
    line-height: 1;
}

.cosmosetQuoteText {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    color: #f0fdf4;
}

.cosmosetPracticName {
    font-weight: bold;
    color: #16a34a;
    letter-spacing: 1px;
}

/* SERVICES / PRICING */
.cosmosetServicesSection {
    padding: 80px 0;
}

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

.cosmosetPriceCard {
    background: #052e16;
    border: 1px solid #16a34a;
    padding: 40px 30px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}

.cosmosetPriceCard:hover {
    transform: translateY(-10px);
}

.cosmosetFeatured {
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.cosmosetPriceHeader {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #86efac;
}

.cosmosetPriceVal {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #f0fdf4;
}

.cosmosetPriceList {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.cosmosetPriceList li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(22, 163, 74, 0.2);
    font-size: 14px;
}

.cosmosetPriceBtn {
    display: block;
    padding: 12px;
    background: #16a34a;
    color: #052e16;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cosmosetPriceBtn:hover {
    background: #00ffff;
    box-shadow: 0 0 15px #00ffff;
}

/* FAQ SECTION */
.cosmosetFaqSection {
    padding: 80px 0;
}

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

.cosmosetFaqItem {
    background: rgba(22, 163, 74, 0.1);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.cosmosetFaqSummary {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #86efac;
}

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

.cosmosetFaqSummary::after {
    content: "+";
    font-size: 24px;
}

.cosmosetFaqItem[open] .cosmosetFaqSummary::after {
    content: "−";
}

.cosmosetFaqContent {
    padding: 0 20px 20px;
    color: #cbd5e1;
    font-size: 15px;
}

/* REGULAR PRACTICE */
.cosmosetRegularSection {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.cosmosetFlexReverse {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cosmosetRegularText {
    flex: 1.2;
}

.cosmosetRegularImg {
    flex: 0.8;
}

.cosmosetBorderedImg {
    width: 100%;
    border-radius: 20px;
    border: 5px solid rgba(22, 163, 74, 0.2);
}

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

.cosmosetCheckUl {
    list-style: none;
    flex: 1;
}

.cosmosetCheckUl li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
}

.cosmosetCheckUl li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

@media (max-width: 850px) {
    .cosmosetFlexReverse {
        flex-direction: column-reverse;
    }
    .cosmosetTwoColList {
        flex-direction: column;
        gap: 0;
    }
}

/* AUDIENCE SECTION */
.cosmosetAudienceSection {
    padding: 80px 0;
}

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

.cosmosetAudienceGrid {
    display: flex;
    gap: 40px;
}

.cosmosetAudienceCol {
    flex: 1;
}

.cosmosetAudienceList {
    list-style: none;
}

.cosmosetAudienceList li {
    background: rgba(134, 239, 172, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-right: 2px solid #16a34a;
}

@media (max-width: 768px) {
    .cosmosetAudienceGrid {
        flex-direction: column;
    }
}

/* CONTACT FORM */
.cosmosetContactSection {
    padding: 80px 0;
}

.cosmosetFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(22, 163, 74, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(134, 239, 172, 0.2);
}

.cosmosetFormH2 {
    text-align: center;
    margin-bottom: 10px;
    color: #86efac;
}

.cosmosetFormSub {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #94a3b8;
}

.cosmosetInputGroup {
    margin-bottom: 20px;
}

.cosmosetLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #86efac;
}

.cosmosetInput, .cosmosetTextarea {
    width: 100%;
    padding: 12px 15px;
    background: #022010;
    border: 1px solid #16a34a;
    color: #f0fdf4;
    border-radius: 5px;
    font-family: inherit;
}

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

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

.cosmosetCheckLabel {
    font-size: 13px;
    color: #cbd5e1;
}

.cosmosetCheckLabel a {
    color: #00ffff;
}

.cosmosetSubmitBtn {
    width: 100%;
    padding: 15px;
    background: #00ffff;
    border: none;
    color: #052e16;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.cosmosetSubmitBtn:hover {
    box-shadow: 0 0 25px #00ffff;
    transform: translateY(-2px);
}

/* FOOTER */
.cosmosetFooter {
    padding: 60px 0;
    border-top: 1px solid rgba(22, 163, 74, 0.3);
}

.cosmosetFooterMain {
    text-align: center;
    margin-bottom: 30px;
}

.cosmosetFooterCopyright {
    font-weight: bold;
    margin-bottom: 10px;
}

.cosmosetFooterEmail a {
    color: #00ffff;
    text-decoration: none;
}

.cosmosetFooterAddress {
    font-size: 14px;
    color: #94a3b8;
}

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

.cosmosetFooterLink {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: none;
}

.cosmosetFooterLink:hover {
    color: #00ffff;
}

/* POLICIES TEXT STYLING */
.cosmosetPolicyBody {
    background: #052e16;
    color: #f0fdf4;
    padding: 40px 20px;
    font-family: sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

.cosmosetPolicyBody h1 { color: #86efac; margin-bottom: 20px; }
.cosmosetPolicyBody h2 { color: #16a34a; margin-top: 30px; margin-bottom: 10px; }
.cosmosetPolicyBody p { margin-bottom: 15px; font-size: 15px; line-height: 1.7; }