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

html {
    scroll-behavior: smooth;
}

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

/* UTILS */
.force-qostre-7601-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.force-qostre-7601-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.force-qostre-7601-small-container {
    max-width: 700px;
}

/* TYPOGRAPHY */
.force-qostre-7601-h1-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #D9FAFF;
    text-shadow: 0 0 15px rgba(217, 250, 255, 0.3);
}

.force-qostre-7601-sub-h1 {
    font-size: 1.25rem;
    color: #A0C4D1;
    margin-bottom: 25px;
    font-weight: 300;
}

.force-qostre-7601-h2-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #D9FAFF;
}

.force-qostre-7601-h2-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #D9FAFF;
}

.force-qostre-7601-h3-card {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #D9FAFF;
}

.force-qostre-7601-text-p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #E0E0E0;
}

/* HEADER */
.force-qostre-7601-header-main {
    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.2);
}

.force-qostre-7601-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.force-qostre-7601-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #D9FAFF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.force-qostre-7601-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.force-qostre-7601-nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.force-qostre-7601-nav-link:hover {
    color: #D9FAFF;
}

/* BURGER MENU (No JS) */
.force-qostre-7601-nav-input {
    display: none;
}

.force-qostre-7601-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.force-qostre-7601-burger span {
    width: 30px;
    height: 2px;
    background-color: #D9FAFF;
    transition: 0.3s;
}

/* HERO SECTION */
.force-qostre-7601-hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #001A4D, #000F2B);
}

.force-qostre-7601-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.force-qostre-7601-hero-image-box {
    flex: 1;
    position: relative;
}

.force-qostre-7601-hero-img-main {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(217, 250, 255, 0.1);
}

.force-qostre-7601-hero-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.force-qostre-7601-gallery-item {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid rgba(217, 250, 255, 0.3);
}

.force-qostre-7601-hero-text-box {
    flex: 1;
}

/* BUTTONS */
.force-qostre-7601-btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #D9FAFF;
    color: #000F2B;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.2);
    cursor: pointer;
}

.force-qostre-7601-btn-primary:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 30px rgba(217, 250, 255, 0.5);
    transform: translateY(-2px);
}

.force-qostre-7601-btn-secondary {
    display: inline-block;
    padding: 14px 38px;
    background-color: transparent;
    color: #D9FAFF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #D9FAFF;
    transition: all 0.3s ease;
    cursor: pointer;
}

.force-qostre-7601-btn-secondary:hover {
    background-color: rgba(217, 250, 255, 0.1);
    box-shadow: 0 0 15px rgba(217, 250, 255, 0.2);
}

/* TARGET SECTION */
.force-qostre-7601-target-section {
    padding: 100px 0;
}

.force-qostre-7601-section-image-top {
    margin-bottom: 60px;
}

.force-qostre-7601-full-width-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    border: 1px solid rgba(217, 250, 255, 0.15);
}

.force-qostre-7601-target-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.force-qostre-7601-target-card {
    flex: 1 1 350px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(217, 250, 255, 0.05);
    transition: transform 0.3s ease;
}

.force-qostre-7601-target-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(217, 250, 255, 0.2);
}

/* PRICE SECTION */
.force-qostre-7601-price-section {
    padding: 100px 0;
    background-color: #00081A;
}

.force-qostre-7601-quick-links {
    text-align: center;
    margin-bottom: 50px;
    color: #A0C4D1;
}

.force-qostre-7601-quick-links a {
    color: #D9FAFF;
    text-decoration: none;
    margin: 0 10px;
}

.force-qostre-7601-price-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.force-qostre-7601-price-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.force-qostre-7601-card-featured {
    border: 2px solid #D9FAFF;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 40px rgba(0, 15, 43, 0.8);
}

.force-qostre-7601-card-head {
    text-align: center;
    margin-bottom: 30px;
}

.force-qostre-7601-badge {
    display: inline-block;
    background: #D9FAFF;
    color: #000F2B;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.force-qostre-7601-price-val {
    font-size: 2.5rem;
    color: #D9FAFF;
}

.force-qostre-7601-price-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.force-qostre-7601-price-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    color: #CCC;
}

.force-qostre-7601-price-list li::before {
    content: "❄ ";
    color: #D9FAFF;
}

/* BENEFITS SECTION */
.force-qostre-7601-benefits-section {
    padding: 100px 0;
}

.force-qostre-7601-benefits-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.force-qostre-7601-benefits-text {
    flex: 1.2;
}

.force-qostre-7601-benefits-image {
    flex: 0.8;
}

