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

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* HEADER & NAV */
.MnOpQrStUvWx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 250, 255, 0.15);
}

.YzAbCdEfGhIj {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.KlMnOpQrStUv {
    font-size: 26px;
    font-weight: 800;
    color: #D9FAFF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.UvWxYzAbCdEf {
    display: flex;
    gap: 25px;
}

.UvWxYzAbCdEf a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* BURGER MENU (No JS) */
.WxYzAbCdEfGh {
    display: none;
}

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

.IjKlMnOpQrSt span {
    width: 30px;
    height: 3px;
    background: #D9FAFF;
    border-radius: 2px;
}

/* HERO SECTION */
.MnOpQrStUvWx-Hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #001a4d, #000F2B);
}

.QuickLinksRow {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
}

.IceButtonSmall {
    padding: 10px 20px;
    background: rgba(217, 250, 255, 0.05);
    border: 1px solid rgba(217, 250, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: #D9FAFF;
}

.IceButtonSmall:hover {
    background: rgba(217, 250, 255, 0.15);
    border-color: #D9FAFF;
}

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

.TwoColGrid.Inverted {
    flex-direction: row-reverse;
}

.ColLeft, .ColRight {
    flex: 1;
}

.MainTitleH1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.SubTitleP {
    font-size: 20px;
    color: #D9FAFF;
    margin-bottom: 20px;
    font-weight: 300;
}

.TextParagraph {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
}

.CtaButtonIce {
    display: inline-block;
    padding: 18px 40px;
    background: #D9FAFF;
    color: #000F2B;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.3);
}

.CtaButtonIce:hover {
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(217, 250, 255, 0.6);
    transform: translateY(-2px);
}

/* PRICING */
.MnOpQrStUvWx-Pricing {
    padding: 100px 0;
    background: #000F2B;
}

.SectionTitleH2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.SectionTitleH2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D9FAFF;
    margin: 20px auto 0;
}

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

.PriceCardGlass {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
}

