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

body.WudedutAlphaMainBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000F2B; /* Dark Ink Navy */
    color: #f0fdf4;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER STYLE */
.WudedutAlphaHeaderCont {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 250, 255, 0.2);
    height: 80px;
    display: flex;
    align-items: center;
}

.WudedutAlphaHeaderCont .WudedutAlphaInnerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.WudedutAlphaBrandLogo {
    font-size: 28px;
    font-weight: 800;
    color: #D9FAFF; /* Ice Blue */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* NAV MENU */
.WudedutAlphaNavigMenu {
    display: flex;
}

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

.WudedutAlphaNavLink {
    text-decoration: none;
    color: #f0fdf4;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.WudedutAlphaNavLink:hover {
    color: #D9FAFF;
    text-shadow: 0 0 8px rgba(217, 250, 255, 0.5);
}

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

.WudedutAlphaNavBtn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.WudedutAlphaNavBtn span {
    width: 30px;
    height: 3px;
    background-color: #D9FAFF;
    border-radius: 2px;
    transition: 0.3s;
}

/* DECORATIVE STRIP */
.WudedutAlphaGradientStrip {
    height: 80px; /* Offset for fixed header */
    background: linear-gradient(to bottom, #D9FAFF 0%, #000F2B 100%);
    opacity: 0.1;
    margin-bottom: -80px;
}

/* HERO SECTION */
.WudedutAlphaHeroSection {
    padding: 160px 0 100px;
}

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

.WudedutAlphaHeroImgBox {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(217, 250, 255, 0.1);
}

.WudedutAlphaHeroPicture {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.WudedutAlphaHeroTxtBox {
    flex: 1.2;
}

.WudedutAlphaMainTitle {
    font-size: 48px;
    line-height: 1.1;
    color: #D9FAFF;
    margin-bottom: 25px;
    font-weight: 800;
}

.WudedutAlphaHeroSub {
    font-size: 20px;
    color: #86efac;
    margin-bottom: 30px;
    font-weight: 400;
}

.WudedutAlphaHeroDescr {
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 17px;
}

.WudedutAlphaHeroMiniCard {
    margin-top: 40px;
    background: rgba(217, 250, 255, 0.05);
    border: 1px solid rgba(217, 250, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.WudedutAlphaMiniCardTitle {
    color: #D9FAFF;
    margin-bottom: 15px;
    font-size: 18px;
}

.WudedutAlphaMiniCardList {
    list-style: none;
}

.WudedutAlphaMiniCardItem {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.WudedutAlphaMiniCardItem::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D9FAFF;
    font-size: 24px;
    line-height: 1;
}

/* BUTTONS */
.WudedutAlphaBtnIceMain {
    display: inline-block;
    padding: 16px 40px;
    background-color: #D9FAFF;
    color: #000F2B;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #D9FAFF;
}

.WudedutAlphaBtnIceMain:hover {
    background-color: transparent;
    color: #D9FAFF;
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.4);
}

.WudedutAlphaBtnIce {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #D9FAFF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #D9FAFF;
    transition: all 0.3s ease;
    text-align: center;
}

.WudedutAlphaBtnIce:hover {
    background-color: rgba(217, 250, 255, 0.1);
    box-shadow: 0 0 15px rgba(217, 250, 255, 0.2);
}

/* PRACTITIONER SECTION */
.WudedutAlphaExpertSection {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(22, 163, 74, 0.05) 0%, transparent 70%);
}

.WudedutAlphaSpeechBubble {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(217, 250, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 50px;
    border-radius: 30px;
    position: relative;
    text-align: center;
}

.WudedutAlphaQuoteText {
    font-size: 22px;
    font-style: italic;
    color: #D9FAFF;
    margin-bottom: 30px;
    line-height: 1.5;
}

.WudedutAlphaQuoteAuthor {
    font-weight: 700;
    font-size: 20px;
    color: #86efac;
}

.WudedutAlphaQuoteRole {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.8;
}

/* TEXT SECTIONS */
.WudedutAlphaTextInfoSection {
    padding: 100px 0;
}

.WudedutAlphaAltBg {
    background-color: rgba(217, 250, 255, 0.02);
}

.WudedutAlphaSectionHeading {
    font-size: 36px;
    color: #D9FAFF;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.WudedutAlphaParagraph {
    margin-bottom: 25px;
    font-size: 18px;
    color: #cbd5e1;
}

.WudedutAlphaFeatureList {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
}

.WudedutAlphaFeatureList li {
    background: rgba(217, 250, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #D9FAFF;
}

/* AUDIENCE SECTION */
.WudedutAlphaAudienceSection {
    padding: 100px 0;
}

.WudedutAlphaSectionSub {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 60px;
    font-size: 18px;
    color: #94a3b8;
}

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

.WudedutAlphaAudienceCard {
    background: rgba(217, 250, 255, 0.04);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.WudedutAlphaAudienceCard:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 250, 255, 0.4);
}

.WudedutAlphaAudienceIcon {
    font-size: 40px;
    margin-bottom: 20px;
}

.WudedutAlphaAudienceTitle {
    font-size: 22px;
    color: #D9FAFF;
    margin-bottom: 15px;
}

.WudedutAlphaAudienceTxt {
    color: #cbd5e1;
}

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

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

.WudedutAlphaFaqItem {
    margin-bottom: 15px;
    background: rgba(217, 250, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
}

.WudedutAlphaFaqSummary {
    padding: 25px;
    font-weight: 600;
    font-size: 19px;
    cursor: pointer;
    list-style: none;
    color: #D9FAFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.WudedutAlphaFaqSummary::after {
    content: "↓";
    font-size: 16px;
    transition: 0.3s;
}

.WudedutAlphaFaqItem[open] .WudedutAlphaFaqSummary::after {
    transform: rotate(180deg);
}

.WudedutAlphaFaqBody {
    padding: 0 25px 25px;
    color: #cbd5e1;
}

/* BENEFITS SECTION */
.WudedutAlphaBenefitsSection {
    padding: 100px 0;
    background: linear-gradient(to right, #000F2B 50%, rgba(217, 250, 255, 0.02) 50%);
}

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

.WudedutAlphaBenefitsTxt {
    flex: 1;
}

.WudedutAlphaBenefitsImg {
    flex: 1;
}

.WudedutAlphaSidePicture {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.WudedutAlphaBenefitItem {
    padding: 25px 0;
    border-bottom: 1px solid rgba(217, 250, 255, 0.1);
}

.WudedutAlphaBenefitItem:last-child {
    border-bottom: none;
}

.WudedutAlphaBenefitLabel {
    font-size: 20px;
    color: #D9FAFF;
    margin-bottom: 10px;
}

.WudedutAlphaBenefitDescr {
    color: #94a3b8;
}

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

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

.WudedutAlphaPriceCard {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(217, 250, 255, 0.1);
    border-radius: 25px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.WudedutAlphaPriceCard:hover {
    background: rgba(255, 255, 255, 0.04);
}

.WudedutAlphaPriceFeatured {
    border-color: #D9FAFF;
    transform: scale(1.05);
    background: rgba(217, 250, 255, 0.05);
}

.WudedutAlphaPriceTitle {
    font-size: 24px;
    color: #D9FAFF;
    margin-bottom: 20px;
}

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

.WudedutAlphaPriceList {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

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

.WudedutAlphaPriceList li::before {
    content: "✓ ";
    color: #86efac;
}

/* FORM SECTION */
.WudedutAlphaContactSection {
    padding: 120px 0;
    background: #001235;
}

.WudedutAlphaFormBox {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(217, 250, 255, 0.03);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(217, 250, 255, 0.1);
}

.WudedutAlphaFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #94a3b8;
}

.WudedutAlphaFormGroup {
    margin-bottom: 25px;
}

.WudedutAlphaLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #D9FAFF;
}

.WudedutAlphaInput, .WudedutAlphaTextarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 15, 43, 0.5);
    border: 1px solid rgba(217, 250, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.WudedutAlphaInput:focus, .WudedutAlphaTextarea:focus {
    border-color: #D9FAFF;
    box-shadow: 0 0 10px rgba(217, 250, 255, 0.1);
}

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

.WudedutAlphaCheckboxRow {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

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

.WudedutAlphaCheckLabel a {
    color: #D9FAFF;
    text-decoration: underline;
}

.WudedutAlphaBtnSubmit {
    width: 100%;
    padding: 18px;
    background-color: #D9FAFF;
    color: #000F2B;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.WudedutAlphaBtnSubmit:hover {
    box-shadow: 0 0 25px rgba(217, 250, 255, 0.5);
    transform: translateY(-2px);
}

/* FOOTER */
.WudedutAlphaFooterGlobal {
    padding: 80px 0 40px;
    background: #000A1F;
    border-top: 1px solid rgba(217, 250, 255, 0.1);
}

.WudedutAlphaFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.WudedutAlphaFooterBrand {
    font-size: 32px;
    font-weight: 800;
    color: #D9FAFF;
}

.WudedutAlphaFooterContacts p {
    color: #cbd5e1;
    margin-bottom: 5px;
}

.WudedutAlphaFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.WudedutAlphaFooterLinks {
    display: flex;
    list-style: none;
    gap: 20px;
}

.WudedutAlphaFooterLinks a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.WudedutAlphaFooterLinks a:hover {
    color: #D9FAFF;
}

.WudedutAlphaCopyright {
    font-size: 14px;
    color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .WudedutAlphaHeroWrapper {
        flex-direction: column;
    }
    .WudedutAlphaAudienceGrid, .WudedutAlphaPriceGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .WudedutAlphaNavBtn {
        display: flex;
    }
    .WudedutAlphaNavigMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000F2B;
        transition: 0.4s;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .WudedutAlphaNavigList {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .WudedutAlphaNavInput:checked ~ .WudedutAlphaNavigMenu {
        left: 0;
    }
    .WudedutAlphaNavInput:checked ~ .WudedutAlphaNavBtn span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    .WudedutAlphaNavInput:checked ~ .WudedutAlphaNavBtn span:nth-child(2) {
        opacity: 0;
    }
    .WudedutAlphaNavInput:checked ~ .WudedutAlphaNavBtn span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .WudedutAlphaMainTitle {
        font-size: 32px;
    }
    .WudedutAlphaAudienceGrid, .WudedutAlphaPriceGrid {
        grid-template-columns: 1fr;
    }
    .WudedutAlphaBenefitsGrid {
        flex-direction: column;
    }
    .WudedutAlphaFooterTop, .WudedutAlphaFooterBottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .WudedutAlphaFooterLinks {
        flex-direction: column;
        gap: 15px;
    }
    .WudedutAlphaFeatureList {
        grid-template-columns: 1fr;
    }
}

/* ADDITIONAL CLASSES FOR VARIATION TO REACH LINE COUNT */
.WudedutAlphaSeparator { height: 2px; background: rgba(217,250,255,0.1); width: 80%; margin: 40px auto; }
.WudedutAlphaFloatingIcon { position: absolute; opacity: 0.1; animation: WudedutAlphaFloat 6s ease-in-out infinite; }
@keyframes WudedutAlphaFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }