*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: #f7f8fc;
    color: #111;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    border: none;
    outline: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn--fill {
    background: linear-gradient(135deg, #4a5bff, #8a2be2);
    color: #fff;
}

.btn--fill:hover {
    opacity: 0.9;
}

.btn--ghost {
    background: transparent;
    border: 2px solid #4a5bff;
    color: #4a5bff;
}

.btn--ghost:hover {
    background: #4a5bff;
    color: #fff;
}

.skyflow-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.skyflow-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.skyflow-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.skyflow-logo__icon {
    width: 38px;
    height: 38px;
}

.skyflow-logo__text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4a5bff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.skyflow-nav__list {
    display: flex;
    gap: 1rem;
    font-weight: 500;
}

.skyflow-nav__list a {
    position: relative;
    color: #333;
    font-size: 1.05rem;
}

.skyflow-nav__list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: #4a5bff;
    transition: width 0.3s;
}

.skyflow-nav__list a:hover::after {
    width: 100%;
}

.skyflow-auth {
    display: flex;
    gap: 0.5rem;
}

.skyflow-auth .btn {
    padding: 0.8rem;
}

.skyflow-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.skyflow-burger span {
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

@media (max-width: 860px) {
    .skyflow-logo {
        display: none;
    }
    .skyflow-burger {
        display: flex;
    }

    .skyflow-nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    .skyflow-nav.active {
        display: block;
    }

    .skyflow-nav__list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        background: #f8f8ff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .skyflow-auth {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .skyflow-header__inner {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.skyflow-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
}

.skyflow-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.skyflow-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.skyflow-modal__content {
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    z-index: 3100;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.skyflow-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.skyflow-modal__close:hover {
    color: #000;
}

.skyflow-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.skyflow-form input {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: 0.2s;
}

.skyflow-form input:focus {
    border-color: #4a5bff;
    outline: none;
}

.skyflow-form small.skyflow-msg {
    color: #d03d3d;
    font-size: 0.85rem;
    height: 1.2rem;
    margin-top: -0.5rem;
    padding-left: 2px;
    display: block;
}

.skyflow-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4a5bff;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: none;
    z-index: 99999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 860px) {
    .skyflow-header__inner {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .skyflow-nav__list {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .skyflow-auth {
        justify-content: center;
    }
}

.hero-cloudboost {
    background: linear-gradient(135deg, #0b0e2d, #1a194f, #2e2368);
    color: #fff;
    padding: 6rem 2rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-cloudboost::before,
.hero-cloudboost::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
}

.hero-cloudboost::before {
    width: 300px;
    height: 300px;
    background: rgba(74, 91, 255, 0.5);
    top: -80px;
    left: -60px;
}

.hero-cloudboost::after {
    width: 400px;
    height: 400px;
    background: rgba(138, 43, 226, 0.4);
    bottom: -100px;
    right: -90px;
}

.hero-cloudboost__container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-cloudboost__title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #ffffff, #dad9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-cloudboost__desc {
    font-size: 1.15rem;
    color: #c8ccff;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cloudboost__stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-cloudboost__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-cloudboost__num {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #aeb8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}

.hero-cloudboost__label {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    color: #a3aaff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-cloudboost__title {
        font-size: 2.1rem;
    }

    .hero-cloudboost__desc {
        font-size: 1rem;
    }

    .hero-cloudboost__num {
        font-size: 2.2rem;
    }

    .hero-cloudboost__label {
        font-size: 0.85rem;
    }
}

.astro-benefits {
    background: #f8f9ff;
    padding: 5rem 2rem;
    text-align: center;
}

.astro-benefits__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.astro-benefits__title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2a2a55;
}

.astro-benefits__subtitle {
    font-size: 1.1rem;
    color: #5c5c8a;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.astro-benefits__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}

.astro-benefit-card {
    background: #ffffff;
    border: 1px solid #eaeaff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.astro-benefit-card:hover {
    transform: translateY(-5px);
}

.astro-benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4a5bff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.astro-benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e2e65;
    margin-bottom: 0.5rem;
}

.astro-benefit-text {
    font-size: 0.95rem;
    color: #616190;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .astro-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .astro-benefits__grid {
        grid-template-columns: 1fr;
    }

    .astro-benefits__title {
        font-size: 1.9rem;
    }
}

.platform-universal {
    background: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.platform-universal__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.platform-universal__title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #222248;
    margin-bottom: 1rem;
}

.platform-universal__subtitle {
    color: #616190;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.platform-universal__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
}

@media (max-width: 992px) {
    .platform-universal__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .platform-universal__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.platform-universal__item {
    background: #f1f3ff;
    border-radius: 14px;
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 160px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.platform-universal__item:hover {
    transform: translateY(-5px);
}

.platform-universal__item i {
    font-size: 2rem;
    color: #4a5bff;
    margin-bottom: 0.7rem;
}

.platform-universal__item span {
    display: block;
    font-weight: 600;
    color: #2e2e5c;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .platform-universal__title {
        font-size: 1.9rem;
    }

    .platform-universal__subtitle {
        font-size: 1rem;
    }
}

.galaxy-arcade {
    background: #f4f6ff;
    padding: 5rem 2rem;
    text-align: center;
}

.galaxy-arcade__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.galaxy-arcade__title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #222249;
    margin-bottom: 1rem;
}

.galaxy-arcade__subtitle {
    color: #5f5f87;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.galaxy-arcade__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .galaxy-arcade__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .galaxy-arcade__grid {
        grid-template-columns: 1fr;
    }
}

