:root{
    --dark:#202b33;
    --dark2:#172128;
    --green:#26745e;
    --green2:#1e604e;
    --soft:#eaf3ef;
    --bg:#f5f7f8;
    --text:#172128;
    --muted:#66747b;
    --line:#dde4e7;
    --white:#fff;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a{
    color:inherit;
}

.mgh-shell{
    width:min(
        1120px,
        calc(100% - 34px)
    );
    margin:auto;
}

/* HEADER */

.mgh-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(14px);
}

.mgh-nav{
    min-height:70px;
    display:flex;
    align-items:center;
    gap:25px;
}

.mgh-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.mgh-brand>span{
    width:39px;
    height:39px;
    display:grid;
    place-items:center;
    border-radius:11px;
    background:var(--dark);
    color:#fff;
    font-weight:900;
}

.mgh-brand strong{
    display:flex;
    flex-direction:column;
    font-size:.93rem;
}

.mgh-brand small{
    margin-top:2px;
    color:var(--green);
    font-size:.58rem;
    letter-spacing:.12em;
}

.mgh-nav nav{
    margin-left:auto;
    display:flex;
    gap:20px;
}

.mgh-nav nav a{
    color:#5d6970;
    text-decoration:none;
    font-size:.76rem;
    font-weight:750;
}

.mgh-back{
    padding:9px 13px;
    border-radius:10px;
    background:var(--dark);
    color:#fff;
    text-decoration:none;
    font-size:.71rem;
    font-weight:850;
}

/* HERO */

.mgh-hero{
    padding:82px 0 76px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(38,116,94,.15),
            transparent 30%
        ),
        #fff;
}

.mgh-hero>div>span,
.mgh-layout>aside>span,
.mgh-section-head>span,
.mgh-support>div>div>span{
    color:var(--green);
    font-size:.64rem;
    font-weight:900;
    letter-spacing:.13em;
}

.mgh-hero h1{
    max-width:850px;
    margin:12px 0;
    font-size:clamp(
        3rem,
        7vw,
        5.6rem
    );
    line-height:.9;
    letter-spacing:-.06em;
}

.mgh-hero h1 em{
    color:var(--green);
    font-style:normal;
}

.mgh-hero p{
    max-width:690px;
    color:var(--muted);
    line-height:1.62;
    font-size:1.01rem;
}

.mgh-version{
    margin-top:21px;
    display:inline-block;
    padding:8px 11px;
    border:1px solid var(--line);
    border-radius:100px;
    background:#fff;
    color:#59666d;
    font-size:.7rem;
    font-weight:750;
}

/* SHORTCUTS */

.mgh-shortcuts{
    background:var(--dark);
    color:#fff;
}

