html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    position: relative;
}
#bbr {
    display: flex;
    grid-area: buttons;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}
#prez {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bb {
    color: white;
    height: 45px;
    width: 200px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 99px;
    transition: box-shadow .25s;
}
#buy span {
    padding-left: 20px;
    font-size:15px;
}
#buy {
    background-color: green;
    border-color: green;
}
#buy:hover {
    box-shadow: 0 0 12px rgba(34,197,94,.5),
    0 0 28px rgba(34,197,94,.35);
}
#test:hover {
    box-shadow:
    0 0 12px rgba(255,140,0,.5),
    0 0 28px rgba(255,140,0,.35);
}
#test::after {
    content: "➜";
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    color: #ff8c00;

    font-size: 17px;
    font-weight: 0;
    line-height: 1;

    margin-left: 12px;

    transition: transform .25s ease,
                box-shadow .25s ease;
}
#test span {
    padding-left:20px;
    font-size:15px;
}
#buy::after {
    content: "➜";
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: green;
    font-size: 17px;
    font-weight: 0;
    line-height: 1;
    margin-left: 12px;
    transition: transform .25s ease,
                box-shadow .25s ease;
}
#test {
    background-color: darkorange;
    border-color: darkorange;
}
#hero {
    padding: 80px 0;
    background:
        radial-gradient(circle at left,
            rgba(37,150,190,.18),
            transparent 40%),
        radial-gradient(circle at right,
            rgba(124,58,237,.15),
            transparent 35%),
        linear-gradient(#f8fbff,#eef6ff);
}
#herod {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "text image"
        "buttons buttons";
    align-items: center;
    justify-content:space-between;
    gap: 40px 60px;
    max-width: 1400px;
    margin: auto;
}
#hero-text {
    text-align:left;
    grid-area: text;
    width:100%;
}
#ff {
    max-height: 420px;
    height: auto;
    display: block;
    width: 100%;
    max-width: 650px;
    margin-bottom: 25px;
    margin-top: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
    border-radius: 18px;
    transition: transform .3s ease;
    flex: 1;
    max-width:650px;
    min-width: 0;
}
#ff:hover {
    transform: scale(1.02);
}
.entrance {
    justify-content:center;
    align-items:center;
    display:flex;
    padding-top:10px;
}
#bar {
    background-color: #3040db;
    display: flex;
    top: 0;
    position: sticky;
    height: 50px;
    align-items: center;
    z-index: 1000;
}
.navi {
    list-style-type: none;
    gap: 20px;
    height: 30px;
    font-size:25px;
    margin: 0;
    padding: 0;
    display:flex;
    justify-content: space-between;
}
.navi a {
    position:relative;
    color: white;
    text-decoration:none;
}

#menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.navi a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 100%;
    height: 2px;
    background: white;

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.navi a:hover::after {
    transform: scaleX(1);
}
#boxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.box {
    width: 250px;
    align-items: center;
    text-align: center;
    background-color: #DFF6FB;
    padding:30px;
    position:relative;
    border-radius:18px;
    border:2px solid transparent;
    transition:border-color .25s ease;
}
.box:hover {
    border-color:#1F28CC;
}
.bgicon {
    width: 80px;
    height: 60px;
    opacity: 0.6;
    font-size:52px;
    margin-bottom:20px;
}
#navl {
    width: auto;
    height: 50px;
    margin-right: 15px;

}
ul {
    list-style: none;
    margin:0px;
    padding:0px;
}
.servicii {
    text-align: left;
    padding: 0 20px 20px;
}
.contc {
    background: linear-gradient(180deg, #1e293b, #0f172a);
    border-radius: 18px;
    padding: 20px;
    width: 35%;
    box-shadow: 0 18px 35px rgba(0,0,0,.25);
    transition: background .25s ease;
}
.servicii li {
    padding:5px;
    margin: 10px 0;
}
.Tier {
    border: 1px solid #d9d9d9;
    text-align:center;
    align-items:center;
    width: 250px;
    position:relative;
    overflow:hidden;
    z-index: 1;
    border-radius:20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 5px solid var(--accent)
}
.Tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
#Soptions {
    display:flex;
    align-items:center;
    text-align:center;
    justify-content:center;
    gap:20px;
    flex-wrap: wrap;
}
.subb {
    background: var(--accent);
    border-radius:99px;
    border: none;
    color: white;
    height:35px;
    width:100px;
    margin:-6px;
    margin-bottom:4px;
    padding: 8px 18px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    gap: 8px;
    font-weight: 600;
    transition: transform .2s ease,
                filter .2s ease,
                box-shadow .2s ease;
}
.subb:hover {
    transform: scale(1.06);
    filter: brightness(1.1);
}
.Tier::before {
    content:"";
    position:absolute;

    width:320px;
    height:170px;

    background: color-mix(in srgb, var(--accent) 15%, white);

    border-radius:50%;

    top:-110px;
    right:-160px;
    z-index: -1;
}
@media (max-width: 768px) {
        #herod {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "image"
            "buttons";
        text-align: center;
        gap: 40px;
    }
    #contcards {
        flex-direction: column;
        align-items: center;
        gap:20px;
    }
    .contc {
        width: 90%;
        max-width: 500px;
    }
    .hero-text {
        text-align: center;
    }

    .hero-text h1,
    .hero-text h2 {
        text-align: center;
    }
    #bbr {
        justify-content: center;
        flex-wrap: wrap;
    }
    #ff {
        width: min(600px, 95%);
    }
    #boxes {
        flex-direction: column;
        align-items: center;
        gap:20px;
    }
    
    .box {
        width: 85%;
        max-width: 350px;
        height: auto;
        padding: 20px;
        font-size: 20px;
    }
    #bbr {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .bb {
        width: 90%;
        max-width: 300px;
    }
    #FAQ {
        width: 100%;
        padding: 60px 0;
    }
    #faq-cont {
        max-width: 100%;
        margin: 0 auto !important;
        padding: 0;
        box-sizing: border-box;
        width: 90%;
    }
    #Soptions {
        justify-content:center;
        gap:15px;
    }
    .Tier {
        flex: 1 1 calc(50% - 15px);
        min-width: 160px;
        max-width: 240px;
    }
    
    #bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        height: 60px;
        padding: 0 15px;
        background-color: #3040db;
        z-index: 1000;
    }

    #navl {
        height: 45px;
        margin: 0;
    }

    #menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 32px;
        cursor: pointer;
    }

    .navi {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;

        flex-direction: column;

        margin: 0;
        padding: 0;

        height: auto;
        gap: 0;

        list-style: none;
        background-color: #3040db;
    }

    .navi.active {
        display: flex;
    }

    .navi li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .navi a {
        display: block;
        width: 100%;
        padding: 18px 20px;
        box-sizing: border-box;

        color: white;
        text-decoration: none;
        background-color: #3040db;
    }

    .navi a:hover {
        background-color: #4052f5;
    }
}
button {
    cursor: pointer;
}
#intrf {
    margin-top:60px;
}
.price {
    font-size:32px;
    font-weight:700;
    color: var(--accent);
    margin:10px 0 0;
}
#core {
    --accent: #374151;
}
#plus {
    --accent: #2596be;
}
#pro {
    --accent: #7c3aed;;
}
#max {
    --accent: #f97316;
}
#ultra {
    --accent: #d4af37;
}
.duration {
    color: #666;
    font-size: 18px;
    margin: 6px 0;
}
.devices {
    background: #eef4fb;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 15px;
}
.tier-header {
    padding:20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 15px;
}
.servicii li::before{
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    margin-right: 8px;
}
.bt {
    font-size:17px
}
#AboutUs {
    padding: 80px 0;
    background: #fff;
    padding: 90px 0;
}
#Subscriptions {
    padding: 90px 0;
    background:
        linear-gradient(
            180deg,
            #fafafa,
            #f3f4f6
        );
    position: relative;
    overflow: hidden;
    background: #f7f8fc
}
#Soptions {
    max-width: 1400px;
    margin:auto;
}
#AboutUs,
#Subscriptions {
    border-top: 1px solid #eef2f7;
}
#faq-cont {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 4%;
    padding: 0 20px;
}
#FAQ {
    background: #f5faff;
    border-top: 1px solid #e6eef7;
    width: 100%;
    padding: 90px 0;
}
.faqitem {
    background: white;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    overflow: hidden;
    border-left: 6px solid #2596be;
    border-right: 6px solid #2596be;
}
.faqitem summary {
    cursor: pointer;
    padding: 22px 26px;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faqitem summary::-webkit-details-marker {
    display: none;
}
.faqitem p, .faqitem ul {
    padding: 0 26px 24px;
    margin: 0;
    color: #555;
    line-height: 1.7;
}
.faqitem summary::after {
    content: "+";
    width: 34px;
    flex-shrink: 0;
    flex-grow: 0;
    height: 34px;
    border-radius: 50%;
    background: #2596be;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    transition: .25s ease;
}
.faqitem[open] summary::after {
    content: "-";
    background: #7c3aed;
}
footer {
    background: linear-gradient(180deg, #eef6ff, #e6f2ff);
    border-top: 1px solid #dbeafe;
    padding: 70px 20px 30px;
}
.contact {
    color:#60a5fa;
    font-size:22px;
    margin-bottom:18px;
    margin: 0;
}
.contacter {
    color: white;
}
#contcards {
    display: flex;
    gap:18px;
    justify-content: center;
}
#elogo {
    width: 20px;
    margin-right: 5px;
    position: relative;
    top: 2px;
}
#wapp {
    width: 20px;
    position: relative;
    top: 2px;
    margin-right:5px;
    align-items: center;
}
#rights {
    display: flex;
    justify-content: center;
    font-weight: 600;
}
.contc:hover {
    background: linear-gradient(180deg, #243247, #162133);
}
#extra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
}
#extra a {
    text-decoration: none;
    color: #151deb;
}
#extra a:visited {
    color: #151deb;
}