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

:root {
    --color-bg: #3f1d2e;
    --color-primary: #ec4899;
    --color-secondary: #00ffe0;
    --color-accent: #f9a8d4;
    --color-light: #ffe4e6;
    --color-text-main: #ffffff;
    --color-text-muted: #f9a8d4;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.SagewiseBodyMain {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER */
.SagewiseHeaderSection {
    background-color: rgba(63, 29, 46, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.SagewiseHeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.SagewiseLogoText {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.SagewiseNavMenu {
    display: flex;
}

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

.SagewiseMenuLink {
    text-decoration: none;
    color: var(--color-light);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.SagewiseMenuLink:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px var(--color-primary);
}

.SagewiseHeaderGradient {
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    width: 100%;
}

/* BURGER */
.SagewiseBurgerInput {
    display: none;
}

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

.SagewiseBurgerLabel span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

/* DISCLAIMER */
.SagewiseGlobalDisclaimer {
    background: #2a141f;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.SagewiseDisclaimerText {
    font-size: 13px;
    text-align: center;
    color: var(--color-accent);
    opacity: 0.8;
}

/* HERO */
.SagewiseHeroSection {
    padding: 100px 0;
    overflow: hidden;
}

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

.SagewiseHeroImageCol {
    flex: 1;
    min-width: 300px;
}

.SagewiseHeroImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    border: 2px solid var(--color-primary);
}

.SagewiseHeroTextCol {
    flex: 1.2;
    min-width: 300px;
}

.SagewiseHeroTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--color-light);
}

.SagewiseHeroLead {
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.SagewiseHeroDesc {
    margin-bottom: 20px;
    opacity: 0.9;
}

.SagewiseHeroMiniCard {
    background: rgba(236, 72, 153, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    margin: 30px 0;
}

.SagewiseMiniCardTitle {
    margin-bottom: 10px;
    font-size: 18px;
}

.SagewiseMiniCardList {
    list-style: none;
}

.SagewiseMiniCardList li::before {
    content: "✦";
    color: var(--color-secondary);
    margin-right: 10px;
}

.SagewiseHeroBtn {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

.SagewiseHeroBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6);
    background-color: #ff5eb1;
}

/* PRAKTIK */
.SagewisePraktikSection {
    padding: 80px 0;
}

.SagewiseQuoteBox {
    position: relative;
    padding: 60px;
    border: 2px solid var(--color-secondary);
    border-radius: 30px;
    background: rgba(0, 255, 224, 0.05);
    text-align: center;
}

.SagewiseQuoteIcon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: var(--color-secondary);
    background: var(--color-bg);
    padding: 0 20px;
    line-height: 1;
}

.SagewiseQuoteText {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--color-light);
}

.SagewiseQuoteAuthor {
    font-size: 18px;
    color: var(--color-secondary);
    font-weight: 700;
}

/* FAQ */
.SagewiseFaqSection {
    padding: 100px 0;
}

.SagewiseSectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primary);
}

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

