/* Variables & Reset */
:root {
    --bg-dark: #0A0D10;
    --ice-light: #E6FBFF;
    --ice-glow: #B0E2FF;
    --ice-accent: #3A4E5A;
    --text-muted: #A0B0B8;
    --glass-bg: rgba(10, 13, 16, 0.85);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.focus-qunda-6149-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--ice-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.focus-qunda-6149-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.focus-qunda-6149-h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.focus-qunda-6149-h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--ice-glow);
}

.focus-qunda-6149-h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--ice-light);
}

.focus-qunda-6149-p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--ice-light);
    opacity: 0.9;
}

/* Header & Nav */
.focus-qunda-6149-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(176, 226, 255, 0.2);
}

.focus-qunda-6149-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.focus-qunda-6149-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ice-light);
    letter-spacing: 1px;
}

.focus-qunda-6149-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.focus-qunda-6149-nav-link {
    color: var(--ice-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.focus-qunda-6149-nav-link:hover {
    color: var(--ice-glow);
    text-shadow: 0 0 8px var(--ice-glow);
}

/* Burger */
.focus-qunda-6149-menu-checkbox {
    display: none;
}

.focus-qunda-6149-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.focus-qunda-6149-burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ice-light);
}

/* Hero Section */
.focus-qunda-6149-hero-sec {
    padding: 160px 0 100px;
}

.focus-qunda-6149-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.focus-qunda-6149-hero-img-box {
    flex: 1;
    position: relative;
}

.focus-qunda-6149-main-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.focus-qunda-6149-mini-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.focus-qunda-6149-gal-item {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--ice-glow);
    border-radius: 4px;
}

.focus-qunda-6149-hero-text {
    flex: 1;
}

.focus-qunda-6149-sub-h1 {
    font-size: 1.3rem;
    color: var(--ice-glow);
    margin-bottom: 25px;
    border-left: 3px solid var(--ice-glow);
    padding-left: 15px;
}

/* Buttons */
.focus-qunda-6149-btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--ice-light);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: var(--transition);
    margin-top: 10px;
    text-transform: uppercase;
}

.focus-qunda-6149-btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 20px var(--ice-glow);
}

/* Who Section */
.focus-qunda-6149-who-sec {
    padding: 100px 0;
    background: #0D1115;
}

.focus-qunda-6149-wide-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: 4px;
    opacity: 0.8;
}

.focus-qunda-6149-intro-p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.focus-qunda-6149-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.focus-qunda-6149-list-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(176, 226, 255, 0.1);
    border-radius: 4px;
}

.focus-qunda-6149-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--ice-glow);
    margin-top: 8px;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ice-glow);
}

/* Price Section */
.focus-qunda-6149-price-sec {
    padding: 100px 0;
}

.focus-qunda-6149-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.focus-qunda-6149-price-card {
    background: #14181D;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(176, 226, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.focus-qunda-6149-price-card:hover {
    border-color: var(--ice-glow);
    transform: translateY(-5px);
}

.focus-qunda-6149-featured {
    border: 2px solid var(--ice-glow);
    background: #1A1F26;
    position: relative;
    transform: scale(1.05);
}

.focus-qunda-6149-price-val {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--ice-glow);
}

.focus-qunda-6149-price-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.focus-qunda-6149-price-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.focus-qunda-6149-price-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--ice-glow);
}

.focus-qunda-6149-price-link {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid var(--ice-glow);
    color: var(--ice-glow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.focus-qunda-6149-btn-ice {
    background: var(--ice-light);
    color: var(--bg-dark);
}

.focus-qunda-6149-quick-links {
    text-align: center;
    margin-top: 50px;
}

.focus-qunda-6149-quick-links a {
    color: var(--ice-glow);
    margin: 0 10px;
}

/* Reviews Section */
.focus-qunda-6149-rev-sec {
    padding: 100px 0;
    background: #07090C;
}

.focus-qunda-6149-rev-slider-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.focus-qunda-6149-rev-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-qunda-6149-rev-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.focus-qunda-6149-rev-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--ice-light);
}

.focus-qunda-6149-rev-author {
    font-weight: 700;
    color: var(--ice-glow);
}

.focus-qunda-6149-rev-radio {
    display: none;
}

#rev1:checked ~ .focus-qunda-6149-rev-slides { transform: translateX(0); }
#rev2:checked ~ .focus-qunda-6149-rev-slides { transform: translateX(-100%); }
#rev3:checked ~ .focus-qunda-6149-rev-slides { transform: translateX(-200%); }

.focus-qunda-6149-rev-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.focus-qunda-6149-rev-controls label {
    width: 12px;
    height: 12px;
    border: 1px solid var(--ice-glow);
    border-radius: 50%;
    cursor: pointer;
}

#rev1:checked ~ .focus-qunda-6149-rev-controls label:nth-child(1),
#rev2:checked ~ .focus-qunda-6149-rev-controls label:nth-child(2),
#rev3:checked ~ .focus-qunda-6149-rev-controls label:nth-child(3) {
    background: var(--ice-glow);
    box-shadow: 0 0 8px var(--ice-glow);
}

