/* VARIABLES & RESET */
:root {
    --breath-bexma-8573-bg: #000F2B;
    --breath-bexma-8573-accent: #D9FAFF;
    --breath-bexma-8573-text-main: #FFFFFF;
    --breath-bexma-8573-text-muted: #B0C4DE;
    --breath-bexma-8573-glass: rgba(255, 255, 255, 0.05);
    --breath-bexma-8573-glass-border: rgba(217, 250, 255, 0.15);
    --breath-bexma-8573-ice-glow: 0 0 15px rgba(217, 250, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

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

.breath-bexma-8573-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breath-bexma-8573-center {
    text-align: center;
}

img.breath-bexma-8573-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* TYPOGRAPHY */
.breath-bexma-8573-h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--breath-bexma-8573-accent);
}

.breath-bexma-8573-h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--breath-bexma-8573-accent);
    position: relative;
    padding-bottom: 15px;
}

.breath-bexma-8573-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--breath-bexma-8573-accent);
}

.breath-bexma-8573-subtitle {
    font-size: 1.25rem;
    color: var(--breath-bexma-8573-text-muted);
    margin-bottom: 20px;
}

.breath-bexma-8573-text {
    margin-bottom: 15px;
    color: var(--breath-bexma-8573-text-muted);
}

/* BUTTONS */
.breath-bexma-8573-btn-ice {
    display: inline-block;
    background-color: var(--breath-bexma-8573-accent);
    color: var(--breath-bexma-8573-bg);
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.breath-bexma-8573-btn-ice:hover {
    box-shadow: var(--breath-bexma-8573-ice-glow);
    transform: translateY(-2px);
}

.breath-bexma-8573-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--breath-bexma-8573-accent);
    padding: 13px 33px;
    border: 2px solid var(--breath-bexma-8573-accent);
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.breath-bexma-8573-btn-outline:hover {
    background-color: rgba(217, 250, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(217, 250, 255, 0.2);
}

/* HEADER */
.breath-bexma-8573-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--breath-bexma-8573-glass-border);
}

.breath-bexma-8573-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.breath-bexma-8573-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--breath-bexma-8573-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breath-bexma-8573-nav-list {
    display: flex;
    list-style: none;
}

.breath-bexma-8573-nav-link {
    color: var(--breath-bexma-8573-text-main);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.breath-bexma-8573-nav-link:hover {
    color: var(--breath-bexma-8573-accent);
}

/* BURGER MENU */
.breath-bexma-8573-menu-checkbox {
    display: none;
}

.breath-bexma-8573-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.breath-bexma-8573-burger span {
    width: 25px;
    height: 2px;
    background: var(--breath-bexma-8573-accent);
    margin: 3px 0;
    transition: 0.4s;
}

/* HERO SECTION */
.breath-bexma-8573-hero {
    padding: 160px 0 80px;
}

.breath-bexma-8573-hero-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.breath-bexma-8573-hero-image-wrap {
    flex: 1;
}

.breath-bexma-8573-hero-content {
    flex: 1;
}

.breath-bexma-8573-hero-gallery {
    display: flex;
    gap: 20px;
}

.breath-bexma-8573-gallery-item {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--breath-bexma-8573-glass-border);
}

/* PRICES SECTION */
.breath-bexma-8573-prices {
    padding: 100px 0;
    background: linear-gradient(180deg, #000F2B 0%, #001A4D 100%);
}

.breath-bexma-8573-price-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.breath-bexma-8573-price-card {
    background: var(--breath-bexma-8573-glass);
    border: 1px solid var(--breath-bexma-8573-glass-border);
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    text-align: center;
    transition: transform 0.3s;
}

.breath-bexma-8573-price-card:hover {
    transform: translateY(-10px);
}

.breath-bexma-8573-price-featured {
    border: 2px solid var(--breath-bexma-8573-accent);
    transform: scale(1.05);
}

.breath-bexma-8573-price-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.breath-bexma-8573-price-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--breath-bexma-8573-accent);
}

.breath-bexma-8573-price-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.breath-bexma-8573-price-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.breath-bexma-8573-price-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--breath-bexma-8573-text-muted);
    padding-left: 20px;
    position: relative;
}

.breath-bexma-8573-price-list li::before {
    content: '❄';
    position: absolute;
    left: 0;
    color: var(--breath-bexma-8573-accent);
}

/* AUDIENCE SECTION */
.breath-bexma-8573-audience {
    padding: 100px 0;
}

.breath-bexma-8573-intro-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.breath-bexma-8573-audience-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.breath-bexma-8573-audience-item {
    flex: 1;
    min-width: 250px;
    background: var(--breath-bexma-8573-glass);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--breath-bexma-8573-glass-border);
}

.breath-bexma-8573-audience-item h4 {
    margin: 20px 0 10px;
    color: var(--breath-bexma-8573-accent);
    font-size: 1.2rem;
}

.breath-bexma-8573-audience-item p {
    font-size: 0.95rem;
    color: var(--breath-bexma-8573-text-muted);
    margin-bottom: 15px;
}

.breath-bexma-8573-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(217, 250, 255, 0.1);
    border: 1px solid var(--breath-bexma-8573-accent);
    color: var(--breath-bexma-8573-accent);
    font-size: 0.85rem;
    border-radius: 20px;
}

/* BENEFITS SECTION */
.breath-bexma-8573-benefits {
    padding: 100px 0;
    background: #00091A;
}

