/* styles.css - Module retraide-anonymous-request */

.rs-container {
    max-width: 850px;
    margin: 40px auto;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    color: #334155;
    line-height: 1.5;
}

.rs-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    padding: 40px;
}

/* En-tête */
.rs-header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 30px;
}

.rs-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.rs-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 25px 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Badges */
.rs-badges-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.rs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    color: #0f766e;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
}

.rs-badge-icon {
    font-size: 15px;
}

/* Note HDS */
.rs-hds-notice {
    background: #fffbeb;
    border-left: 4px solid #d97706;
    padding: 16px;
    border-radius: 0 12px 12px 0;
    font-size: 13.5px;
    color: #78350f;
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Wizard */
.rs-wizard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.rs-wizard-progress-bar {
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}

.rs-wizard-progress-line {
    height: 100%;
    width: 0%;
    background: #0d9488;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rs-wizard-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 80px;
}

.rs-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.rs-step-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s ease;
}

.rs-wizard-step.active .rs-step-circle {
    background: #0d9488;
    border-color: #0d9488;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.rs-wizard-step.active .rs-step-label {
    color: #0d9488;
}

.rs-wizard-step.completed .rs-step-circle {
    background: #0d9488;
    border-color: #0d9488;
    color: #ffffff;
}

.rs-wizard-step.completed .rs-step-label {
    color: #334155;
}

/* Step Content */
.rs-step-content {
    display: none;
    animation: rsFadeIn 0.4s ease;
}

.rs-step-content.active {
    display: block;
}

@keyframes rsFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.rs-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 25px 0;
    border-bottom: 2px solid #f8fafc;
    padding-bottom: 10px;
}

.rs-step-subtitle {
    font-size: 14.5px;
    color: #64748b;
    margin: -15px 0 25px 0;
}

/* Fields */
.rs-field {
    margin-bottom: 25px;
}

.rs-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.rs-input,
.rs-select,
.rs-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 14.5px;
    font-family: inherit;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.rs-input:focus,
.rs-select:focus,
.rs-textarea:focus {
    outline: none;
    border-color: #0d9488;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.rs-required {
    color: #ef4444;
}

.rs-field-info {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 5px;
}

/* Grid layout - Specific selector to prevent theme overrides */
.rs-container .rs-grid,
.rs-cta-container.rs-grid {
    display: grid !important;
    gap: 20px !important;
}

.rs-container .rs-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.rs-container .rs-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 768px) {
    .rs-container .rs-grid-2,
    .rs-container .rs-grid-3 {
        grid-template-columns: 1fr !important;
    }
    .rs-form-card {
        padding: 24px !important;
    }
}

/* Option Cards (Radios) */
.rs-card-grid {
    margin-bottom: 15px !important;
}

.rs-container .rs-card-option {
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.rs-container .rs-card-option:hover {
    transform: translateY(-2px) !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

.rs-container .rs-card-option.active {
    border-color: #0d9488 !important;
    background: #f0fdfa !important;
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.1), 0 4px 6px -2px rgba(13, 148, 136, 0.05) !important;
}

.rs-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.rs-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.rs-card-description {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.4;
}

/* Checkbox Grid */
.rs-checkbox-grid {
    display: grid;
    gap: 12px;
}

.rs-checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    box-sizing: border-box;
}

.rs-checkbox-card input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2 !important;
}

/* Make inner elements non-interactive so clicks pass straight to the absolute input */
.rs-checkbox-custom,
.rs-checkbox-content,
.rs-checkbox-content * {
    pointer-events: none !important;
}

.rs-checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.rs-checkbox-card:hover .rs-checkbox-custom {
    border-color: #0d9488;
}

.rs-checkbox-card.checked {
    border-color: #0d9488;
    background: #f0fdfa;
}

.rs-checkbox-card.checked .rs-checkbox-custom {
    background-color: #0d9488;
    border-color: #0d9488;
}

.rs-checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.rs-checkbox-card.checked .rs-checkbox-custom:after {
    display: block;
}

