/* ============================ CTA + QUOTES SECTION ============================ */
.cta-quotes-section {
    width: 100%;
    background: #fff;
    padding: clamp(40px, 6vw, 90px) 0; /* fluid vertical padding */
    font-family: 'Inter', Arial, sans-serif;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* --- BACKGROUND GIANT CARD (stretched full) --- */
.cta-quotes-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(40, 60, 110, 0.05);
    z-index: -1;
}

/* --- CONTAINER --- */
.cta-quotes-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 5vw, 64px); /* fluid spacing */
    padding: 0 clamp(16px, 4vw, 32px);
    z-index: 1;
}

/* --- LEFT COLUMN --- */
.cta-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 280px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.cta-headline {
    font-size: clamp(1.8rem, 3.8vw, 2.7rem); /* fluid */
    font-weight: 700;
    color: #202b38;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.cta-support {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.54;
    color: #415075;
    margin-bottom: 32px;
    max-width: 440px;
}

.cta-button {
    background: #318BFF;
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 14px 38px;
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.13em;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(49,139,255,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cta-button:hover {
    background: #2469c9;
    box-shadow: 0 6px 18px rgba(49,139,255,0.17);
    transform: translateY(-2px);
}

/* --- RIGHT COLUMN (Quotes) --- */
.quotes-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    position: relative;
    z-index: 2;
}

/* --- QUOTE CARD --- */
.quote-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(49, 139, 255, 0.08), 0 1.5px 10px rgba(32, 43, 56, 0.08);
    padding: clamp(28px, 5vw, 42px);
    max-width: 400px;
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s;
    z-index: 3;
}

.quote-icon {
    margin-bottom: 14px;
    font-size: 2rem;
    color: #318BFF;
}

.quote-text {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #1c2636;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
    font-weight: 500;
    min-height: 80px;
}

.quote-text b {
    color: #318BFF;
    font-weight: 700;
}

.quote-name {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: #4f5e7b;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.quote-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    margin: auto;
}

.quote-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dde7fb;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
    cursor: pointer;
}

.quote-dot.active {
    background: #318BFF;
    transform: scale(1.18);
}

/* ============================ RESPONSIVE BREAKPOINTS ============================ */

/* --- Tablet (keep side-by-side layout) --- */
@media (max-width: 950px) and (min-width: 651px) {
    .cta-quotes-container {
        flex-direction: row;
        gap: 40px;
    }

    .cta-column {
        align-items: flex-start;
        text-align: left;
    }

    .quotes-column {
        justify-content: flex-start;
    }
}

/* --- Mobile (strict centered layout) --- */
@media (max-width: 650px) {
    .cta-quotes-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 28px;
    }

    .cta-column {
        align-items: center;
        justify-content: center;
        text-align: center;
        order: 1; /* headline first */
    }

    .quotes-column {
        order: 2; /* then quote */
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cta-button {
        order: 3; /* button last */
        margin: 0 auto;
    }

    .quote-card {
        max-width: 320px;
        padding: 20px;
        min-height: 180px;
        margin: 0 auto;
    }

    .cta-headline { font-size: 1.7rem; }
    .cta-support { font-size: 0.95rem; }
    .cta-button { padding: 12px 28px; font-size: 0.85rem; }
}

/* --- Very small phones --- */
@media (max-width: 400px) {
    .quote-card {
        max-width: 280px;
        padding: 16px;
    }
}
