/* Основні стилі - Холодний арктичний стиль */
:root {
    --bg-dark: #0A0D10;
    --ice-light: #E6FBFF;
    --ice-glow: rgba(230, 251, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-main: #FFFFFF;
    --text-muted: #B0C4DE;
    --accent: #00E5FF;
    --transition: all 0.3s ease;
}

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

body.active-daxmu-1376-body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.active-daxmu-1376-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.active-daxmu-1376-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 13, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
    padding: 15px 0;
}

.active-daxmu-1376-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active-daxmu-1376-logo {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ice-light);
    text-shadow: 0 0 10px var(--ice-glow);
}

.active-daxmu-1376-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.active-daxmu-1376-nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.active-daxmu-1376-nav-link:hover {
    color: var(--ice-light);
    text-shadow: 0 0 5px var(--ice-glow);
}

/* Hero Section */
.active-daxmu-1376-hero-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(230, 251, 255, 0.05);
}

.active-daxmu-1376-hero-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.active-daxmu-1376-hero-image-side {
    flex: 1;
}

.active-daxmu-1376-hero-main-img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(230, 251, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.active-daxmu-1376-hero-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.active-daxmu-1376-gallery-item {
    width: calc(33.333% - 10px);
    border: 1px solid rgba(230, 251, 255, 0.1);
    filter: grayscale(0.5);
    transition: var(--transition);
}

.active-daxmu-1376-gallery-item:hover {
    filter: grayscale(0);
    border-color: var(--ice-light);
}

.active-daxmu-1376-hero-content-side {
    flex: 1;
}

.active-daxmu-1376-h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--ice-light);
}

.active-daxmu-1376-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.active-daxmu-1376-text {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* Buttons */
.active-daxmu-1376-btn-primary {
    display: inline-block;
    background-color: var(--ice-light);
    color: var(--bg-dark);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: var(--transition);
    border: none;
}

.active-daxmu-1376-btn-primary:hover {
    box-shadow: 0 0 20px var(--ice-glow);
    transform: translateY(-2px);
}

.active-daxmu-1376-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--ice-light);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--ice-light);
    border-radius: 2px;
    transition: var(--transition);
}

.active-daxmu-1376-btn-outline:hover {
    background: rgba(230, 251, 255, 0.1);
}

/* Reviews */
.active-daxmu-1376-reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #12171d 100%);
}

.active-daxmu-1376-center {
    text-align: center;
}

.active-daxmu-1376-h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--ice-light);
    text-transform: uppercase;
}

.active-daxmu-1376-reviews-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.active-daxmu-1376-review-card {
    flex: 1;
    min-width: 300px;
    background: var(--glass-bg);
    padding: 40px;
    border: 1px solid rgba(230, 251, 255, 0.05);
    border-top: 3px solid var(--ice-light);
}

.active-daxmu-1376-review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.active-daxmu-1376-review-author {
    color: var(--accent);
    font-weight: bold;
}

/* Pricing */
.active-daxmu-1376-pricing-section {
    padding: 100px 0;
}

.active-daxmu-1376-pricing-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.active-daxmu-1376-price-card {
    flex: 1;
    min-width: 260px;
    background: #0f1318;
    padding: 40px 30px;
    border: 1px solid rgba(230, 251, 255, 0.1);
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.active-daxmu-1376-price-card:hover {
    border-color: var(--ice-light);
    transform: scale(1.02);
}

.active-daxmu-1376-price-card.active-daxmu-1376-featured {
    background: #161c24;
    border: 1px solid var(--ice-light);
    box-shadow: 0 0 15px rgba(230, 251, 255, 0.05);
}

.active-daxmu-1376-discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
}

.active-daxmu-1376-price-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--ice-light);
}

.active-daxmu-1376-price-value {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

.active-daxmu-1376-price-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.active-daxmu-1376-price-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-muted);
}

/* Target Audience */
.active-daxmu-1376-target-section {
    padding: 100px 0;
    background: #080a0d;
}

.active-daxmu-1376-target-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.active-daxmu-1376-target-item {
    width: calc(50% - 15px);
    background: var(--glass-bg);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.active-daxmu-1376-ice-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ice-light);
    box-shadow: 0 0 10px var(--ice-glow);
}

/* Author Section */
.active-daxmu-1376-author-section {
    padding: 100px 0;
}

.active-daxmu-1376-author-box {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(230, 251, 255, 0.02);
    padding: 60px;
    border-radius: 4px;
}

.active-daxmu-1376-quote {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
}

.active-daxmu-1376-quote::before {
    content: "“";
    font-size: 80px;
    position: absolute;
    top: -40px;
    left: -40px;
    opacity: 0.2;
    color: var(--ice-light);
}

.active-daxmu-1376-author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--ice-light);
}

.active-daxmu-1376-author-title {
    color: var(--text-muted);
    font-size: 14px;
}

