/* ========================================
   Enhanced SEO AI Agency Page Styles
   ======================================== */

/* Hero Section Enhancements */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #13102a;
    color: #ffffff;
    padding: 80px 0 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M600,112.77C268.63,112.77,0,65.52,0,7.23V120H1200V7.23C1200,65.52,931.37,112.77,600,112.77Z" fill="white"/></svg>');
    background-size: 100% 100%;
    z-index: 5;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle-dot {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.particle-dot.active {
    opacity: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(30, 10, 60, 0.9) 0%, rgba(13, 13, 43, 0.7) 70%),
                radial-gradient(circle at 80% 20%, rgba(60, 15, 80, 0.8) 0%, rgba(13, 13, 43, 0.6) 60%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

.hero-badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff !important;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.5rem;
}

/* Override main stylesheet animation with more specific selector */
.hero-title .gradient-text,
.gradient-text {
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: #9b27b0 !important; /* Fallback color */
    font-weight: 800 !important;
    /* Reset problematic properties */
    background-size: 100% 100% !important;
    animation: none !important;
    filter: none !important;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    min-width: 140px;
    flex: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

.hero-buttons .btn-outline-primary {
    background: transparent;
    border: 2px solid rgba(155, 39, 176, 0.6);
    color: #fff;
}

.hero-buttons .btn-outline-primary:hover {
    background: rgba(155, 39, 176, 0.15);
    transform: translateY(-3px);
}

.hero-buttons .btn i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(5px);
}

.hero-trusted-by {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trusted-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trusted-logo {
    height: 30px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.trusted-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.hero-illustration {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-illustration-wrapper {
    position: relative;
    width: 100%;
    padding-top: 20px;
}

.hero-illustration-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(155, 39, 176, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.hero-illustration-main {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-illustration-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-element {
    position: absolute;
    z-index: 3;
}

.floating-element-1 {
    top: 10%;
    right: -30px;
}

.floating-element-2 {
    bottom: 10%;
    left: -30px;
}

.floating-element .floating-card,
.floating-element .floating-card * {
    transform: rotate(0deg) !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    transition: none !important;
    animation: none !important;
    perspective: none !important;
    transform-style: flat !important;
}

.floating-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 220px;
    transform: rotate(0deg);
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.analytics-card .floating-card-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.keyword-card .floating-card-icon {
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.floating-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
}

.floating-card-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero-bottom-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    clip-path: ellipse(50% 60% at 50% 100%);
    z-index: 2;
}

/* Media Queries for Responsive Hero */
@media (max-width: 1200px) {
    .hero-content {
        padding-right: 0;
    }
    
    .floating-element-1 {
        top: 5%;
        right: -20px;
    }
    
    .floating-element-2 {
        bottom: 5%;
        left: -20px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
    }
    
    .hero-content, .hero-illustration {
        max-width: 100%;
    }
    
    .hero-content {
        text-align: center;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons, .hero-stats, .hero-trusted-by {
        justify-content: center;
    }
    
    .hero-illustration-main {
        transform: perspective(1000px) rotateY(0);
    }
    
    .floating-element-1 {
        top: 10%;
        right: 5%;
    }
    
    .floating-element-2 {
        bottom: 10%;
        left: 5%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stat {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }
    
    .hero-stat-value {
        font-size: 1.75rem;
    }
    .floating-element {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stat {
        min-width: 100%;
    }
    
    .trusted-logos {
        gap: 1rem;
        justify-content: center;
    }
    
    .trusted-logo {
        height: 24px;
    }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-fuchsia);
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

/* Animated Stats Bar */
.stats-bar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-fuchsia), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}


/* Text colors for headings in light sections */
.problem-section h2,
.solution-section h2,
.ai-services-section h2,
.integrations-section h2,
.testimonials-section h2,
.faq-section h2,
.contact-section h2 {
    color: #222222 !important;
}

/* Subheadings in light sections */
.problem-section .section-subtitle,
.solution-section .section-subtitle,
.ai-services-section .section-subtitle,
.integrations-section .section-subtitle,
.testimonials-section .section-subtitle,
.faq-section .section-subtitle,
.contact-section .section-subtitle {
    color: #555555 !important;
}

/* Fix card backgrounds in light sections */
.problem-section .problem-card h3,
.solution-section .solution-card h3,
.ai-services-section .service-card h3 {
    color: #222222 !important;
}

.problem-section .problem-card p,
.solution-section .solution-card p,
.ai-services-section .service-card p {
    color: #555555 !important;
}

/* Additional overrides for all light sections */
.why-expre h2,
.why-expre h3,
.why-expre .feature-card h3 {
    color: #222222 !important;
}

.why-expre p,
.why-expre .feature-card p {
    color: #555555 !important;
}


/* Ensure all cards in light sections have proper styling */
.feature-card h3 {
    color: #222222 !important;
}

.feature-card p {
    color: #555555 !important;
}

.feature-icon {
    color: #9b27b0 !important;
}

/* Enhanced Problem Section */
.problem-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 39, 176, 0.3), transparent);
}

.problem-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 16px;
}

.problem-card:hover::before {
    opacity: 0.3;
}

.problem-card h3 {
    color: #222222;
    position: relative;
}

.problem-card p {
    color: #555555;
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(155, 39, 176, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #9b27b0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 39, 176, 0.1);
}

.problem-card:hover .problem-icon {
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    color: white;
}

/* Enhanced Why EXPRE Section */
.why-expre {
    background: #ffffff !important;
    position: relative;
}

.why-expre::after {
    display: none !important;
}

.feature-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(155, 39, 176, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #9b27b0;
    box-shadow: 0 20px 40px rgba(155, 39, 176, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-fuchsia), var(--accent-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced Plan Section */
.the-plan {
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.the-plan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    border-color: var(--accent-orange);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
}

.step-number {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
}

/* Enhanced Success Section */
.success-section {
    background: #1a1a1a;
}

.success-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    transform: rotate(45deg);
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.success-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.08) 0%, rgba(255, 152, 0, 0.05) 100%);
    border: 2px solid rgba(255, 68, 68, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.1);
    transition: all 0.3s ease;
}

.warning-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
}

.warning-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4444 0%, #ff9800 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.3);
}

