:root {
    --fce-bg: #050505;
    --fce-card-bg: rgba(255, 255, 255, 0.03);
    --fce-border: rgba(255, 255, 255, 0.1);
    --fce-primary: #FC468D;
    --fce-secondary: #7928CA;
    --fce-gradient: linear-gradient(90deg, #4A5DF5 0%, #FD468E 100%);
    --fce-text-main: #ffffff;
    --fce-text-muted: #a0a0a0;
    --fce-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.free-cost-estimator {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1a2e 50%, #071525 100%);
    padding: 100px 0;
    font-family: 'Sen', sans-serif;
    color: var(--fce-text-main);
    overflow: hidden;
}

.free-cost-cir {
    width: 8px;
    height: 8px;
    background-color: #FC468D;
    border-radius: 50%;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.free-cost-estimator__container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.free-cost-estimator__header {
    text-align: center;
    margin-bottom: 40px;
}

.free-cost-estimator__badge {
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid rgba(255, 0, 128, 0.3);
    color: var(--fce-primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    max-width: 300px;
    margin: 0 auto 20px;

}

.free-cost-estimator__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.free-cost-estimator__title-highlight {
    background: var(--fce-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.free-cost-estimator__subheading {
    color: var(--fce-text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.free-cost-estimator__trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.free-cost-estimator__trust-item {
    font-size: 14px;
    color: #fff;
    /* Success green */
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Card Styles */
.free-cost-estimator__card {
    background:transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0;
    margin-top: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.free-cost-estimator__progress-outer {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.free-cost-estimator__progress-inner {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #ec4899 100%);
    width: 25%;
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.free-cost-estimator__card-header {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.free-cost-header {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.free-cost-estimator__header-icon {
    width: 48px;
    height: 48px;
    background: #4A5DF526;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-cost-estimator__card-title-container {
    flex-grow: 1;
}

.free-cost-estimator__card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.free-cost-estimator__card-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin: 4px 0 0 0;
}

.free-cost-estimator__percentage-pill {
    background: linear-gradient(90deg, rgba(74, 93, 245, 0.18) 0%, rgba(253, 70, 142, 0.18) 100%);
    color: var(--fce-primary);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    border-top: 0.8px solid #4A5DF559
}

.free-cost-estimator__body {
    padding: 20px 40px;
    flex-grow: 1;
    position: relative;
}

.free-cost-estimator__step {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.free-cost-estimator__step--hidden {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.free-cost-estimator__step--active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.free-cost-estimator__question-badge {
    color: #3b82f6;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.free-cost-estimator__question {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Options Grid */
.free-cost-estimator__options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.free-cost-estimator__option {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
    min-width: 140px;
    flex: 1 1 calc(25% - 12px);
    text-align: center;
}

@media (max-width: 991px) {
    .free-cost-estimator__option {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .free-cost-estimator__option {
        flex: 1 1 100%;
    }
}

.free-cost-estimator__option:hover {
    background: #FC468D1F;
    border-color: #ec4899;
    box-shadow: 0px 0px 10px 0px #FC468D4D;
}

.free-cost-estimator__option--active {
    background: #FC468D1F;
    border-color: #ec4899;
    box-shadow: 0px 0px 10px 0px #FC468D4D;
}

.free-cost-estimator__option--active .free-cost-estimator__option-label {
    color: #ec4899;
}

.free-cost-estimator__options--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .free-cost-estimator__options--2col {
        grid-template-columns: 1fr;
    }
}

.free-cost-estimator__step-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 24px;
}

.free-cost-estimator__option--with-checkbox {
    justify-content: flex-start;
    padding: 16px 20px;
    gap: 15px;
    text-align: left;
}

.free-cost-estimator__circular-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.free-cost-estimator__option--active .free-cost-estimator__circular-checkbox {
    border-color: #ec4899;
    background: #ec4899;
}

.free-cost-estimator__option--active .free-cost-estimator__circular-checkbox::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.free-cost-estimator__feature-counter {
    display: block;
    text-align: right;
    color: #ec4899;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}

.free-cost-estimator__extra-box {
    background: rgba(236, 72, 153, 0.03);
    border: 1px solid rgba(153, 31, 87, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
}

.free-cost-estimator__extra-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: block;
}

.free-cost-estimator__textarea {
    width: 100%;
    background: #16161c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    resize: none;
    transition: all 0.2s ease;
}

.free-cost-estimator__textarea:focus {
    outline: none;
    border-color: #ec4899;
}

.free-cost-estimator__option-label {
    font-size: 14px;
    font-weight: 500;
}

/* Lead Form */
.free-cost-estimator__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 576px) {
    .free-cost-estimator__form {
        grid-template-columns: 1fr;
    }
}

.free-cost-estimator__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.free-cost-estimator__group--full {
    grid-column: span 2;
}

@media (max-width: 576px) {
    .free-cost-estimator__group--full {
        grid-column: span 1;
    }
}

.free-cost-estimator__label {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.free-cost-estimator__input {
    background: #FFFFFF0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s ease;
}

.free-cost-estimator__group .free-cost-estimator__input::placeholder {
    color: #FFFFFF33 !important;
    opacity: 1 !important;
}

.free-cost-estimator__input::-webkit-input-placeholder {
    color: #FFFFFF33;
}

.free-cost-estimator__input::-moz-placeholder {
    color: #FFFFFF33;
    opacity: 1;
}

.free-cost-estimator__input:-ms-input-placeholder {
    color: #FFFFFF33;
}

.free-cost-estimator__input:focus {
    outline: none;
    border-color: #ec4899;
}

.free-cost-estimator__textarea {
    background: #16161c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    resize: none;
}

/* Config Card & Info Box */
.free-cost-estimator__config-container {
    background: linear-gradient(135deg, rgba(74, 93, 245, 0.08) 0%, rgba(253, 70, 142, 0.06) 100%);
    border: 1px solid rgba(153, 31, 87, 0.1);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.free-cost-estimator__config-title {
    color: #00C950;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.free-cost-estimator__config-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.free-cost-estimator__config-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.free-cost-estimator__info-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 30px;
}

.free-cost-estimator__info-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.free-cost-estimator__btn-submit {
    width: 100%;
    background: linear-gradient(90deg, #4f46e5 0%, #ec4899 100%);
    border: none;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s ease;
}

.free-cost-estimator__btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.free-cost-estimator__disclaimer {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    margin-top: 15px;
}

.padding-40 {
    padding: 20px 40px ;
}

/* Footer Buttons */
.free-cost-estimator__footer {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-top: 1px solid #FFFFFF26; */
    position: relative;
}

.free-cost-estimator__step {
    border-bottom: 1px solid #FFFFFF26;

}

/* .footer_divider {
    max-width: 600px;
    background: #FFFFFF26;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0px;
    margin: 0 auto;
    left: 25%;
} */

.free-cost-estimator__btn-prev {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.free-cost-estimator__btn-prev:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.free-cost-estimator__btn-next {
    background: #FC468D1F;
    border: 0.8px solid var(--fce-primary);
    color: var(--fce-primary);
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.free-cost-estimator__btn-next:disabled {
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.free-cost-estimator__error-message {
    color: #ef4444;
    font-size: 11px;
    margin-top: 4px;
    display: none;
    font-weight: 500;
}

.free-cost-estimator__input--invalid {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.free-cost-estimator__btn-next:hover:not(:disabled) {
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-1px);
}

/* Success Screen */
.free-cost-estimator__success {
    text-align: center;
    padding: 20px 0;
}

.free-cost-estimator__success-icon {
    width: 60px;
    height: 60px;
    background:  rgb(0, 201, 80);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 30px;
    box-shadow: 0px 6px 14px 0px #FC468D40;
    animation: icon-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1.6px solid #FC468D66
}

.free-cost-estimator__summary-card {
    background: #4A5DF50F;
    border: 0.8px solid #4A5DF526;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    margin: 30px 0;
}

.free-cost-estimator__summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.free-cost-estimator__summary-row:last-child {
    border-bottom: none;
    flex-direction: column;
    gap: 12px;
}

.free-cost-estimator__summary-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.free-cost-estimator__summary-value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.free-cost-estimator__feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.free-cost-estimator__feature-tag {
    background: rgba(236, 72, 153, 0.05);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    white-space: nowrap;
}

.free-cost-estimator__footer-note {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin-top: 20px;
}

@keyframes icon-pop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.free-cost-estimator__loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* trust */


.hero-trusted {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.trusted-dots {
    display: flex;
}

.trusted-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #05060d;
    background: linear-gradient(135deg, #fd468e, #8b5cf6);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
    color: white;
    margin-left: -8px;
    box-shadow: 0 0 10px rgba(253, 70, 142, 0.35), 0 0 20px rgba(139, 92, 246, 0.15);
}

 .trusted-avatar:first-child {
        margin-left: 0;
    }
    .trusted-count {
        /* font-size: 12px; */
        font-weight: 700;
        color: #FFFFFFCC;
        margin-left: 6px;
    }


@media (max-width:576.98px) {
    .free-cost-estimator__btn-next {
        font-size: 12px;
        padding: 12px 10px;
    }

    .free-cost-estimator__btn-prev {
        font-size: 12px;
        padding: 12px 20px;
    }

    .padding-40,
    .free-cost-estimator__body {
        padding: 15px;
    }
}

/* 

.exit-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.exit-popup.show{
    display:flex;
}

.exit-popup-box{
    width:460px;
    background:#0b0b0b;
    border-radius:18px;
    padding:35px;
    text-align:center;
}

#popup-finish{
    width:100%;
    background:linear-gradient(90deg,#4A5DF5,#FD468E);
    border:none;
    padding:15px;
    color:#fff;
    border-radius:12px;
    cursor:pointer;
} */