/* ===============================================
   Enhanced Service Page Sections - Futuristic AI Design
   =============================================== */

/* ========== ANIMATIONS & KEYFRAMES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(23, 117, 193, 0.3), 0 0 10px rgba(23, 117, 193, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(23, 117, 193, 0.5), 0 0 30px rgba(23, 117, 193, 0.3);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iconSpin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* ========== USE CASES SECTION ========== */
.use-case-list,
.app-type-list,
.web-use-cases-section .use-case-list,
.ai-use-cases-section .use-case-list,
.qa-testing-types-section .use-case-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case-item,
.app-type-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(245, 158, 11, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.use-case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1775c1 0%, #9fa0c3 50%, #1775c1 100%);
    background-size: 100% 200%;
    transform: scaleY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientRotate 3s ease infinite;
}

.use-case-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.use-case-item:hover {
    box-shadow: 0 8px 24px rgba(23, 117, 193, 0.15);
    border-color: #1775c1;
    transform: translateY(-4px);
}

.use-case-item:hover::before {
    transform: scaleY(1);
}

.use-case-item h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    padding-left: 45px;
    position: relative;
    display: flex;
    align-items: center;
}

.use-case-item h3::before {
    content: '\f058';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1rem;
    line-height: 36px;
    text-align: center;
}