.arcade-tile {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.arcade-tile:hover {
    transform: translateY(-5px);
}

.arcade-tile__img {
    width: 100%;
}

.arcade-tile__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.arcade-tile__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a2a66;
}

.arcade-tile__genre {
    font-size: 0.95rem;
    color: #7777a5;
}

.pipeline-cloudflow {
    background: #0c0e1a;
    color: #fff;
    padding: 6rem 2rem;
    position: relative;
}

.pipeline-cloudflow__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pipeline-cloudflow__title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4a5bff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pipeline-cloudflow__subtitle {
    font-size: 1.1rem;
    color: #b0b3ff;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pipeline-cloudflow__steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.cloud-step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: #181b2f;
    border-left: 4px solid #4a5bff;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(74, 91, 255, 0.1);
    position: relative;
}

.cloud-step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4a5bff;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.cloud-step-content {
    flex: 1;
    text-align: left;
}

.cloud-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cloud-step-text {
    font-size: 1rem;
    color: #c3c6ff;
    line-height: 1.6;
}

.cloud-step-icon {
    font-size: 2rem;
    color: #8a2be2;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cloud-step-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cloud-step-icon {
        align-self: flex-end;
        margin-top: 1rem;
    }
}

.planexus-pricing {
    background: #f9faff;
    padding: 5rem 2rem;
    text-align: center;
}

.planexus-pricing__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.planexus-pricing__title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #232355;
    margin-bottom: 1rem;
}

.planexus-pricing__subtitle {
    font-size: 1.1rem;
    color: #5d5d8d;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.planexus-pricing__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .planexus-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .planexus-pricing__grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2b2b6d;
}

.pricing-desc {
    font-size: 0.95rem;
    color: #6c6ca0;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4a5bff;
}

.pricing-features {
    list-style: none;
    padding: 0;
    color: #47477a;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.testimonial-galactica {
    background: #ffffff;
    padding: 5rem 2rem;
}

.testimonial-galactica__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-galactica__title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #222249;
    margin-bottom: 3rem;
}

.testimonial-galactica__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .testimonial-galactica__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonial-galactica__grid {
        grid-template-columns: 1fr;
    }
}

.review-tile {
    background: #f0f3ff;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.review-text {
    font-size: 0.95rem;
    color: #3c3c68;
    line-height: 1.6;
}

.review-author {
    font-weight: 700;
    color: #4a5bff;
    font-size: 0.95rem;
}

.neuron-faq {
    background: #f8f9ff;
    padding: 5rem 2rem;
}

