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

html {
    scroll-behavior: smooth;
}

body.tone-xalze-8108-body-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #050A18;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.tone-xalze-8108-h1-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(106, 169, 255, 0.4);
}

.tone-xalze-8108-h2-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.tone-xalze-8108-h2-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #6AA9FF;
    margin: 15px auto 0;
    box-shadow: 0 0 10px #6AA9FF;
}

.tone-xalze-8108-h2-title {
    font-size: 2.2rem;
    color: #6AA9FF;
}

/* HEADER */
.tone-xalze-8108-header-main {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.tone-xalze-8108-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tone-xalze-8108-logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #6AA9FF;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(106, 169, 255, 0.6);
}

.tone-xalze-8108-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.tone-xalze-8108-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tone-xalze-8108-nav-link:hover {
    color: #6AA9FF;
}

/* BURGER MENU (No JS) */
.tone-xalze-8108-burger-input {
    display: none;
}

.tone-xalze-8108-burger-label {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.tone-xalze-8108-burger-label span {
    width: 30px;
    height: 3px;
    background: #6AA9FF;
    transition: 0.3s;
}

/* HERO SECTION */
.tone-xalze-8108-hero-section {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.tone-xalze-8108-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tone-xalze-8108-hero-image-col {
    flex: 1;
}

.tone-xalze-8108-hero-text-col {
    flex: 1.2;
}

.tone-xalze-8108-hero-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(106, 169, 255, 0.2);
    border: 1px solid rgba(106, 169, 255, 0.3);
}

.tone-xalze-8108-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.tone-xalze-8108-hero-info-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.tone-xalze-8108-hero-info-item {
    background: rgba(106, 169, 255, 0.05);
    padding: 20px;
    border-left: 4px solid #6AA9FF;
    border-radius: 4px;
}

.tone-xalze-8108-info-label {
    font-size: 1.1rem;
    color: #6AA9FF;
    margin-bottom: 5px;
}

.tone-xalze-8108-info-desc {
    font-size: 0.95rem;
    color: #cccccc;
}

/* BUTTONS */
.tone-xalze-8108-btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #6AA9FF;
    color: #050A18;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.tone-xalze-8108-btn-primary:hover {
    background-color: transparent;
    color: #6AA9FF;
    border-color: #6AA9FF;
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.5);
}

.tone-xalze-8108-btn-outline {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #6AA9FF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #6AA9FF;
    transition: all 0.3s ease;
}

.tone-xalze-8108-btn-outline:hover {
    box-shadow: 0 0 15px rgba(106, 169, 255, 0.3);
    background: rgba(106, 169, 255, 0.1);
}

/* REVIEWS */
.tone-xalze-8108-reviews-section {
    padding: 80px 20px;
    background: rgba(106, 169, 255, 0.02);
}

.tone-xalze-8108-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tone-xalze-8108-review-card {
    background: #0a1329;
    padding: 40px;
    border-radius: 15px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    position: relative;
}

.tone-xalze-8108-review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.tone-xalze-8108-review-author {
    font-weight: bold;
    color: #6AA9FF;
}

