/* ./assets/style.css */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.AbCdEfGhIjKl {
    background-color: #0B0020;
    color: #E0E0E0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
header.MnBvCxZlKjHg {
    background: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid #B98CFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.3);
}

.PoIuYtReWqAs {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.ZxCvBnMlKjHg {
    font-size: 1.8rem;
    font-weight: 800;
    color: #B98CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.5);
}

.QwErTyUiOpAs ul {
    display: flex;
    list-style: none;
}

.QwErTyUiOpAs ul li {
    margin-left: 1.5rem;
}

.QwErTyUiOpAs ul li a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.QwErTyUiOpAs ul li a:hover {
    color: #B98CFF;
    text-shadow: 0 0 5px #B98CFF;
}

/* Mobile Menu */
.PlmKjnBhuVgy {
    display: none;
}

.TgyBhujmKoLi {
    display: none;
}

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

.RfvtgByhnUjm span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #B98CFF;
    transition: 0.3s;
}

.WsxEdcRfvTgb {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    background: #0B0020;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 999;
}

.TgyBhujmKoLi:checked ~ .WsxEdcRfvTgb {
    height: 100vh;
}

.WsxEdcRfvTgb a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Hero Section */
.QazWsxEdcRfv {
    padding: 100px 20px;
    position: relative;
}

.TgbYhnUjmIko {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.IkOlPzMnbVcx {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
    border: 1px solid rgba(185, 140, 255, 0.3);
    object-fit: cover;
}

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

h1.MnBvCxZlKjHg {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #B98CFF;
}

.VcXzLkJhGfDs p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #CCCCCC;
}

.BtnPrimaryGlow {
    display: inline-block;
    background-color: #B98CFF;
    color: #0B0020;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.6);
}

.BtnPrimaryGlow:hover {
    background-color: #ffffff;
    box-shadow: 0 0 30px #B98CFF;
    transform: translateY(-2px);
}

.BtnSecondaryUV {
    display: inline-block;
    background-color: transparent;
    color: #B98CFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #B98CFF;
    cursor: pointer;
}

.BtnSecondaryUV:hover {
    background-color: rgba(185, 140, 255, 0.1);
    box-shadow: 0 0 15px #B98CFF;
}

/* Sections Common */
.ContainerFull {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.TitleCenter {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #B98CFF;
}

.TextCenter {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Grid Layouts */
.GridColumnsSix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.CardItemStyle {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(185, 140, 255, 0.1);
    transition: 0.3s;
}

.CardItemStyle:hover {
    background: rgba(185, 140, 255, 0.08);
    border-color: #B98CFF;
    transform: translateY(-5px);
}

.IconWrapper {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(185, 140, 255, 0.3);
    margin-bottom: 15px;
}

/* Pricing */
.PriceGridSystem {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.PriceCardItem {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(185, 140, 255, 0.2);
}

.FeaturedCard {
    border: 2px solid #B98CFF;
    transform: scale(1.05);
    background: rgba(185, 140, 255, 0.05);
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.1);
}

.PriceHeader {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #B98CFF;
    margin-bottom: 2rem;
}

.PriceList {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.PriceList li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

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

/* Checklist */
.ChecklistItems {
    list-style: none;
    margin-bottom: 2rem;
}

.ChecklistItems li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.ChecklistItems li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 2px;
    background: #B98CFF;
}

.ReverseRow {
    flex-direction: row-reverse;
}

/* Quote */
.QuoteSection {
    background: #0F002A;
    padding: 100px 20px;
}

.QuoteBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.MainQuote {
    font-size: 1.8rem;
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 30px;
    position: relative;
}

.MainQuote::before {
    content: "“";
    font-size: 5rem;
    color: #B98CFF;
    position: absolute;
    left: -40px;
    top: -30px;
    opacity: 0.3;
}

.QuoteAuthor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.AuthorAvatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #B98CFF;
}

/* FAQ */
.FaqContainer {
    padding: 80px 20px;
}

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

.FaqItem {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(185, 140, 255, 0.1);
}

.FaqItem summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.FaqItem summary::after {
    content: "+";
    color: #B98CFF;
    font-size: 1.5rem;
}

.FaqItem[open] summary::after {
    content: "-";
}

.FaqItem p {
    padding: 0 20px 20px;
    color: #AAAAAA;
}

/* Content Sections */
.ContentRichSection {
    background: #0B0020;
    padding: 80px 20px;
}

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

.TextContentBlock h3 {
    color: #B98CFF;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.TextContentBlock p {
    margin-bottom: 1.5rem;
}

.TextContentBlock ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

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

/* Form */
.FormSectionOuter {
    background: #0F002A;
    padding: 100px 20px;
}

.ContainerSmall {
    max-width: 600px;
    margin: 0 auto;
}

.MainFormStyle {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.InputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.InputGroup label {
    font-weight: 600;
    color: #B98CFF;
}

.InputGroup input, .InputGroup textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(185, 140, 255, 0.3);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.InputGroup input:focus, .InputGroup textarea:focus {
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.3);
}

.CheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.CheckboxGroup input {
    margin-top: 5px;
}

.CheckboxGroup a {
    color: #B98CFF;
}

/* Footer */
.FooterOuterBlock {
    background: #050010;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
}

.FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.FooterLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #B98CFF;
}

.FooterContact a {
    color: #E0E0E0;
    text-decoration: none;
}

.FooterDivider {
    height: 1px;
    background: rgba(185, 140, 255, 0.1);
    margin-bottom: 30px;
}

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

.CopyrightText {
    font-size: 0.9rem;
    color: #888888;
}

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

.FooterLinks a {
    color: #888888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.FooterLinks a:hover {
    color: #B98CFF;
}

/* Responsiveness */
@media (max-width: 992px) {
    h1.MnBvCxZlKjHg {
        font-size: 2.8rem;
    }
    .PriceCardItem.FeaturedCard {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .QwErTyUiOpAs {
        display: none;
    }
    .PlmKjnBhuVgy {
        display: block;
    }
    .TgbYhnUjmIko {
        flex-direction: column;
    }
    .ReverseRow {
        flex-direction: column;
    }
    h1.MnBvCxZlKjHg {
        font-size: 2.2rem;
    }
    .FooterTop, .FooterBottom {
        flex-direction: column;
        text-align: center;
    }
    .FooterLinks {
        justify-content: center;
    }
}