
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');


:root {
    --red: #dc1425;
    --dark: #08080f;
    --muted: #666674;
    --soft: #f5f5f7;
    --border: #e6e6eb
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Unbounded", sans-serif;
    color: #09090f;
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

button {
    font: inherit
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: auto
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--red)
}

.red {
    color: var(--red)
}

header {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    top: 0;
    padding: 10px 0;
    transition: .25s
}

header.scrolled {
    background: #fffffff2;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px #0001
}

.nav {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 20px
}

.logo {
    width: 155px
}

.navlinks {
    display: flex;
    gap: 4px;
    margin-left: auto
}

.navlinks button {
    background: none;
    border: 0;
    padding: 10px;
    color: #555;
    cursor: pointer
}

.navlinks button:hover {
    color: var(--red)
}

.pill {
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 11px;
    font-weight: 900;
    border: 1px solid var(--border)
}

.cta {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    padding: 13px 20px;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer
}

.menu {
    display: none;
    margin-left: auto;
    border: 0;
    background: none;
    font-size: 27px
}

.mobilemenu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 16px
}

.mobilemenu a,
.mobilemenu button {
    display: block;
    width: 100%;
    padding: 12px;
    border: 0;
    background: none;
    text-align: left
}

.hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #fff 0%, #fff 52%, #f7e8ea 100%)
}

/*.hero:after {
    content: "";
    position: absolute;
    right: -15%;
    top: 10%;
    width: 65%;
    height: 80%;
    background: radial-gradient(circle, #dc142533, transparent 62%), repeating-linear-gradient(155deg, transparent 0 19px, #dc14250b 20px 21px);
    transform: skewX(-12deg)
}*/

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    max-width: 700px
}

.hero h1 {
    font-size: clamp(45px, 7vw, 80px);
    line-height: .93;
    letter-spacing: -.06em;
    margin: 18px 0
}

.hero p {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6
}

.scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 22px;
    height: 38px;
    border: 2px solid #0003;
    border-radius: 18px
}

.scroll:after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
    margin: 7px auto
}

section {
    padding: 95px 0
}

.section-head {
    text-align: center;
    margin-bottom: 50px
}

.section-head h2 {
    font-size: clamp(32px, 5vw, 54px);
    letter-spacing: -.05em;
    margin: 10px 0
}

.section-head p {
    color: var(--muted);
    max-width: 650px;
    margin: auto;
    line-height: 1.6
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.feature {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: .25s
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px #0001
}

.icon {
    font-size: 25px;
    margin-bottom: 15px
}

.feature h3 {
    font-size: 17px
}

.feature p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

.promo {
    background: linear-gradient(135deg, #dc1425, #720916);
    color: #fff
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: 50px
}

.promo-art {
    min-height: 300px;
    display: grid;
    place-items: center
}

.orb {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff9, #fff1 30%, #0004 75%);
    box-shadow: 0 0 90px #fff3
}

.promo h2 {
    font-size: clamp(65px, 9vw, 120px);
    line-height: .8;
    margin: 20px 0
}

.promo p {
    color: #fffc;
    line-height: 1.6
}

.promo .price {
    font-size: 45px;
    font-weight: 900
}

.whitebtn {
    display: inline-block;
    background: #fff;
    color: var(--red);
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 11px
}

.plans {
    background: var(--soft)
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.plan-wrap {
    display: flex;
    flex-direction: column
}

.popular {
    height: 26px;
    text-align: center;
    background: var(--red);
    color: #ffffff;
    border-radius: 99px;
    padding: 7px;
    font-size: 9px;
    font-weight: 900;
    margin-bottom: 8px
}

.plan-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column
}

.plan-card.featured {
    border: 2px solid var(--red);
    box-shadow: 0 15px 40px #dc142522;
    color: white;
    background: black;
}

.plan-card h3 {
    min-height: 42px;
    font-size: 15px
}

.speed {
    font-size: 48px;
    font-weight: 900;
    color: var(--red)
}

.speed small {
    font-size: 16px
}

.price {
    margin: 15px 0
}

.price b {
    font-size: 38px
}

.plan-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding: 11px 0;
    font-size: 11px;
    color: #666
}

.benefits {
    padding: 0;
    list-style: none;
    flex: 1
}

.benefits li {
    font-size: 12px;
    margin: 10px 0;
    color: #555
}

.benefits li:before {
    content: "✓";
    color: var(--red);
    font-weight: 900;
    margin-right: 7px
}

.plan-btn {
    display: block;
    text-align: center;
    background: var(--red);
    color: #fff;
    border-radius: 11px;
    padding: 13px;
    font-size: 10px;
    font-weight: 900
}

.custom {
    background: #fff
}

.selector {
    background: var(--soft);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 20px
}

.dots {
    display: flex;
    gap: 6px;
    margin-bottom: 9px
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%
}

.dot.active {
    background: var(--red)
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px
}

.service-btn {
    min-height: 112px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 13px 7px;
    cursor: pointer
}

.service-btn.selected {
    border: 2px solid var(--red);
    box-shadow: 0 10px 25px #dc142522
}

.service-btn img {
    width: 45px;
    height: 45px;
    border-radius: 10px
}

.service-btn span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    margin-top: 8px
}

