/* RESET AND CORE COLORS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark-graphite: #0A0D10;
    --ice-light: #E6FBFF;
    --ice-glow: rgba(230, 251, 255, 0.4);
    --glass-bg: rgba(10, 13, 16, 0.85);
    --border-ice: rgba(230, 251, 255, 0.2);
    --text-muted: #A0B2B7;
    --accent-glow: 0 0 20px rgba(230, 251, 255, 0.25);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.maverin-eyecalm-9512-body-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark-graphite);
    color: var(--ice-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* LAYOUT CONTAINERS */
.maverin-eyecalm-9512-container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.maverin-eyecalm-9512-container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.maverin-eyecalm-9512-container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* HEADER STYLE */
.maverin-eyecalm-9512-header-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-ice);
}

.maverin-eyecalm-9512-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ice-light);
    text-shadow: 0 0 10px var(--ice-glow);
}

.maverin-eyecalm-9512-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.maverin-eyecalm-9512-nav-link {
    text-decoration: none;
    color: var(--ice-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.8;
}

.maverin-eyecalm-9512-nav-link:hover {
    opacity: 1;
    text-shadow: 0 0 8px var(--ice-light);
}

/* BURGER MENU (NO JS) */
.maverin-eyecalm-9512-checkbox-toggle {
    display: none;
}

.maverin-eyecalm-9512-burger-label {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.maverin-eyecalm-9512-burger-label span {
    width: 25px;
    height: 2px;
    background: var(--ice-light);
    transition: var(--transition);
}

/* HERO SECTION */
.maverin-eyecalm-9512-hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
}

.maverin-eyecalm-9512-container-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.maverin-eyecalm-9512-hero-image-side {
    flex: 1;
}

.maverin-eyecalm-9512-hero-text-side {
    flex: 1;
}

.maverin-eyecalm-9512-main-hero-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-ice);
    box-shadow: var(--accent-glow);
}

.maverin-eyecalm-9512-mini-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.maverin-eyecalm-9512-gallery-item {
    width: calc(33.333% - 10px);
    height: auto;
    border-radius: 2px;
    opacity: 0.7;
    transition: var(--transition);
    border: 1px solid var(--border-ice);
}

.maverin-eyecalm-9512-gallery-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.maverin-eyecalm-9512-h1-main-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.maverin-eyecalm-9512-p-sub-hero {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--ice-light);
    font-weight: 300;
}

.maverin-eyecalm-9512-p-description {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.maverin-eyecalm-9512-cta-button-main {
    display: inline-block;
    padding: 18px 40px;
    background: var(--ice-light);
    color: var(--bg-dark-graphite);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: var(--transition);
    border-radius: 2px;
}

.maverin-eyecalm-9512-cta-button-main:hover {
    background: #fff;
    box-shadow: 0 0 30px var(--ice-glow);
    transform: scale(1.02);
}

/* TITLES */
.maverin-eyecalm-9512-h2-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.maverin-eyecalm-9512-h2-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--ice-light);
}

/* AUDIENCE SECTION */
.maverin-eyecalm-9512-audience-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.maverin-eyecalm-9512-audience-text {
    flex: 1;
}

.maverin-eyecalm-9512-check-list {
    list-style: none;
    margin-top: 25px;
}

.maverin-eyecalm-9512-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.maverin-eyecalm-9512-check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ice-light);
}

.maverin-eyecalm-9512-product-card-preview {
    flex: 1;
    position: relative;
}

.maverin-eyecalm-9512-audience-img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-ice);
}

.maverin-eyecalm-9512-price-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--ice-light);
    color: var(--bg-dark-graphite);
    padding: 15px 25px;
    font-weight: 700;
    box-shadow: var(--accent-glow);
}

