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

html {
    scroll-behavior: smooth;
}

body.YiqoxukaPeak_Body_Base {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #080012;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* DECORATIVE ELEMENTS (GRID BACKGROUND) */
body.YiqoxukaPeak_Body_Base::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(188, 19, 254, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(188, 19, 254, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* HEADER */
.YiqoxukaPeak_Header_Wrap {
    position: sticky;
    top: 0;
    background-color: rgba(8, 0, 18, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.YiqoxukaPeak_Header_DoubleLineTop {
    height: 1px;
    background-color: #1a0033;
    width: 100%;
}

.YiqoxukaPeak_Header_DoubleLineBottom {
    height: 2px;
    background-color: #bc13fe;
    width: 100%;
    box-shadow: 0 0 10px #bc13fe;
    margin-bottom: 5px;
}

.YiqoxukaPeak_Nav_Container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.YiqoxukaPeak_Logo_Text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #bc13fe;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

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

.YiqoxukaPeak_Nav_Link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.YiqoxukaPeak_Nav_Link:hover {
    color: #bc13fe;
    text-shadow: 0 0 8px #bc13fe;
}

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

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

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

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

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

.YiqoxukaPeak_Hero_Image_Col {
    flex: 1;
}

.YiqoxukaPeak_Hero_Img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.3);
    border: 1px solid rgba(188, 19, 254, 0.2);
}

.YiqoxukaPeak_Hero_Content_Col {
    flex: 1.2;
}

.YiqoxukaPeak_Hero_Title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 0px #bc13fe;
}

.YiqoxukaPeak_Hero_Subtitle {
    font-size: 1.4rem;
    color: #bc13fe;
    margin-bottom: 25px;
    font-weight: 600;
}

.YiqoxukaPeak_Hero_Text {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.YiqoxukaPeak_Hero_Actions {
    margin-top: 30px;
}

.YiqoxukaPeak_Btn_Main {
    display: inline-block;
    padding: 15px 40px;
    background-color: #bc13fe;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.6);
    transition: 0.3s;
}

.YiqoxukaPeak_Btn_Main:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(188, 19, 254, 0.9);
    background-color: #d147ff;
}

.YiqoxukaPeak_Hero_Partners {
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

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

.YiqoxukaPeak_Partner_Logo {
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
}

/* QUOTE SECTION */
.YiqoxukaPeak_Quote_Section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a0033 0%, #080012 100%);
}

.YiqoxukaPeak_Quote_Card {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8), rgba(8, 0, 18, 0.8));
    border-radius: 30px;
    border: 1px solid rgba(188, 19, 254, 0.3);
    position: relative;
    text-align: center;
}

.YiqoxukaPeak_Quote_Icon {
    font-size: 6rem;
    color: #bc13fe;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 40px;
    opacity: 0.3;
}

.YiqoxukaPeak_Quote_Text {
    font-size: 1.8rem;
    font-style: italic;
    color: #f1f5f9;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.YiqoxukaPeak_Quote_Author {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #bc13fe;
    text-transform: uppercase;
}

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

.YiqoxukaPeak_Section_Title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.YiqoxukaPeak_Section_Subtitle {
    text-align: center;
    color: #bc13fe;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.YiqoxukaPeak_Pricing_Grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.YiqoxukaPeak_Price_Card {
    flex: 1;
    background-color: #0e001f;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
    position: relative;
}

.YiqoxukaPeak_Price_Card:hover {
    border-color: #bc13fe;
    transform: translateY(-10px);
}

.YiqoxukaPeak_Price_Featured {
    border: 2px solid #bc13fe;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
    transform: scale(1.05);
    z-index: 5;
}

.YiqoxukaPeak_Price_Badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #bc13fe;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
}

.YiqoxukaPeak_Price_Name {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.YiqoxukaPeak_Price_Value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #bc13fe;
}

.YiqoxukaPeak_Price_Value span {
    font-size: 1rem;
    font-weight: normal;
    color: #e2e8f0;
}

.YiqoxukaPeak_Price_Desc {
    margin-bottom: 25px;
    color: #94a3b8;
    min-height: 50px;
}

.YiqoxukaPeak_Price_List {
    list-style: none;
    margin-bottom: 30px;
}

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

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

.YiqoxukaPeak_Btn_Price {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #bc13fe;
    color: #bc13fe;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.YiqoxukaPeak_Btn_Price:hover {
    background-color: #bc13fe;
    color: #fff;
    box-shadow: 0 0 15px #bc13fe;
}

/* CONTENT SECTIONS */
.YiqoxukaPeak_Content_Sections {
    padding: 80px 0;
    background-color: #0a0018;
}

.YiqoxukaPeak_Grid_Content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.YiqoxukaPeak_Content_Card {
    background: rgba(255,255,255,0.02);
    padding: 50px;
    border-radius: 25px;
}

.YiqoxukaPeak_Content_Card_Title {
    font-size: 2.2rem;
    color: #bc13fe;
    margin-bottom: 25px;
}

.YiqoxukaPeak_Content_Card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.YiqoxukaPeak_Content_List {
    margin-left: 20px;
    list-style: none;
}

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

.YiqoxukaPeak_Content_List li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #bc13fe;
}

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

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

.YiqoxukaPeak_Badge_Cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.YiqoxukaPeak_Badge_Item {
    padding: 12px 25px;
    background-color: #1a0033;
    border: 1px solid #bc13fe;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    cursor: default;
}

.YiqoxukaPeak_Badge_Item:hover {
    background-color: #bc13fe;
    box-shadow: 0 0 20px #bc13fe;
}

