:root {
    --mh-blue: #2e7da8;
    --mh-green: #2f8f78;
    --mh-dark: #123747;
    --mh-text: #2d4652;
    --mh-muted: #6b7f86;
    --mh-bg: #f4fbf9;
    --mh-soft: #edf7f5;
    --mh-white: #ffffff;
    --mh-border: rgba(46, 125, 168, 0.16);
    --mh-shadow: 0 24px 80px rgba(35, 83, 98, 0.14);
}

.mh-tv-app {
    position: relative;
    max-width: 980px;
    margin: 50px auto;
    padding: 20px;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--mh-text);
}

.mh-tv-app * {
    box-sizing: border-box;
}

.mh-tv-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.4;
    z-index: 0;
}

.mh-tv-orb-one {
    width: 180px;
    height: 180px;
    background: rgba(47, 143, 120, 0.18);
    top: 30px;
    left: -30px;
}

.mh-tv-orb-two {
    width: 220px;
    height: 220px;
    background: rgba(46, 125, 168, 0.15);
    bottom: 10px;
    right: -40px;
}

.mh-tv-shell {
    position: relative;
    z-index: 1;
    background:
        radial-gradient(circle at top left, rgba(47,143,120,0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(46,125,168,0.10), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f4fbf9 100%);
    border: 1px solid rgba(46, 125, 168, 0.12);
    border-radius: 34px;
    padding: 34px;
    box-shadow: var(--mh-shadow);
    overflow: hidden;
}

.mh-tv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.mh-tv-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    letter-spacing: 0.04em;
    color: var(--mh-green);
    font-size: 14px;
}

.mh-tv-logo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(47,143,120,0.14), rgba(46,125,168,0.14));
    border: 1px solid rgba(47,143,120,0.22);
}

.mh-tv-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(47,143,120,0.18);
    color: var(--mh-green);
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(35,83,98,0.08);
}

.mh-tv-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.mh-tv-hero h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--mh-dark);
}

.mh-tv-hero p {
    margin: 18px auto 0;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--mh-muted);
}

.mh-tv-progress-card {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(46,125,168,0.12);
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 24px;
    box-shadow: 0 14px 34px rgba(35,83,98,0.08);
}

.mh-tv-progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    font-weight: 800;
    color: var(--mh-dark);
    margin-bottom: 11px;
}

.mh-tv-progress-track {
    width: 100%;
    height: 12px;
    background: rgba(18,55,71,0.07);
    border-radius: 999px;
    overflow: hidden;
}

#mh-tv-progress-fill {
    width: 14%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mh-green), #55c4a2);
    box-shadow: 0 0 22px rgba(47,143,120,0.35);
    transition: width 0.35s ease;
}

.mh-tv-form {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(46,125,168,0.12);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 46px rgba(35,83,98,0.10);
}

.mh-tv-step {
    display: none;
    animation: mhTvSlideIn 0.28s ease;
}

.mh-tv-step.active {
    display: block;
}

@keyframes mhTvSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mh-tv-step-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #f4fbf9, #ffffff);
    border: 1px solid rgba(46,125,168,0.12);
    box-shadow: 0 12px 32px rgba(35,83,98,0.08);
    font-size: 28px;
    margin-bottom: 18px;
}