/* Specific icons for different use cases based on position */
.ai-use-cases-section .use-case-item:nth-child(1) h3::before { content: '\f075'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Chat - Blue */
.ai-use-cases-section .use-case-item:nth-child(2) h3::before { content: '\f201'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Chart line - Blue */
.ai-use-cases-section .use-case-item:nth-child(3) h3::before { content: '\f0c0'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Users - Blue */
.ai-use-cases-section .use-case-item:nth-child(4) h3::before { content: '\f02d'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Book - Blue */
.ai-use-cases-section .use-case-item:nth-child(5) h3::before { content: '\f073'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Calendar - Blue */
.ai-use-cases-section .use-case-item:nth-child(6) h3::before { content: '\f0d1'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Truck - Blue */
.ai-use-cases-section .use-case-item:nth-child(7) h3::before { content: '\f0f6'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* File - Blue */
.ai-use-cases-section .use-case-item:nth-child(8) h3::before { content: '\f132'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Shield - Blue */

.app-type-item h3::before,
.web-use-cases-section .use-case-item h3::before,
.qa-testing-types-section .use-case-item h3::before {
    content: '\f0eb';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1775c1, #9fa0c3);
    border-radius: 50%;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1rem;
    line-height: 36px;
    text-align: center;
}

.app-type-item h3,
.web-use-cases-section .use-case-item h3,
.qa-testing-types-section .use-case-item h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    padding-left: 45px;
    position: relative;
    display: flex;
    align-items: center;
}

.use-case-item p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.use-case-item strong {
    color: #1775c1;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.95rem;
}

.use-case-item br + strong {
    margin-top: 8px;
}

/* ========== TECHNOLOGY STACK SECTION ========== */
.tech-stack-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(245, 158, 11, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1775c1 0%, #9fa0c3 50%, #1775c1 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-category::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-category:hover {
    box-shadow: 0 12px 32px rgba(23, 117, 193, 0.18), 0 0 0 1px rgba(23, 117, 193, 0.2);
    transform: translateY(-8px);
    border-color: #1775c1;
}

.tech-category:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

.tech-category:hover::after {
    opacity: 1;
}

.tech-category h3 {
    color: #1f2937;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-left: 45px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #1775c1, #9fa0c3, #1775c1) 1;
    position: relative;
    display: flex;
    align-items: center;
}

.tech-category h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1775c1, #9fa0c3);
    border-radius: 8px;
    font-size: 1rem;
    color: white;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    line-height: 36px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(23, 117, 193, 0.3);
    transition: all 0.3s ease;
}

.tech-category:hover h3::before {
    transform: rotate(5deg) scale(1.1);
    animation: glow 2s ease-in-out infinite;
}

/* Technology Category Icons */
.tech-category:nth-child(1) h3::before { content: '\f121'; } /* Code icon */
.tech-category:nth-child(2) h3::before { content: '\f233'; } /* Server icon */
.tech-category:nth-child(3) h3::before { content: '\f1c0'; } /* Database icon */
.tech-category:nth-child(4) h3::before { content: '\f0c2'; } /* Cloud icon */
.tech-category:nth-child(5) h3::before { content: '\f0e8'; } /* Dashboard/Performance icon */
.tech-category:nth-child(6) h3::before { content: '\f085'; } /* Gear/Settings icon */
.tech-category:nth-child(7) h3::before { content: '\f0ad'; } /* Wrench/Tools icon */
.tech-category:nth-child(8) h3::before { content: '\f0eb'; } /* Lightbulb icon */

.tech-category h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1775c1, #9fa0c3);
}

.tech-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-category ul li {
    padding: 12px 0;
    padding-left: 28px;
    color: #4b5563;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.tech-category ul li:last-child {
    border-bottom: none;
}

.tech-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1775c1;
    font-weight: bold;
    font-size: 1.1rem;
}

.tech-category ul li:hover {
    padding-left: 32px;
    color: #1f2937;
}

.tech-category ul li strong {
    color: #1f2937;
    font-weight: 600;
}

/* ========== COST & TIMELINE SECTION ========== */
.cost-timeline-section {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 60px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.cost-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cost-brackets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cost-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.cost-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1775c1 0%, #9fa0c3 50%, #1775c1 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cost-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

.cost-card.featured {
    border-color: #1775c1;
    box-shadow: 0 12px 40px rgba(23, 117, 193, 0.25), 0 0 0 1px rgba(23, 117, 193, 0.15);
    transform: scale(1.03);
    animation: float 6s ease-in-out infinite;
}

.cost-card.featured::before {
    transform: scaleX(1);
    height: 6px;
    animation: shimmer 3s infinite;
}

.cost-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #fb8501, #d67c10);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(251, 133, 1, 0.5);
}

.cost-card:hover {
    box-shadow: 0 16px 48px rgba(23, 117, 193, 0.2), 0 0 0 2px rgba(23, 117, 193, 0.1);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(23, 117, 193, 0.5);
}

.cost-card h3 {
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.cost-card h3::before {
    content: '\f155';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1775c1, #9fa0c3);
    border-radius: 10px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
}

.cost-card:nth-child(1) h3::before { content: '\f1b9'; } /* Rocket/Starter */
.cost-card:nth-child(2) h3::before { content: '\f005'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Star/Featured - Blue */
.cost-card:nth-child(3) h3::before { content: '\f0e7'; background: linear-gradient(135deg, #1775c1, #9fa0c3); } /* Lightning/Pro - Blue */

.cost-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1775c1, #9fa0c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
}

.timeline {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 8px 16px 8px 38px;
    background: #f3f4f6;
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.timeline::before {
    content: '\f017';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #6b7280;
    font-size: 1rem;
}

.cost-card h4 {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 25px 0 15px 0;
}

.cost-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.cost-card ul li {
    padding: 10px 0 10px 30px;
    color: #4b5563;
    line-height: 1.6;
    position: relative;
    font-size: 0.95rem;
}

.cost-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.cost-card strong {
    color: #1f2937;
    font-weight: 600;
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.cost-factors {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
    border: 1px solid #e5e7eb;
}

.cost-factors h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.cost-factors h3::before {
    content: '\f0d6';
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 0.95rem;
    line-height: 32px;
    text-align: center;
}

.cost-factors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-factors ul li {
    padding: 15px 0 15px 35px;
    color: #4b5563;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.cost-factors ul li:last-child {
    border-bottom: none;
}

.cost-factors ul li::before {
    content: '\f155';
    position: absolute;
    left: 0;
    color: #10b981;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.cost-factors ul li strong {
    color: #1f2937;
    font-weight: 600;
}

.cost-comparison,
.roi-box {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-left: 4px solid #1775c1;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.cost-comparison h4,
.roi-box h4 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    display: flex;
    align-items: center;
}

.cost-comparison h4::before,
.roi-box h4::before {
    content: '\f201';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1775c1, #9fa0c3);
    border-radius: 50%;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 0.85rem;
    line-height: 28px;
    text-align: center;
}

.cost-comparison p,
.roi-box p {
    color: #1e40af;
    line-height: 1.8;
    margin: 0;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 60px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1775c1 0%, #9fa0c3 50%, #1775c1 100%);
    background-size: 100% 200%;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 32px rgba(23, 117, 193, 0.12), 0 0 0 1px rgba(23, 117, 193, 0.1);
    border-color: rgba(23, 117, 193, 0.3);
    transform: translateX(8px);
}

.faq-item:hover::before {
    opacity: 1;
    animation: gradientRotate 3s ease infinite;
}

.faq-item h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 40px;
}

.faq-item h3::before {
    content: '\f059';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1775c1, #9fa0c3);
    color: white;
    border-radius: 50%;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    line-height: 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(23, 117, 193, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover h3::before {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 4px 16px rgba(23, 117, 193, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    padding-left: 40px;
}

.faq-item p strong {
    color: #1f2937;
    font-weight: 600;
}

/* ========== COMPARISON GRIDS ========== */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.comparison-card,
.comparison-column {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.comparison-card::before,
.comparison-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1775c1 0%, #9fa0c3 50%, #1775c1 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card::after,
.comparison-column::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.comparison-card:hover,
.comparison-column:hover {
    box-shadow: 0 16px 48px rgba(23, 117, 193, 0.15), 0 0 0 2px rgba(23, 117, 193, 0.1);
    border-color: rgba(23, 117, 193, 0.5);
    transform: translateY(-8px) scale(1.01);
}

.comparison-card:hover::before,
.comparison-column:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

.comparison-card:hover::after,
.comparison-column:hover::after {
    opacity: 1;
}

.comparison-card h3,
.comparison-column h3 {
    color: #f68c3d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-left: 45px;
    border-bottom: 3px solid #1775c1;
    position: relative;
    display: flex;
    align-items: center;
}

.comparison-card h3::before,
.comparison-column h3::before {
    content: '\f201';
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f28c3d, #9fa0c3);
    border-radius: 8px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1rem;
    line-height: 36px;
    text-align: center;
}

.comparison-card h4 {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 25px 0 15px 0;
}

.comparison-card ul,
.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.comparison-card ul li,
.comparison-column ul li {
    padding: 10px 0 10px 30px;
    color: #4b5563;
    line-height: 1.6;
    position: relative;
}

.comparison-card ul li::before,
.comparison-column ul li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.comparison-card h4:first-of-type + ul li::before {
    content: '✓';
    color: #10b981;
}

.comparison-card h4:nth-of-type(2) + ul li::before {
    content: '⚠';
    color: #fb8501;
}

.comparison-card strong {
    color: #1f2937;
    font-weight: 600;
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* ========== BENEFITS & PERFORMANCE SECTIONS ========== */
.benefits-section,
.performance-seo-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before,
.performance-seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #1775c1;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1775c1 0%, #9fa0c3 50%, #1775c1 100%);
    background-size: 100% 200%;
    animation: gradientRotate 4s ease infinite;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    box-shadow: 0 12px 32px rgba(23, 117, 193, 0.18), 0 0 0 1px rgba(23, 117, 193, 0.1);
    transform: translateY(-8px) scale(1.01);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card h3 {
    color: #1f2937;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 45px;
    position: relative;
    display: flex;
    align-items: center;
}

.benefit-card h3::before {
    content: '\f0a4';
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1rem;
    line-height: 35px;
    text-align: center;
}

.benefit-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.benefit-card strong {
    color: #1775c1;
    font-weight: 600;
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* ========== DEPLOYMENT OPTIONS ========== */
.deployment-options {
    background: #ffffff;
    padding: 60px 0;
    margin: 0;
}

/* ========== RECOMMENDATION BOX ========== */
.recommendation-box {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.95) 0%, rgba(209, 250, 229, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid #10b981;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.recommendation-box:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25), 0 0 0 2px rgba(16, 185, 129, 0.2);
    border-color: #059669;
}

.recommendation-box:hover::before {
    opacity: 1;
}

.recommendation-box h3 {
    color: #065f46;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 45px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.recommendation-box h3::before {
    content: '\f164';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1rem;
    line-height: 36px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-box:hover h3::before {
    transform: translateY(-50%) scale(1.15) rotate(-10deg);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.recommendation-box p {
    color: #047857;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.recommendation-box strong {
    color: #065f46;
    font-weight: 700;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pros-cons h4 {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 25px 0 15px 0;
}

.pros-cons ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pros-cons ul li {
    padding: 10px 0 10px 30px;
    color: #4b5563;
    line-height: 1.6;
    position: relative;
}

/* ========== SECTION TITLES ========== */
.section-title {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.15rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .use-case-list,
    .app-type-list,
    .tech-categories,
    .cost-brackets,
    .comparison-grid,
    .comparison-table,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-case-item,
    .tech-category,
    .cost-card,
    .comparison-card,
    .comparison-column,
    .benefit-card {
        padding: 25px;
    }

    .use-case-item h3,
    .app-type-item h3,
    .tech-category h3,
    .cost-card h3,
    .benefit-card h3,
    .comparison-card h3,
    .comparison-column h3 {
        font-size: 1.25rem;
        padding-left: 42px;
    }

    .use-case-item h3::before,
    .app-type-item h3::before,
    .tech-category h3::before,
    .cost-card h3::before,
    .benefit-card h3::before,
    .comparison-card h3::before,
    .comparison-column h3::before {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        line-height: 32px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cost-amount {
        font-size: 2rem;
    }

    .cost-card.featured {
        transform: scale(1);
    }

    .tech-stack-section,
    .cost-timeline-section,
    .faq-section,
    .benefits-section,
    .performance-seo-section,
    .deployment-options {
        padding: 40px 0;
    }

    .cost-factors {
        padding: 25px;
    }

    .faq-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .cost-amount {
        font-size: 1.75rem;
    }

    .use-case-item h3,
    .tech-category h3,
    .cost-card h3 {
        font-size: 1.25rem;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .use-case-item,
    .tech-category,
    .cost-card,
    .faq-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ========== CTA BUTTON STYLES ========== */
.cta-section-wrapper {
    text-align: center;
    margin: 30px auto;
    padding: 0 20px;
    max-width: 800px;
}

.cta-lead-text {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.cta-lead-text strong {
    color: #1775c1;
    font-weight: 700;
}

.cta-button {
    background: linear-gradient(135deg, #1775c1 0%, #0d5a9a 100%);
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(23, 117, 193, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 117, 193, 0.4);
    background: linear-gradient(135deg, #0d5a9a 0%, #1775c1 100%);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(23, 117, 193, 0.3);
}

@media (max-width: 768px) {
    .cta-section-wrapper {
        margin: 25px auto;
    }

    .cta-lead-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 15px;
    }
}

/* ========== ENHANCED MODAL CONVERSION STYLES ========== */

/* Urgency Banner */
.modal-urgency-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.25);
    letter-spacing: 0.3px;
}

.urgency-icon {
    font-size: 1.1rem;
    margin-right: 6px;
}

/* Modal Left Column */
.modal-left {
    padding: 24px 28px !important;
    background: #fafbfc;
}

.modal-left h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

/* Modal Subtitle */
.modal-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
    padding: 16px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 500;
}

.trust-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Live Social Proof */
.social-proof-live {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid #10b981;
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #065f46;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Testimonial Mini */
.testimonial-mini {
    background: white;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testimonial-mini p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 6px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.85rem !important;
    font-style: normal !important;
}

/* Contact Info Modal */
.contact-info-modal {
    margin-top: auto;
    padding: 14px 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.contact-info-modal p {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #374151;
    line-height: 1.6;
}

.contact-info-modal p:last-child {
    margin-bottom: 0;
}

/* Modal Right Column */
.modal-right {
    padding: 24px 28px !important;
    background: white;
}

.modal-right h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

/* Form Header */
.form-header {
    margin-bottom: 14px;
}

.form-subtitle {
    color: #6b7280;
    font-size: 0.88rem;
    margin-top: 3px;
    font-weight: 500;
}

/* Progress Indicator */
.form-progress {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-progress-left {
    margin-bottom: 18px;
}

.progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.progress-text {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
}

.progress-text span {
    display: inline !important;
}

/* Form Inputs */
.modal-right input,
.modal-right textarea {
    width: 100%;
    padding: 10px 13px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fafbfc;
    color: #1f2937;
}

.modal-right input:focus,
.modal-right textarea:focus {
    outline: none;
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.modal-right textarea {
    resize: vertical;
    min-height: 48px;
    line-height: 1.5;
}

/* Input Wrappers */
.input-wrapper {
    position: relative;
    flex: 1;
}

.field-error {
    color: #ef4444;
    font-size: 0.8rem;
    display: none;
    margin-top: 4px;
    font-weight: 500;
}

.input-wrapper input.error,
.input-wrapper textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.input-wrapper input.error + .field-error,
.input-wrapper textarea.error + .field-error {
    display: block;
}

.input-wrapper input.valid,
.input-wrapper textarea.valid {
    border-color: #10b981;
    background: white;
}

/* Form Benefits */
.form-benefits {
    display: flex;
    gap: 16px;
    margin: 12px 0 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-item {
    font-size: 0.88rem;
    color: #059669;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 20px;
    border: 1px solid #a7f3d0;
}

/* Submit Button Enhanced */
.submit-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    width: 100%;
    padding: 14px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Privacy */
.form-privacy {
    text-align: center;
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 10px;
    line-height: 1.5;
}

/* Form Rows */
.modal-right .row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.modal-right .row:last-of-type {
    margin-bottom: 0;
}

/* Exit Intent Overlay */
.exit-intent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.exit-intent-overlay.show {
    display: flex;
}

.exit-intent-content {
    background: white;
    padding: 36px 32px;
    border-radius: 16px;
    max-width: 480px;
    text-align: center;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-intent-content h2 {
    font-size: 1.65rem;
    color: #111827;
    margin-bottom: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.exit-intent-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.exit-intent-offer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 16px 22px;
    border-radius: 10px;
    margin: 18px 0 22px;
    border: 2px solid #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.offer-highlight {
    font-weight: 700;
    color: #92400e;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.4;
}

.exit-intent-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.btn-exit-stay {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    letter-spacing: 0.3px;
}

.btn-exit-stay:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-exit-leave {
    background: transparent;
    color: #6b7280;
    padding: 10px 32px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.btn-exit-leave:hover {
    color: #374151;
}

/* Mobile Responsive for Enhanced Modal */
@media (max-width: 768px) {
    .modal-urgency-banner {
        font-size: 0.82rem;
        padding: 12px 16px;
    }

    .modal-left,
    .modal-right {
        padding: 24px 20px !important;
    }

    .modal-left h2,
    .modal-right h2 {
        font-size: 1.4rem;
    }

    /* Hide progress bar on mobile (only show on desktop in left column) */
    .form-progress-left {
        display: none;
    }

    .trust-badges {
        padding: 16px;
        gap: 12px;
    }

    .trust-item {
        font-size: 0.9rem;
    }

    .social-proof-live {
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    .testimonial-mini {
        padding: 16px;
    }

    .form-benefits {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .benefit-item {
        font-size: 0.82rem;
        padding: 6px 12px;
    }

    .modal-right .row {
        flex-direction: column;
        gap: 16px;
    }

    .exit-intent-content {
        padding: 28px 20px;
        margin: 20px;
        max-width: 90%;
    }

    .exit-intent-content h2 {
        font-size: 1.35rem;
    }

    .exit-intent-content p {
        font-size: 0.95rem;
    }

    .btn-exit-stay {
        padding: 14px 24px;
        font-size: 1rem;
    }
}