.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

::selection {
    background: black;
    color: white;
    text-shadow: none;
}

.demo-link {
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
}

.demo-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    bottom: -2px;
    left: 0;
}

.free-trial-cta {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: white;
}

.free-trial-cta-input {
    height: 41px;
    width: 300px;
    border: none;
    font-size: 15.5px;
}

.sec-btn {
    border: 2px solid var(--border-color);
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
    text-wrap: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background-color .4s ease, border-color .4s ease, color .4s ease;
    text-decoration: none;
}

.sec-btn:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.pri-btn {
    background-color: var(--accent-primary);
    border: 1px solid transparent;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    text-wrap: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-decoration: none;
    overflow: hidden;
}

.pri-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pri-btn:hover::before {
    left: 100%;
}

.pri-btn.error {
    background-color: white;
    color: var(--error-color);
    border-color: var(--error-color);
    pointer-events: none;
}

.pri-btn.success {
    background-color: white;
    color: var(--success-color);
    border-color: var(--success-color);
    pointer-events: none;
}


.fade-in {
    animation: fadeInUp 0.6s ease-out;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    padding: 2rem 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-wrapper {
    max-width: 1200px;
    overflow: hidden;
}

.section-h2 {
    text-align: center;
    font-weight: 600;
    font-size: 23px;
}

.section-p {
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    max-width: 800px;
}


.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    text-align: left;
}

.faq-q {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary) !important;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.2s;
}

.faq-icon svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s ease;
    fill: transparent;
}

.faq-icon path {
    stroke: var(--text-primary);
}


.faq-btn[aria-expanded="true"] .faq-icon svg {
    transform: rotate(180deg);
}

.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq-body-inner {
    padding: 0 0 1rem;
    font-size: 15px;
    line-height: 1.7;
}

.loading {
    pointer-events: none;
}

.loading .btn-loading-text {
    opacity: 0;
}

.button-loading-icon {
    position: absolute;
    pointer-events: none;
    width: 20px;
    height: 20px;
    border: 1px solid white;
    transition: all .4s ease;
    border-radius: 0;
    animation: buttonLoadingAnimation infinite 1s;
    display: none;
}

.loading .button-loading-icon {
    display: block;
}

@keyframes buttonLoadingAnimation {
    from {
        transform: rotate(0deg);
        border-radius: 0;
    }

    to {
        border-radius: 100%;
        transform: rotate(360deg);
    }
}