﻿:root {
    --mw-bg: #081217;
    --mw-bg-soft: #0f1d24;
    --mw-panel: rgba(14, 28, 34, 0.9);
    --mw-line: rgba(59, 240, 226, 0.16);
    --mw-text: #effefb;
    --mw-muted: #a6c3c0;
    --mw-accent: #3bf0e2;
    --mw-accent-strong: #14d6c9;
    --mw-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --mw-radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.mw-body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--mw-text);
    background:
        radial-gradient(circle at top left, rgba(59, 240, 226, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(20, 214, 201, 0.12), transparent 24%),
        linear-gradient(180deg, #071015 0%, #0a171d 50%, #061015 100%);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

.mw-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mw-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(7, 16, 21, 0.84);
    border-bottom: 1px solid var(--mw-line);
}

.mw-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mw-logo {
    text-decoration: none;
    color: var(--mw-text);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    font-size: 1rem;
}

.mw-nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.mw-nav a,
.mw-footer__links a {
    text-decoration: none;
    color: var(--mw-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.mw-nav a:hover,
.mw-footer__links a:hover {
    color: var(--mw-accent);
    transform: translateY(-1px);
}

.mw-disclaimer {
    text-align: center;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: #d4fbf6;
    background: linear-gradient(90deg, rgba(59, 240, 226, 0.12), rgba(20, 214, 201, 0.08));
    border-top: 1px solid rgba(59, 240, 226, 0.08);
}

.mw-menu-toggle {
    display: none;
}

.mw-burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--mw-line);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mw-burger span {
    width: 18px;
    height: 2px;
    background: var(--mw-text);
}

.mw-hero,
.mw-practice,
.mw-audience,
.mw-plans,
.mw-quote,
.mw-faq,
.mw-contact {
    padding: 88px 0;
}

.mw-hero__grid,
.mw-practice__grid,
.mw-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
}

.mw-label {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    color: var(--mw-accent);
}

.mw-hero h1,
.mw-practice h2,
.mw-audience h2,
.mw-plans h2,
.mw-faq h2,
.mw-contact h2 {
    margin: 0 0 18px;
    line-height: 1.08;
}

.mw-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.mw-practice h2,
.mw-audience h2,
.mw-plans h2,
.mw-faq h2,
.mw-contact h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.mw-lead,
.mw-practice p,
.mw-card p,
.mw-tile p,
.mw-faq p,
.mw-contact p,
.mw-footer p,
.mw-quote__card p {
    color: var(--mw-muted);
}

.mw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 34px;
}

.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.mw-btn:hover {
    transform: translateY(-2px);
}

.mw-btn--primary {
    background: linear-gradient(135deg, var(--mw-accent), var(--mw-accent-strong));
    color: #061014;
    box-shadow: 0 14px 34px rgba(59, 240, 226, 0.22);
}

.mw-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--mw-line);
    color: var(--mw-text);
}

.mw-metrics,
.mw-practice__cards,
.mw-audience__grid,
.mw-plan-grid,
.mw-faq__list {
    display: grid;
    gap: 18px;
}

.mw-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mw-metrics article,
.mw-card,
.mw-tile,
.mw-plan,
.mw-faq details,
.mw-form,
.mw-quote__card {
    background: var(--mw-panel);
    border: 1px solid var(--mw-line);
    border-radius: var(--mw-radius);
    box-shadow: var(--mw-shadow);
}

.mw-metrics article {
    padding: 18px;
}

.mw-metrics strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.mw-metrics span {
    font-size: 0.92rem;
    color: var(--mw-muted);
}

.mw-frame {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--mw-shadow);
    position: relative;
}

.mw-frame::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(59, 240, 226, 0.22), transparent 70%);
    pointer-events: none;
}

.mw-frame img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

.mw-frame--hero img {
    min-height: 560px;
    aspect-ratio: 5 / 6;
}

.mw-practice__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mw-card,
.mw-tile,
.mw-plan {
    padding: 24px;
}

.mw-card h3,
.mw-tile h3,
.mw-plan h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.mw-list {
    margin: 0;
    padding-left: 20px;
    color: var(--mw-muted);
}

.mw-list li + li {
    margin-top: 10px;
}

.mw-audience__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mw-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mw-plan--featured {
    border-color: rgba(59, 240, 226, 0.34);
    transform: translateY(-8px);
}

.mw-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(59, 240, 226, 0.12);
    color: var(--mw-accent);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.mw-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.mw-plan ul {
    margin: 0 0 24px;
    padding-left: 18px;
    color: var(--mw-muted);
}

.mw-plan li + li {
    margin-top: 8px;
}

.mw-quote__card {
    padding: 34px;
    text-align: center;
}

.mw-quote__card p {
    margin: 0 0 14px;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.mw-quote__card span {
    color: var(--mw-accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
}

.mw-faq__list {
    max-width: 920px;
}

.mw-faq details {
    padding: 22px 24px;
}

.mw-faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.mw-faq summary::-webkit-details-marker {
    display: none;
}

.mw-faq p {
    margin: 14px 0 0;
}

.mw-form {
    padding: 28px;
    display: grid;
    gap: 14px;
}

.mw-form input,
.mw-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 14, 18, 0.92);
    color: var(--mw-text);
    font: inherit;
}

.mw-form textarea {
    resize: vertical;
    min-height: 130px;
}

.mw-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--mw-muted);
    font-size: 0.95rem;
}

.mw-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.mw-footer {
    padding: 28px 0 44px;
    border-top: 1px solid var(--mw-line);
}

.mw-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
}

.mw-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 1080px) {
    .mw-hero__grid,
    .mw-practice__grid,
    .mw-contact__grid,
    .mw-metrics,
    .mw-practice__cards,
    .mw-audience__grid,
    .mw-plan-grid {
        grid-template-columns: 1fr;
    }

    .mw-plan--featured {
        transform: none;
    }
}

@media (max-width: 840px) {
    .mw-shell {
        width: min(100% - 28px, 1180px);
    }

    .mw-burger {
        display: inline-flex;
    }

    .mw-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(7, 16, 21, 0.98);
        border: 1px solid var(--mw-line);
        box-shadow: var(--mw-shadow);
    }

    .mw-menu-toggle:checked ~ .mw-nav {
        display: flex;
    }

    .mw-header__inner {
        position: relative;
    }

    .mw-hero,
    .mw-practice,
    .mw-audience,
    .mw-plans,
    .mw-quote,
    .mw-faq,
    .mw-contact {
        padding: 70px 0;
    }
}

@media (max-width: 640px) {
    .mw-header__inner {
        min-height: 76px;
    }

    .mw-logo {
        letter-spacing: 0.12em;
        font-size: 0.96rem;
    }

    .mw-footer__inner {
        flex-direction: column;
    }
}
