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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #111827;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.WiwuwoCenterCenterText {
    text-align: center;
}

/* HEADER */
.WiwuwoCenterHeader {
    background-color: #111827;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.WiwuwoCenterHeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.WiwuwoCenterNavLink {
    color: #c4b5fd;
    font-weight: 500;
    font-size: 16px;
}

.WiwuwoCenterNavLink:hover {
    color: #4f46e5;
}

.WiwuwoCenterMenuToggle {
    display: none;
}

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

.WiwuwoCenterBurger span {
    width: 30px;
    height: 3px;
    background-color: #f8fafc;
    border-radius: 2px;
}

/* DECORATIVE PANEL */
.WiwuwoCenterDecorativePanel {
    height: 40px;
    background-color: #e0e7ff;
    width: 100%;
    border-bottom: 1px solid #c7d2fe;
}

/* NEON DIVIDER */
.WiwuwoCenterNeonDivider {
    height: 2px;
    width: 80%;
    margin: 40px auto;
    background-color: #4f46e5;
    box-shadow: 0 0 10px #4f46e5, 0 0 20px #c4b5fd;
}

/* HERO SECTION */
.WiwuwoCenterHeroSection {
    padding: 80px 0;
}

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

.WiwuwoCenterHeroImageWrapper {
    flex: 1;
    position: relative;
}

.WiwuwoCenterHeroImg {
    border-radius: 24px;
    box-shadow: 20px 20px 0 #c4b5fd;
}

.WiwuwoCenterBadge {
    position: absolute;
    top: 20px;
    left: -20px;
    background-color: #4f46e5;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.4);
}

.WiwuwoCenterHeroContent {
    flex: 1;
}

.WiwuwoCenterHeroTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111827;
}

.WiwuwoCenterHeroText {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4b5563;
}

.WiwuwoCenterHeroSubText {
    margin-bottom: 35px;
    color: #6b7280;
}

