#echo7-registration-form {
    box-sizing: border-box;
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 520px;
    margin: 24px auto;
    padding: 24px;
    border: 1px solid rgba(31, 41, 55, 0.12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(31, 41, 55, 0.12);
}

#echo7-registration-form input[type="email"],
#echo7-registration-form input[type="password"],
#echo7-registration-form input[type="text"] {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

#echo7-registration-form .CompanyName {
    display: none !important;
}

#echo7-registration-form input[type="email"]:focus,
#echo7-registration-form input[type="password"]:focus,
#echo7-registration-form input[type="text"]:focus {
    border-color: #6f2dbd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(111, 45, 189, 0.14);
}

#echo7-registration-form .privacy-policy-field {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

#echo7-registration-form .privacy-policy-field label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

#echo7-registration-form input[type="checkbox"] {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: #6f2dbd;
}

#echo7-registration-form .privacy-policy-field a {
    color: #6f2dbd;
    font-weight: 600;
}

#echo7-registration-form .echo7-submit-reg {
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 10px;
    background: #6f2dbd;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

#echo7-registration-form .echo7-submit-reg:hover:not(:disabled) {
    background: #57229b;
    transform: translateY(-1px);
}

#echo7-registration-form .echo7-submit-reg:disabled {
    cursor: wait;
}

#echo7-registration-form .cf-turnstile {
    min-height: 65px;
}

#echo7-registration-form,
#echo7-loader,
#echo7-response,
#echo7-registration-form .echo7-submit-reg {
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease, max-height 360ms ease, margin 260ms ease;
}

#echo7-registration-form {
    max-height: 1200px;
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
}

#echo7-registration-form .echo7-submit-reg {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#echo7-registration-form.is-submitting .echo7-submit-reg {
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
}

#echo7-loader {
    display: flex;
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    visibility: hidden;
}

#echo7-loader.is-visible {
    height: 24px;
    margin: 12px 0;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#echo7-loader img {
    display: block;
}

#echo7-registration-form.is-complete {
    max-height: 0;
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
}

#echo7-response {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(12px);
    visibility: hidden;
}

#echo7-response.is-visible {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#echo7-response.is-error {
    color: #b42318;
}

#echo7-response.is-success {
    color: inherit;
}

#echo7-response .ConfirmRegistration {
    animation: echo7-response-in 420ms ease both;
}

@keyframes echo7-response-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    #echo7-registration-form,
    #echo7-loader,
    #echo7-response,
    #echo7-registration-form .echo7-submit-reg,
    #echo7-response .ConfirmRegistration {
        animation: none;
        transition: none;
    }
}

/* Pricing table */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    min-width: 230px;
    padding: 6px;
}

.billing-toggle {
    position: relative;
    display: flex;
    width: fit-content;
    height: auto;
    gap: 0;
    padding: 4px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #f3f4f6;
    box-shadow: 0 6px 18px rgba(31, 41, 55, 0.12);
}

.switch-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0;
}

.switch {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 44px;
    padding: 0 18px;
    color: #4b5563;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 999px;
    transition: color 180ms ease;
}

.switch-selector {
    position: absolute;
    z-index: 0;
    top: 4px;
    left: 4px;
    width: 0;
    height: 44px;
    border-radius: 40px;
    background-color: var(--Viola, #6f2dbd);
    box-shadow: 0 4px 10px rgba(111, 45, 189, 0.28);
    pointer-events: none;
}

.active-switch {
    color: #fff;
}

.HideElement {
    display: none !important;
}

.pricing-products {
    margin-top: 20px;
}

.pricing-products .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    justify-items: center;
    margin: auto;
    padding: 10px;
}

.pricing-products .card {
    display: none;
    width: 100%;
    min-width: 250px;
    max-width: 500px;
    padding: 10px;
    color: var(--color-text, #1f2937);
    line-height: normal;
    border: 2px solid var(--color-background, #fff);
    border-radius: 20px;
    background: #ffffff20;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.pricing-products .card.is-pricing-visible {
    display: block;
    animation: echo7-card-in 360ms ease both;
}

.pricing-products .card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pricing-products .card-header {
    min-height: 200px;
    padding: 20px 30px;
    border-radius: 13px;
    background: var(--color-background, #fff);
}

.pricing-products .card-header-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.pricing-products .card-header h2 {
    margin: 0;
    font-size: 33px;
}

.pricing-products .description {
    min-height: 40px;
    margin: 15px 0;
    text-align: justify;
}

.pricing-products .currency,
.pricing-products .amount {
    font-size: 50px;
    font-weight: 700;
    transform-origin: top;
}

.pricing-products .features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 0 10px;
    padding: 20px;
    list-style: circle;
}

.pricing-products .features li {
    color: var(--color-text, #1f2937);
    text-align: left;
}

.pricing-products .card-footer {
    padding: 20px 20px 0;
    font-size: 12px;
    text-align: left;
}

@keyframes echo7-card-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .pricing-products .cards {
        gap: 24px;
        padding: 0;
    }

    .pricing-products .card {
        min-width: 0;
    }

    .pricing-products .card-header {
        padding: 20px;
    }

    .switch {
        padding: 0 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-products .card.is-pricing-visible {
        animation: none;
    }
}