.PriceCardGlass:hover {
    border-color: rgba(217, 250, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
}

.PriceCardGlass.Featured {
    border: 2px solid #D9FAFF;
    transform: scale(1.05);
}

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

.PriceValue {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.PriceList {
    margin-bottom: 30px;
    flex-grow: 1;
}

.PriceList li {
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.PriceButton, .PriceButtonActive {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    font-weight: 600;
}

.PriceButton {
    border: 1px solid #D9FAFF;
    color: #D9FAFF;
}

.PriceButton:hover {
    background: rgba(217, 250, 255, 0.1);
}

.PriceButtonActive {
    background: #D9FAFF;
    color: #000F2B;
}

/* TARGET AUDIENCE */
.MnOpQrStUvWx-Target {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.IntroTextCenter {
    text-align: center;
    max-width: 800px;
    margin: -40px auto 50px;
    color: rgba(255, 255, 255, 0.7);
}

.TargetFlexContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.TargetCard {
    flex: 1;
    min-width: 250px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.TargetImg {
    margin-bottom: 20px;
    border: 1px solid rgba(217, 250, 255, 0.2);
}

.TargetCard h4 {
    color: #D9FAFF;
    margin-bottom: 10px;
    font-size: 18px;
}

.TargetDetailedList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.TargetDetailedList li {
    background: rgba(217, 250, 255, 0.03);
    padding: 15px;
    border-left: 3px solid #D9FAFF;
}

/* REVIEWS */
.MnOpQrStUvWx-Reviews {
    padding: 100px 0;
}

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

.ReviewItem {
    background: rgba(255, 255, 255, 0.04);
    padding: 40px;
    border-radius: 15px;
    font-style: italic;
    position: relative;
}

.ReviewItem::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(217, 250, 255, 0.1);
    line-height: 1;
}

.ReviewText {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ReviewAuthor {
    font-style: normal;
    font-weight: 700;
    color: #D9FAFF;
}

/* BENEFITS */
.MnOpQrStUvWx-Benefits {
    padding: 100px 0;
    background: #00081a;
}

.BenefitsListDetailed li {
    margin-bottom: 25px;
}

.BenefitsListDetailed strong {
    display: block;
    color: #D9FAFF;
    font-size: 19px;
    margin-bottom: 5px;
}

/* QUOTE */
.MnOpQrStUvWx-Quote {
    padding: 120px 0;
    background: linear-gradient(to bottom, #00081a, #000F2B);
}

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

.MainQuote {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #D9FAFF;
    font-weight: 300;
}

.QuoteAuthor {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.QuoteAuthor strong {
    font-size: 20px;
}

.IceDetails {
    background: rgba(217, 250, 255, 0.05);
    border: 1px dashed rgba(217, 250, 255, 0.3);
    border-radius: 8px;
    text-align: left;
}

.IceSummary {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #D9FAFF;
    outline: none;
}

.DetailsContent {
    padding: 0 25px 25px;
}

.DetailsContent p {
    margin-bottom: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

/* FAQ */
.MnOpQrStUvWx-Faq {
    padding: 100px 0;
}

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

.FaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(217, 250, 255, 0.1);
}

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

.FaqItem summary::after {
    content: '+';
    font-size: 24px;
    color: #D9FAFF;
}

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

.FaqAnswer {
    padding: 0 0 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* FORM */
.MnOpQrStUvWx-Form {
    padding: 100px 0;
}

.FormWrapperGlass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.FormSubtitle {
    text-align: center;
    margin: -40px 0 40px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.InputGroup label {
    font-size: 14px;
    font-weight: 600;
    color: #D9FAFF;
}

.InputGroup input, .InputGroup textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(217, 250, 255, 0.2);
    padding: 15px;
    border-radius: 5px;
    color: #FFF;
    font-family: inherit;
}

.InputGroup input:focus, .InputGroup textarea:focus {
    outline: none;
    border-color: #D9FAFF;
    box-shadow: 0 0 10px rgba(217, 250, 255, 0.2);
}

.CheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

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

.SubmitButtonIce {
    padding: 18px;
    background: #D9FAFF;
    color: #000F2B;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.SubmitButtonIce:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.4);
}

/* EXTRA SECTIONS */
.MnOpQrStUvWx-ExtraOne, .MnOpQrStUvWx-ExtraTwo, .MnOpQrStUvWx-ExtraThree {
    padding: 80px 0;
    border-top: 1px solid rgba(217, 250, 255, 0.05);
}

.LongTextContent p {
    margin-bottom: 25px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
}

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

.CustomListCheck li {
    padding-left: 35px;
    position: relative;
    font-size: 17px;
}

.CustomListCheck li::before {
    content: '❄';
    position: absolute;
    left: 0;
    color: #D9FAFF;
}

/* FOOTER */
.MnOpQrStUvWx-Footer {
    padding: 80px 0 40px;
    background: #000615;
    border-top: 2px solid #D9FAFF;
}

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

.FooterBrand {
    font-size: 28px;
    font-weight: 800;
    color: #D9FAFF;
}

.FooterContact p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.CopyrightText {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

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

.FooterLinks a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .TwoColGrid { flex-direction: column; text-align: center; }
    .TwoColGrid.Inverted { flex-direction: column; }
    .MainTitleH1 { font-size: 38px; }
    .ReviewGrid { grid-template-columns: 1fr; }
    .TargetDetailedList { grid-template-columns: 1fr; }
    .PricingGridFour { flex-direction: column; }
    .PriceCardGlass.Featured { transform: none; }
}

@media (max-width: 768px) {
    .UvWxYzAbCdEf {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000F2B;
        flex-direction: column;
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid #D9FAFF;
    }

    .WxYzAbCdEfGh:checked ~ .UvWxYzAbCdEf {
        display: flex;
    }

    .IjKlMnOpQrSt {
        display: flex;
    }
    
    .FormWrapperGlass { padding: 30px; }
}