.WiwuwoCenterCtaButton {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4f46e5;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

.WiwuwoCenterCtaButton:hover {
    background-color: #3730a3;
    transform: translateY(-2px);
}

/* EXPERT QUOTE */
.WiwuwoCenterExpertSection {
    padding: 100px 0;
    background-color: #111827;
    color: #f8fafc;
}

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

.WiwuwoCenterQuoteText {
    font-size: 32px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
}

.WiwuwoCenterQuoteText::before {
    content: "“";
    font-size: 100px;
    position: absolute;
    top: -50px;
    left: -40px;
    color: #4f46e5;
    opacity: 0.5;
}

.WiwuwoCenterExpertName {
    font-size: 24px;
    font-weight: 700;
    color: #c4b5fd;
}

.WiwuwoCenterExpertTitle {
    font-size: 16px;
    color: #94a3b8;
}

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

.WiwuwoCenterSectionTitle {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.WiwuwoCenterFaqGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.WiwuwoCenterFaqItem {
    width: calc(50% - 10px);
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.WiwuwoCenterFaqSummary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f5f9;
}

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

.WiwuwoCenterFaqContent {
    padding: 20px;
    color: #4b5563;
    border-top: 1px solid #e2e8f0;
}

/* BENEFITS SECTION */
.WiwuwoCenterBenefitsSection {
    padding: 80px 0;
}

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

.WiwuwoCenterBenefitsContent {
    flex: 1;
}

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

.WiwuwoCenterBenefitItem {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.WiwuwoCenterBenefitIcon {
    font-size: 24px;
    background-color: #c4b5fd;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.WiwuwoCenterBenefitName {
    font-size: 20px;
    margin-bottom: 5px;
}

.WiwuwoCenterBenefitDesc {
    color: #64748b;
}

.WiwuwoCenterBenefitsImageWrapper {
    flex: 1;
}

.WiwuwoCenterBenefitsImg {
    border-radius: 24px;
    box-shadow: -20px 20px 0 #4f46e5;
}

/* PRICING SECTION */
.WiwuwoCenterPricingSection {
    padding: 100px 0;
    background-color: #f1f5f9;
}

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

.WiwuwoCenterPriceCard {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.WiwuwoCenterPriceCardPopular {
    border: 3px solid #4f46e5;
    transform: scale(1.05);
    z-index: 10;
}

.WiwuwoCenterPopularBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4f46e5;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.WiwuwoCenterPriceTitle {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.WiwuwoCenterPriceValue {
    font-size: 40px;
    font-weight: 800;
    color: #4f46e5;
    text-align: center;
    margin-bottom: 30px;
}

.WiwuwoCenterPriceFeatures {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.WiwuwoCenterPriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.WiwuwoCenterPriceBtn {
    text-align: center;
    padding: 12px;
    background-color: #111827;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}

.WiwuwoCenterPriceBtn:hover {
    background-color: #4f46e5;
}

/* TARGET AUDIENCE */
.WiwuwoCenterTargetSection {
    padding: 80px 0;
}

.WiwuwoCenterTargetIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #4b5563;
}

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

.WiwuwoCenterTargetCard {
    width: calc(33.333% - 20px);
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(196, 181, 253, 0.2);
    border-bottom: 4px solid #c4b5fd;
    transition: transform 0.3s ease;
}

.WiwuwoCenterTargetCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

/* EXTRA TEXT SECTIONS */
.WiwuwoCenterExtraSection {
    padding: 60px 0;
}

.WiwuwoCenterExtraPara {
    margin-bottom: 25px;
    font-size: 18px;
    color: #374151;
}

.WiwuwoCenterExtraGrid {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.WiwuwoCenterExtraCard {
    flex: 1;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    border-left: 5px solid #4f46e5;
}

.WiwuwoCenterExtraCard h4 {
    margin-bottom: 10px;
    color: #111827;
}

.WiwuwoCenterSimpleList {
    margin: 30px 0;
    padding-left: 40px;
}

.WiwuwoCenterSimpleList li {
    margin-bottom: 15px;
    position: relative;
    list-style: none;
}

.WiwuwoCenterSimpleList li::before {
    content: "✔";
    position: absolute;
    left: -30px;
    color: #4f46e5;
    font-weight: bold;
}

.WiwuwoCenterAdviceGrid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.WiwuwoCenterAdviceBox {
    padding: 20px;
    background-color: #e0e7ff;
    border-radius: 8px;
    color: #1e1b4b;
}

/* FORM SECTION */
.WiwuwoCenterFormSection {
    padding: 100px 0;
    background-color: #111827;
    color: #fff;
}

.WiwuwoCenterFormIntro {
    margin-bottom: 40px;
    color: #94a3b8;
}

.WiwuwoCenterFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1f2937;
    padding: 40px;
    border-radius: 20px;
}

.WiwuwoCenterFormGroup {
    margin-bottom: 20px;
}

.WiwuwoCenterFormGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.WiwuwoCenterFormGroup input,
.WiwuwoCenterFormGroup textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #4b5563;
    background-color: #374151;
    color: #fff;
}

.WiwuwoCenterCheckboxGroup {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.WiwuwoCenterCheckboxGroup a {
    color: #c4b5fd;
    text-decoration: underline;
}

.WiwuwoCenterSubmitBtn {
    width: 100%;
    padding: 15px;
    background-color: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.WiwuwoCenterSubmitBtn:hover {
    background-color: #3730a3;
}

/* FOOTER */
.WiwuwoCenterFooter {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px;
}

.WiwuwoCenterFooterTop {
    text-align: center;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.WiwuwoCenterFooterLogo {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.WiwuwoCenterFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.WiwuwoCenterFooterLinks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.WiwuwoCenterFooterLinks a:hover {
    color: #c4b5fd;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .WiwuwoCenterHeroFlex, 
    .WiwuwoCenterBenefitsFlex {
        flex-direction: column;
    }
    
    .WiwuwoCenterHeroImageWrapper, .WiwuwoCenterHeroContent,
    .WiwuwoCenterBenefitsContent, .WiwuwoCenterBenefitsImageWrapper {
        width: 100%;
        text-align: center;
    }

    .WiwuwoCenterHeroImg, .WiwuwoCenterBenefitsImg {
        margin: 0 auto;
    }

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

    .WiwuwoCenterPriceCard {
        width: 100%;
        max-width: 450px;
    }

    .WiwuwoCenterTargetCard {
        width: calc(50% - 20px);
    }
}

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

    .WiwuwoCenterNav {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #111827;
        padding: 20px;
    }

    .WiwuwoCenterNavList {
        flex-direction: column;
        text-align: center;
    }

    .WiwuwoCenterMenuToggle:checked ~ .WiwuwoCenterNav {
        display: block;
    }

    .WiwuwoCenterHeroTitle {
        font-size: 32px;
    }

    .WiwuwoCenterFaqItem {
        width: 100%;
    }

    .WiwuwoCenterExtraGrid {
        flex-direction: column;
    }

    .WiwuwoCenterTargetCard {
        width: 100%;
    }

    .WiwuwoCenterFooterBottom {
        flex-direction: column;
        text-align: center;
    }
}