* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: white;
    overflow-x: hidden;
    background-color: #0f172a;
}

/* BUBBLES */
.global-bubbles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.global-bubbles span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.4), transparent);
    bottom: -200px;
    animation: rise 25s linear infinite;
    filter: blur(8px);
}

.global-bubbles span:nth-child(1) {
    left: 5%;
    width: 120px;
    height: 120px;
}

.global-bubbles span:nth-child(2) {
    left: 20%;
    width: 180px;
    height: 180px;
}

.global-bubbles span:nth-child(3) {
    left: 40%;
    width: 100px;
    height: 100px;
}

.global-bubbles span:nth-child(4) {
    left: 60%;
    width: 200px;
    height: 200px;
}

.global-bubbles span:nth-child(5) {
    left: 75%;
    width: 140px;
    height: 140px;
}

.global-bubbles span:nth-child(6) {
    left: 90%;
    width: 110px;
    height: 110px;
}

.global-bubbles span:nth-child(7) {
    left: 50%;
    width: 160px;
    height: 160px;
}

@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-1400px);
        opacity: 0;
    }
}

.content {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

p {
    color: #cbd5f5;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px 80px;
}

.hero span {
    background: linear-gradient(90deg, #00f5a0, #00d9f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #00f5a0, #00d9f5);
    color: black;
    border-radius: 999px;
    text-decoration: none;
    margin-top: 15px;
}

/* FEATURES */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.highlight {
    border-color: rgba(0, 255, 200, 0.6);
    box-shadow: 0 10px 40px rgba(0, 255, 200, 0.15);
}

.badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(90deg, #00f5a0, #00d9f5);
    color: black;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
}

.price {
    font-size: 32px;
    margin: 15px 0;
    font-weight: bold;
}

.price span {
    font-size: 14px;
    color: #94a3b8;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card li {
    margin-bottom: 10px;
    color: #cbd5f5;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(0, 255, 200, 0.5);
    border-radius: 999px;
    text-decoration: none;
    color: white;
}

.btn-secondary2 {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #00f5a0, #00d9f5);
    color: black;
    border-radius: 999px;
    text-decoration: none;
}

/* FAQ */
.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-col2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    font-size: 14px;
    color: #94a3b8;
}

.faq-item.active .faq-answer {
    max-height: 420px;
    margin-top: 5px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 80px 20px;
}

.cta-benefits {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #94a3b8;
}

/* FOOTER */
.footer {
    padding: 50px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    color: #2e3242;
}

.footer span {
    background: linear-gradient(90deg, #00f5a0, #00d9f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media(max-width:900px) {

    .grid,
    .pricing-grid,
    .faq-columns,
    .footer-grid {
        grid-template-columns: 1fr;
    }



    .faq-col2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: -20px;
    }

    h1 {
        font-size: 40px;
    }
}

html {
    scroll-behavior: smooth;
}

/* INTEGRACE */
.integration {
    margin-top: 20px;
    position: relative;
}

.integration-box {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.08), rgba(0, 217, 245, 0.08));
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.integration-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.2), transparent);
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

.integration h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.integration p {
    max-width: 700px;
    margin: 0 auto;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.integration-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
}

.integration-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 200, 0.5);
}

.integration-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.integration-flow {
    margin-top: 40px;
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.integration-flow span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 999px;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .integration-grid {
        grid-template-columns: 1fr;
    }
}


/* DYNAMIC PRICING – CAROUSEL */
.dynamic {
    margin-top: 10px;
    text-align: center;
}

.dynamic-box {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.08), rgba(0, 217, 245, 0.08));
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 20px;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}


.dynamic h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.dynamic p {
    max-width: 600px;
    margin: 0 auto;
}

/* CAROUSEL WRAPPER */
.dynamic-carousel {
    margin-top: 30px;
    overflow: hidden;
    position: relative;

    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.dynamic-carousel::before,
.dynamic-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* LEFT FADE */
.dynamic-carousel::before {
    left: 0;
    background: linear-gradient(to right, #0f172a, transparent);
}

/* RIGHT FADE */
.dynamic-carousel::after {
    right: 0;
    background: linear-gradient(to left, #0f172a, transparent);
}


/* TRACK */

.dynamic-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 25s linear infinite;
    padding-left: 20px;
}

/* PAUSE ON HOVER */
.dynamic-carousel:hover .dynamic-track {
    animation-play-state: paused;
}

/* CARDS */
.dynamic-card {
    min-width: 260px;
    max-width: 260px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: 0.3s;
}

.dynamic-card.active {
    border-color: rgba(0, 255, 200, 0.6);
}

.dynamic-card.inactive {
    opacity: 0.5;
    border-style: dashed;
}

.dynamic-icon {
    font-size: 22px;
    margin-bottom: 8px;
}

.dynamic-title {
    font-weight: 600;
    margin-bottom: 5px;
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-minimal {
    margin-top: 10px;
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 0px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.footer-text {
    font-size: 15px;
    color: #cbd5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.heart {
    width: 20px;
    height: 20px;
    display: inline-flex;
}

.heart svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: #00f5a0;
    stroke-width: 2.2;

    animation: pulse 0.8s ease-in-out infinite;
    filter: drop-shadow(0 0 7px rgba(0, 245, 160, 0.7));
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.16);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.85;
    }
}

.footer-copy {
    margin-top: 6px;
    font-size: 12px;
    color: #282b3b;
}

.video-split-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.video-benefits h2 {
    margin-bottom: 20px;
}

/* BENEFITY */
.benefit {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.benefit h4 {
    margin: 0;
    font-size: 16px;
}

.benefit p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #94a3b8;
}

.icon {
    font-size: 22px;
}

/* VIDEO BOX */
.video-box-right {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.08), rgba(0, 217, 245, 0.08));
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 20px;
    padding: 20px;
}

/* VIDEO */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 14px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .video-split-grid {
        grid-template-columns: 1fr;
    }
}