/*
 * AI-Powered Super Fast Websites Page Styles
 * Advanced styling for AI-focused website features
 */

/* ===== HERO SECTION ENHANCEMENTS ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

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

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HERO VISUAL ELEMENTS ===== */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.speed-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.speed-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.1), rgba(106, 17, 203, 0.1));
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    animation: pulse 3s ease-in-out infinite;
}

.speed-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.speed-text {
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
}

.speed-text span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.speed-bars {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    height: 60px;
}

.speed-bar {
    width: 8px;
    background: linear-gradient(to top, #9b27b0, #6a11cb);
    border-radius: 4px;
    animation: barAnimation 2s ease-in-out infinite;
    animation-delay: var(--delay);
    transform-origin: bottom;
}

.speed-bar:nth-child(1) { height: 20px; }
.speed-bar:nth-child(2) { height: 35px; }
.speed-bar:nth-child(3) { height: 50px; }
.speed-bar:nth-child(4) { height: 30px; }
.speed-bar:nth-child(5) { height: 40px; }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(155, 39, 176, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(155, 39, 176, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes barAnimation {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

/* ===== AI PERFORMANCE SHOWCASE ===== */
.ai-performance-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

.performance-header {
    text-align: center;
    margin-bottom: 4rem;
}

.performance-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.performance-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.performance-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 39, 176, 0.1);
}

.performance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(155, 39, 176, 0.2);
}

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

.performance-metric {
    margin-bottom: 1rem;
}

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

.metric-unit {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: block;
}

.performance-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== AI TECHNOLOGY STACK ===== */
.ai-technology-stack {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.ai-technology-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.ai-technology-stack .section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.ai-stack-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ai-stack-category:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.ai-stack-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stack-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stack-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.stack-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.stack-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-card {
        padding: 1.5rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .ai-stack-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-stack-category {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .performance-header h2 {
        font-size: 2rem;
    }
    
    .ai-technology-stack h2 {
        font-size: 2rem;
    }
    
    /* AI Features responsive */
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .ai-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .ai-features h2 {
        font-size: 2.5rem;
    }
    
    /* CTA Section responsive */
    .ai-cta-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    /* Benefits responsive */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-benefits h2 {
        font-size: 2.5rem;
    }
    
    /* Hero visual responsive */
    .speed-circle {
        width: 150px;
        height: 150px;
    }
    
    .speed-text {
        font-size: 1.5rem;
    }
    
    .speed-bars {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .performance-header h2 {
        font-size: 2rem;
    }
    
    .ai-technology-stack h2 {
        font-size: 2rem;
    }
    
    /* AI Features mobile */
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .ai-features h2 {
        font-size: 2rem;
    }
    
    /* CTA Section mobile */
    .ai-cta-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Benefits mobile */
    .benefit-item {
        padding: 1.5rem;
    }
    
    .performance-comparison {
        padding: 2rem 1.5rem;
    }
    
    .ai-benefits h2 {
        font-size: 2rem;
    }
    
    /* Hero visual mobile */
    .speed-circle {
        width: 120px;
        height: 120px;
    }
    
    .speed-text {
        font-size: 1.2rem;
    }
    
    .speed-bars {
        height: 40px;
    }
    
    .speed-bar {
        width: 6px;
    }
}

/* ===== AI FEATURES SECTION ===== */
.ai-features {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

.ai-features h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-features .section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto 5rem;
    line-height: 1.6;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.ai-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(155, 39, 176, 0.08);
    position: relative;
    overflow: hidden;
}

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

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

.ai-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(155, 39, 176, 0.15);
}

.ai-feature-card .feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
}

.ai-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.ai-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ai-feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.feature-stats {
    margin-top: 1.5rem;
}

.feature-stats .stat {
    display: inline-block;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== AI CTA SECTION ===== */
.ai-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    margin: 4rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8e24a0, #5d0fb5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 39, 176, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.ai-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.ai-badge img {
    max-width: 120px;
    height: auto;
    filter: brightness(1.2);
}

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

.cert-badge {
    display: block;
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.cert-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== AI BENEFITS SECTION ===== */
.ai-benefits {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

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

.ai-benefits h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-benefits .section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto 5rem;
    line-height: 1.6;
}

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

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 39, 176, 0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(155, 39, 176, 0.1);
}

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

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.benefit-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-metrics .metric {
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.1), rgba(106, 17, 203, 0.1));
    color: #9b27b0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(155, 39, 176, 0.2);
}