.warning-box h3 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
}

.warning-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cost-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cost-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 68, 68, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cost-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff4444, #ff9800);
    transition: left 0.3s ease;
}

.cost-item:hover::before {
    left: 0;
}

.cost-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.cost-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff4444;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff4444 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.cost-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warning-footer {
    margin-bottom: 0 !important;
    font-style: italic;
    color: #ff6b6b !important;
    font-weight: 500;
    border-top: 1px solid rgba(255, 68, 68, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem !important;
}

@media (max-width: 768px) {
    .warning-box {
        padding: 2rem 1.5rem;
    }
    
    .cost-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cost-number {
        font-size: 1.8rem;
    }
    
    .warning-box h3 {
        font-size: 1.5rem;
    }
}

/* Enhanced Integrations Section */
.integrations-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6rem 0;
    position: relative;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(155, 39, 176, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.integrations-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integrations-section .section-subtitle {
    color: #666666;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.integration-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 1px solid rgba(155, 39, 176, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 39, 176, 0.15);
    border-color: rgba(155, 39, 176, 0.2);
}

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

.platform-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.platform-logo.wordpress {
    background: linear-gradient(135deg, #21759b, #0073aa);
}

.platform-logo.shopify {
    background: linear-gradient(135deg, #95bf48, #7ab55c);
}

.platform-logo.woocommerce {
    background: linear-gradient(135deg, #96588a, #a46497);
}

.platform-logo.magento {
    background: linear-gradient(135deg, #ee672f, #f26322);
}

.platform-logo.drupal {
    background: linear-gradient(135deg, #0678be, #4f93ce);
}

.platform-logo.custom {
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
}


.integrations-grid .platform-logo {
    min-width: 80px;
}

.integration-card:hover .platform-logo {
    transform: scale(1.1);
}

.integration-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.integration-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.integration-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.integration-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555555;
    font-size: 0.9rem;
}

.integration-features i {
    color: #28a745;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.integration-note {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .integrations-section {
        padding: 4rem 0;
    }
    
    .integrations-section .section-header h2 {
        font-size: 2rem;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .integration-card {
        padding: 1.5rem;
    }
    
    .platform-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Enhanced Audit CTA */
.audit-cta {
    background: linear-gradient(135deg, var(--accent-fuchsia) 0%, var(--accent-orange) 50%, var(--accent-yellow) 100%);
    position: relative;
    overflow: hidden;
}

.audit-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.audit-value {
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 4px 30px rgba(255, 255, 255, 0.5); }
}

/* Enhanced FAQ Section */
.faq-section {
    background: #1a1a1a;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-fuchsia);
    transform: translateX(5px);
}

.faq-item h3::before {
    content: 'Q: ';
    color: var(--accent-fuchsia);
    font-weight: bold;
}

.faq-item p::before {
    content: 'A: ';
    color: var(--accent-orange);
    font-weight: bold;
}

/* Enhanced Contact Form */
.contact-section {
    background: #0f0f0f;
    position: relative;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-fuchsia);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

/* Text Animations */
.animate-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Responsive Enhancements */
@media (max-width: 768px) {
    .seo-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audit-value {
        font-size: 2rem;
    }
}

/* ===== COMPREHENSIVE SECTION STYLING ===== */

/* Base section styling */
section {
    padding: 5rem 0;
    position: relative;
}



/* Section headers */
.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ===== WHY EXPRE SECTION ===== */
.why-expre {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(155, 39, 176, 0.15);
    border-color: #9b27b0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(155, 39, 176, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stat {
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    padding: 6rem 0;
}

.process-flow {
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(155, 39, 176, 0.1);
    border-color: #9b27b0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 15px;
}

.step-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-connector {
    text-align: center;
    margin: 1rem 0;
    color: #9b27b0;
    font-size: 1.5rem;
}

/* ===== VALUE PILLARS SECTION ===== */
.value-pillars {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    padding: 6rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(155, 39, 176, 0.15);
    border-color: #9b27b0;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(155, 39, 176, 0.3);
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pillar-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9b27b0;
    font-weight: 500;
}

.pillar-benefit i {
    color: #28a745;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    padding: 6rem 0;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333333;
    font-style: italic;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #9b27b0;
}

.author-name {
    font-weight: 600;
    color: #222222;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-metrics {
        justify-content: center;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== INTEGRATIONS SECTION ===== */
.integrations-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    padding: 6rem 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(155, 39, 176, 0.15);
    border-color: #9b27b0;
}

.platform-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.platform-logo.wordpress {
    background: linear-gradient(135deg, #21759b, #0073aa);
}

.platform-logo.shopify {
    background: linear-gradient(135deg, #95bf47, #7ab55c);
}

.platform-logo.woocommerce {
    background: linear-gradient(135deg, #96588a, #a46497);
}

.platform-logo.magento {
    background: linear-gradient(135deg, #ee672f, #f26522);
}

.platform-logo.drupal {
    background: linear-gradient(135deg, #0678be, #4a90e2);
}

.platform-logo.custom {
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
}


.integrations-grid .platform-logo {
    min-width: 80px;
}

.integration-card:hover .platform-logo {
    transform: scale(1.1);
}

.integration-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.integration-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.integration-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.integration-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555555;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.integration-features i {
    color: #28a745;
    font-size: 0.8rem;
}

/* ===== AUDIT SECTION ===== */
.audit-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    padding: 6rem 0;
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.audit-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audit-text p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.audit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.audit-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.audit-feature:hover {
    border-color: #9b27b0;
    box-shadow: 0 5px 15px rgba(155, 39, 176, 0.1);
}

.audit-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.audit-feature-text {
    color: #333333;
    font-weight: 500;
    font-size: 0.9rem;
}

.audit-cta-button {
    text-align: center;
}

.audit-note {
    margin-top: 1rem;
    color: #666666;
    font-size: 0.9rem;
    font-style: italic;
}

.audit-image {
    text-align: center;
}

.audit-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    padding: 6rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(155, 39, 176, 0.1);
    border-color: #9b27b0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: #666666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.faq-answer ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #555555;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555555;
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.contact-form {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #9b27b0;
    box-shadow: 0 0 0 3px rgba(155, 39, 176, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form validation styles */
.form-control:invalid:not(:placeholder-shown),
textarea.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control:valid:not(:placeholder-shown),
textarea.form-control:valid:not(:placeholder-shown) {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* ===== MOBILE RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audit-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .audit-features {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* ===== ENHANCED SEO AI AGENCY PAGE STYLES ===== */



/* ===== TRUSTED CLIENT LOGOS SECTION ===== */
.trusted-clients-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
}

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

.trusted-clients-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.trusted-clients-header p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.client-logo-track {
    display: flex;
    align-items: center;
    animation: scroll-logos 30s linear infinite;
    gap: 40px;
    width: max-content;
}

.client-logo {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.client-logo-track:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trusted-clients-section {
        padding: 40px 0;
    }
    
    .trusted-clients-header h3 {
        font-size: 1.5rem;
    }
    
    .client-logo {
        width: 120px;
        height: 70px;
        padding: 12px;
    }
    
    .client-logo-track {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .trusted-clients-header h3 {
        font-size: 1.3rem;
    }
    
    .client-logo {
        width: 100px;
        height: 60px;
        padding: 10px;
    }
    
    .client-logo-track {
        gap: 25px;
    }
}

/* ===== THE PLAN SECTION (AI SEO TRANSFORMATION PROCESS) ===== */
.the-plan {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.the-plan .section-header h2 {
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.steps-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.step {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.metric {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-connector {
    text-align: center;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.step-connector i {
    font-size: 2rem;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Remove any unwanted lines or pseudo-elements */
.steps-grid::before,
.steps-grid::after,
.step::before,
.step::after {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .the-plan {
        padding: 60px 0;
    }
    
    .the-plan .section-header h2 {
        font-size: 2rem;
    }
    
    .step {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .step-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metric {
        padding: 12px;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .step-connector {
        margin: 15px 0;
    }
    
    .step-connector i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .step {
        padding: 25px 15px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
}

.cost-metrics-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.cost-item-compact {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 68, 68, 0.15);
    min-width: 120px;
    transition: all 0.3s ease;
}

.cost-item-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.15);
    background: rgba(255, 255, 255, 1);
}

.cost-item-compact .cost-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff4444;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ff4444 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cost-item-compact .cost-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warning-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 68, 68, 0.1);
}

.btn-warning-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b35 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-warning-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.5);
    background: linear-gradient(135deg, #ff6b35 0%, #ff4444 100%);
    color: white;
    text-decoration: none;
}

.btn-warning-cta i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    .cost-metrics-compact {
        gap: 1rem;
    }
    
    .cost-item-compact {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }
    
    .cost-item-compact .cost-number {
        font-size: 1.5rem;
    }
    
    .btn-warning-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

.text-center { text-align: center; }

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(155, 39, 176, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(106, 17, 203, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Success Stats Bar */
.success-stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.success-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border-radius: 15px;
    border: 1px solid rgba(155, 39, 176, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 150px;
}

.success-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 39, 176, 0.15);
}

.success-stat .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.success-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.case-study {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(155, 39, 176, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    border-radius: 15px 15px 0 0;
}

.case-study:hover::before {
    transform: scaleX(1);
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(155, 39, 176, 0.15);
}

.case-study.featured {
    border: 2px solid rgba(155, 39, 176, 0.2);
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.02) 0%, rgba(255, 255, 255, 0.98) 100%);
}

/* Case Study Header */
.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.industry-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-badge.ecommerce {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.industry-badge.saas {
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
    color: white;
}

.industry-badge.healthcare {
    background: linear-gradient(135deg, #00d2d3 0%, #54a0ff 100%);
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline {
    color: #9b27b0;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Case Study Content */
.case-study-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.05) 0%, rgba(106, 17, 203, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(155, 39, 176, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.08) 0%, rgba(106, 17, 203, 0.05) 100%);
}

.result-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.result-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* AI Implementation */
.implementation {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.03) 0%, rgba(106, 17, 203, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid #9b27b0;
}

.implementation h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #9b27b0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-feature {
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(155, 39, 176, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.02) 0%, rgba(106, 17, 203, 0.01) 100%);
    border-radius: 20px;
    border: 1px solid rgba(155, 39, 176, 0.1);
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(155, 39, 176, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    border-radius: 15px 15px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(155, 39, 176, 0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-mark {
    color: #9b27b0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -5px;
    z-index: 1;
}

.testimonial-card blockquote {
    font-style: italic;
    line-height: 1.6;
    color: #555;
    margin: 1.5rem 0 1rem 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    padding-left: 1rem;
}

.rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(155, 39, 176, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.2rem 0;
    font-size: 0.95rem;
}

.author-title {
    color: #666;
    margin: 0 0 0.2rem 0;
    font-size: 0.85rem;
}

.author-company {
    color: #9b27b0;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-stories {
        padding: 60px 0;
    }
    
    .success-stats-bar {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .success-stat {
        min-width: 200px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-study {
        padding: 1.5rem;
    }
    
    .case-study-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .ai-features {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .success-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .case-study-content h3 {
        font-size: 1.2rem;
    }
    
    .result-number {
        font-size: 1.4rem;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
    }
}

/* Contact Form Section - Get Started Today */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(155, 39, 176, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 2px;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(155, 39, 176, 0.1);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 16px 16px 0 0;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9b27b0;
    box-shadow: 0 0 0 3px rgba(155, 39, 176, 0.1);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(155, 39, 176, 0.3);
    background: linear-gradient(135deg, #8e24aa, #5e35b1);
}

.contact-form .btn:active {
    transform: translateY(-1px);
}

/* Form validation styles */
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .contact-form .btn {
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        margin: 0 15px;
        padding: 25px 15px;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
}

/* Generative SEO Section */
.generative-seo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.generative-seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(155, 39, 176, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.generative-seo-content {
    padding-right: 2rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.1), rgba(106, 17, 203, 0.1));
    border: 2px solid rgba(155, 39, 176, 0.2);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #9b27b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.generative-seo-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
}

.generative-seo-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 2px;
}

.definition-box {
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.05), rgba(106, 17, 203, 0.05));
    border-left: 4px solid #9b27b0;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 2rem;
    position: relative;
}

.definition-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: #9b27b0;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.section-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.generative-seo-content p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.platforms-intro {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem !important;
}

.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

.platform-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.platform-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 39, 176, 0.3);
}

.generative-seo-image {
    text-align: center;
}

.generative-seo-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive design for Generative SEO section */
@media (max-width: 992px) {
    .generative-seo-section {
        padding: 80px 0;
    }
    
    .generative-seo-content {
        padding-right: 0;
        margin-bottom: 4rem;
        text-align: center;
    }
    
    .generative-seo-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .platform-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .generative-seo-content h2 {
        font-size: 2.2rem;
    }
    
    .section-intro {
        font-size: 1.1rem;
    }
    
    .generative-seo-content p {
        font-size: 1rem;
    }
    
    .platform-badges {
        gap: 8px;
    }
    
    .platform-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.platforms-section {
    margin-top: 2.5rem;
}

.platforms-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.platforms-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 2px;
}

.platform-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 1.5rem;
}

.platform-badge {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.1), rgba(106, 17, 203, 0.1));
    transition: left 0.3s ease;
}

.platform-badge:hover::before {
    left: 0;
}

.platform-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(155, 39, 176, 0.2);
    border-color: #9b27b0;
}

.platform-badge i {
    font-size: 1.5rem;
    margin-right: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.platform-badge span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.platform-badge.wordpress i {
    color: #21759b;
}

.platform-badge.shopify i {
    color: #95bf48;
}

.platform-badge.magento i {
    color: #f26322;
}

.platform-badge.drupal i {
    color: #0678be;
}

.platform-badge:hover i,
.platform-badge:hover span {
    color: #9b27b0;
}

/* Custom two-column layout for Generative SEO section */
.generative-seo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.generative-seo-content {
    flex: 1;
    min-width: 300px;
}

.generative-seo-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.generative-seo-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .generative-seo-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .generative-seo-content {
        order: 2;
    }
    
    .generative-seo-image {
        order: 1;
    }
}

.audit-header h2 {
    text-align: left;
}

/* Expert Profile Section */
.expert-profile {
    position: absolute;
    bottom: -110px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 4;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.expert-profile-header {
    margin-bottom: 1rem;
}

.expert-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-profile-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.expert-avatar {
    flex-shrink: 0;
}

.expert-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #9b27b0;
    box-shadow: 0 4px 15px rgba(155, 39, 176, 0.3);
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.expert-title {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.expert-logo {
    margin-top: 0.5rem;
}

.kowalewski-logo {
    height: 20px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.expert-logo a:hover .kowalewski-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments for expert profile */
@media (max-width: 1200px) {
    .expert-profile {
        right: 10px;
        max-width: 260px;
    }
}

@media (max-width: 992px) {
    .expert-profile {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .expert-profile {
        max-width: 100%;
        margin: 1.5rem 0 0;
        padding: 1.25rem;
    }
    
    .expert-profile-content {
        gap: 0.75rem;
    }
    
    .expert-image {
        width: 50px;
        height: 50px;
    }
    
    .expert-name {
        font-size: 0.9rem;
    }
    
    .expert-title {
        font-size: 0.75rem;
    }
}

/* Generative SEO CTA Buttons */
.generative-seo-cta {
    margin-top: 2rem;
    text-align: center;
}

.cta-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-buttons-row .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.cta-primary {
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(155, 39, 176, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 39, 176, 0.4);
    color: white;
}

.cta-secondary {
    background: transparent;
    color: #9b27b0;
    border: 2px solid #9b27b0;
}

.cta-secondary:hover {
    background: linear-gradient(135deg, #9b27b0 0%, #6a11cb 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 39, 176, 0.3);
}

.cta-buttons-row .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-buttons-row .btn:hover i {
    transform: scale(1.1);
}

/* Responsive adjustments for CTA buttons */
@media (max-width: 768px) {
    .cta-buttons-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-buttons-row .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.25rem;
    }
    
    .generative-seo-cta {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-buttons-row .btn {
        min-width: auto;
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
}