/* ============================================
   USE CASE PAGES - CUSTOM STYLES
   Styles for: lead-generation.html, account-based-marketing.html, 
   intent-data.html, and all future use case pages
   ============================================ */

/* ============================================
   1. PAGE HERO SECTION
   ============================================ */

.page-hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1428 0%, #2d1f4a 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero .hero-text {
    max-width: 800px;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: #ffffff;
}

.page-hero .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.page-hero .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.15);
    color: #FF6B00;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.page-hero .trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
}

.page-hero .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.page-hero .trust-item i {
    color: #50C878;
}

/* Hero Visual (if added) */
.hero-visual {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    padding: 2rem;
    background: rgba(42, 31, 66, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.dashboard-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@media (max-width: 1024px) {
    .page-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        max-width: 100%;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 5rem 0 4rem;
    }
    
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-description {
        font-size: 1.125rem;
    }
    
    .page-hero .hero-actions {
        flex-direction: column;
    }
    
    .hero-visual {
        display: none;
    }
}

/* ============================================
   2. CONTENT SECTION (Overview)
   ============================================ */

.content-section {
    padding: 5rem 0;
    background: #fff;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.overview-text {
    max-width: 100%;
}

.overview-text .lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.overview-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* Key Points */
.key-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.key-point-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-wrapper i {
    display: block;
    line-height: 1;
    color: inherit !important;
}

.icon-wrapper.blue {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: #fff !important;
}

.icon-wrapper.green {
    background: linear-gradient(135deg, #50C878 0%, #3FA463 100%);
    color: #fff !important;
}

.icon-wrapper.orange {
    background: linear-gradient(135deg, #FF6B00 0%, #E05500 100%);
    color: #fff !important;
}

.point-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.point-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Overview Visual - Stats Card */
.overview-visual {
    position: sticky;
    top: 100px;
}

.stats-card {
    background: linear-gradient(135deg, #1a1428 0%, #2d1f4a 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-row:last-child {
    margin-bottom: 0;
}

.stat-row:first-child {
    grid-template-columns: 1fr;
}

.stat-row:not(:first-child) {
    grid-template-columns: 1fr 1fr;
}

.stat-item-large,
.stat-item-medium {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FF6B00 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item-medium .stat-value {
    font-size: 2.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

.stat-badge {
    display: inline-block;
    background: rgba(80, 200, 120, 0.2);
    color: #50C878;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.stat-badge.success {
    background: rgba(80, 200, 120, 0.2);
    color: #50C878;
}

@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-visual {
        position: static;
    }
}

/* ============================================
   3. CHALLENGES SECTION
   ============================================ */

.challenges-section {
    padding: 5rem 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.challenge-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color, #ccc) 0%, transparent 100%);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--card-color, #ccc);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.challenge-icon.red {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    --card-color: #E74C3C;
}

.challenge-icon.orange {
    background: linear-gradient(135deg, #FF6B00 0%, #E05500 100%);
    --card-color: #FF6B00;
}

.challenge-icon.blue {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    --card-color: #4A90E2;
}

.challenge-icon.purple {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
    --card-color: #9B59B6;
}

.challenge-icon.green {
    background: linear-gradient(135deg, #50C878 0%, #3FA463 100%);
    --card-color: #50C878;
}

.challenge-icon.teal {
    background: linear-gradient(135deg, #16A085 0%, #138D75 100%);
    --card-color: #16A085;
}

.challenge-card::before {
    background: linear-gradient(90deg, var(--card-color, #ccc) 0%, transparent 100%);
}

.challenge-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.challenge-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.challenge-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    margin-top: auto;
}

.impact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #7f8c8d;
}

.impact-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--card-color, #2c3e50);
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   4. SOLUTION SECTION
   ============================================ */

.solution-section {
    padding: 5rem 0;
    background: #fff;
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.solution-item {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-color: #FF6B00;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.1);
}

.solution-number {
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: #FF6B00;
    opacity: 0.05;
    z-index: 0;
    user-select: none;
    display: none;
}

.solution-content {
    position: relative;
    z-index: 1;
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF6B00 0%, #E05500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #2c3e50;
}

.solution-features li i {
    color: #50C878;
    font-size: 1rem;
}

/* Solution CTA */
.solution-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, #1a1428 0%, #2d1f4a 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.solution-cta .cta-content {
    flex: 1;
}

.solution-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.solution-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .solution-item {
        padding: 2rem;
    }
    
    .solution-number {
        font-size: 80px;
        top: -10px;
        left: 20px;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .solution-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   5. BENEFITS SECTION
   ============================================ */

.benefits-section {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--icon-color, #FF6B00);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.benefit-icon.blue {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    --icon-color: #4A90E2;
}

.benefit-icon.green {
    background: linear-gradient(135deg, #50C878 0%, #3FA463 100%);
    --icon-color: #50C878;
}

.benefit-icon.orange {
    background: linear-gradient(135deg, #FF6B00 0%, #E05500 100%);
    --icon-color: #FF6B00;
}

.benefit-icon.purple {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
    --icon-color: #9B59B6;
}

.benefit-icon.teal {
    background: linear-gradient(135deg, #16A085 0%, #138D75 100%);
    --icon-color: #16A085;
}

.benefit-icon.red {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    --icon-color: #E74C3C;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.benefit-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
    border-radius: 16px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--icon-color, #FF6B00), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-stat::before {
    opacity: 1;
}

.stat-visual {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 0.75rem;
}

.benefit-progress-ring {
    display: block;
    transform: scale(1);
    transition: transform 0.4s ease;
    width: 90px;
    height: 90px;
}

.benefit-card:hover .benefit-progress-ring {
    transform: scale(1.05);
}

.ring-fill {
    transition: stroke-dashoffset 1.5s ease-out;
}

.stat-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.stat-number-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number-large .stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1A1D29;
    line-height: 1;
}

.stat-number-large .stat-suffix,
.stat-number-large .stat-prefix {
    font-size: 1rem;
    font-weight: 700;
    color: #5a6c7d;
}

.stat-number-small .stat-number {
    font-size: 1.15rem;
}

.stat-number-small .stat-suffix {
    font-size: 0.875rem;
}

.benefit-stat .stat-label {
    font-size: 0.8125rem;
    color: #5a6c7d;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-visual {
        width: 80px;
        height: 80px;
    }
    
    .benefit-progress-ring {
        width: 80px;
        height: 80px;
    }
    
    .stat-number-large .stat-number {
        font-size: 1.35rem;
    }
}

/* ============================================
   6. FAQ SECTION
   ============================================ */

.faq-section {
    padding: 1.5rem 0 5rem 0;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF6B00;
}

.faq-item.active {
    border-color: #FF6B00;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.05);
}

.question-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2c3e50;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    color: #FF6B00;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #FF6B00;
}

.faq-item.active .faq-icon i {
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #2c3e50;
    font-weight: 600;
}

/* ============================================
   7. RELATED SOLUTIONS SECTION
   ============================================ */

.related-solutions {
    padding: 5rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #FF6B00;
}

.related-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF6B00 0%, #E05500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.related-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.related-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.related-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FF6B00;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-link i {
    transition: transform 0.3s ease;
}

.related-card:hover .related-link i {
    transform: translateX(5px);
}

/* ============================================
   8. CTA SECTION
   ============================================ */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1428 0%, #2d1f4a 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text {
    max-width: 100%;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.15);
    color: #FF6B00;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features li i {
    color: #50C878;
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-actions .btn-xl {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    width: 100%;
    justify-content: center;
}

.cta-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stat {
    text-align: center;
}

.trust-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #FF6B00;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions .btn-xl {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   9. UTILITY CLASSES
   ============================================ */

.bg-light {
    background: #f8f9fa !important;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5a6c7d;
    max-width: 800px;
    margin: 1rem auto 0;
    text-align: center;
}

/* Button Sizes */
.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   10. RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 480px) {
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .page-hero .hero-actions {
        width: 100%;
    }
    
    .page-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .challenges-grid,
    .benefits-grid,
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-item {
        padding: 1.5rem;
    }
    
    .stats-card {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

/* ============================================
   11. COMPARISON TABLE SECTION
   ============================================ */

.comparison-section {
    padding: 5rem 0;
    background: #fff;
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1a1428 0%, #2d1f4a 100%);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th.feature-column {
    text-align: left;
    width: 30%;
}

.comparison-table th.highlight-column {
    background: linear-gradient(135deg, #FF6B00 0%, #E05500 100%);
    position: relative;
}

.comparison-table th.highlight-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #FFD93D;
}

.provider-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.provider-header i {
    font-size: 1.5rem;
    color: #FFD93D;
}

.comparison-table tbody tr {
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.comparison-table tbody tr:nth-child(even):hover {
    background: #f0f2f4;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.comparison-table td.feature-name {
    text-align: left;
}

.comparison-table td.feature-name strong {
    display: block;
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.comparison-table td.feature-name .feature-desc {
    display: block;
    font-size: 0.875rem;
    color: #7f8c9a;
    line-height: 1.5;
}

.comparison-table td.highlight-cell {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(224, 85, 0, 0.05) 100%);
    border-left: 3px solid #FF6B00;
    border-right: 3px solid #FF6B00;
    font-weight: 600;
}

.stat-large {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-medium {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.badge-success {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #50C878;
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-warning {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #FFB347;
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-danger {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #FF6B6B;
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-neutral {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #95a5a6;
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.check-icon {
    font-size: 1.5rem;
    color: #50C878;
    display: block;
    margin: 0 auto 0.5rem;
}

.cross-icon {
    font-size: 1.5rem;
    color: #FF6B6B;
    display: block;
    margin: 0 auto 0.5rem;
}

.neutral-icon {
    font-size: 1.5rem;
    color: #FFB347;
    display: block;
    margin: 0 auto 0.5rem;
}

.check-label,
.cross-label,
.neutral-label {
    display: block;
    font-size: 0.875rem;
    color: #5a6c7d;
}

.comparison-cta {
    margin-top: 3rem;
    text-align: center;
}

.comparison-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #7f8c9a;
    margin-bottom: 2rem;
}

.comparison-note i {
    color: #4A90E2;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        border-radius: 8px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .stat-large {
        font-size: 1.5rem;
    }
    
    .stat-medium {
        font-size: 1.125rem;
    }
    
    .comparison-table td.feature-name strong {
        font-size: 1rem;
    }
}

/* ============================================
   12. PRINT STYLES
   ============================================ */

@media print {
    .page-hero,
    .cta-section,
    .related-solutions,
    .hero-actions,
    .cta-actions,
    .faq-icon {
        display: none;
    }
    
    .faq-answer {
        max-height: none !important;
        padding: 0 0 1rem !important;
    }
    
    .challenge-card,
    .benefit-card,
    .solution-item {
        page-break-inside: avoid;
    }
}
/* ===========================
   ADVANCED ENHANCEMENTS
   =========================== */

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B00, #6C5CE7);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

/* Floating Section Navigator */
.floating-section-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-section-nav.visible {
    opacity: 1;
    visibility: visible;
}

.section-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #CCC;
    border: 2px solid #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.section-nav-item:hover .nav-dot,
.section-nav-item.active .nav-dot {
    background: #FF6B00;
    transform: scale(1.3);
    box-shadow: 0 0 16px rgba(255, 107, 0, 0.5);
}

.nav-label {
    position: absolute;
    right: 100%;
    margin-right: 16px;
    background: #1A1D29;
    color: #FFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-label::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #1A1D29;
}

.section-nav-item:hover .nav-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Floating Particles in Hero */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(9) { left: 15%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(10) { left: 25%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(11) { left: 35%; animation-delay: 5s; animation-duration: 15s; }
.particle:nth-child(12) { left: 45%; animation-delay: 0s; animation-duration: 17s; }
.particle:nth-child(13) { left: 55%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(14) { left: 65%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(15) { left: 75%; animation-delay: 1s; animation-duration: 16s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Pulse CTA Animation */
.pulse-cta {
    position: relative;
    animation: pulseBtn 2s infinite;
}

.pulse-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 107, 0, 0.3);
    animation: pulseRing 2s infinite;
}

@keyframes pulseBtn {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5), 0 0 30px rgba(255, 107, 0, 0.3);
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Enhanced Stats Card with Progress Rings */
.stat-ring-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-ring {
    display: block;
}

.ring-progress {
    transition: stroke-dashoffset 1.5s ease-out;
}

@keyframes drawRing {
    from {
        stroke-dashoffset: 440;
    }
    to {
        stroke-dashoffset: var(--dashoffset, 0);
    }
}

.stat-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.stat-ring-wrapper .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1A1D29;
    margin-bottom: 4px;
}

.stat-ring-wrapper .stat-badge {
    font-size: 11px;
    padding: 3px 8px;
}

.stat-mini-ring {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.stat-mini-ring .stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: #1A1D29;
}

.sparkline-container {
    margin-bottom: 12px;
}

.sparkline {
    display: block;
    margin: 0 auto 8px;
}

.stat-item-medium .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1A1D29;
    margin: 0;
}

/* Solution Timeline */
.solution-timeline {
    position: relative;
    margin-bottom: 40px;
}

.timeline-progress-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 4px;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E0E0E0;
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #FF6B00, #6C5CE7);
    border-radius: 2px;
    transition: height 0.6s ease-out;
}

.solution-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #FFF;
    border: 4px solid #E0E0E0;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-dot.active {
    border-color: #FF6B00;
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.1);
    animation: dotPulse 1.5s ease-out;
}

.timeline-dot.completed {
    background: #FF6B00;
    border-color: #FF6B00;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(255, 107, 0, 0.2);
    }
}

/* Responsive adjustments for new features */
@media (max-width: 1024px) {
    .floating-section-nav {
        right: 20px;
    }
    
    .timeline-progress-container {
        left: 20px;
        transform: none;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .floating-section-nav {
        display: none;
    }
    
    .reading-progress-bar {
        height: 3px;
    }
    
    .stat-ring-wrapper {
        transform: scale(0.9);
    }
    
    .timeline-progress-container {
        display: none;
    }
    
    .timeline-dot {
        display: none;
    }
    
    .particle {
        display: none;
    }
}

/* ================================
   Trust Badges Section
   ================================ */

.trust-badges-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.trust-badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust-badge-item .badge-icon {
    font-size: 28px;
    color: #FFD700;
}

.trust-badge-item .badge-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px 0;
}

.trust-badge-item .badge-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ================================
   Publisher Network Section
   ================================ */

.publisher-network-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.publisher-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.publisher-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.publisher-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #667eea;
}

.logo-placeholder i {
    font-size: 32px;
    color: #667eea;
}

.logo-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.network-stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #fff;
}

.network-stat-item .stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.network-stat-item .stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ================================
   Testimonials Section
   ================================ */

.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    padding: 35px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.testimonial-metrics {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.metric-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #f0f0f0;
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat h3 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.testimonial-stat p {
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive - Trust Elements */
@media (max-width: 768px) {
    .trust-badges-wrapper {
        gap: 15px;
    }
    
    .trust-badge-item {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .trust-badge-item .badge-icon {
        font-size: 22px;
    }
    
    .trust-badge-item .badge-content h4 {
        font-size: 14px;
    }
    
    .publisher-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .publisher-logo {
        padding: 20px;
    }
    
    .logo-placeholder i {
        font-size: 24px;
    }
    
    .logo-placeholder span {
        font-size: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* ================================
   Publications CTA Elements
   ================================ */

.publications-cta-card {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.publications-cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.publications-cta-icon {
    font-size: 48px;
    color: #FFD700;
}

.publications-cta-text {
    color: white;
}

.publications-cta-text h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: white;
    font-weight: 700;
}

.publications-cta-text p {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
}

.publications-cta-card .btn {
    padding: 15px 30px;
    background: white;
    color: #667eea;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.publications-cta-card .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.solution-cta-inline {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    clear: both;
}

.btn-text-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.btn-text-link:hover {
    color: #764ba2;
    gap: 12px;
}

.btn-text-link i:last-child {
    transition: transform 0.3s ease;
}

.btn-text-link:hover i:last-child {
    transform: translateX(4px);
}

.faq-cta-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.faq-cta-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .publications-cta-card {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .publications-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .publications-cta-icon {
        font-size: 36px;
    }
    
    .publications-cta-text h3 {
        font-size: 20px;
    }
    
    .publications-cta-text p {
        font-size: 14px;
    }
    
    .publications-cta-card .btn {
        width: 100%;
        justify-content: center;
    }
}