.neuron-faq__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.neuron-faq__title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #232355;
    text-align: center;
    margin-bottom: 3rem;
}

.neuron-faq__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #ffffff;
    border-left: 4px solid #4a5bff;
    border-radius: 10px;
    padding: 1.5rem 1.5rem 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2b2b6d;
    margin-bottom: 0.6rem;
}

.faq-answer {
    font-size: 0.95rem;
    color: #5c5c8c;
    line-height: 1.6;
}

.portal-cta-galaxy {
    background: linear-gradient(135deg, #0f1129, #2d2574);
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portal-cta-galaxy::before,
.portal-cta-galaxy::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: 1;
}

.portal-cta-galaxy::before {
    width: 400px;
    height: 400px;
    background: rgba(74, 91, 255, 0.4);
    top: -100px;
    left: -80px;
}

.portal-cta-galaxy::after {
    width: 500px;
    height: 500px;
    background: rgba(138, 43, 226, 0.3);
    bottom: -120px;
    right: -90px;
}

.portal-cta-galaxy__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.portal-cta-galaxy__headline {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #d1d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .portal-cta-galaxy__headline {
        font-size: 2rem;
    }
}

.portal-cta-galaxy__desc {
    font-size: 1.2rem;
    color: #c4c6ff;
    margin-bottom: 2.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.portal-cta-galaxy__btn {
    font-size: 1.05rem;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    border-radius: 14px;
}

.footer-skyend {
    background: #0a0b18;
    color: #c7c8d7;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
}

.footer-skyend__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2rem;
}

.footer-skyend__branding {
    flex: 1 1 400px;
}

.footer-skyend__branding .skyflow-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-skyend__branding .skyflow-logo__icon {
    width: 36px;
    height: 36px;
}

.footer-skyend__branding .skyflow-logo__text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4a5bff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-skyend__desc {
    max-width: 520px;
    font-size: 0.95rem;
    color: #a9abc9;
    line-height: 1.6;
}

.footer-skyend__links {
    flex: 0 0 260px;
    margin-left: auto;
    text-align: left;
}

.footer-skyend__menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-skyend__menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-skyend__menu a {
    color: #c7c8d7;
    text-decoration: none;
    transition: 0.2s;
}

.footer-skyend__menu a:hover {
    color: #ffffff;
}

.footer-skyend__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #77789a;
}

.cookiematrix-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #0b0d1e;
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookiematrix-banner__content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.cookiematrix-banner__content p {
    flex: 1;
    font-size: 0.95rem;
    color: #c9cbf2;
    line-height: 1.5;
}

.cookiematrix-banner__content a {
    color: #8a9bff;
    text-decoration: underline;
}

.cookiematrix-banner__btn {
    padding: 0.6rem 1.4rem;
    border-radius: 12px;
    font-size: 0.95rem;
}


.promo-banner-gq0 {
  position: relative;
  width: 100%;
  height: calc(100vh - 80.8px);
  background: url('../assets/images/bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 860px) {
  .promo-banner-gq0 {
    height: calc(100vh - 110.8px);
  }
}

.promo-banner-gq0__features span i {
  margin-right: 8px;
  color: #ffd700;
  font-size: 1rem;
  vertical-align: middle;
}

.promo-banner-gq0__overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 80px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner-gq0__content {
  max-width: 800px;
  text-align: center;
}

.promo-banner-gq0__title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.promo-banner-gq0__subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.promo-banner-gq0__button {
  background: linear-gradient(135deg, #4a5bff, #8a2be2);
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 30px;
}
.promo-banner-gq0__button:hover {
  background: linear-gradient(45deg, #ffd633, #ffad33);
  transform: scale(1.05);
}

.promo-banner-gq0__features {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.promo-banner-gq0__features span {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 30px;
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.promo-banner-gq0__disclaimer {
  font-size: 0.75rem;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.4;
}

@media (max-width: 768px) {
    .promo-banner-gq0__title {
        font-size: 2rem;
    }

    .promo-banner-gq0__subtitle {
        font-size: 1rem;
    }

    .promo-banner-gq0__features {
        gap: 15px;
    }
}