/* assets/css/widgets.css */

.cew-info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.cew-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.cew-info-card__icon i {
    font-size: 40px;
    color: #1a56db;
}

.cew-info-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.cew-info-card__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cew-info-card__btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 24px;
    background: #1a56db;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s ease;
}

.cew-info-card__btn:hover {
    background: #1040b0;
    color: #fff;
}

.cew-cta-wrap { text-align: center; }
.cew-cta-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #1a56db;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: opacity .2s ease;
}
.cew-cta-btn:hover { opacity: 0.85; color: #fff; }

/* Feature Box */
.cew-feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.cew-feature-box-lift-yes:hover {
    transform: translateY(-6px);
}

.cew-feature-box__icon i {
    font-size: 40px;
    color: #1a56db;
}

.cew-feature-box__icon img {
    width: 64px;
    height: auto;
    display: block;
}

.cew-feature-box__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.cew-feature-box__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cew-feature-box__btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 24px;
    background: #1a56db;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s ease;
}

.cew-feature-box__btn:hover {
    background: #1040b0;
    color: #fff;
}

/* Counter */
.cew-counter {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cew-counter__number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a56db;
}

.cew-counter__label {
    font-size: 16px;
    color: #555;
}

/* Team Member */
.cew-team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 8px;
}

.cew-team-member__photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.cew-team-member__name {
    font-size: 20px;
    font-weight: 700;
    margin: 8px 0 0;
    color: #111;
}

.cew-team-member__position {
    font-size: 14px;
    font-weight: 600;
    color: #1a56db;
    margin: 0;
}

.cew-team-member__desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 4px 0 0;
}

.cew-team-member__social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.cew-team-member__social a {
    color: #555;
    font-size: 16px;
    line-height: 1;
    transition: color .2s ease;
}

.cew-team-member__social a:hover {
    color: #1a56db;
}

/* Testimonial */
.cew-testimonial {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 8px;
}

.cew-testimonial__rating {
    display: flex;
    gap: 2px;
    font-size: 16px;
}

.cew-testimonial__star {
    line-height: 1;
}

.cew-testimonial__star--filled {
    color: #f5a623;
}

.cew-testimonial__star--empty {
    color: #e0e0e0;
}

.cew-testimonial__review {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.cew-testimonial__client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cew-testimonial__photo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.cew-testimonial__name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.cew-testimonial__company {
    font-size: 13px;
    color: #777;
}

/* Pricing Box */
.cew-pricing-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    gap: 16px;
}

.cew-pricing-box-featured-yes .cew-pricing-box {
    border: 2px solid #1a56db;
}

.cew-pricing-box__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a56db;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.cew-pricing-box__plan-name {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cew-pricing-box__price {
    font-size: 44px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.cew-pricing-box__currency {
    font-size: 0.5em;
    vertical-align: top;
    margin-right: 2px;
}

.cew-pricing-box__period {
    font-size: 0.35em;
    font-weight: 400;
    color: #777;
    margin-left: 4px;
}

.cew-pricing-box__features {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.cew-pricing-box__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.cew-pricing-box__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 12px;
    flex-shrink: 0;
}

.cew-pricing-box__feature-icon--yes {
    color: #2e9e5b;
}

.cew-pricing-box__feature-icon--no {
    color: #c0c0c0;
}

.cew-pricing-box__btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: #1a56db;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background .2s ease;
}

.cew-pricing-box__btn:hover {
    background: #1040b0;
    color: #fff;
}