.active-daxmu-1376-author-img-wrap {
    flex-shrink: 0;
}

.active-daxmu-1376-author-img {
    border: 1px solid var(--ice-light);
    padding: 10px;
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.1);
}

/* FAQ */
.active-daxmu-1376-faq-section {
    padding: 100px 0;
    background: #0d1116;
}

.active-daxmu-1376-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.active-daxmu-1376-faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

.active-daxmu-1376-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--ice-light);
    outline: none;
    list-style: none;
}

.active-daxmu-1376-faq-summary::-webkit-details-marker {
    display: none;
}

.active-daxmu-1376-faq-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Benefits */
.active-daxmu-1376-benefits-section {
    padding: 100px 0;
}

.active-daxmu-1376-benefits-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.active-daxmu-1376-benefits-text {
    flex: 1;
}

.active-daxmu-1376-benefits-image {
    flex: 1;
}

.active-daxmu-1376-img-shadow {
    width: 100%;
    box-shadow: 20px 20px 0px rgba(230, 251, 255, 0.05);
}

.active-daxmu-1376-custom-list {
    list-style: none;
    margin-top: 30px;
}

.active-daxmu-1376-custom-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.active-daxmu-1376-custom-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Articles */
.active-daxmu-1376-article-section {
    padding: 80px 0;
}

.active-daxmu-1376-bg-alt {
    background: #0f1318;
}

.active-daxmu-1376-article-content {
    max-width: 900px;
    margin: 0 auto;
}

.active-daxmu-1376-article-content p {
    margin-bottom: 25px;
    font-size: 17px;
    color: var(--text-muted);
}

.active-daxmu-1376-article-list {
    list-style: none;
    margin: 30px 0;
}

.active-daxmu-1376-article-list li {
    padding: 10px 0;
    border-left: 2px solid var(--ice-light);
    padding-left: 20px;
    margin-bottom: 10px;
}

/* Form */
.active-daxmu-1376-form-section {
    padding: 100px 0;
    background: linear-gradient(0deg, #050709 0%, var(--bg-dark) 100%);
}

.active-daxmu-1376-form-wrap {
    max-width: 600px;
}

.active-daxmu-1376-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.active-daxmu-1376-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.active-daxmu-1376-input-group label {
    font-size: 14px;
    color: var(--ice-light);
}

.active-daxmu-1376-input, .active-daxmu-1376-textarea {
    background: #1a1f26;
    border: 1px solid rgba(230, 251, 255, 0.1);
    padding: 15px;
    color: #fff;
    border-radius: 2px;
}

.active-daxmu-1376-input:focus, .active-daxmu-1376-textarea:focus {
    outline: none;
    border-color: var(--ice-light);
    box-shadow: 0 0 10px rgba(230, 251, 255, 0.1);
}

.active-daxmu-1376-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.active-daxmu-1376-checkbox-group a {
    color: var(--ice-light);
}

.active-daxmu-1376-btn-submit {
    background: var(--ice-light);
    color: #000;
    border: none;
    padding: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.active-daxmu-1376-btn-submit:hover {
    box-shadow: 0 0 25px var(--ice-glow);
}

/* Footer */
.active-daxmu-1376-footer {
    padding: 80px 0 40px;
    background: #050709;
    border-top: 1px solid rgba(230, 251, 255, 0.05);
}

.active-daxmu-1376-footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.active-daxmu-1376-footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--ice-light);
}

.active-daxmu-1376-contact-info {
    text-align: right;
    color: var(--text-muted);
    font-size: 14px;
}

.active-daxmu-1376-contact-info a {
    color: var(--ice-light);
    text-decoration: none;
}

.active-daxmu-1376-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #4a5a6b;
}

.active-daxmu-1376-footer-links {
    display: flex;
    gap: 20px;
}

.active-daxmu-1376-footer-links a {
    color: #4a5a6b;
    text-decoration: none;
}

.active-daxmu-1376-footer-links a:hover {
    color: var(--text-muted);
}

/* Адаптивність */
@media (max-width: 992px) {
    .active-daxmu-1376-hero-grid, .active-daxmu-1376-benefits-flex, .active-daxmu-1376-author-box {
        flex-direction: column;
    }
    .active-daxmu-1376-h1 { font-size: 32px; }
    .active-daxmu-1376-author-img-wrap { order: -1; }
}

@media (max-width: 768px) {
    .active-daxmu-1376-nav { display: none; } /* Спрощення для ТЗ без JS */
    .active-daxmu-1376-target-item { width: 100%; }
    .active-daxmu-1376-footer-top { flex-direction: column; gap: 20px; text-align: center; }
    .active-daxmu-1376-contact-info { text-align: center; }
    .active-daxmu-1376-footer-bottom { flex-direction: column; align-items: center; gap: 15px; }
}