.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 120px;
    position: relative;
    overflow: hidden;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero .hero-bg .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 20%, rgba(0, 217, 255, 0.13), transparent 55%), radial-gradient(ellipse at 15% 80%, rgba(13, 63, 143, 0.08), transparent 50%);
}

.hero .hero-bg .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 40%, rgba(0, 0, 0, 0.4), transparent 70%);
}

.hero .h-title {
    font-family: 'Unbounded', sans-serif;
    font-size: min(12vw, 200px);
    font-weight: 900;
    line-height: .82;
    position: relative;
    z-index: 1;
}

.hero .h-title .h-t-line {
    overflow: hidden;
    display: block;
    color: var(--text-primary);
}

.hero .h-title .h-t-line .h-t-w {
    display: inline-block;
    transform: translateY(200px);
}

.hero .h-title .h-t-line .h-t-w.stroke {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}

@media (max-width:786px) {
    .hero .h-title .h-t-line .h-t-w {
        transform: translateY(0px);
    }

    .hero {
        min-height: 600px;
    }
}

.hero-main {
    max-width: 1660px;
    margin: 0 auto;
}

.container {
    padding: 80px 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 54px;
    align-items: center
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(49, 199, 255, .1);
    border: 1px solid rgba(49, 199, 255, .2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.hero-title {
    font-size: clamp(42px, 7vw, 88px);
    line-height: .96;
    letter-spacing: -.07em;
    margin-bottom: 24px
}

.hero-title .h-f-a {
    display: inline-block;
    overflow: hidden;
}

.hero-title .h-f-a .h-f-a-s {
    display: flex;
    flex-wrap: nowrap;
    transform: translateY(95px);
}

.hero-title .h-f-a .h-f-a-s-t {
    font-family: var(--cod);
    color: transparent;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-text {
    max-width: 660px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 30px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-card {
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
    box-shadow: 0 12px 20px rgba(0, 0, 0, .42);
    padding: 26px
}

.hero-card:before {
    content: "";
    position: absolute;
    inset: -90px;
    background: conic-gradient(from 180deg, transparent, rgba(49, 199, 255, .25), rgba(139, 92, 255, .24), transparent);
    animation: spin 10s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.hero-card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 366px;
    border-radius: 26px;
    padding: 24px;
    background: rgba(177, 175, 175, 0.42);
    backdrop-filter: blur(14px);
    display: grid;
    place-items: center
}

.orbit {
    width: 100%;
    min-height: 320px;
    display: grid;
    place-items: center;
    position: relative
}

.core {
    width: 142px;
    height: 142px;
    border-radius: 42px;
    display: grid;
    place-items: center;
    font-size: 50px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(49, 199, 255, .35), rgba(139, 92, 255, .32));
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 0 70px rgba(49, 199, 255, .34)
}

.orbit-item {
    position: absolute;
    width: 112px;
    padding: 12px;
    text-align: center;
    border-radius: 18px;
    color: var(--text-primary);
    background: var(--bg-soft);
    font-size: 12px
}

.orbit-item i {
    display: block;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px
}

.orbit-item:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.orbit-item:nth-child(3) {
    top: 72px;
    right: 0
}

.orbit-item:nth-child(4) {
    bottom: 42px;
    right: 18px
}

.orbit-item:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.orbit-item:nth-child(6) {
    bottom: 42px;
    left: 18px
}

.orbit-item:nth-child(7) {
    top: 72px;
    left: 0
}

.section {
    max-width: 1660px;
    margin: 0 auto;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px
}

.section-head h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.05em
}

.section-head h2 .s-f-a {
    display: inline-block;
    overflow: hidden;
}

.section-head h2 .s-f-a .s-f-a-s {
    display: flex;
    flex-wrap: nowrap;
    transform: translateY(95px);
}

.section-head h2 .s-f-a .s-f-a-s-t {
    font-family: var(--cod);
    color: transparent;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
}

.section-head p {
    max-width: 540px;
    color: var(--text-secondary);
    line-height: 1.75
}

.faq-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 26px;
    align-items: start
}

.side {
    position: sticky;
    top: 112px;
    padding: 18px;
    border-radius: 25px;
    background: var(--gradient-soft);
}

.side a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 16px;
    color: var(--muted);
    transition: .25s ease
}

.side a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, .075)
}

.faq-group {
    margin-bottom: 26px;
    border-radius: 30px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px);
}

.faq-group-title {
    padding: 24px 24px 6px;
    display: flex;
    align-items: center;
    gap: 13px
}

.faq-group-title i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(49, 199, 255, .1);
    border: 1px solid rgba(49, 199, 255, .18)
}

.faq-group-title h3 {
    font-size: 22px;
    font-family: var(--unb);
}

.faq-item {
    margin: 16px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09)
}

.faq-question {
    width: 100%;
    border: 0;
    cursor: pointer;
    color: var(--text-primary);
    background: rgba(255, 255, 255, .75);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 850
}

.faq-question i {
    color: var(--primary);
    transition: .25s ease
}

.faq-answer {
    height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    line-height: 1.75
}

.faq-answer p {
    padding: 0 22px 22px
}

.faq-item.active .faq-question i {
    transform: rotate(45deg)
}

@media (max-width:786px) {
    .container {
        padding: 40px 10px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-title {
        font-size: clamp(1.5px, 8vw, 2.5rem);
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-title .h-f-a .h-f-a-s {
        transform: translateY(0px);
    }

    .orbit-item {
        width: 75px;
        border-radius: 18px;
        font-size: 10px
    }

    .orbit-item:nth-child(3) {
        right: 0
    }

    .orbit-item:nth-child(4) {
        bottom: 42px;
        right: 0px
    }

    .orbit-item:nth-child(5) {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%)
    }

    .orbit-item:nth-child(6) {
        bottom: 42px;
        left: 0px
    }

    .section-head {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px
    }

    .section-head h2 .s-f-a .s-f-a-s {
        transform: translateY(0px);
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .side {
        position: relative;
        top: 0px;
        padding: 18px;
        border-radius: 25px;
        background: var(--gradient-soft);
    }
}