.mgh-shortcuts .mgh-shell{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.mgh-shortcuts a{
    min-height:104px;
    padding:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-right:
        1px solid rgba(255,255,255,.09);
    text-decoration:none;
}

.mgh-shortcuts b{
    color:#79bca7;
    font-size:.57rem;
}

.mgh-shortcuts strong{
    margin-top:5px;
    font-size:.79rem;
}

.mgh-shortcuts small{
    margin-top:3px;
    color:#aeb9be;
    font-size:.61rem;
}

/* SECTIONS */

.mgh-section{
    padding:84px 0;
}

.mgh-layout{
    display:grid;
    grid-template-columns:290px 1fr;
    gap:62px;
}

.mgh-layout>aside h2{
    margin:9px 0;
    font-size:2rem;
    line-height:1;
    letter-spacing:-.04em;
}

.mgh-layout>aside p{
    color:var(--muted);
    line-height:1.55;
    font-size:.8rem;
}

.mgh-content{
    display:grid;
    gap:12px;
}

.mgh-step{
    padding:20px;
    display:grid;
    grid-template-columns:38px 1fr;
    gap:15px;
    border:1px solid var(--line);
    border-radius:15px;
    background:#fff;
}

.mgh-step>b{
    width:32px;
    height:32px;
    display:grid;
    place-items:center;
    border-radius:9px;
    background:var(--soft);
    color:var(--green2);
    font-size:.7rem;
}

.mgh-step h3{
    margin:2px 0 7px;
    font-size:.93rem;
}

.mgh-step p{
    margin:5px 0;
    color:var(--muted);
    line-height:1.58;
    font-size:.78rem;
}

.mgh-step code{
    margin-top:7px;
    display:inline-block;
    padding:8px 10px;
    border-radius:8px;
    background:#f1f3f4;
    color:#405057;
    font-size:.7rem;
}

.mgh-important{
    margin-top:10px;
    display:block;
    color:#525f65;
    font-size:.72rem;
}

.mgh-link{
    margin-top:8px;
    display:inline-block;
    color:var(--green2);
    font-size:.74rem;
    font-weight:850;
}

.mgh-tip,
.mgh-warning{
    margin-top:5px;
    padding:17px;
    border-radius:14px;
}

.mgh-tip{
    background:var(--soft);
}

.mgh-warning{
    background:#fff4dc;
    color:#5e5037;
}

.mgh-tip strong,
.mgh-warning strong{
    font-size:.77rem;
}

.mgh-tip p,
.mgh-warning p{
    margin:5px 0 0;
    line-height:1.5;
    font-size:.73rem;
}

/* DARK */

.mgh-dark{
    background:var(--dark);
    color:#fff;
}

.mgh-dark .mgh-layout>aside p{
    color:#aeb9be;
}

.mgh-dark .mgh-step{
    border-color:rgba(255,255,255,.09);
    background:rgba(255,255,255,.055);
}

.mgh-dark .mgh-step>b{
    background:#72b69f;
    color:#15231d;
}

.mgh-dark .mgh-step p{
    color:#b7c1c6;
}

.mgh-prices{
    margin:14px 0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}

.mgh-prices>span{
    position:relative;
    padding:12px;
    display:flex;
    flex-direction:column;
    border:
        1px solid rgba(255,255,255,.12);
    border-radius:11px;
    color:#aebac0;
    font-size:.61rem;
}

.mgh-prices b{
    color:#fff;
    font-size:1.15rem;
}

.mgh-prices .recommended{
    border-color:#74b9a3;
}

.mgh-prices small{
    color:#80c2ad;
    font-size:.47rem;
    font-weight:900;
}

.mgh-button{
    margin-top:5px;
    display:inline-flex;
    padding:10px 14px;
    border-radius:10px;
    background:var(--green);
    color:#fff;
    text-decoration:none;
    font-size:.73rem;
    font-weight:850;
}

/* LICENCIA */

.mgh-card-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.mgh-card-grid article{
    padding:21px;
    border:1px solid var(--line);
    border-radius:15px;
    background:#fff;
}

.mgh-card-icon{
    width:37px;
    height:37px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:var(--soft);
    color:var(--green2);
    font-weight:900;
}

.mgh-card-grid h3{
    margin:15px 0 7px;
    font-size:.92rem;
}

.mgh-card-grid p{
    margin:0;
    color:var(--muted);
    line-height:1.58;
    font-size:.77rem;
}

/* FAQ */

.mgh-soft{
    background:#edf3f1;
}

.mgh-section-head{
    max-width:720px;
    margin-bottom:29px;
}

.mgh-section-head h2{
    margin:8px 0;
    font-size:clamp(
        2rem,
        4vw,
        3.2rem
    );
    letter-spacing:-.04em;
}

.mgh-section-head p{
    color:var(--muted);
    line-height:1.55;
}

.mgh-faq{
    border-top:1px solid #d5dfdb;
}

.mgh-faq details{
    border-bottom:1px solid #d5dfdb;
}

.mgh-faq summary{
    position:relative;
    padding:19px 35px 19px 0;
    cursor:pointer;
    list-style:none;
    font-size:.85rem;
    font-weight:800;
}

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

.mgh-faq summary::after{
    content:"+";
    position:absolute;
    right:5px;
    color:var(--green);
    font-size:1.2rem;
}

.mgh-faq details[open] summary::after{
    content:"−";
}

.mgh-faq p{
    max-width:760px;
    margin:-4px 0 21px;
    color:#5f6d73;
    line-height:1.6;
    font-size:.78rem;
}

/* SUPPORT */

.mgh-support{
    padding:70px 0;
    background:linear-gradient(
        135deg,
        #1c2930,
        #244b40
    );
    color:#fff;
}

.mgh-support-grid{
    display:grid;
    grid-template-columns:1fr 410px;
    gap:58px;
    align-items:center;
}

.mgh-support h2{
    margin:9px 0;
    font-size:clamp(
        2rem,
        4.5vw,
        3.5rem
    );
    line-height:1;
    letter-spacing:-.045em;
}

.mgh-support p{
    color:#bdc8cd;
    line-height:1.55;
}

.mgh-support-button{
    margin-top:9px;
    display:inline-flex;
    padding:11px 15px;
    border-radius:11px;
    background:#fff;
    color:var(--dark);
    text-decoration:none;
    font-size:.75rem;
    font-weight:850;
}

.mgh-support aside{
    padding:22px;
    border:
        1px solid rgba(255,255,255,.1);
    border-radius:16px;
    background:rgba(255,255,255,.055);
}

.mgh-support aside strong{
    font-size:.78rem;
}

.mgh-support aside ul{
    padding-left:18px;
    color:#c2cdd1;
    line-height:1.7;
    font-size:.73rem;
}

.mgh-support aside p{
    margin-bottom:0;
    font-size:.68rem;
}

/* FOOTER */

.mgh-footer{
    padding:29px 0;
    background:var(--dark2);
    color:#aeb9be;
}

.mgh-footer>.mgh-shell{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.mgh-footer div div{
    display:flex;
    flex-direction:column;
}

.mgh-footer strong{
    color:#fff;
}

.mgh-footer span{
    margin-top:3px;
    font-size:.62rem;
}

.mgh-footer nav{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.mgh-footer nav a{
    color:#aeb9be;
    text-decoration:none;
    font-size:.66rem;
}

/* RESPONSIVE */

@media(max-width:900px){

    .mgh-nav nav{
        display:none;
    }

    .mgh-back{
        margin-left:auto;
    }

    .mgh-shortcuts .mgh-shell{
        grid-template-columns:repeat(2,1fr);
    }

    .mgh-layout{
        grid-template-columns:1fr;
        gap:25px;
    }

    .mgh-support-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:620px){

    .mgh-shell{
        width:min(
            100% - 24px,
            1120px
        );
    }

    .mgh-hero{
        padding:54px 0;
    }

    .mgh-shortcuts .mgh-shell{
        grid-template-columns:1fr;
    }

    .mgh-section{
        padding:59px 0;
    }

    .mgh-prices{
        grid-template-columns:1fr;
    }

    .mgh-card-grid{
        grid-template-columns:1fr;
    }

    .mgh-footer>.mgh-shell{
        flex-direction:column;
        align-items:flex-start;
    }

}