.rs-checkbox-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rs-checkbox-content strong {
    font-size: 14.5px;
    color: #1e293b;
    font-weight: 700;
}

.rs-checkbox-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.4;
}

/* Consents */
.rs-consents-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.rs-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 28px !important;
}

.rs-consent-label input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
    width: 24px !important;
    height: 24px !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    z-index: 2 !important;
}

.rs-consent-checkbox-custom,
.rs-consent-text,
.rs-consent-text * {
    pointer-events: none !important;
}

.rs-consent-checkbox-custom {
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
}

.rs-consent-checkbox-custom {
    position: relative;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.rs-consent-label input[type="checkbox"]:checked ~ .rs-consent-checkbox-custom {
    background-color: #0d9488;
    border-color: #0d9488;
}

.rs-consent-checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.rs-consent-label input[type="checkbox"]:checked ~ .rs-consent-checkbox-custom:after {
    display: block;
}

.rs-consent-text {
    font-size: 13.5px;
    color: #475569;
    font-weight: 600;
    line-height: 1.5;
}

/* Buttons */
.rs-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}

.rs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.rs-btn-primary {
    background: #0d9488;
    color: #ffffff !important;
}

.rs-btn-primary:hover {
    background: #0f766e;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.rs-btn-secondary {
    background: #f1f5f9;
    color: #475569 !important;
    border: 1px solid #e2e8f0;
}

.rs-btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b !important;
}

/* Mapbox Dropdown Suggestions */
.rs-mapbox-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 4px;
}

.rs-mapbox-item {
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
}

.rs-mapbox-item:last-child {
    border-bottom: none;
}

.rs-mapbox-item:hover {
    background-color: #f0fdfa;
    color: #0f766e;
}

/* Errors */
.rs-error {
    display: none;
    color: #ef4444;
    font-size: 12.5px;
    font-weight: 600;
    margin-top: 5px;
}

.rs-error-banner {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #b91c1c;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.rs-success-screen {
    animation: rsFadeIn 0.5s ease;
}

/* SEXY CTA BANNER (Moteur de recherche sans résultats - Double Carte Premium) */
.rs-cta-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    margin: 30px 0 !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    width: 100% !important;
}

.rs-cta-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 32px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    position: relative !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

.rs-cta-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.rs-cta-card::before {
    content: "" !important;
    position: absolute !important;
    width: 150px !important;
    height: 150px !important;
    border-radius: 50% !important;
    top: -50px !important;
    right: -50px !important;
    filter: blur(40px) !important;
    opacity: 0.12 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.rs-cta-card-native::before {
    background: #0284c7 !important;
}

.rs-cta-card-pro::before {
    background: #0d9488 !important;
}

.rs-cta-card-badge {
    padding: 6px 14px !important;
    border-radius: 100px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.rs-cta-card-badge.bg-blue {
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    border: 1px solid #dbeafe !important;
}

.rs-cta-card-badge.bg-teal {
    background: #f0fdfa !important;
    color: #0f766e !important;
    border: 1px solid #ccfbf1 !important;
}

.rs-cta-card-icon {
    font-size: 36px !important;
    margin-bottom: 15px !important;
}

.rs-cta-card-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.3px !important;
}

.rs-cta-card-text {
    font-size: 14.5px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin: 0 0 25px 0 !important;
    flex-grow: 1 !important;
}

.rs-cta-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.rs-cta-card-btn.btn-blue {
    background: #0284c7 !important;
    color: #ffffff !important;
}

.rs-cta-card-btn.btn-blue:hover {
    background: #0369a1 !important;
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.2) !important;
    transform: translateY(-1px) !important;
}

.rs-cta-card-btn.btn-teal {
    background: #0d9488 !important;
    color: #ffffff !important;
}