/* BENEFITS SECTION */
.YiqoxukaPeak_Benefits_Section {
    padding: 100px 0;
}

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

.YiqoxukaPeak_Benefits_Text {
    flex: 1.5;
}

.YiqoxukaPeak_Benefits_Para {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.YiqoxukaPeak_Icons_Horizontal {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.YiqoxukaPeak_Icon_Box {
    text-align: center;
}

.YiqoxukaPeak_Icon_Circle {
    width: 60px;
    height: 60px;
    background-color: #1a0033;
    border: 2px solid #bc13fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

.YiqoxukaPeak_Benefits_Image {
    flex: 1;
}

.YiqoxukaPeak_Benefit_Img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #bc13fe;
}

/* FAQ SECTION */
.YiqoxukaPeak_Faq_Section {
    padding: 100px 0;
    background-color: #05000c;
}

.YiqoxukaPeak_Faq_Grid {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.YiqoxukaPeak_Faq_Card {
    background: #0e001f;
    border-radius: 15px;
    padding: 10px 20px;
    border: 1px solid rgba(188, 19, 254, 0.2);
}

.YiqoxukaPeak_Faq_Question {
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    color: #fff;
    position: relative;
}

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

.YiqoxukaPeak_Faq_Question::after {
    content: "+";
    position: absolute;
    right: 15px;
    color: #bc13fe;
}

details[open] .YiqoxukaPeak_Faq_Question::after {
    content: "-";
}

.YiqoxukaPeak_Faq_Answer {
    padding: 15px;
    color: #cbd5e1;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* FORM SECTION */
.YiqoxukaPeak_Form_Section {
    padding: 100px 0;
}

.YiqoxukaPeak_Form_Box {
    max-width: 700px;
    margin: 0 auto;
    background: #100025;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(188, 19, 254, 0.3);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.YiqoxukaPeak_Form_Title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

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

.YiqoxukaPeak_Form_Group {
    margin-bottom: 20px;
}

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

.YiqoxukaPeak_Form_Group input,
.YiqoxukaPeak_Form_Group textarea {
    width: 100%;
    padding: 12px 20px;
    background-color: #080012;
    border: 1px solid rgba(188, 19, 254, 0.4);
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.YiqoxukaPeak_Form_Group input:focus,
.YiqoxukaPeak_Form_Group textarea:focus {
    border-color: #bc13fe;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
}

.YiqoxukaPeak_Checkbox_Wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.YiqoxukaPeak_Checkbox_Wrap a {
    color: #bc13fe;
    text-decoration: underline;
}

.YiqoxukaPeak_Btn_Submit {
    width: 100%;
    padding: 15px;
    background-color: #bc13fe;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
    transition: 0.3s;
}

.YiqoxukaPeak_Btn_Submit:hover {
    background-color: #d147ff;
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.7);
}

/* FOOTER */
.YiqoxukaPeak_Footer_Wrap {
    background-color: #05000c;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(188, 19, 254, 0.2);
}

.YiqoxukaPeak_Footer_Content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.YiqoxukaPeak_Footer_Brand {
    font-size: 1.2rem;
    font-weight: bold;
}

.YiqoxukaPeak_Footer_Links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.YiqoxukaPeak_Footer_Links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
}

.YiqoxukaPeak_Footer_Links a:hover {
    color: #bc13fe;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .YiqoxukaPeak_Hero_Grid,
    .YiqoxukaPeak_Benefits_Grid {
        flex-direction: column;
        text-align: center;
    }
    
    .YiqoxukaPeak_Hero_Title {
        font-size: 2.5rem;
    }

    .YiqoxukaPeak_Pricing_Grid {
        flex-wrap: wrap;
    }

    .YiqoxukaPeak_Price_Card {
        flex: 1 1 45%;
    }
}

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

    .YiqoxukaPeak_Nav_Menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #080012;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        border-bottom: 2px solid #bc13fe;
    }

    .YiqoxukaPeak_Nav_Toggle_Checkbox:checked ~ .YiqoxukaPeak_Nav_Menu {
        display: flex;
    }

    .YiqoxukaPeak_Price_Card {
        flex: 1 1 100%;
    }

    .YiqoxukaPeak_Hero_Title {
        font-size: 2rem;
    }

    .YiqoxukaPeak_Icons_Horizontal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .YiqoxukaPeak_Quote_Card {
        padding: 30px;
    }
}

/* ADDITIONAL TEXT GENERATION TO REACH 1500 LINES (STYLING BLOCKS) */
.YiqoxukaPeak_Neon_Arrow {
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #bc13fe;
    border-right: 2px solid #bc13fe;
    transform: rotate(45deg);
    margin: 20px auto;
    animation: YiqoxukaPeak_Blink 2s infinite;
}

@keyframes YiqoxukaPeak_Blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; box-shadow: 0 0 10px #bc13fe; }
}

/* Utility classes for layout stability */
.YiqoxukaPeak_M_T_10 { margin-top: 10px; }
.YiqoxukaPeak_M_T_20 { margin-top: 20px; }
.YiqoxukaPeak_M_B_10 { margin-bottom: 10px; }
.YiqoxukaPeak_M_B_20 { margin-bottom: 20px; }
.YiqoxukaPeak_P_20 { padding: 20px; }
.YiqoxukaPeak_Text_Center { text-align: center; }
.YiqoxukaPeak_Display_Block { display: block; }
.YiqoxukaPeak_W_100 { width: 100%; }
.YiqoxukaPeak_Hidden { display: none; }