.performance-comparison {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(155, 39, 176, 0.08);
}

.performance-comparison h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

.comparison-header {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-header:not(.ai) {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
}

.comparison-header.ai {
    background: linear-gradient(135deg, #9b27b0, #6a11cb);
    color: white;
    border: 2px solid transparent;
}

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

.comparison-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    position: relative;
    padding-left: 3rem;
}

.comparison-list.traditional li {
    background: #f8f9fa;
    color: #666;
}

.comparison-list.traditional li::before {
    content: '✗';
    position: absolute;
    left: 1rem;
    color: #dc3545;
    font-weight: bold;
}

.comparison-list.ai li {
    background: linear-gradient(135deg, rgba(155, 39, 176, 0.05), rgba(106, 17, 203, 0.05));
    color: #1a1a2e;
    border: 1px solid rgba(155, 39, 176, 0.1);
}

.comparison-list.ai li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: #28a745;
    font-weight: bold;
}

/* ===== SPEED INTRO SECTION ===== */
.speed-intro {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: var(--space-3xl) 0;
}

.speed-intro h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    background: linear-gradient(135deg, #5A00D1 0%, #FF0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #5A00D1;
}

.speed-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-bottom: var(--space-3xl);
}

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

.feature-list li {
    padding: var(--space-md) 0;
    font-size: var(--text-lg);
    color: #64748b;
    position: relative;
    padding-left: var(--space-xl);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: var(--space-md);
    color: var(--primary-purple);
    font-weight: bold;
    font-size: var(--text-xl);
}

.feature-list li a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-base);
}

.feature-list li a:hover {
    text-decoration: underline;
}

.speed-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.pillar-card h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--dark-gray);
}

.pillar-card p {
    color: #64748b;
    font-size: var(--text-base);
    margin: 0;
}

.cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.google-partner-badge img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

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

.cta-content .btn {
    margin-bottom: var(--space-md);
}

.cta-content p {
    margin: 0;
    color: #64748b;
    font-size: var(--text-lg);
}

/* ===== WHY SPEED MATTERS SECTION ===== */
.why-speed-matters {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: var(--space-3xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.content-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.content-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.content-item h3 {
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
}

.content-item h3 a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-base);
}

.content-item h3 a:hover {
    text-decoration: underline;
}

.content-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.content-item p a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-base);
}

.content-item p a:hover {
    text-decoration: underline;
}

/* ===== TECHNOLOGY PLATFORMS SECTION ===== */
.technology-platforms {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: var(--space-3xl) 0;
}

.technology-platforms h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #5A00D1 0%, #FF0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #5A00D1;
}

.section-intro {
    text-align: center;
    font-size: var(--text-lg);
    color: #64748b;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.platform-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    min-height: 120px;
}

.platform-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.platform-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: var(--transition-base);
}

.platform-item:hover img {
    filter: grayscale(0);
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: var(--space-3xl) 0;
}

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

.reviews-placeholder h3 {
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #5A00D1 0%, #FF0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #5A00D1;
}

.review-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    max-width: 400px;
    margin: 0 auto;
}

.rating {
    margin-bottom: var(--space-md);
}

.stars {
    color: #fbbf24;
    font-size: var(--text-2xl);
    margin-right: var(--space-sm);
}

.rating-text {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark-gray);
}

.review-summary p {
    color: #64748b;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .speed-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .speed-pillars {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .speed-intro,
    .why-speed-matters,
    .technology-platforms,
    .testimonials {
        padding: var(--space-2xl) 0;
    }
    
    .pillar-card {
        padding: var(--space-lg);
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .content-item {
        padding: var(--space-lg);
    }
    
    .platform-item {
        padding: var(--space-md);
        min-height: 100px;
    }
    
    .platform-item img {
        max-height: 60px;
    }
    
    .cta-section {
        padding: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .feature-list li {
        font-size: var(--text-base);
        padding-left: var(--space-lg);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-item {
        min-height: 80px;
    }
    
    .platform-item img {
        max-height: 50px;
    }
}