.breath-bexma-8573-benefits-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.breath-bexma-8573-benefits-content {
    flex: 1.2;
}

.breath-bexma-8573-benefits-image {
    flex: 0.8;
}

.breath-bexma-8573-check-list {
    list-style: none;
    margin-top: 30px;
}

.breath-bexma-8573-check-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}

.breath-bexma-8573-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 10px;
    border-left: 3px solid var(--breath-bexma-8573-accent);
    border-bottom: 3px solid var(--breath-bexma-8573-accent);
    transform: rotate(-45deg);
}

/* QUOTE SECTION */
.breath-bexma-8573-quote {
    padding: 100px 0;
}

.breath-bexma-8573-quote-card {
    background: var(--breath-bexma-8573-glass);
    border-left: 5px solid var(--breath-bexma-8573-accent);
    padding: 60px;
    border-radius: 0 12px 12px 0;
}

.breath-bexma-8573-blockquote {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}

.breath-bexma-8573-author {
    font-weight: bold;
    color: var(--breath-bexma-8573-accent);
    font-size: 1.2rem;
}

.breath-bexma-8573-author-details {
    list-style: none;
    margin-top: 20px;
    color: var(--breath-bexma-8573-text-muted);
}

.breath-bexma-8573-author-details li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* FAQ SECTION */
.breath-bexma-8573-faq {
    padding: 100px 0;
}

.breath-bexma-8573-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.breath-bexma-8573-details {
    background: var(--breath-bexma-8573-glass);
    margin-bottom: 15px;
    border: 1px solid var(--breath-bexma-8573-glass-border);
    border-radius: 8px;
}

.breath-bexma-8573-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    list-style: none;
    position: relative;
}

.breath-bexma-8573-summary::-webkit-details-marker {
    display: none;
}

.breath-bexma-8573-summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--breath-bexma-8573-accent);
    font-size: 1.5rem;
}

.breath-bexma-8573-details[open] .breath-bexma-8573-summary::after {
    content: '-';
}

.breath-bexma-8573-faq-answer {
    padding: 0 20px 20px;
    color: var(--breath-bexma-8573-text-muted);
    border-top: 1px solid var(--breath-bexma-8573-glass-border);
}

/* CONTENT LONG SECTIONS */
.breath-bexma-8573-content-long {
    padding: 80px 0;
    background: #000714;
}

.breath-bexma-8573-content-long p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--breath-bexma-8573-text-muted);
}

.breath-bexma-8573-simple-list {
    margin: 20px 0 30px 40px;
}

.breath-bexma-8573-simple-list li {
    margin-bottom: 10px;
    color: var(--breath-bexma-8573-accent);
}

/* CONTACT FORM */
.breath-bexma-8573-contact {
    padding: 100px 0;
}

.breath-bexma-8573-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--breath-bexma-8573-glass);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--breath-bexma-8573-glass-border);
}

.breath-bexma-8573-form {
    margin-top: 40px;
}

.breath-bexma-8573-form-group {
    margin-bottom: 25px;
}

.breath-bexma-8573-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--breath-bexma-8573-accent);
}

.breath-bexma-8573-form-group input,
.breath-bexma-8573-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--breath-bexma-8573-glass-border);
    border-radius: 4px;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.breath-bexma-8573-form-group input:focus,
.breath-bexma-8573-form-group textarea:focus {
    border-color: var(--breath-bexma-8573-accent);
}

.breath-bexma-8573-form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.breath-bexma-8573-form-checkbox input {
    margin-right: 12px;
    margin-top: 5px;
}

.breath-bexma-8573-form-checkbox a {
    color: var(--breath-bexma-8573-accent);
}

/* FOOTER */
.breath-bexma-8573-footer {
    padding: 60px 0 40px;
    background: #000410;
    border-top: 1px solid var(--breath-bexma-8573-glass-border);
    text-align: center;
}

.breath-bexma-8573-footer-main {
    margin-bottom: 40px;
}

.breath-bexma-8573-footer-main p {
    color: var(--breath-bexma-8573-text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.breath-bexma-8573-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.breath-bexma-8573-footer-links a {
    color: var(--breath-bexma-8573-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.breath-bexma-8573-footer-links a:hover {
    color: var(--breath-bexma-8573-accent);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .breath-bexma-8573-hero-grid,
    .breath-bexma-8573-benefits-flex {
        flex-direction: column;
        text-align: center;
    }
    .breath-bexma-8573-hero-image-wrap,
    .breath-bexma-8573-benefits-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .breath-bexma-8573-h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .breath-bexma-8573-burger { display: flex; }
    .breath-bexma-8573-nav {
        position: absolute;
        top: 80px;
        right: -100%;
        width: 100%;
        background: var(--breath-bexma-8573-bg);
        transition: 0.5s;
        height: calc(100vh - 80px);
    }
    .breath-bexma-8573-nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .breath-bexma-8573-nav-link { margin: 20px 0; font-size: 1.2rem; }
    .breath-bexma-8573-menu-checkbox:checked ~ .breath-bexma-8573-nav { right: 0; }
    
    .breath-bexma-8573-price-card { max-width: 100%; flex: 1 1 100%; }
    .breath-bexma-8573-price-featured { transform: scale(1); }
    .breath-bexma-8573-price-featured:hover { transform: translateY(-10px); }
    
    .breath-bexma-8573-hero-gallery { flex-direction: column; }
    .breath-bexma-8573-quote-card { padding: 30px; }
    .breath-bexma-8573-blockquote { font-size: 1.2rem; }
}