/* Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    background: #f2f7fb;
    color: #222;
    min-height: 100vh;
}

/* Layout shells */
.page-shell-x9 { min-height: 100vh; display: flex; flex-direction: column; }
.topbar-z1 {
    background: #383fc7;
    color: #fff;
    box-shadow: 0 2px 16px 0 rgba(36,46,94,0.08);
    position: sticky; top: 0; z-index: 100;
}
.flex-wrap-y7 {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 32px; max-width: 1200px; margin: 0 auto;
}
.logo-c1 {
    font-size: 2rem; font-weight: 900; letter-spacing: 2px; color: #fff;
}
.menu-ctrl-x {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px;
    width: 34px; height: 30px; align-items: flex-end;
}
.menu-ctrl-x .bar-x, .menu-ctrl-x .bar-y, .menu-ctrl-x .bar-z {
    width: 100%; height: 4px; background: #fff; border-radius: 2px;
}
.nav-drawer-z {
    display: flex; gap: 28px;
}
.nav-drawer-z a {
    color: #e6ecfc;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .5px;
    text-decoration: none;
    transition: color .2s;
}
.nav-drawer-z a:hover { color: #f7bb2e; }

/* Showcase */
.showcase-q4 { background: #fff; padding: 50px 0 24px 0; }
.content-flex-p {
    display: flex; align-items: flex-start; gap: 52px;
    max-width: 1080px; margin: 0 auto;
}
.img-wrap-g2 img {
    max-width: 380px; border-radius: 1.1rem; box-shadow: 0 6px 32px rgba(36,70,140,0.09);
}
.info-block-b4 {
    flex: 1;
    display: flex; flex-direction: column; gap: 18px;
    padding-top: 15px;
}
.info-block-b4 h1 { font-size: 2.4rem; color: #21255a; margin-bottom: 5px;}
.lead-text-fs { color: #4245a8; font-size: 1.15rem; }
.feature-list-h6 { list-style: none; padding: 0; margin: 0; }
.feature-list-h6 li { margin-bottom: 7px; color: #1b1d30; font-size: 1.06rem; }

/* Order section */
.cta-order-j8 { background: linear-gradient(90deg,#474fe3 60%,#a7baff 100%); padding: 45px 0 50px 0; }
.center-wrap-x2 { text-align: center; }
.cta-order-j8 h2 { font-size: 2rem; color: #fff; margin-bottom: 10px; }
.big-price-p { font-size: 2.6rem; font-weight: 900; color: #fff; margin-bottom: 22px;}
.btn-main-w {
    background: #f7bb2e;
    color: #1a1a1a;
    border: none;
    border-radius: 28px;
    padding: 13px 42px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background .18s;
    text-decoration: none;
    box-shadow: 0 1px 8px #f7bb2e48;
}
.btn-main-w:hover { background: #ffd500; color: #000; }

/* Footer */
.footer-y7 { background: #21255a; padding: 28px 0; margin-top: auto; }
.footer-cell-l9 { color: #fafafa; font-size: 1rem; text-align: center; letter-spacing: 0.5px; }

/* Modal */
.modal-overlay-w5 {
    display: none;
    position: fixed; z-index: 1001;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(33, 41, 99, 0.92);
    justify-content: center; align-items: center;
}
.modal-overlay-w5.active { display: flex; }
.modal-shell-r8 {
    background: #fff; padding: 42px 30px 32px; border-radius: 18px; max-width: 410px; width: 100%;
    box-shadow: 0 8px 36px rgba(52,69,140,.22);
    position: relative;
    display: flex; flex-direction: column; gap: 19px;
}
.modal-close-x {
    position: absolute; right: 18px; top: 15px;
    width: 28px; height: 28px; background: none; border: none; cursor: pointer;
}
.modal-close-x:before, .modal-close-x:after {
    content: ""; position: absolute; left: 14px; top: 3px; width: 2px; height: 22px; background: #7e89c7;
}
.modal-close-x:before { transform: rotate(45deg);}
.modal-close-x:after { transform: rotate(-45deg);}
.order-form-f1 { display: flex; flex-direction: column; gap: 12px; }
.order-form-f1 label { color: #4245a8; font-weight: 600; }
.form-inpt-q {
    padding: 10px 14px; border: 1px solid #babfd6; border-radius: 7px;
    font-size: 1rem; margin-bottom: 3px;
}
.form-success-f8 {
    display: none;
    color: #41a36e;
    background: #e6f4ef;
    border-radius: 7px;
    text-align: center;
    font-weight: bold;
    padding: 12px 0;
    margin-top: 12px;
}
.order-form-f1.success ~ .form-success-f8 {
    display: block;
}

/* Cookie Consent */
#cookie-banner-uniq {
    position: fixed; left: 0; bottom: 0; width: 100vw;
    background: #252b74; color: #fff;
    z-index: 2000; display: none; flex-direction: column; align-items: center;
    padding: 22px 12px;
    box-shadow: 0 -4px 18px #383fc729;
}
#cookie-banner-uniq.active { display: flex; }
#cookie-msg-text { max-width: 700px; margin: 0 auto 10px; font-size: 1rem; }
#cookie-opts-x1 { display: none; flex-direction: column; gap: 7px; width: 100%; max-width: 360px; margin: 0 auto 10px; }
.cookie-sw-i { display: flex; align-items: center; gap: 9px; }
.cookie-sw-i span { flex: 1; font-size: 0.98rem; }
.cb-btn {
    background: #f7bb2e; color: #232365; border: none; border-radius: 8px;
    padding: 8px 19px; font-weight: bold; cursor: pointer; margin: 2px 5px;
    transition: background .16s;
}
.cb-btn:hover { background: #ffd500; color: #000; }
.cookie-btns-row { display: flex; gap: 10px; justify-content: center; margin-top: 7px; }

/* Responsive */
@media (max-width: 900px) {
    .content-flex-p { flex-direction: column; gap: 35px; }
    .flex-wrap-y7 { flex-direction: column; gap: 15px; padding: 12px 12px; }
}
@media (max-width: 600px) {
    .img-wrap-g2 img { max-width: 99vw; }
    .modal-shell-r8 { padding: 20px 6vw; }
    .feature-list-h6 li, .lead-text-fs, .footer-cell-l9, #cookie-msg-text { font-size: 1rem; }
    .showcase-q4, .cta-order-j8 { padding: 22px 0 18px; }
}