.force-qostre-7601-img-rounded {
    width: 100%;
    border-radius: 30px 100px 30px 30px;
    border: 1px solid rgba(217, 250, 255, 0.2);
}

.force-qostre-7601-styled-list {
    list-style: none;
    margin-top: 30px;
}

.force-qostre-7601-styled-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.force-qostre-7601-styled-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23D9FAFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center;
}

/* QUOTE SECTION */
.force-qostre-7601-quote-section {
    padding: 120px 0;
}

.force-qostre-7601-glass-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
}

.force-qostre-7601-blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #D9FAFF;
    margin-bottom: 30px;
    line-height: 1.4;
}

.force-qostre-7601-author-info strong {
    display: block;
    font-size: 1.4rem;
    color: #FFFFFF;
}

.force-qostre-7601-author-info span {
    color: #A0C4D1;
}

/* FAQ SECTION */
.force-qostre-7601-faq-section {
    padding: 100px 0;
}

.force-qostre-7601-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.force-qostre-7601-faq-summary {
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #D9FAFF;
}

.force-qostre-7601-faq-summary::-webkit-details-marker {
    display: none;
}

.force-qostre-7601-faq-summary::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.force-qostre-7601-faq-item[open] .force-qostre-7601-faq-summary::after {
    content: "−";
}

.force-qostre-7601-faq-content {
    padding: 0 30px 20px;
    color: #CCC;
}

/* FORM SECTION */
.force-qostre-7601-form-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #000F2B, #00081A);
}

.force-qostre-7601-form-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(217, 250, 255, 0.1);
}

.force-qostre-7601-form-group {
    margin-bottom: 25px;
}

.force-qostre-7601-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #D9FAFF;
}

.force-qostre-7601-form-group input,
.force-qostre-7601-form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(217, 250, 255, 0.2);
    border-radius: 8px;
    color: #FFF;
    font-size: 1rem;
}

.force-qostre-7601-form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.force-qostre-7601-form-check a {
    color: #D9FAFF;
}

.force-qostre-7601-btn-submit {
    width: 100%;
    padding: 18px;
    background: #D9FAFF;
    color: #000F2B;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.force-qostre-7601-btn-submit:hover {
    background: #FFFFFF;
    box-shadow: 0 0 25px rgba(217, 250, 255, 0.4);
}

/* TEXT CONTENT SECTIONS */
.force-qostre-7601-text-content-section {
    padding: 100px 0;
}

.force-qostre-7601-bg-alt {
    background-color: rgba(255, 255, 255, 0.02);
}

.force-qostre-7601-text-columns {
    column-count: 2;
    column-gap: 40px;
    margin-bottom: 40px;
}

.force-qostre-7601-flex-row {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.force-qostre-7601-flex-item {
    flex: 1;
    background: rgba(217, 250, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #D9FAFF;
}

.force-qostre-7601-grid-two {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}

.force-qostre-7601-img-full {
    width: 100%;
    border-radius: 15px;
}

/* FOOTER */
.force-qostre-7601-footer-main {
    padding: 80px 0 40px;
    background: #000511;
    border-top: 1px solid rgba(217, 250, 255, 0.1);
}

.force-qostre-7601-footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.force-qostre-7601-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D9FAFF;
}

.force-qostre-7601-footer-contact a {
    color: #D9FAFF;
    text-decoration: none;
}

.force-qostre-7601-footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.force-qostre-7601-footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.force-qostre-7601-footer-links a {
    color: #A0C4D1;
    text-decoration: none;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .force-qostre-7601-hero-grid,
    .force-qostre-7601-benefits-grid,
    .force-qostre-7601-grid-two {
        flex-direction: column;
    }
    
    .force-qostre-7601-price-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .force-qostre-7601-card-featured {
        transform: scale(1);
    }
    
    .force-qostre-7601-price-card {
        width: 100%;
        max-width: 500px;
    }

    .force-qostre-7601-text-columns {
        column-count: 1;
    }
    
    .force-qostre-7601-flex-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .force-qostre-7601-burger {
        display: flex;
    }

    .force-qostre-7601-nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000F2B;
        height: 0;
        overflow: hidden;
        transition: 0.3s;
    }

    .force-qostre-7601-nav-list {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .force-qostre-7601-nav-input:checked ~ .force-qostre-7601-nav-menu {
        height: auto;
        border-bottom: 1px solid rgba(217, 250, 255, 0.2);
    }

    .force-qostre-7601-h1-title {
        font-size: 2.2rem;
    }
}