/* PRICING */
.tone-xalze-8108-pricing-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tone-xalze-8108-pricing-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.tone-xalze-8108-price-card {
    background: #0a1329;
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 260px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.tone-xalze-8108-price-card:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.tone-xalze-8108-featured {
    border: 2px solid #6AA9FF;
    position: relative;
    box-shadow: 0 10px 30px rgba(106, 169, 255, 0.2);
}

.tone-xalze-8108-discount-badge {
    background: #6AA9FF;
    color: #050A18;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.tone-xalze-8108-cost {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 15px 0;
    color: #ffffff;
}

.tone-xalze-8108-price-list {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.tone-xalze-8108-price-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #bbbbbb;
}

.tone-xalze-8108-price-list li::before {
    content: '✓';
    color: #6AA9FF;
    margin-right: 10px;
}

/* AUDIENCE */
.tone-xalze-8108-audience-section {
    padding: 100px 20px;
    background: #030712;
}

.tone-xalze-8108-audience-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.tone-xalze-8108-audience-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tone-xalze-8108-audience-item {
    background: rgba(106, 169, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.tone-xalze-8108-line-decor {
    width: 4px;
    height: 100%;
    background: #6AA9FF;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 0 10px #6AA9FF;
}

/* QUOTE */
.tone-xalze-8108-quote-section {
    padding: 100px 20px;
}

.tone-xalze-8108-quote-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a1329 0%, #050A18 100%);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(106, 169, 255, 0.2);
    text-align: center;
}

.tone-xalze-8108-blockquote {
    font-size: 1.6rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.tone-xalze-8108-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.tone-xalze-8108-author-thumb {
    border-radius: 50%;
    border: 3px solid #6AA9FF;
}

.tone-xalze-8108-author-info {
    text-align: left;
}

.tone-xalze-8108-author-info strong {
    display: block;
    font-size: 1.2rem;
    color: #6AA9FF;
}

/* BENEFITS DETAILED */
.tone-xalze-8108-benefits-detailed {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tone-xalze-8108-benefit-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.tone-xalze-8108-mirror {
    flex-direction: row-reverse;
}

.tone-xalze-8108-benefit-text {
    flex: 1;
}

.tone-xalze-8108-benefit-image {
    flex: 1;
}

.tone-xalze-8108-img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.tone-xalze-8108-styled-list {
    margin-top: 25px;
    list-style: none;
}

.tone-xalze-8108-styled-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.tone-xalze-8108-styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
}

/* FAQ */
.tone-xalze-8108-faq-section {
    padding: 100px 20px;
    background: rgba(106, 169, 255, 0.02);
}

.tone-xalze-8108-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.tone-xalze-8108-faq-item {
    background: #0a1329;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

.tone-xalze-8108-faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tone-xalze-8108-faq-question::-webkit-details-marker {
    display: none;
}

.tone-xalze-8108-faq-question::after {
    content: '+';
    color: #6AA9FF;
    font-size: 1.5rem;
}

.tone-xalze-8108-faq-item[open] .tone-xalze-8108-faq-question::after {
    content: '−';
}

.tone-xalze-8108-faq-answer {
    padding: 0 20px 20px;
    color: #cccccc;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* LARGE TEXT SECTIONS */
.tone-xalze-8108-large-text-section {
    padding: 80px 20px;
}

.tone-xalze-8108-alt-bg {
    background: #0a1329;
}

.tone-xalze-8108-text-inner {
    max-width: 900px;
    margin: 0 auto;
}

.tone-xalze-8108-text-inner h2 {
    margin-bottom: 30px;
    color: #6AA9FF;
}

.tone-xalze-8108-text-inner p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #d1d1d1;
}

/* FORM */
.tone-xalze-8108-form-section {
    padding: 100px 20px;
}

.tone-xalze-8108-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0a1329;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(106, 169, 255, 0.2);
}

.tone-xalze-8108-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #aaaaaa;
}

.tone-xalze-8108-form-group {
    margin-bottom: 20px;
}

.tone-xalze-8108-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.tone-xalze-8108-form-group input,
.tone-xalze-8108-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    outline: none;
}

.tone-xalze-8108-form-group input:focus,
.tone-xalze-8108-form-group textarea:focus {
    border-color: #6AA9FF;
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.3);
}

.tone-xalze-8108-checkbox-group {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tone-xalze-8108-checkbox-group label {
    font-size: 0.9rem;
    color: #bbbbbb;
}

.tone-xalze-8108-checkbox-group a {
    color: #6AA9FF;
}

.tone-xalze-8108-btn-submit {
    width: 100%;
    padding: 18px;
    background: #6AA9FF;
    border: none;
    border-radius: 8px;
    color: #050A18;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.tone-xalze-8108-btn-submit:hover {
    box-shadow: 0 0 20px #6AA9FF;
}

/* FOOTER */
.tone-xalze-8108-footer-main {
    padding: 60px 20px;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
    background: #030712;
}

.tone-xalze-8108-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tone-xalze-8108-footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6AA9FF;
    margin-bottom: 20px;
}

.tone-xalze-8108-footer-contact {
    margin-bottom: 30px;
    color: #888888;
}

.tone-xalze-8108-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tone-xalze-8108-footer-links a {
    color: #555555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.tone-xalze-8108-footer-links a:hover {
    color: #6AA9FF;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tone-xalze-8108-hero-grid {
        flex-direction: column;
    }
    .tone-xalze-8108-h1-title {
        font-size: 2.8rem;
    }
    .tone-xalze-8108-benefit-row {
        flex-direction: column !important;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .tone-xalze-8108-burger-label {
        display: flex;
        z-index: 1001;
    }

    .tone-xalze-8108-navigation-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #050A18;
        padding-top: 100px;
        transition: 0.4s;
        border-left: 1px solid #6AA9FF;
    }

    .tone-xalze-8108-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .tone-xalze-8108-burger-input:checked ~ .tone-xalze-8108-navigation-menu {
        right: 0;
    }

    .tone-xalze-8108-burger-input:checked ~ .tone-xalze-8108-burger-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .tone-xalze-8108-burger-input:checked ~ .tone-xalze-8108-burger-label span:nth-child(2) {
        opacity: 0;
    }
    .tone-xalze-8108-burger-input:checked ~ .tone-xalze-8108-burger-label span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .tone-xalze-8108-audience-grid {
        grid-template-columns: 1fr;
    }

    .tone-xalze-8108-h1-title {
        font-size: 2.2rem;
    }
}