.mh-tv-step h3 {
    margin: 0 0 22px;
    color: var(--mh-dark);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.mh-tv-option {
    position: relative;
    display: grid;
    grid-template-columns: 24px 46px 1fr;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(46,125,168,0.13);
    color: var(--mh-text);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.mh-tv-option:hover {
    transform: translateY(-2px);
    border-color: rgba(47,143,120,0.42);
    box-shadow: 0 12px 26px rgba(35,83,98,0.08);
    background: #ffffff;
}

.mh-tv-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mh-tv-radio {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid rgba(18,55,71,0.24);
    background: #ffffff;
    position: relative;
}

.mh-tv-option input:checked + .mh-tv-radio {
    border-color: var(--mh-green);
    background: var(--mh-green);
    box-shadow: 0 0 0 5px rgba(47,143,120,0.12);
}

.mh-tv-option input:checked + .mh-tv-radio::after {
    content: "";
    width: 7px;
    height: 7px;
    background: white;
    border-radius: 999px;
    position: absolute;
    top: 4.5px;
    left: 4.5px;
}

.mh-tv-option:has(input:checked) {
    border-color: rgba(47,143,120,0.65);
    background: linear-gradient(135deg, rgba(47,143,120,0.08), rgba(46,125,168,0.04));
    box-shadow: inset 0 0 0 1px rgba(47,143,120,0.14), 0 12px 26px rgba(35,83,98,0.08);
}

.mh-tv-option-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #f4fbf9;
    font-size: 20px;
}

.mh-tv-email-text {
    color: var(--mh-muted);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.mh-tv-brevo-box {
    margin: 22px auto;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(46, 125, 168, 0.14);
    box-shadow: 0 14px 34px rgba(35, 83, 98, 0.08);
    overflow: hidden;
}

.mh-tv-brevo-box iframe {
    width: 100%;
    max-width: 540px;
    border-radius: 16px;
}

.mh-tv-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.mh-tv-trust span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4fbf9;
    color: var(--mh-green);
    font-size: 13px;
    font-weight: 800;
}

.mh-tv-buttons {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 24px;
}

.mh-tv-buttons button {
    border: none;
    border-radius: 16px;
    padding: 15px 22px;
    cursor: pointer;
    font-weight: 850;
    font-size: 15px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.mh-tv-buttons button:hover {
    transform: translateY(-2px);
}

#mh-tv-prev {
    background: #ffffff;
    color: var(--mh-dark);
    border: 1px solid rgba(46,125,168,0.16);
    box-shadow: 0 10px 24px rgba(35,83,98,0.06);
}

#mh-tv-next,
#mh-tv-submit {
    margin-left: auto;
    color: #ffffff;
    background: linear-gradient(135deg, var(--mh-green), #079978);
    box-shadow: 0 14px 28px rgba(47,143,120,0.25);
}

#mh-tv-submit {
    display: none;
}

.mh-tv-footer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.mh-tv-footer-features div {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(46,125,168,0.10);
    border-radius: 18px;
    padding: 14px;
    color: var(--mh-dark);
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 12px 26px rgba(35,83,98,0.06);
}

#mh-tv-result {
    display: none;
}

