/* ----------------------------1. hero Section ---------------------------- */


.ca-team-section {
    background: linear-gradient(to bottom, #FFF4F5, #ffffff);
}

.ca-team-content {
    padding: 100px 0;
}

.ca-team-title {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 700;
    color: #1C1C19;
    margin-bottom: 20px;
}

.ca-highlight {
    display: block;
    color: var(--app-color);
}

.ca-team-subtext {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.ca-team-buttons {
    margin-top: 10px;
}

.ca-btn-primary {
    background: var(--btn-bg);
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(168, 50, 50, 0.25);
    transition: all 0.3s ease;
}

.ca-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(168, 50, 50, 0.35);
}

.ca-btn-outline {
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
}

.ca-btn-outline:hover {
    background: #f9fafb;
}

.ca-trust-badge {
    gap: 12px;
}

/* avatars */
.ca-trust-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
}

/* first image fix */
.ca-trust-avatars img:first-child {
    margin-left: 0;
}

/* text */
.ca-trust-text {
    font-size: 14px;
    color: #6b7280;
}

/* ----------------------------2. Illustration Section ---------------------------- */

.ca-illustration-img {
    width: min(1100px, 90%);
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .ca-illustration-img {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

/* ----------------------------3. Process Section ---------------------------- */

.ca-how-section {
    padding: 60px 20px;
    background: #f9fafb;
}

/* Title */
.ca-how-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: clamp(40px, 5vw, 64px);
}

/* Steps wrapper */
.ca-how-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    margin-bottom: 50px;
}

/* Horizontal line (desktop) */
.ca-how-steps::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

/* Each step */
.ca-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Icon */
.ca-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #ffffff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    color: var(--app-color); /* adjust to your theme */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

}

/* Text */
.ca-step-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.ca-step-content p {
    font-size: 16px;
    color: #6b7280;
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width: 768px) {


    .ca-how-steps {
        flex-direction: column;   /* 🔥 THIS is the key fix */
        align-items: center;
    }

    .ca-step {
        width: 100%;
        max-width: 320px;
        margin-bottom: 40px;
        text-align: center;
    }

    .ca-how-steps::before {
        display: none;
    }

}

/* ----------------------------3. Benefit Section ---------------------------- */

.ca-benefit {
    padding: clamp(60px, 8vw, 100px) 0;
}

/* Title */
.ca-benefit-title {
    font-size: 32px;
    font-weight: 700;
}

.ca-benefit-subtitle {
    color: #6b7280;
    margin-top: 10px;
}

/* Card */
.ca-benefit-card {
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    height: 100%;

    display: flex;
    flex-direction: column;

    transition: transform 0.3s ease;
}

.ca-benefit-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.ca-benefit-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
    font-size: 18px;
}

.ca-benefit-icon i {
    color: var(--app-color);
}
/* Text */

.ca-benefit-card h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.ca-benefit-card p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 1;
}

/* Gradients */
.ca-benefit-1 {
    background: var(--card-1-bg);
}

.ca-benefit-2 {
    background: var(--card-2-bg);
}

.ca-benefit-3 {
    background: var(--card-5-bg);
}

.ca-benefit-4 {
    background: var(--card-3-bg);
}

.ca-benefit-5 {
    background: var(--card-4-bg);
}

.ca-benefit-6 {
    background: var(--card-6-bg);
}

/* ----------------------------4. CTA Section ---------------------------- */

/* Section */
.ca-cta {
    background: #f9fafb;
    padding: clamp(60px, 8vw, 100px) 20px;
}

/* Title */
.ca-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

/* Subtitle */
.ca-cta-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Button */
.ca-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-decoration: none;

    background: var(--btn-bg);
    transition: all 0.3s ease;
}

.ca-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Note */
.ca-cta-note {
    margin-top: 15px;
    font-size: 13px;
    color: #6b7280;
}