.custom-cta {
    margin-top: 20px;
    background: var(--dark);
    color: #fff;
    padding: 22px;
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px
}

.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px
}

.tag {
    background: #dc142533;
    color: #ff8790;
    padding: 6px 9px;
    border-radius: 99px;
    font-size: 10px
}

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

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.dark-card {
    border: 1px solid rgba(78, 78, 78, 0.067);
    border-radius: 17px;
    overflow: hidden;
    background: #000000;
}

.dark-head {
    padding: 20px;
    background: linear-gradient(135deg, #343440, #101016)
}

.dark-card:nth-child(2) .dark-head {
    background: linear-gradient(135deg, #1553a2, #081c3b)
}

.dark-card:nth-child(3) .dark-head {
    background: linear-gradient(135deg, #c51c43, #430711)
}

.dark-card:nth-child(4) .dark-head {
    background: linear-gradient(135deg, #6b2bc2, #21073e)
}

.dark-head h3 {
    margin: 0;
    font-size: 15px
}

.dark-head p {
    font-size: 11px;
    color: #fff8
}

.service-grid {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px
}

.service {
    padding: 7px;
    background: rgba(80, 79, 79, 0.533);
    border-radius: 9px;
    text-align: center;
}

.service img {
    width: 42px;
    height: 42px;
    border-radius: 9px
}

.service span {
    display: block;
    color: #fff;
    font-size: 9px;
    margin-top: 5px
}

.note {
    padding: 0 15px 15px;
    color: #fff7;
    font-size: 10px;
    line-height: 1.5
}

.diff {
    background: #08080f;
    color: #fff
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.diff-card {
    border: 1px solid #fff1;
    border-radius: 16px;
    padding: 22px;
    background: #fff6;
}

.diff-card p {
    color: #fff8;
    font-size: 12px;
    line-height: 1.6
}

.enterprise {
    background: #08080f;
    color: #fff;
    position: relative
}

.enterprise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.enterprise h2 {
    font-size: clamp(40px, 5vw, 65px);
    line-height: .95
}

.enterprise p {
    color: #fff9;
    line-height: 1.7
}

.enterprise-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
    
}

.enterprise-benefit {
    padding: 25px;
    border: 1px solid #fff1;
    border-radius: 15px;
    background: #fff6;
}

.enterprise-benefit b {
    display: block;
    margin-top: 12px
}

.contact {
    background: var(--soft)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 25px
}

.contact-card,
.address {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 10px
}

.contact-card strong {
    display: block;
    margin-top: 6px
}

.hours {
    color: #666;
    font-size: 12px;
    line-height: 1.9
}

.map {
    min-height: 340px;
    background: linear-gradient(135deg, #ddd, #f8f8f8);
    border-radius: 18px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 25px
}

.map a {
    color: var(--red);
    font-weight: 900
}

footer {
    background: #08080f;
    color: #fff;
    padding: 60px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 45px
}

.footer-logo {
    
    width: 150px;
}

.footer p,
.footer li {
    color: #fff8;
    font-size: 12px;
    line-height: 1.8
}

.footer ul {
    list-style: none;
    padding: 0
}

.footer h4 {
    color: var(--red);
    font-size: 10px;
    letter-spacing: .15em
}

.copyright {
    border-top: 1px solid #fff1;
    margin-top: 30px;
    padding-top: 18px;
    color: #fff5;
    font-size: 10px;
    display: flex;
    justify-content: space-between
}

@media(max-width:1000px) {

    .navlinks,
    .nav>.pill,
    .nav>.cta {
        display: none
    }

    .menu {
        display: block
    }

    .mobilemenu.open {
        display: block
    }

    .features,
    .plan-grid,
    .card-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .custom-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .promo-grid,
    .enterprise-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:620px) {
    section {
        padding: 70px 0
    }

    .hero {
        min-height: 690px
    }

    .hero h1 {
        font-size: 48px
    }

    .features,
    .plan-grid,
    .card-grid,
    .diff-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .custom-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .custom-cta {
        flex-direction: column;
        align-items: stretch
    }

    .copyright {
        flex-direction: column;
        gap: 8px
    }
}