/* Benefits Section */
.focus-qunda-6149-ben-sec {
    padding: 100px 0;
}

.focus-qunda-6149-ben-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.focus-qunda-6149-ben-content {
    flex: 1.2;
}

.focus-qunda-6149-ben-img {
    flex: 0.8;
}

.focus-qunda-6149-fit-img {
    width: 100%;
    border-radius: 4px;
}

.focus-qunda-6149-ben-list {
    list-style: none;
    margin-top: 30px;
}

.focus-qunda-6149-ben-list li {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--ice-glow);
}

/* Expert Section */
.focus-qunda-6149-expert-sec {
    padding: 100px 0;
    background: #0D1115;
}

.focus-qunda-6149-quote-box {
    max-width: 900px;
    margin: 0 auto;
    background: #14181D;
    padding: 60px;
    border-left: 5px solid var(--ice-glow);
    border-radius: 0 4px 4px 0;
}

.focus-qunda-6149-blockquote {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 300;
}

.focus-qunda-6149-expert-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.focus-qunda-6149-expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--ice-glow);
}

.focus-qunda-6149-expert-name {
    font-size: 1.2rem;
    font-weight: 700;
}

.focus-qunda-6149-expert-title {
    color: var(--text-muted);
}

/* FAQ Section */
.focus-qunda-6149-faq-sec {
    padding: 100px 0;
}

.focus-qunda-6149-faq-items {
    max-width: 800px;
    margin: 50px auto 0;
}

.focus-qunda-6149-details {
    margin-bottom: 15px;
    background: #14181D;
    border: 1px solid rgba(176, 226, 255, 0.1);
    border-radius: 4px;
}

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

.focus-qunda-6149-summary::-webkit-details-marker {
    display: none;
}

.focus-qunda-6149-summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--ice-glow);
}

.focus-qunda-6149-details[open] .focus-qunda-6149-summary::after {
    content: "−";
}

.focus-qunda-6149-details-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Form Section */
.focus-qunda-6149-form-sec {
    padding: 100px 0;
    background: #07090C;
}

.focus-qunda-6149-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #14181D;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid var(--ice-accent);
}

.focus-qunda-6149-sub-form {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.focus-qunda-6149-input-group {
    margin-bottom: 20px;
}

.focus-qunda-6149-input,
.focus-qunda-6149-textarea {
    width: 100%;
    background: #0A0D10;
    border: 1px solid var(--ice-accent);
    padding: 15px;
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.focus-qunda-6149-input:focus,
.focus-qunda-6149-textarea:focus {
    border-color: var(--ice-glow);
    box-shadow: 0 0 10px rgba(176, 226, 255, 0.1);
}

.focus-qunda-6149-textarea {
    height: 120px;
    resize: none;
}

.focus-qunda-6149-check-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.focus-qunda-6149-check-group a {
    color: var(--ice-glow);
}

.focus-qunda-6149-btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--ice-light);
    color: var(--bg-dark);
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.focus-qunda-6149-btn-submit:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--ice-glow);
}

/* Additional Text Sections */
.focus-qunda-6149-text-sec {
    padding: 100px 0;
}

.focus-qunda-6149-bg-alt {
    background: #0D1115;
}

.focus-qunda-6149-list-custom {
    margin: 30px 0;
    list-style: none;
}

.focus-qunda-6149-list-custom li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.focus-qunda-6149-list-custom li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--ice-glow);
}

/* Footer */
.focus-qunda-6149-footer {
    padding: 80px 0 40px;
    background: #050709;
    border-top: 1px solid var(--ice-accent);
    text-align: center;
}

.focus-qunda-6149-footer-main {
    margin-bottom: 40px;
}

.focus-qunda-6149-footer-main p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.focus-qunda-6149-footer-link {
    color: var(--ice-glow);
    text-decoration: none;
}

.focus-qunda-6149-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.focus-qunda-6149-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.focus-qunda-6149-footer-links a:hover {
    color: var(--ice-light);
}

/* Responsive */
@media (max-width: 992px) {
    .focus-qunda-6149-hero-flex,
    .focus-qunda-6149-ben-flex {
        flex-direction: column;
    }
    
    .focus-qunda-6149-h1 {
        font-size: 2.5rem;
    }
    
    .focus-qunda-6149-hero-text, .focus-qunda-6149-hero-img-box {
        width: 100%;
        text-align: center;
    }
    
    .focus-qunda-6149-sub-h1 {
        border-left: none;
        padding-left: 0;
    }
    
    .focus-qunda-6149-mini-gallery {
        justify-content: center;
    }
    
    .focus-qunda-6149-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .focus-qunda-6149-burger {
        display: flex;
    }
    
    .focus-qunda-6149-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    
    .focus-qunda-6149-nav-list {
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
    }
    
    .focus-qunda-6149-menu-checkbox:checked ~ .focus-qunda-6149-nav {
        height: calc(100vh - 80px);
    }
    
    .focus-qunda-6149-h2 {
        font-size: 1.8rem;
    }
    
    .focus-qunda-6149-quote-box {
        padding: 30px;
    }
    
    .focus-qunda-6149-blockquote {
        font-size: 1.2rem;
    }
}