/* Blog Specific Styles */

/* Blog Layout */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.blog-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: none;
}

.blog-subtitle {
    font-size: 1.4rem;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: #64748B;
    position: relative;
    z-index: 10;
    padding-top: 20px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #475569;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Article Card */
.article-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(39, 174, 95, 0.3);
    box-shadow: 0 20px 40px rgba(39, 174, 95, 0.1);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #94A3B8;
}

.article-category {
    background: rgba(39, 174, 95, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(39, 174, 95, 0.2);
}

.article-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--light);
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--primary);
}

.article-excerpt {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.article-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #CBD5E1;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: rgba(39, 174, 95, 0.1);
    color: var(--primary);
    border-color: rgba(39, 174, 95, 0.3);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.read-more::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Featured Article (First Article) */
.article-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(39, 174, 95, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(39, 174, 95, 0.2);
    padding: 40px;
}

.article-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    transform: scaleX(1);
}

.article-card.featured .article-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.article-card.featured .article-excerpt {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.article-card.featured .article-meta {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Article Page Styles */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* Hero Section for Articles */
.article-hero {
    background: linear-gradient(135deg, 
        rgba(39, 174, 95, 0.1) 0%, 
        rgba(15, 23, 42, 0.95) 20%, 
        rgba(30, 41, 59, 0.9) 50%, 
        rgba(15, 23, 42, 0.95) 80%, 
        rgba(39, 174, 95, 0.1) 100%
    );
    position: relative;
    padding: 140px 0 80px;
    margin-top: 90px;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(39, 174, 95, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(39, 174, 95, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.article-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--accent) 50%, 
        var(--primary) 80%, 
        transparent 100%
    );
}

.article-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-header .article-title {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: none;
}

.article-header .article-excerpt {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #CBD5E1;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.article-hero .article-meta {
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1rem;
}

.article-hero .article-category {
    background: rgba(39, 174, 95, 0.2);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid rgba(39, 174, 95, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-hero .article-tags {
    justify-content: center;
    gap: 12px;
}

.article-hero .article-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.article-hero .article-tag:hover {
    background: rgba(39, 174, 95, 0.2);
    color: var(--accent);
    border-color: rgba(39, 174, 95, 0.4);
    transform: translateY(-2px);
}

/* Floating elements animation */
.article-hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float-element 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: -15s;
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Regular article header (for articles without hero) */
.article-content:not(.has-hero) {
    padding: 120px 20px 40px;
}

.article-content:not(.has-hero) .article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-content:not(.has-hero) .article-header .article-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-body {
    color: #E2E8F0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body h2 {
    color: var(--light);
    font-size: 2.2rem;
    margin: 50px 0 25px;
    padding: 25px 0 15px 20px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, var(--primary), var(--accent)) no-repeat bottom;
    background-size: 60px 3px;
    background-position: 20px bottom;
    position: relative;
    font-weight: 700;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.article-body h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 35px 0 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* H3 with icons - no border */
.article-body h3.with-icon {
    padding-left: 0;
}

.article-body h3.with-icon::before {
    display: none;
}

/* H3 without icons - with border */
.article-body h3:not(.with-icon)::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
    flex-shrink: 0;
}

.article-body p {
    margin-bottom: 25px;
    text-align: justify;
}

.article-body p:first-of-type {
    font-size: 1.2rem;
    color: #F1F5F9;
    font-weight: 500;
}

.article-body strong {
    color: var(--primary);
    font-weight: 600;
}

.article-body ul, .article-body ol {
    margin: 25px 0;
    padding-left: 0;
}

.article-body li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    list-style: none;
}

.article-body ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
    top: 2px;
}

.article-body ol {
    counter-reset: custom-counter;
}

.article-body ol li {
    counter-increment: custom-counter;
}

.article-body ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-body blockquote {
    border: none;
    padding: 30px 40px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(39, 174, 95, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    position: relative;
    font-style: italic;
    font-size: 1.15rem;
    color: #F1F5F9;
    border-left: 5px solid var(--primary);
}

.article-body blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.article-body blockquote::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.article-body code {
    background: rgba(39, 174, 95, 0.1);
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Fira Code', monospace;
    font-size: 0.95em;
    border: 1px solid rgba(39, 174, 95, 0.2);
}

.article-body pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.article-body pre::before {
    content: '</>';
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.6;
}

.article-body a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.article-body a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(39, 174, 95, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Special content boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(39, 174, 95, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(39, 174, 95, 0.3);
    border-radius: 15px;
    padding: 25px 30px;
    margin: 35px 0;
    position: relative;
}

.highlight-box::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--darker);
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.highlight-box h4 {
    color: var(--accent);
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(39, 174, 95, 0.3);
    box-shadow: 0 10px 30px rgba(39, 174, 95, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Case study boxes */
.case-study {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(39, 174, 95, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.case-study h4 {
    color: var(--accent);
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-study h4::before {
    content: '';
    font-size: 1.2rem;
}

.case-study h4::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M18 17V9'/%3E%3Cpath d='M13 17V5'/%3E%3Cpath d='M8 17v-3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* Benefits list special styling */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(39, 174, 95, 0.3);
    background: rgba(39, 174, 95, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.benefit-title {
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-desc {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Progress indicators */
.progress-steps {
    margin: 40px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.step-number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--light);
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.step-content p {
    color: #94A3B8;
    margin: 0;
    line-height: 1.6;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .blog-container {
        padding: 120px 15px 40px;
    }
    
    .article-hero {
        padding: 120px 0 60px;
    }
    
    .article-body h2 {
        font-size: 1.8rem;
        margin: 35px 0 20px;
        padding: 20px 0 10px 15px;
        background-position: 15px bottom;
    }
    
    .article-body h3 {
        font-size: 1.4rem;
        margin: 25px 0 15px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .case-study, .highlight-box {
        padding: 20px;
        margin: 25px 0;
    }
}

/* Call to Action */
.blog-cta {
    background: linear-gradient(135deg, rgba(39, 174, 95, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(39, 174, 95, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.blog-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--light);
}

.blog-cta p {
    color: #94A3B8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(39, 174, 95, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-container {
        padding: 120px 15px 40px;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card {
        padding: 20px;
    }
    
    .article-card.featured {
        padding: 30px 20px;
    }
    
    .article-card.featured .article-title {
        font-size: 1.6rem;
    }
    
    .article-content {
        padding: 100px 15px 40px;
    }
    
    .article-header .article-title {
        font-size: 2rem;
    }
    
    .blog-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 1.1rem;
    }
    
    .article-title {
        font-size: 1.2rem;
    }
    
    .article-card.featured .article-title {
        font-size: 1.4rem;
    }
}

/* Loading Animation */
.article-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.3s; }
.article-card:nth-child(4) { animation-delay: 0.4s; }
.article-card:nth-child(5) { animation-delay: 0.5s; }
.article-card:nth-child(6) { animation-delay: 0.6s; }
.article-card:nth-child(7) { animation-delay: 0.7s; }
.article-card:nth-child(8) { animation-delay: 0.8s; }
.article-card:nth-child(9) { animation-delay: 0.9s; }
.article-card:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Microformats are applied via existing classes:
   - .h-entry via .article-card
   - .p-name via .article-title
   - .p-summary via .article-excerpt
   - .dt-published via .article-date
   - .p-category via .article-category
*/

/* =============================================================================
   TEST AGENT CTA MODULE - FULL WIDTH
   ============================================================================= */

/* Test Agent CTA Wrapper - Full Width */
.test-agent-cta-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.9) 30%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(30, 41, 59, 0.9) 70%,
        rgba(15, 23, 42, 0.95) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 60px;
}

.test-agent-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), #3b82f6, var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Test Agent CTA Section */
.test-agent-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.cta-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.feature-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.primary-cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(39, 174, 95, 0.3);
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.primary-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.primary-cta-btn:hover::before {
    left: 100%;
}

.primary-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 95, 0.4);
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    display: block;
    margin-top: 2px;
}

.primary-cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.primary-cta-btn:hover i {
    transform: translateX(5px);
}

.secondary-cta-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    justify-content: center;
    font-weight: 500;
}

.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-medical-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(239, 68, 68, 0.1);
    animation: floatMedical 8s ease-in-out infinite;
}

.floating-medical-icon:nth-child(1) {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.floating-medical-icon:nth-child(2) {
    bottom: 25%;
    right: 8%;
    animation-delay: 2.5s;
}

.floating-medical-icon:nth-child(3) {
    top: 60%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes floatMedical {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.15;
    }
}

/* Responsive Design for Test Agent CTA */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .cta-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .cta-text h3 {
        font-size: 1.6rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .primary-cta-btn {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        width: 100%;
    }
}

/* =============================================================================
   INDUSTRY PAGES SPECIFIC STYLES
   ============================================================================= */

/* Article Hero Section for Industries */
.article-hero {
    background: linear-gradient(135deg, 
        rgba(39, 174, 95, 0.1) 0%, 
        rgba(15, 23, 42, 0.95) 20%, 
        rgba(30, 41, 59, 0.9) 50%, 
        rgba(15, 23, 42, 0.95) 80%, 
        rgba(39, 174, 95, 0.1) 100%
    );
    margin: 0 0 60px;
    position: relative;
    overflow: hidden;
    padding: 140px 5% 80px;
    margin-top: 90px;
}

.article-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.article-hero .floating-element {
    position: absolute;
    opacity: 0.05;
    animation: floatSlow 12s ease-in-out infinite;
    pointer-events: none;
}

.article-hero .floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.article-hero .floating-element:nth-child(2) {
    top: 15%;
    right: 8%;
    animation-delay: 3s;
}

.article-hero .floating-element:nth-child(3) {
    bottom: 15%;
    left: 8%;
    animation-delay: 6s;
}

.article-hero .floating-element:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation-delay: 9s;
}

@keyframes floatSlow {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.05;
    }
    50% { 
        transform: translateY(-15px) rotate(3deg);
        opacity: 0.08;
    }
}

.article-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.article-hero .article-header {
    text-align: left;
    margin-bottom: 0;
}

.article-hero .article-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.article-hero .article-excerpt {
    font-size: 1.4rem;
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Industry Hero Section */
.industry-hero {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.industry-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.industry-hero .hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.industry-hero .hero-icon.healthcare-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.industry-hero .hero-icon.financial-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.industry-hero .hero-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.industry-hero .hero-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.industry-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.industry-hero .floating-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.industry-hero .floating-element:nth-child(1) {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.industry-hero .floating-element:nth-child(2) {
    bottom: 30%;
    right: 25%;
    animation-delay: 2s;
}

.industry-hero .floating-element:nth-child(3) {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Industry Applications Section */
.industry-applications {
    margin: 60px 0;
}

.industry-applications h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.industry-applications h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.application-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.application-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.application-item .application-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.application-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.application-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Strategic Benefits Section */
.strategic-benefits {
    margin: 80px 0;
}

.strategic-benefits h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.strategic-benefits h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.benefit-card .benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.benefit-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Use Cases Section */
.use-cases {
    margin: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.use-cases h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.use-case-scenario h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

.scenario-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.challenge, .solution, .results {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.challenge h5, .solution h5, .results h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.challenge h5 {
    color: #f87171;
}

.solution h5 {
    color: #34d399;
}

.results h5 {
    color: #60a5fa;
}

.challenge p, .solution p {
    color: #cbd5e1;
    line-height: 1.6;
}

.results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results ul li {
    color: #cbd5e1;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.results ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34d399;
    font-weight: bold;
}

/* Implementation Strategy */
.implementation-strategy {
    margin: 80px 0;
}

.implementation-strategy h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.strategy-timeline {
    position: relative;
    padding-left: 50px;
}

.strategy-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
}

.timeline-number {
    position: absolute;
    left: -70px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Compliance Framework */
.compliance-framework {
    margin: 80px 0;
}

.compliance-framework h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.compliance-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.compliance-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.compliance-item .compliance-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.compliance-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.compliance-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Technology Integration */
.technology-integration {
    margin: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.technology-integration h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Related Industries */
.related-articles {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 60px;
}

.related-articles .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-articles h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.related-articles h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.related-articles .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.related-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.related-item:hover::before {
    transform: scaleX(1);
}

.related-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.related-item .related-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.related-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.related-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Industry Pages */
@media (max-width: 768px) {
    .industry-hero {
        padding: 30px 20px;
    }
    
    .industry-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .industry-hero .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .application-grid,
    .benefits-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-details {
        grid-template-columns: 1fr;
    }
    
    .strategy-timeline {
        padding-left: 20px;
    }
    
    .timeline-number {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .tech-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* =============================================================================
   ARTICLE CTA & FOOTER STYLES
   ============================================================================= */

/* Article CTA Section */
.article-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 50px;
    margin: 80px 0 60px;
    text-align: center;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.article-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
}

.article-cta .cta-button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.article-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
}

/* Article Footer */
.article-footer {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.article-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.publication-date {
    font-size: 0.9rem;
    color: #94a3b8;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-share span {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.share-btn.email {
    background: linear-gradient(135deg, #ea4335, #d33b2c);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Article Footer */
@media (max-width: 768px) {
    .article-cta {
        padding: 30px 20px;
        margin: 60px 0 40px;
    }
    
    .article-cta h3 {
        font-size: 1.8rem;
    }
    
    .article-cta p {
        font-size: 1rem;
    }
    
    .article-footer {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .timeline-number {
        left: -50px;
    }
    
    .article-hero {
        padding: 120px 15px 60px;
    }
    
    .article-hero .article-title {
        font-size: 2.5rem;
    }
    
    .article-hero .article-excerpt {
        font-size: 1.2rem;
    }
    
    .related-articles {
        padding: 60px 0 40px;
    }
    
    .related-articles .blog-container {
        padding: 0 15px;
    }
    
    .related-articles .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