.SagewiseFaqDetails {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.SagewiseFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.SagewiseFaqSummary::after {
    content: "+";
    color: var(--color-primary);
    font-size: 24px;
}

.SagewiseFaqDetails[open] .SagewiseFaqSummary::after {
    content: "-";
}

.SagewiseFaqAnswer {
    padding: 0 20px 20px;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* AUDIENCE */
.SagewiseAudienceSection {
    padding: 100px 0;
    background-color: #351827;
}

.SagewiseAudienceIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.SagewiseSectionLead {
    font-size: 18px;
    color: var(--color-accent);
}

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

.SagewiseAudienceItem {
    flex: 1 1 calc(33.333% - 30px);
    background: rgba(236, 72, 153, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.SagewiseAudienceItem:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    border-color: var(--color-primary);
}

.SagewiseAudienceItemTitle {
    font-size: 22px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* PRICING */
.SagewisePricingSection {
    padding: 100px 0;
}

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

.SagewisePriceCard {
    flex: 1 1 350px;
    max-width: 380px;
    background: #4a2236;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.SagewisePriceCardFeatured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
    z-index: 10;
}

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

.SagewisePriceTitle {
    font-size: 24px;
    margin-bottom: 10px;
}

.SagewisePriceValue {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-secondary);
}

.SagewisePriceList {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.SagewisePriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.SagewisePriceList li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--color-primary);
}

.SagewisePriceBtn {
    display: block;
    text-align: center;
    padding: 15px;
    border: 2px solid var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.SagewisePriceCardFeatured .SagewisePriceBtn {
    background: var(--color-primary);
}

.SagewisePriceBtn:hover {
    background: var(--color-primary);
    color: #fff;
}

/* PRACTICE */
.SagewisePracticeSection {
    padding: 100px 0;
    background: #2a141f;
}

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

.SagewisePracticeTextCol {
    flex: 1.2;
    min-width: 300px;
}

.SagewisePracticeImageCol {
    flex: 1;
    min-width: 300px;
}

.SagewisePracticeImg {
    width: 100%;
    border-radius: 30px;
    border: 2px solid var(--color-secondary);
}

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

.SagewiseCheckList li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.SagewiseCheckList li::before {
    content: "✔";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--color-secondary);
    color: var(--color-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-size: 14px;
}

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

.SagewiseBgAlt {
    background: #351827;
}

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

.SagewiseInfoHeading {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--color-primary);
}

.SagewiseInfoPara {
    margin-bottom: 20px;
    font-size: 18px;
    opacity: 0.85;
}

.SagewiseSubHeading {
    font-size: 22px;
    margin: 30px 0 20px;
    color: var(--color-secondary);
}

.SagewiseInfoList {
    margin-bottom: 30px;
    padding-left: 20px;
}

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

/* CONTACT FORM */
.SagewiseContactSection {
    padding: 100px 0;
}

.SagewiseFormBox {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.SagewiseFormTitle {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.SagewiseFormSubtitle {
    text-align: center;
    opacity: 0.7;
    margin-bottom: 40px;
}

.SagewiseInputGroup {
    margin-bottom: 20px;
}

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

.SagewiseInput, .SagewiseTextarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.SagewiseInput:focus, .SagewiseTextarea:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.1);
}

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

.SagewiseCheckboxGroup {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.SagewiseCheckboxGroup a {
    color: var(--color-secondary);
}

.SagewiseSubmitBtn {
    width: 100%;
    padding: 20px;
    background: var(--color-primary);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.SagewiseSubmitBtn:hover {
    background: #ff5eb1;
    transform: translateY(-2px);
}

/* FOOTER */
.SagewiseFooterSection {
    padding: 80px 0 40px;
    background: #1a0a13;
    border-top: 4px solid var(--color-primary);
}

.SagewiseFooterTop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.SagewiseFooterLogo {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
}

.SagewiseFooterContact p {
    margin-bottom: 10px;
}

.SagewiseFooterContact a {
    color: var(--color-secondary);
    text-decoration: none;
}

.SagewiseFooterBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.SagewiseCopy {
    margin-bottom: 20px;
    opacity: 0.6;
}

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

.SagewiseFooterLinks a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 14px;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
    .SagewiseHeroTitle { font-size: 36px; }
    .SagewisePriceCardFeatured { transform: scale(1); }
    .SagewiseAudienceItem { flex: 1 1 calc(50% - 30px); }
}

@media (max-width: 768px) {
    .SagewiseBurgerLabel { display: flex; }
    .SagewiseNavMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-bg);
        transition: 0.4s;
        z-index: 999;
    }
    .SagewiseMenuList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .SagewiseBurgerInput:checked ~ .SagewiseNavMenu { left: 0; }
    .SagewiseHeroSection { padding: 60px 0; }
    .SagewiseHeroFlex { flex-direction: column-reverse; }
    .SagewiseAudienceItem { flex: 1 1 100%; }
    .SagewiseFormBox { padding: 30px; }
}