/* PRICING */
.maverin-eyecalm-9512-pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.maverin-eyecalm-9512-price-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-ice);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.maverin-eyecalm-9512-price-card:hover {
    border-color: var(--ice-light);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.maverin-eyecalm-9512-price-card-featured {
    background: rgba(230, 251, 255, 0.07);
    border-color: var(--ice-glow);
    transform: scale(1.05);
}

.maverin-eyecalm-9512-h3-card {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.maverin-eyecalm-9512-card-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.maverin-eyecalm-9512-card-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.maverin-eyecalm-9512-card-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.maverin-eyecalm-9512-quick-links-price {
    margin-bottom: 20px;
}

.maverin-eyecalm-9512-quick-links-price a {
    color: var(--ice-light);
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 1px dashed var(--ice-light);
}

.maverin-eyecalm-9512-btn-primary {
    display: block;
    padding: 15px;
    background: var(--ice-light);
    color: var(--bg-dark-graphite);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}

.maverin-eyecalm-9512-btn-secondary {
    display: block;
    padding: 15px;
    border: 1px solid var(--ice-light);
    color: var(--ice-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.maverin-eyecalm-9512-btn-secondary:hover {
    background: var(--ice-light);
    color: var(--bg-dark-graphite);
}

/* BENEFITS SECTION */
.maverin-eyecalm-9512-mirror-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.maverin-eyecalm-9512-mirror-text, .maverin-eyecalm-9512-mirror-image {
    flex: 1;
}

.maverin-eyecalm-9512-benefits-img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-ice);
}

.maverin-eyecalm-9512-styled-list {
    list-style: none;
    margin-top: 30px;
}

.maverin-eyecalm-9512-styled-list li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.maverin-eyecalm-9512-styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 1px;
    background: var(--ice-light);
}

/* EXPERT SECTION */
.maverin-eyecalm-9512-quote-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.maverin-eyecalm-9512-expert-avatar {
    border-radius: 50%;
    border: 2px solid var(--ice-light);
    margin-bottom: 25px;
    box-shadow: var(--accent-glow);
}

.maverin-eyecalm-9512-blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.maverin-eyecalm-9512-expert-name {
    display: block;
    font-weight: 700;
    color: var(--ice-light);
    font-style: normal;
}

.maverin-eyecalm-9512-expert-details {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-left: 3px solid var(--ice-light);
}

.maverin-eyecalm-9512-expert-list {
    list-style: none;
    margin-top: 15px;
}

.maverin-eyecalm-9512-expert-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* TEXT INFO BLOCKS */
.maverin-eyecalm-9512-text-info-block {
    padding: 100px 0;
}

.maverin-eyecalm-9512-bg-alt {
    background-color: rgba(255, 255, 255, 0.015);
}

.maverin-eyecalm-9512-text-para {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.maverin-eyecalm-9512-info-accent {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid var(--border-ice);
    background: rgba(230, 251, 255, 0.03);
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
}

.maverin-eyecalm-9512-grid-3-col {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.maverin-eyecalm-9512-grid-item {
    flex: 1;
    padding: 25px;
    border: 1px solid var(--border-ice);
}

.maverin-eyecalm-9512-h4-sub {
    margin-bottom: 15px;
    color: var(--ice-light);
    text-transform: uppercase;
    font-size: 1rem;
}

/* FAQ */
.maverin-eyecalm-9512-details {
    border-bottom: 1px solid var(--border-ice);
    padding: 20px 0;
}

.maverin-eyecalm-9512-summary {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.maverin-eyecalm-9512-summary::-webkit-details-marker {
    display: none;
}

.maverin-eyecalm-9512-summary::after {
    content: '+';
    font-size: 1.5rem;
}

.maverin-eyecalm-9512-details[open] .maverin-eyecalm-9512-summary::after {
    content: '-';
}

.maverin-eyecalm-9512-faq-answer {
    padding-top: 15px;
    color: var(--text-muted);
}

/* FORM SECTION */
.maverin-eyecalm-9512-form-card {
    background: #111418;
    padding: 60px;
    border: 1px solid var(--border-ice);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.maverin-eyecalm-9512-form-group {
    margin-bottom: 25px;
}

.maverin-eyecalm-9512-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.maverin-eyecalm-9512-input, .maverin-eyecalm-9512-textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-ice);
    padding: 15px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.maverin-eyecalm-9512-input:focus, .maverin-eyecalm-9512-textarea:focus {
    border-color: var(--ice-light);
    box-shadow: 0 0 10px rgba(230, 251, 255, 0.1);
}

.maverin-eyecalm-9512-textarea {
    min-height: 120px;
    resize: vertical;
}

.maverin-eyecalm-9512-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.maverin-eyecalm-9512-checkbox-group a {
    color: var(--ice-light);
}

.maverin-eyecalm-9512-submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--ice-light);
    color: var(--bg-dark-graphite);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.maverin-eyecalm-9512-submit-btn:hover {
    box-shadow: 0 0 25px var(--ice-glow);
    background: #fff;
}

/* FOOTER */
.maverin-eyecalm-9512-footer {
    background: #050709;
    border-top: 1px solid var(--border-ice);
    padding: 80px 0 40px;
}

.maverin-eyecalm-9512-footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.maverin-eyecalm-9512-footer-brand {
    max-width: 300px;
}

.maverin-eyecalm-9512-footer-brand p {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.maverin-eyecalm-9512-footer-contacts a {
    color: var(--ice-light);
    text-decoration: none;
}

.maverin-eyecalm-9512-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-ice);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.maverin-eyecalm-9512-footer-links {
    display: flex;
    gap: 20px;
}

.maverin-eyecalm-9512-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.maverin-eyecalm-9512-footer-links a:hover {
    color: var(--ice-light);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .maverin-eyecalm-9512-container-grid, .maverin-eyecalm-9512-mirror-block, .maverin-eyecalm-9512-audience-layout {
        flex-direction: column;
        text-align: center;
    }
    .maverin-eyecalm-9512-pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .maverin-eyecalm-9512-price-card {
        width: 100%;
        max-width: 500px;
    }
    .maverin-eyecalm-9512-mirror-block {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .maverin-eyecalm-9512-burger-label {
        display: flex;
    }
    .maverin-eyecalm-9512-nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark-graphite);
        transition: var(--transition);
        z-index: 999;
    }
    .maverin-eyecalm-9512-nav-list {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .maverin-eyecalm-9512-checkbox-toggle:checked ~ .maverin-eyecalm-9512-nav-menu {
        left: 0;
    }
    .maverin-eyecalm-9512-h1-main-title {
        font-size: 2.2rem;
    }
    .maverin-eyecalm-9512-grid-3-col {
        flex-direction: column;
    }
    .maverin-eyecalm-9512-footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .maverin-eyecalm-9512-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}