/* Performance Marketing V2 - Enhanced Effects */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a0033;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #a855f7);
    border-radius: 5px;
}

/* Enhanced Hero Section */
.performance-hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a0033 50%, #2d1b69 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Background Elements */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(168, 85, 247, 0.5);
    border-radius: 50%;
    animation: float-up 15s infinite linear;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

.particle:nth-child(even) {
    width: 6px;
    height: 6px;
    animation-duration: 20s;
    background: rgba(59, 130, 246, 0.5);
}

.particle:nth-child(3n) {
    animation-duration: 25s;
    width: 3px;
    height: 3px;
    background: rgba(236, 72, 153, 0.5);
}

/* Floating Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.8) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.8) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.hero-content {
    text-align: center;
    color: white;
}

/* Glowing Text Effect */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #a855f7, #3b82f6, #ec4899, #a855f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite, fadeInUp 0.8s ease;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    opacity: 0.9;
}

/* Animated Stats Cards */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    animation: pulse 2s infinite;
}

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

.stat-label {
    color: #94a3b8;
    font-size: 1rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animated CTA Button */
.hero-cta {
    margin-top: 50px;
    display: inline-block;
}

.hero-button {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #a855f7);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-button:hover::before {
    width: 300px;
    height: 300px;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(42, 1, 81, 0.4);
    color: #ffffff !important;
}

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

/* Main Content with Parallax Effect */
.performance-content {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
}

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

.section {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #a855f7);
    border-radius: 2px;
    animation: expand 1s ease forwards;
}

@keyframes expand {
    from { width: 0; }
    to { width: 100px; }
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 40px auto 60px;
    line-height: 1.8;
}

/* Enhanced Services Grid with 3D Effects */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    perspective: 1000px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #a855f7, #ec4899);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(-5deg);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #a855f7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    animation: icon-float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card:hover .service-icon {
    animation-play-state: paused;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #667eea;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 12px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    padding-left: 35px;
}

.service-card:hover .service-features li::before {
    transform: scale(1.3);
}

/* Enhanced Platform Cards with Flip Effect */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    color: #000000 !important;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.platform-card:hover::before {
    top: -150%;
    left: -150%;
}

.platform-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: transparent;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.platform-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border-radius: 50%;
    transition: all 0.4s ease;
    color: white;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.facebook-icon { 
    background: linear-gradient(135deg, #1877f2, #4267B2);
    animation: icon-pulse 2s infinite;
}

.instagram-icon { 
    background: linear-gradient(135deg, #E4405F, #833AB4, #FD1D1D);
    animation: icon-pulse 2s infinite 0.5s;
}

.linkedin-icon { 
    background: linear-gradient(135deg, #0077B5, #0A66C2);
    animation: icon-pulse 2s infinite 1s;
}

.google-icon { 
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    animation: icon-pulse 2s infinite 1.5s;
}

@keyframes icon-pulse {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    }
}

.platform-card:hover .platform-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.platform-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.platform-card:hover h4 {
    background: linear-gradient(135deg, #667eea, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.platform-stat {
    text-align: center;
    transition: all 0.3s ease;
}

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

.platform-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: number-count 2s ease;
}

@keyframes number-count {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.platform-stat-label {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Process Timeline with 3D Cards */
.process-timeline {
    position: relative;
    padding: 60px 0;
    margin-top: 50px;
    color: #000000 !important;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea, #a855f7, #ec4899);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.1) 0%, transparent 100%);
    transition: top 0.4s ease;
}

.timeline-content:hover::before {
    top: 0;
}

.timeline-content:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #667eea, #a855f7);
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.2);
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.2);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }
}

.timeline-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea, #a855f7);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Enhanced Results Section with Counter Animation */
.results-showcase {
    background: linear-gradient(135deg, #667eea 0%, #a855f7 50%, #ec4899 100%);
    padding: 70px 50px;
    border-radius: 24px;
    margin-top: 70px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.3);
}

.results-showcase::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float 10s ease-in-out infinite;
}

.results-showcase::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float 10s ease-in-out infinite reverse;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

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

.result-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.result-value {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: counter 2s ease;
}

@keyframes counter {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-label {
    font-size: 1rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced CTA Section */
.cta-section {
    background: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #a855f7, #ec4899);
    animation: gradient-shift 3s ease infinite;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #667eea, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea, #a855f7);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button.primary:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #667eea;
    border: 3px solid #667eea;
    position: relative;
    z-index: 1;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #a855f7);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.cta-button.secondary:hover::before {
    width: 100%;
}

.cta-button.secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #a855f7, #ec4899);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Responsive Design Enhancements */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .performance-hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        padding: 20px 25px;
        width: calc(50% - 10px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
    }

    .timeline-dot {
        left: 20px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .result-value {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-item {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 30px;
    }

    .platform-card {
        padding: 25px;
    }

    .timeline-content {
        padding: 25px;
        margin-left: 40px;
    }

    .results-showcase {
        padding: 50px 30px;
    }

    .cta-section {
        padding: 60px 30px;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}