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

body.qelmora-body-wrapper-9934 {
    background-color: #000F2B; /* Dark Ink Navy */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.qelmora-container-full-9934 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header.qelmora-header-glass-9934 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #D9FAFF; /* Ice Line */
}

.qelmora-nav-flex-row-9934 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.qelmora-logo-text-9934 {
    font-size: 28px;
    font-weight: 800;
    color: #D9FAFF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.qelmora-nav-ul-items-9934 {
    display: flex;
    list-style: none;
    gap: 30px;
}

.qelmora-nav-link-item-9934 {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.qelmora-nav-link-item-9934:hover {
    color: #D9FAFF;
}

/* BURGER MENU NO JS */
.qelmora-menu-hidden-9934 {
    display: none;
}

.qelmora-burger-btn-9934 {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.qelmora-burger-btn-9934 span {
    width: 30px;
    height: 3px;
    background-color: #D9FAFF;
    transition: 0.3s;
}

/* HERO SECTION */
.qelmora-hero-section-9934 {
    padding-top: 150px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, #001a3d, #000F2B);
}

.qelmora-hero-grid-main-9934 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.qelmora-hero-img-box-9934 {
    flex: 1 1 450px;
}

.qelmora-hero-main-img-9934 {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 1px solid rgba(217, 250, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.qelmora-hero-content-9934 {
    flex: 1 1 500px;
}

.qelmora-h1-main-title-9934 {
    font-size: clamp(32px, 5vw, 56px);
    color: #D9FAFF;
    line-height: 1.1;
    margin-bottom: 20px;
}

.qelmora-hero-subtitle-9934 {
    font-size: 22px;
    color: #B0E0E6;
    margin-bottom: 25px;
    font-weight: 300;
}

.qelmora-hero-desc-text-9934 {
    margin-bottom: 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.qelmora-btn-primary-ice-9934 {
    display: inline-block;
    padding: 16px 40px;
    background-color: #D9FAFF;
    color: #000F2B;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.qelmora-btn-primary-ice-9934:hover {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.6);
    transform: translateY(-2px);
}

.qelmora-hero-triple-grid-9934 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.qelmora-hero-card-item-9934 {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    transition: 0.3s;
}

.qelmora-hero-card-item-9934:hover {
    border-color: #D9FAFF;
    background: rgba(255, 255, 255, 0.05);
}

.qelmora-card-img-9934 {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.qelmora-card-h3-9934 {
    color: #D9FAFF;
    margin-bottom: 10px;
}

/* PRICE SECTION */
.qelmora-price-section-9934 {
    padding: 100px 0;
    background: #00132b;
}

.qelmora-h2-center-9934 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #D9FAFF;
}

.qelmora-price-grid-four-9934 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.qelmora-price-card-box-9934 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.15);
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.qelmora-price-card-box-9934:hover {
    transform: scale(1.03);
}

.qelmora-featured-card-9934 {
    border: 2px solid #D9FAFF;
    background: rgba(217, 250, 255, 0.05);
}

.qelmora-price-header-9934 {
    margin-bottom: 30px;
    text-align: center;
}

.qelmora-price-title-9934 {
    font-size: 24px;
    color: #D9FAFF;
    margin-bottom: 15px;
}

.qelmora-price-value-9934 {
    font-size: 32px;
    font-weight: 800;
}

.qelmora-price-value-9934 span {
    font-size: 16px;
    font-weight: 400;
    color: #B0E0E6;
}

.qelmora-price-ul-9934 {
    list-style: none;
    margin-bottom: 35px;
}

.qelmora-price-ul-9934 li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.qelmora-btn-outline-ice-9934 {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #D9FAFF;
    color: #D9FAFF;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.qelmora-btn-outline-ice-9934:hover {
    background: #D9FAFF;
    color: #000F2B;
}

/* TARGET SECTION */
.qelmora-target-section-9934 {
    padding: 100px 0;
}

.qelmora-full-width-img-9934 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 50px;
}

.qelmora-h2-title-9934 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #D9FAFF;
}

.qelmora-p-intro-9934 {
    font-size: 20px;
    margin-bottom: 40px;
}

.qelmora-check-list-9934 {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.qelmora-check-list-9934 li::before {
    content: "❄ ";
    color: #D9FAFF;
}

/* BENEFITS SECTION */
.qelmora-benefits-section-9934 {
    padding: 100px 0;
    background: linear-gradient(180deg, #00132b, #000F2B);
}

.qelmora-benefits-flex-row-9934 {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.qelmora-benefits-text-col-9934 {
    flex: 1 1 500px;
}

.qelmora-simple-list-9934 {
    list-style: none;
}

.qelmora-simple-list-9934 li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #D9FAFF;
}

.qelmora-benefits-img-col-9934 {
    flex: 1 1 400px;
}

.qelmora-benefits-round-img-9934 {
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    border: 5px solid rgba(217, 250, 255, 0.1);
}

/* EXPERT SECTION */
.qelmora-expert-section-9934 {
    padding: 100px 0;
}

.qelmora-expert-glass-panel-9934 {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(217, 250, 255, 0.2);
    border-radius: 30px;
    padding: 60px;
}

.qelmora-expert-inner-flex-9934 {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.qelmora-expert-photo-box-9934 {
    flex: 0 0 300px;
}

.qelmora-expert-img-9934 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D9FAFF;
}

.qelmora-expert-quote-box-9934 {
    flex: 1 1 400px;
}

.qelmora-main-quote-9934 {
    font-size: 26px;
    font-style: italic;
    margin-bottom: 25px;
    color: #D9FAFF;
}

.qelmora-expert-name-9934 {
    font-size: 18px;
    font-weight: bold;
    color: #B0E0E6;
}

/* FAQ SECTION */
.qelmora-faq-section-9934 {
    padding: 100px 0;
}

.qelmora-faq-list-wrapper-9934 {
    max-width: 800px;
    margin: 0 auto;
}

.qelmora-faq-item-9934 {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    overflow: hidden;
}

.qelmora-faq-summary-9934 {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #D9FAFF;
    outline: none;
    list-style: none;
}

.qelmora-faq-summary-9934::-webkit-details-marker {
    display: none;
}

.qelmora-faq-content-9934 {
    padding: 20px;
    border-top: 1px solid rgba(217, 250, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* FORM SECTION */
.qelmora-form-section-9934 {
    padding: 100px 0;
    background: #000a1d;
}

.qelmora-form-grid-box-9934 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.qelmora-main-form-9934 {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(217, 250, 255, 0.1);
}

.qelmora-input-group-9934 {
    margin-bottom: 20px;
}

.qelmora-input-group-9934 label {
    display: block;
    margin-bottom: 8px;
    color: #D9FAFF;
}

.qelmora-input-group-9934 input, 
.qelmora-input-group-9934 textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(217, 250, 255, 0.2);
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.qelmora-input-group-9934 input:focus, 
.qelmora-input-group-9934 textarea:focus {
    border-color: #D9FAFF;
}

.qelmora-checkbox-group-9934 {
    margin-bottom: 25px;
    font-size: 14px;
}

.qelmora-checkbox-group-9934 a {
    color: #D9FAFF;
}

.qelmora-btn-submit-ice-9934 {
    width: 100%;
    padding: 15px;
    background: #D9FAFF;
    color: #000F2B;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

/* LONG TEXT SECTION */
.qelmora-long-text-section-9934 {
    padding: 100px 0;
}

.qelmora-text-content-9934 {
    margin-bottom: 60px;
}

.qelmora-text-content-9934 p {
    margin-bottom: 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.qelmora-bullet-list-9934 {
    list-style: square;
    margin-left: 30px;
    color: #B0E0E6;
}

.qelmora-bullet-list-9934 li {
    margin-bottom: 10px;
}

/* FOOTER */
.qelmora-main-footer-9934 {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(217, 250, 255, 0.1);
}

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

.qelmora-footer-bottom-line-9934 {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.qelmora-footer-links-9934 {
    margin-top: 15px;
}

.qelmora-footer-links-9934 a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.qelmora-footer-links-9934 a:hover {
    color: #D9FAFF;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .qelmora-nav-ul-items-9934 {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000F2B;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }

    .qelmora-burger-btn-9934 {
        display: flex;
    }

    #qelmora-menu-toggle-9934:checked ~ .qelmora-main-nav-list-9934 .qelmora-nav-ul-items-9934 {
        left: 0;
    }

    .qelmora-expert-inner-flex-9934 {
        flex-direction: column;
        text-align: center;
    }
}