.mh-tv-result-card {
    margin-top: 28px;
    background:
        radial-gradient(circle at top left, rgba(47,143,120,0.10), transparent 34%),
        linear-gradient(135deg, #ffffff, #f8fcfb);
    border: 1px solid rgba(47,143,120,0.16);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 22px 60px rgba(35,83,98,0.12);
    animation: mhTvResultPop 0.45s ease;
}

@keyframes mhTvResultPop {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(14px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.mh-tv-confetti {
    font-size: 26px;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.mh-tv-result-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: center;
}

.mh-tv-score-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        conic-gradient(var(--mh-green) var(--score-angle), rgba(18,55,71,0.08) 0deg);
    position: relative;
    margin: 0 auto;
    box-shadow: 0 18px 40px rgba(47,143,120,0.16);
}

.mh-tv-score-circle::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: #ffffff;
}

.mh-tv-score-inner {
    position: relative;
    text-align: center;
}

.mh-tv-score-number {
    display: block;
    font-size: 58px;
    font-weight: 900;
    color: var(--mh-dark);
    line-height: 1;
}

.mh-tv-score-label {
    color: var(--mh-muted);
    font-weight: 800;
}

.mh-tv-profile-kicker {
    color: var(--mh-green);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mh-tv-result-card h3 {
    color: var(--mh-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 10px 0 12px;
}

.mh-tv-result-card p {
    color: var(--mh-text);
    font-size: 17px;
    line-height: 1.7;
}

.mh-tv-deep-analysis,
.mh-tv-hidden-mistake {
    margin-top: 22px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(244, 251, 249, 0.82);
    border: 1px solid rgba(47, 143, 120, 0.12);
}

.mh-tv-deep-analysis h4,
.mh-tv-hidden-mistake h4 {
    margin: 0 0 10px;
    color: var(--mh-dark);
    font-size: 20px;
}

.mh-tv-deep-analysis p,
.mh-tv-hidden-mistake p {
    margin: 0;
    color: var(--mh-text);
    line-height: 1.7;
}

.mh-tv-hidden-mistake {
    background: rgba(255, 250, 238, 0.8);
    border-color: rgba(219, 163, 65, 0.22);
}

.mh-tv-recommendations {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(46,125,168,0.10);
}

.mh-tv-recommendations h4 {
    margin: 0 0 16px;
    color: var(--mh-dark);
    font-size: 20px;
}

.mh-tv-rec-list {
    display: grid;
    gap: 12px;
}

.mh-tv-rec {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    background: rgba(244,251,249,0.76);
    border: 1px solid rgba(47,143,120,0.10);
    border-radius: 18px;
    padding: 14px;
}

.mh-tv-rec-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--mh-green);
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.mh-tv-note {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(47,143,120,0.08);
    color: var(--mh-dark);
    font-size: 15px;
    line-height: 1.6;
}

.mh-tv-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    width: 100%;
    padding: 16px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mh-green), #079978);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(47,143,120,0.25);
}

.mh-tv-shake {
    animation: mhTvShake 0.36s ease;
}

@keyframes mhTvShake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-7px);
    }

    50% {
        transform: translateX(7px);
    }

    75% {
        transform: translateX(-4px);
    }
}

.mh-tv-selected-pulse {
    animation: mhTvPulse 0.34s ease;
}

@keyframes mhTvPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.018);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 760px) {
    .mh-tv-app {
        padding: 10px;
        margin: 25px auto;
    }

    .mh-tv-shell {
        padding: 22px;
        border-radius: 26px;
    }

    .mh-tv-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .mh-tv-form {
        padding: 20px;
    }

    .mh-tv-option {
        grid-template-columns: 22px 40px 1fr;
        padding: 13px;
    }

    .mh-tv-buttons {
        flex-direction: column;
    }

    .mh-tv-buttons button,
    #mh-tv-next,
    #mh-tv-submit {
        width: 100%;
        margin-left: 0;
    }

    .mh-tv-footer-features {
        grid-template-columns: 1fr;
    }

    .mh-tv-result-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
.mh-tv-confirm-box {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 24px;
    padding: 20px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(244,251,249,0.95),
            rgba(255,255,255,0.95)
        );

    border: 1px solid rgba(47,143,120,0.18);

    box-shadow:
        0 10px 30px rgba(35,83,98,0.06);

    cursor: pointer;

    transition: all .25s ease;
}

.mh-tv-confirm-box:hover {
    transform: translateY(-2px);

    border-color: rgba(47,143,120,0.35);

    box-shadow:
        0 18px 40px rgba(35,83,98,0.10);
}

.mh-tv-confirm-box input {
    width: 24px;
    height: 24px;

    accent-color: var(--mh-green);

    flex-shrink: 0;
}

.mh-tv-confirm-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mh-tv-confirm-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--mh-dark);
    letter-spacing: -0.02em;
}

.mh-tv-confirm-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--mh-muted);
}

.mh-tv-confirm-box span {
    font-size: 17px;
    font-weight: 850;
    line-height: 1.45;
    color: var(--mh-dark);
}

.mh-tv-confirm-help {
    margin: 10px 0 0 54px;
    color: var(--mh-muted);
    font-size: 14px;
    line-height: 1.5;
}

.mh-tv-disabled {
    opacity: 0.45;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}
}