/* CRO Elements Styling - Flat Fee House Cleaners Sarasota */

/* ========================================
   1. FLOATING CTA BUTTON
   ======================================== */
.cro-floating-cta {
    position: fixed;
    bottom: -100px;
    right: 20px;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

.cro-floating-cta.cro-visible {
    bottom: 20px;
}

.cro-floating-cta.cro-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cro-floating-content {
    background: white;
    border-radius: 50px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cro-float-phone {
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.cro-float-phone:hover {
    background: #059669;
    transform: scale(1.05);
    color: white;
}

.cro-float-quote {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.cro-float-quote:hover {
    background: #1e40af;
    transform: scale(1.05);
    color: white;
}

.cro-float-spots {
    padding: 0 15px;
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .cro-floating-cta {
        right: 10px;
        bottom: -150px;
    }

    .cro-floating-content {
        flex-direction: column;
        padding: 12px;
    }

    .cro-float-spots {
        text-align: center;
        padding: 5px;
    }
}

/* ========================================
   2. INLINE CONTACT FORMS
   ======================================== */
.cro-inline-form {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0284c7;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cro-inline-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cro-inline-form h3 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 24px;
    position: relative;
}

.cro-inline-form > p {
    color: #64748b;
    margin-bottom: 20px;
    position: relative;
}

.cro-quick-form {
    position: relative;
    z-index: 1;
}

.cro-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.cro-form-row input,
.cro-form-row select {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.cro-form-row input:focus,
.cro-form-row select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.cro-form-submit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cro-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.cro-form-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 14px;
    color: #64748b;
}

.cro-form-trust span {
    display: flex;
    align-items: center;
    color: #059669;
    font-weight: 600;
}

/* ========================================
   3. TRUST SIGNALS BANNER
   ======================================== */
.cro-trust-banner {
    background: linear-gradient(90deg, #fef3c7 0%, #fed7aa 100%);
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
    padding: 20px 0;
    margin: 30px 0;
}

.cro-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.cro-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cro-trust-item strong {
    font-size: 24px;
    color: #92400e;
    margin-bottom: 5px;
    display: block;
}

.cro-trust-item span {
    font-size: 14px;
    color: #78350f;
    font-weight: 500;
}

/* ========================================
   4. URGENCY BAR
   ======================================== */
.cro-urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 12px 20px;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cro-urgency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cro-urgency-icon {
    font-size: 20px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cro-urgency-text {
    font-size: 14px;
}

.cro-urgency-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.cro-countdown {
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.cro-urgency-cta {
    background: white;
    color: #dc2626;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cro-urgency-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* ========================================
   5. SOCIAL PROOF NOTIFICATIONS
   ======================================== */
.cro-social-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(-400px);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9998;
    max-width: 300px;
}

.cro-social-notification.cro-show {
    transform: translateX(0);
}

.cro-notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cro-notification-icon {
    background: #10b981;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cro-notification-text {
    font-size: 14px;
    color: #1f2937;
    line-height: 1.4;
}

/* ========================================
   6. TESTIMONIALS CAROUSEL
   ======================================== */
.cro-testimonials {
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.cro-testimonials h3 {
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 28px;
}

.cro-testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.cro-testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cro-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cro-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 15px;
}

.cro-testimonial-card p {
    color: #475569;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cro-testimonial-card cite {
    color: #94a3b8;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

/* ========================================
   7. EXIT INTENT POPUP
   ======================================== */
.cro-exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: none;
}

.cro-exit-popup.cro-show {
    display: block;
}

.cro-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cro-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.cro-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.cro-popup-close:hover {
    color: #1f2937;
}

.cro-popup-content h2 {
    color: #1e40af;
    margin-bottom: 20px;
    text-align: center;
}

.cro-offer-badge {
    background: linear-gradient(90deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.cro-popup-offer h3 {
    color: #059669;
    font-size: 28px;
    margin-bottom: 10px;
}

.cro-popup-offer > p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 16px;
}

.cro-popup-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cro-popup-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
}

.cro-popup-form button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cro-popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.cro-popup-trust {
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* ========================================
   8. READING PROGRESS BAR
   ======================================== */
.cro-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    z-index: 9999;
}

.cro-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #10b981 100%);
    width: 0;
    transition: width 0.2s ease;
}

/* ========================================
   9. NEWSLETTER BOX
   ======================================== */
.cro-newsletter-box {
    background: linear-gradient(135deg, #dbeafe 0%, #dcfce7 100%);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.cro-newsletter-box h3 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 24px;
}

.cro-newsletter-box > p {
    color: #64748b;
    margin-bottom: 20px;
}

.cro-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto 15px;
}

.cro-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
}

.cro-newsletter-form button {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cro-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.cro-newsletter-trust {
    color: #94a3b8;
    font-size: 14px;
}

/* ========================================
   10. SUCCESS MESSAGE
   ======================================== */
.cro-success-message {
    background: #dcfce7;
    border: 2px solid #10b981;
    color: #059669;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   11. MOBILE RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .cro-urgency-bar {
        padding: 10px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .cro-urgency-content {
        font-size: 12px;
        gap: 10px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .cro-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .cro-form-row {
        flex-direction: column;
        max-width: 100%;
    }

    .cro-form-row input,
    .cro-form-row select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cro-testimonial-carousel {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cro-popup-content {
        padding: 30px 20px;
        max-width: calc(100vw - 40px);
        box-sizing: border-box;
    }

    .cro-popup-form {
        flex-direction: column;
        max-width: 100%;
    }

    .cro-popup-form input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cro-newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .cro-newsletter-form input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cro-social-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100vw - 20px);
        box-sizing: border-box;
    }
}

/* ========================================
   12. PRINT STYLES
   ======================================== */
@media print {
    .cro-floating-cta,
    .cro-urgency-bar,
    .cro-social-notification,
    .cro-exit-popup,
    .cro-reading-progress,
    .cro-inline-form,
    .cro-newsletter-box {
        display: none !important;
    }
}

/* ========================================
   13. ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cro-form-row input,
    .cro-form-row select {
        border-width: 2px;
    }

    .cro-popup-content {
        border: 3px solid black;
    }
}

/* ========================================
   14. ADDITIONAL CTA BOXES IN CONTENT
   ======================================== */
.cta-box {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-left: 4px solid #2563eb;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.cta-box h3 {
    color: #1e40af;
    margin-bottom: 10px;
}

.cta-box p {
    color: #475569;
    margin-bottom: 20px;
}

.cta-box .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Enhance existing CTA boxes */
.blog-content .cta-box {
    animation: slideInFromLeft 0.6s ease-out;
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   15. CRITICAL MOBILE OVERFLOW FIXES (375px)
   ======================================== */
@media (max-width: 479px) {
    /* Fix newsletter form overflow */
    .cro-newsletter-form {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .cro-newsletter-form input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .cro-newsletter-form button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Fix inline forms */
    .cro-inline-form {
        padding: 20px 15px;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .cro-quick-form {
        max-width: 100%;
    }

    /* Fix CTA box critical overflow */
    .cta-box {
        max-width: 100%;
        padding: 15px;
        margin: 20px 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 12px;
    }

    .cta-trust {
        font-size: 12px;
        word-wrap: break-word;
    }

    /* Fix trust banner */
    .cro-trust-banner {
        padding: 15px 10px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .cro-trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }

    /* Fix floating CTA */
    .cro-floating-cta {
        right: 5px;
        max-width: calc(100vw - 10px);
    }

    .cro-floating-content {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        max-width: 100%;
    }

    .cro-float-phone,
    .cro-float-quote {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ========================================
   16. INLINE TRUST & REVIEW ELEMENTS
   ======================================== */
.cro-inline-trust-cta {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.cro-content-urgency {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 4px solid #dc2626;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
}

.cro-review-snippet {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cro-review-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

.cro-review-author {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.cro-review-rating {
    color: #fbbf24;
    font-size: 18px;
}

@media (max-width: 479px) {
    .cro-inline-trust-cta,
    .cro-content-urgency,
    .cro-review-snippet {
        padding: 15px;
        margin: 15px 0;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .cro-review-text {
        font-size: 14px;
    }

    .cro-review-author {
        font-size: 13px;
    }

    .cro-review-rating {
        font-size: 16px;
    }
}

/* Inline Trust CTA Box */
.cro-inline-trust-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    animation: slideInFromLeft 0.6s ease-out;
}

.cro-inline-trust-cta p {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: white;
    font-weight: 700;
}

.cro-inline-trust-cta p:last-child {
    margin-bottom: 0;
}

.cro-inline-trust-cta .btn {
    margin-top: 10px;
    min-height: 44px;
    padding: 12px 24px;
}

/* Content Urgency Box */
.cro-content-urgency {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

.cro-content-urgency p {
    margin: 0;
    color: #92400e;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}

.cro-content-urgency strong {
    color: #78350f;
    font-weight: 700;
}

/* Review Snippet Container */
.cro-review-snippet {
    background: white;
    border: 2px solid #e5e7eb;
    border-left: 4px solid #10b981;
    border-radius: 10px;
    padding: 20px 25px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cro-review-snippet:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Review Text */
.cro-review-text {
    font-style: italic;
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

.cro-review-text::before {
    content: '"';
    font-size: 32px;
    color: #10b981;
    position: absolute;
    left: -10px;
    top: -5px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

/* Review Author */
.cro-review-author {
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    font-style: normal;
}

.cro-review-author::before {
    content: '— ';
    color: #10b981;
}

/* Review Rating */
.cro-review-rating {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

/* ========================================
   16. MOBILE RESPONSIVE - INLINE TRUST & REVIEWS
   ======================================== */
@media (max-width: 640px) {
    .cro-inline-trust-cta {
        padding: 15px 20px;
    }

    .cro-inline-trust-cta p {
        font-size: 16px;
    }

    .cro-content-urgency {
        padding: 12px 15px;
    }

    .cro-content-urgency p {
        font-size: 14px;
    }

    .cro-review-snippet {
        padding: 15px 20px;
    }

    .cro-review-text {
        font-size: 15px;
    }

    .cro-review-text::before {
        display: none; /* Hide decorative quote on mobile */
    }

    .cro-review-rating {
        font-size: 16px;
        letter-spacing: 1px;
    }
}

/* Tablet adjustments */
@media (min-width: 641px) and (max-width: 1024px) {
    .cro-inline-trust-cta {
        padding: 18px 25px;
    }

    .cro-inline-trust-cta p {
        font-size: 17px;
    }

    .cro-review-snippet {
        padding: 18px 22px;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .cro-inline-trust-cta .btn {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 17px;
    }
}