.rs-cta-card-btn.btn-teal:hover {
    background: #0f766e !important;
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.2) !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 768px) {
    .rs-cta-container {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   PAGE DE CHOIX PARCOURS DEMANDE / ANNONCE (/choix-demande-annonce/)
   ========================================================================== */

.rc-choice-wrapper {
    background: #f8fafc;
    padding: 60px 20px;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.rc-choice-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
}

.rc-choice-header {
    text-align: center;
    margin-bottom: 50px;
}

.rc-choice-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 15px 0;
    letter-spacing: -0.8px;
    line-height: 1.3;
}

.rc-choice-title .retraide-blue {
    color: #009bfe;
}

.rc-choice-title .retraide-dark {
    color: #0f172a;
}

.rc-choice-subtitle {
    font-size: 17px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.rc-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.rc-choice-card {
    border-radius: 24px;
    padding: 45px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.rc-choice-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    transition: all 0.4s ease;
}

.rc-choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.rc-choice-card:hover::before {
    transform: scale(1.1);
}

.rc-choice-card--landlord {
    background: linear-gradient(135deg, #0b2240 0%, #0284c7 100%);
}

.rc-choice-card--tenant {
    background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
}

.rc-choice-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.rc-choice-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rc-choice-icon {
    font-size: 44px;
    line-height: 1;
}

.rc-choice-card-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #ffffff;
    line-height: 1.3;
}

.rc-choice-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
}

.rc-choice-checklist {
    list-style: none;
    margin: 0 0 35px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rc-choice-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rc-choice-check-icon {
    font-size: 18px;
    line-height: 1.4;
    flex-shrink: 0;
    user-select: none;
}

.rc-choice-check-text {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.rc-choice-action {
    margin-top: auto;
}

.rc-choice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    color: #0b2240 !important;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    text-align: center;
}

.rc-choice-card--tenant .rc-choice-btn {
    color: #0f766e !important;
}

.rc-choice-btn:hover {
    background: #f8fafc;
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.rc-choice-info-banner {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 30px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.rc-choice-info-icon {
    font-size: 24px;
    line-height: 1.2;
}

.rc-choice-info-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

.rc-choice-info-text strong {
    color: #0f172a;
}

@media (max-width: 768px) {
    .rc-choice-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .rc-choice-wrapper {
        padding: 40px 15px;
    }
    
    .rc-choice-card {
        padding: 35px 30px;
    }
    
    .rc-choice-title {
        font-size: 26px;
    }
}

/* ==========================================================================
   SHORTCODE SMALL MODE CTA CARD
   ========================================================================== */

.rs-shortcode-small-wrapper {
    margin: 40px auto;
    max-width: 850px;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.rs-small-cta-card {
    background: linear-gradient(135deg, #0b2240 0%, #0d9488 100%);
    border-radius: 18px;
    padding: 32px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    box-shadow: 0 10px 25px -5px rgba(11, 34, 64, 0.15), 0 8px 10px -6px rgba(11, 34, 64, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.rs-small-cta-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -100px;
    right: -100px;
    pointer-events: none;
    transition: all 0.5s ease;
}

.rs-small-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(11, 34, 64, 0.25), 0 12px 15px -8px rgba(11, 34, 64, 0.2);
}

.rs-small-cta-card:hover::before {
    transform: scale(1.15) translate(-10px, 10px);
}

.rs-small-cta-content {
    flex: 1;
    z-index: 2;
}

.rs-small-cta-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rs-small-cta-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.rs-small-cta-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.rs-small-cta-usps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rs-small-cta-usp {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rs-small-cta-usp .rs-usp-icon {
    font-size: 14px;
}

.rs-small-cta-action {
    z-index: 2;
    flex-shrink: 0;
}

.rs-small-cta-btn {
    background: #ffffff !important;
    color: #0b2240 !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
}

.rs-small-cta-btn:hover {
    background: #f8fafc !important;
    transform: scale(1.03) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 768px) {
    .rs-small-cta-card {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        text-align: center;
    }
    
    .rs-small-cta-action {
        width: 100%;
        margin-top: 10px;
    }
    
    .rs-small-cta-btn {
        width: 100% !important;
    }
    
    .rs-small-cta-usps {
        justify-content: center;
    }
}

.rs-small-cta-note {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: left;
    background: #f8fafc;
    border-left: 3px solid #cbd5e1;
    padding: 10px 16px;
    border-radius: 0 8px 8px 0;
}
