﻿/* ========================================
       UNIFIED COLOR SYSTEM - Lead Converting
       Primary: #ff6b9d (Pink/Coral)
       Secondary: #3b82f6 (Blue)
       Accent: #10b981 (Green/Success)
       Dark: #0f172a, #1e293b
       Light: #f8fafc, #ffffff
       ======================================== */
    
    /* Performance Optimizations */
    img { loading: lazy; }
    
    /* ========================================
       HERO SECTION - Premium Dark Lead-Converting
       ======================================== */
    .hero-section {
        background: linear-gradient(180deg, #020617 0%, #0f172a 30%, #1e293b 60%, #0f172a 100%);
        padding: 140px 0 120px;
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    /* Aurora Background Effect */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 80% 50% at 20% 30%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse 80% 50% at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
        animation: heroAurora 15s ease-in-out infinite;
        pointer-events: none;
    }
    
    @keyframes heroAurora {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.7; transform: scale(1.05); }
    }
    
    /* Animated Grid Pattern */
    .hero-grid-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridFloat 30s linear infinite;
        pointer-events: none;
    }
    
    @keyframes gridFloat {
        0% { transform: translate(0, 0); }
        100% { transform: translate(60px, 60px); }
    }
    
    /* Floating Gradient Orbs */
    .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
        animation: orbFloat 20s ease-in-out infinite;
    }
    
    .hero-orb-1 {
        width: 500px;
        height: 500px;
        background: rgba(255, 107, 157, 0.2);
        top: -10%;
        left: -10%;
    }
    
    .hero-orb-2 {
        width: 400px;
        height: 400px;
        background: rgba(59, 130, 246, 0.15);
        bottom: -5%;
        right: -5%;
        animation-delay: 5s;
    }
    
    .hero-orb-3 {
        width: 300px;
        height: 300px;
        background: rgba(16, 185, 129, 0.12);
        top: 40%;
        right: 20%;
        animation-delay: 10s;
    }
    
    @keyframes orbFloat {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(30px, -30px) scale(1.1); }
        50% { transform: translate(-20px, 20px) scale(0.95); }
        75% { transform: translate(20px, 30px) scale(1.05); }
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(30px, -30px) rotate(120deg); }
        66% { transform: translate(-20px, 20px) rotate(240deg); }
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.1); opacity: 1; }
    }
    
    @keyframes slideIn {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Floating Particles */
    .hero-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 1;
        overflow: hidden;
    }
    
    .hero-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 107, 157, 0.6);
        border-radius: 50%;
        animation: particleFloat 15s ease-in-out infinite;
    }
    
    .hero-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .hero-particle:nth-child(2) { top: 40%; left: 25%; animation-delay: 2s; background: rgba(59, 130, 246, 0.6); }
    .hero-particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; background: rgba(16, 185, 129, 0.6); }
    .hero-particle:nth-child(4) { top: 30%; right: 20%; animation-delay: 6s; }
    .hero-particle:nth-child(5) { top: 70%; right: 15%; animation-delay: 8s; background: rgba(59, 130, 246, 0.6); }
    .hero-particle:nth-child(6) { top: 50%; right: 30%; animation-delay: 10s; background: rgba(16, 185, 129, 0.6); }
    
    @keyframes particleFloat {
        0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
        50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }
    
    /* Hero Badge */
    .hero-top-tag {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
        backdrop-filter: blur(20px);
        color: #ff6b9d;
        padding: 4px 30px;
        border-radius: 60px;
        border: 2px solid rgba(255, 107, 157, 0.4);
        font-size: 0.9rem;
        font-weight: 800;
        margin-bottom: 40px;
        box-shadow: 0 0 40px rgba(255, 107, 157, 0.3);
        position: relative;
        overflow: hidden;
        animation: slideInDown 0.8s ease-out;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    
    @keyframes slideInDown {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .hero-top-tag::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: rotate(45deg);
        animation: shimmer 3s linear infinite;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }
    
    .hero-top-tag i {
        position: relative;
        z-index: 1;
        animation: pulse 2s ease-in-out infinite;
        font-size: 1.1rem;
    }
    
    .hero-top-tag span {
        position: relative;
        z-index: 1;
    }
    
    /* Hero Title */
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        font-weight: 900;
        line-height: 1.1;
        color: white;
        margin-bottom: 5px;
        position: relative;
        animation: slideInUp 1s ease-out 0.2s both;
        letter-spacing: -0.02em;
        text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }
    
    @keyframes slideInUp {
        from { transform: translateY(30px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .hero-title .dominate-pink {
        position: relative;
        display: inline-block;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 50%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: gradientShift 4s ease infinite;
        font-weight: 900;
    }
    
    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    .hero-title .dominate-pink::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        right: 0;
        height: 8px;
        background: linear-gradient(90deg, rgba(255, 107, 157, 0.5), rgba(59, 130, 246, 0.5));
        border-radius: 4px;
        z-index: -1;
        animation: underlinePulse 2s ease-in-out infinite;
    }
    
    @keyframes underlinePulse {
        0%, 100% { opacity: 0.5; transform: scaleX(0.95); }
        50% { opacity: 1; transform: scaleX(1); }
    }
    
    /* Hero Subtitle */
    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.35rem);
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 50px;
        line-height: 1.8;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 400;
        animation: fadeInUp 1s ease-out 0.4s both;
    }
    
    @keyframes fadeInUp {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    /* Hero Form - Lead Capture (Enhanced for Conversion) */
    .hero-form-wrapper {
        position: relative;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 107, 157, 0.05) 100%);
        backdrop-filter: blur(40px);
        border-radius: 28px;
        padding: 40px 35px 35px;
        max-width: 750px;
        margin: 0 auto 50px;
        animation: fadeInUp 1s ease-out 0.5s both, formGlow 3s ease-in-out infinite;
        border: 2px solid transparent;
        background-clip: padding-box;
        box-shadow: 
            0 25px 80px rgba(0, 0, 0, 0.3),
            0 0 60px rgba(255, 107, 157, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .hero-form-wrapper::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 30px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.6), rgba(139, 92, 246, 0.4), rgba(16, 185, 129, 0.5), rgba(255, 107, 157, 0.6));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        background-size: 300% 300%;
        animation: borderGradientFlow 4s ease infinite;
        z-index: -1;
    }
    
    @keyframes borderGradientFlow {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    @keyframes formGlow {
        0%, 100% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 107, 157, 0.15); }
        50% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3), 0 0 80px rgba(255, 107, 157, 0.25); }
    }
    
    /* Value Badge - Urgency Element */
    .hero-form-value-badge {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        animation: badgePulse 2s ease-in-out infinite;
    }
    
    .hero-form-value-badge i {
        font-size: 0.9rem;
    }
    
    @keyframes badgePulse {
        0%, 100% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
    }
    
    /* Social Proof Counter */
    .hero-form-social-proof {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .hero-form-social-proof .avatars {
        display: flex;
        margin-right: 5px;
    }
    
    .hero-form-social-proof .avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.2);
        margin-left: -10px;
        background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        font-weight: 700;
        color: white;
    }
    
    .hero-form-social-proof .avatar:first-child {
        margin-left: 0;
    }
    
    .hero-form-social-proof .avatar.more {
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        font-size: 0.55rem;
    }
    
    .hero-form-social-proof span {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .hero-form-social-proof strong {
        color: #10b981;
        font-weight: 700;
    }
    
    .hero-form-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .hero-form-title i {
        color: #10b981;
        font-size: 1.6rem;
        filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
    }
    
    .hero-form-subtitle {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-input-group {
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .hero-input-wrapper {
        position: relative;
        flex: 1;
        min-width: 220px;
    }
    
    .hero-input-wrapper i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        z-index: 1;
        transition: color 0.3s;
    }
    
    .hero-input-wrapper input {
        width: 100%;
        padding: 15px 15px 15px 45px;
        border: 2px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        font-size: 1rem;
        outline: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: white;
    }
    
    .hero-input-wrapper input::placeholder {
        color: rgba(255, 255, 255, 0.45);
    }
    
    .hero-input-wrapper input:focus {
        border-color: rgba(255, 107, 157, 0.6);
        background: rgba(255, 107, 157, 0.08);
        box-shadow: 0 0 40px rgba(255, 107, 157, 0.2), inset 0 0 20px rgba(255, 107, 157, 0.05);
    }
    
    .hero-input-wrapper input:focus + i,
    .hero-input-wrapper:focus-within i {
        color: #ff6b9d;
    }
    
    /* Enhanced CTA Button with Pulse */
    .btn-analyze-now {
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 50%, #e91e63 100%);
        background-size: 200% 200%;
        color: white;
        padding: 15px 35px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 800;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 14px;
        box-shadow: 
            0 15px 40px rgba(255, 107, 157, 0.45),
            0 0 0 0 rgba(255, 107, 157, 0.4);
        white-space: nowrap;
        position: relative;
        overflow: hidden;
        font-size: 1.15rem;
        letter-spacing: 0.8px;
        cursor: pointer;
        text-transform: uppercase;
        animation: ctaPulse 2.5s ease-in-out infinite, gradientShift 3s ease infinite;
    }
    
    @keyframes ctaPulse {
        0%, 100% { box-shadow: 0 15px 40px rgba(255, 107, 157, 0.45), 0 0 0 0 rgba(255, 107, 157, 0.4); }
        50% { box-shadow: 0 20px 50px rgba(255, 107, 157, 0.5), 0 0 0 12px rgba(255, 107, 157, 0); }
    }
    
    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    .btn-analyze-now::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
        transition: left 0.6s;
    }
    
    .btn-analyze-now::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .btn-analyze-now:hover::before {
        left: 100%;
    }
    
    .btn-analyze-now:hover::after {
        opacity: 1;
    }
    
    .btn-analyze-now:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 
            0 30px 70px rgba(255, 107, 157, 0.55),
            0 0 0 0 rgba(255, 107, 157, 0);
        color: white;
        animation: none;
    }
    
    .btn-analyze-now i {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 1.2rem;
    }
    
    .btn-analyze-now:hover i {
        transform: translateX(8px);
    }
    
    /* Enhanced Trust Signals */
    .hero-trust-signals {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .hero-trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.92rem;
        font-weight: 600;
        padding: 8px 16px;
        background: rgba(16, 185, 129, 0.08);
        border-radius: 50px;
        border: 1px solid rgba(16, 185, 129, 0.15);
        transition: all 0.3s ease;
    }
    
    .hero-trust-item:hover {
        background: rgba(16, 185, 129, 0.15);
        border-color: rgba(16, 185, 129, 0.3);
        transform: translateY(-2px);
    }
    
    .hero-trust-item i {
        color: #10b981;
        font-size: 0.95rem;
        filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.4));
    }
    
    /* Guarantee Badge */
    .hero-guarantee-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
    }
    
    .hero-guarantee-badge i {
        color: #fbbf24;
        font-size: 1.1rem;
    }
    
    /* Animated Statistics */
    .hero-stats {
        display: flex;
        gap: 50px;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.6s both;
    }
    
    .hero-stat-item {
        text-align: center;
        padding: 25px 35px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        transition: all 0.4s;
        min-width: 150px;
    }
    
    .hero-stat-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-8px);
        border-color: rgba(255, 107, 157, 0.3);
        box-shadow: 0 20px 50px rgba(255, 107, 157, 0.15);
    }
    
    .hero-stat-number {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 900;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        display: block;
        margin-bottom: 10px;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Scroll Indicator */
    .hero-scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
        animation: bounce 2s ease-in-out infinite;
        z-index: 10;
    }
    
    .hero-scroll-indicator i {
        font-size: 1.5rem;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(10px); }
    }
    
    /* Responsive */
    @media (min-width: 992px) {
        .hero-section {
            padding: 160px 0 140px;
        }
        
        .hero-stats {
            gap: 60px;
            margin-top: 20px;
        }
    }
    
    @media (max-width: 991.98px) {
        .hero-form-wrapper {
            padding: 45px 25px 35px;
            margin-top: 10px;
        }
        
        .hero-form-value-badge {
            font-size: 0.75rem;
            padding: 6px 18px;
        }
        
        .hero-form-social-proof {
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }
        
        .hero-form-social-proof .avatars {
            justify-content: center;
            margin-right: 0;
        }
        
        .hero-form-title {
            font-size: 1.3rem;
        }
        
        .hero-input-group {
            flex-direction: column;
        }
        
        .hero-input-wrapper {
            min-width: 100%;
        }
        
        .btn-analyze-now {
            width: 100%;
            justify-content: center;
        }
        
        .hero-trust-signals {
            gap: 12px;
        }
        
        .hero-trust-item {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
        
        .hero-guarantee-badge {
            flex-direction: column;
            text-align: center;
            gap: 6px;
        }
        
        .hero-stats {
            gap: 20px;
        }
        
        .hero-stat-item {
            padding: 20px 25px;
            min-width: 140px;
        }
        
        .hero-trust-signals {
            gap: 20px;
        }
    }
    
    @media (max-width: 767.98px) {
        .hero-section {
            padding: 120px 0 80px;
        }
        
        .hero-form-wrapper {
            padding: 40px 18px 28px;
            margin-bottom: 40px;
            border-radius: 20px;
        }
        
        .hero-form-wrapper::before {
            border-radius: 22px;
        }
        
        .hero-form-value-badge {
            font-size: 0.7rem;
            padding: 5px 14px;
            top: -14px;
        }
        
        .hero-form-social-proof {
            padding: 10px 15px;
            font-size: 0.8rem;
        }
        
        .hero-form-social-proof .avatar {
            width: 24px;
            height: 24px;
            font-size: 0.55rem;
        }
        
        .hero-form-social-proof span {
            font-size: 0.82rem;
        }
        
        .hero-form-title {
            font-size: 1.15rem;
            gap: 8px;
        }
        
        .hero-form-title i {
            font-size: 1.2rem;
        }
        
        .hero-form-subtitle {
            font-size: 0.85rem;
            margin-bottom: 20px;
        }
        
        .hero-input-wrapper input {
            padding: 16px 16px 16px 48px;
            font-size: 0.95rem;
        }
        
        .btn-analyze-now {
            padding: 16px 30px;
            font-size: 1rem;
        }
        
        .hero-trust-signals {
            gap: 8px;
            margin-top: 18px;
            padding-top: 15px;
        }
        
        .hero-trust-item {
            padding: 5px 10px;
            font-size: 0.75rem;
            gap: 6px;
        }
        
        .hero-guarantee-badge {
            font-size: 0.75rem;
            margin-top: 15px;
        }
        
        .hero-stat-item {
            width: calc(50% - 10px);
            min-width: auto;
        }
        
        .hero-scroll-indicator {
            display: none;
        }
    }
    
    /* ========================================
       TRUST BADGES SECTION
       ======================================== */
    .trust-badges-section {
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }
    
    .trust-badges-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .trust-badges-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }
    
    .trust-badge-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    
    .trust-badge-icon {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }
    
    .trust-badge-item:hover .trust-badge-icon {
        border-color: rgba(255, 107, 157, 0.4);
        background: rgba(255, 107, 157, 0.1);
        transform: translateY(-5px);
    }
    
    .trust-badge-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }
    
    .trust-badge-icon i {
        font-size: 1.8rem;
        color: #ff6b9d;
    }
    
    .trust-badge-text {
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        max-width: 120px;
    }
    
    /* ========================================
       FAQ SECTION
       ======================================== */
    .faq-section {
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }
    
    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 60% 40% at 20% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }
    
    .faq-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 107, 157, 0.15);
        color: #ff6b9d;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 25px;
        border: 1px solid rgba(255, 107, 157, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .faq-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
    }
    
    .faq-header p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        position: relative;
        z-index: 2;
    }
    
    .faq-item {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 30px;
        transition: all 0.3s;
    }
    
    .faq-item:hover {
        border-color: rgba(255, 107, 157, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(255, 107, 157, 0.1);
    }
    
    .faq-question {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .faq-question-icon {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .faq-question-icon i {
        color: white;
        font-size: 0.9rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        margin: 0;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding-left: 50px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .faq-cta {
        text-align: center;
        margin-top: 50px;
        position: relative;
        z-index: 2;
    }
    
    .faq-cta p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
        font-size: 1.1rem;
    }
    
    .btn-faq-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        color: white;
        padding: 18px 40px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.4s;
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
    }
    
    .btn-faq-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 60px rgba(255, 107, 157, 0.4);
        color: white;
    }
    
    /* ========================================
       STICKY MOBILE CTA BAR
       ======================================== */
    .sticky-mobile-cta {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 15px 20px;
        z-index: 9998;
        border-top: 1px solid rgba(255, 107, 157, 0.3);
        box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    }
    
    .sticky-mobile-cta-inner {
        display: flex;
        gap: 12px;
    }
    
    .sticky-mobile-cta a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 20px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .sticky-cta-primary {
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        color: white;
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    }
    
    .sticky-cta-secondary {
        background: rgba(16, 185, 129, 0.15);
        border: 2px solid rgba(16, 185, 129, 0.4);
        color: #10b981;
    }
    
    @media (max-width: 767.98px) {
        .sticky-mobile-cta {
            display: none !important;
        }
        
        /* Remove extra padding since sticky bar is hidden */
        body {
            padding-bottom: 0;
        }
    }
    
    /* ========================================
       RESPONSIVE ADJUSTMENTS
       ======================================== */
    @media (max-width: 991.98px) {
        .trust-badges-container {
            gap: 40px;
        }
        
        .results-counter-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .faq-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 767.98px) {
        .trust-badges-section {
            padding: 40px 0;
        }
        
        .trust-badges-container {
            gap: 30px;
        }
        
        .trust-badge-icon {
            width: 60px;
            height: 60px;
        }
        
        .results-counter-section {
            padding: 40px 0;
        }
        
        .results-counter-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .results-counter-item {
            padding: 15px 10px;
        }
        
        .faq-section {
            padding: 80px 0;
        }
        
        .faq-item {
            padding: 25px 20px;
        }
        
        .faq-answer {
            padding-left: 0;
            margin-top: 10px;
        }
    }
    
    /* Section Styles */
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 15px;
        color: #1a1a1a;
    }
    
    .section-subtitle {
        text-align: center;
        color: #999;
        font-size: 0.9rem;
        margin-bottom: 50px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .section-title span {
        color: #ff6b9d;
    }
    
    /* Service Cards */
    .service-card {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s;
        height: 100%;
        position: relative;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    }
    
    .service-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        background: #fff5f5;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-number {
        font-size: 2rem;
        font-weight: 700;
        color: #ff6b9d;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1a1a1a;
    }
    
    .service-card h3 a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .service-card h3 a:hover {
        color: #ff6b9d;
    }
    
    .service-card p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .service-card .readmore {
        color: #ff6b9d;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .service-card .readmore:hover {
        margin-left: 5px;
    }
    
    /* ========================================
       PORTFOLIO SECTION - Premium Lead-Converting Design
       ======================================== */
    .portfolio-section {
        padding: 140px 0;
        background: linear-gradient(180deg, #020617 0%, #0f172a 30%, #1e293b 50%, #0f172a 70%, #020617 100%);
        position: relative;
        overflow: hidden;
    }
    
    .portfolio-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 100% 60% at 0% 0%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse 80% 50% at 100% 100%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
        pointer-events: none;
        animation: aurora 15s ease-in-out infinite;
    }
    
    @keyframes aurora {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }
    
    /* Floating particles */
    .portfolio-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        pointer-events: none;
    }
    
    .portfolio-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: rgba(16, 185, 129, 0.6);
        border-radius: 50%;
        animation: float-particle 20s linear infinite;
    }
    
    .portfolio-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
    .portfolio-particle:nth-child(2) { left: 20%; animation-delay: -5s; animation-duration: 20s; background: rgba(255, 107, 157, 0.6); }
    .portfolio-particle:nth-child(3) { left: 30%; animation-delay: -10s; animation-duration: 28s; }
    .portfolio-particle:nth-child(4) { left: 50%; animation-delay: -15s; animation-duration: 22s; background: rgba(59, 130, 246, 0.6); }
    .portfolio-particle:nth-child(5) { left: 70%; animation-delay: -8s; animation-duration: 26s; }
    .portfolio-particle:nth-child(6) { left: 85%; animation-delay: -12s; animation-duration: 24s; background: rgba(255, 107, 157, 0.6); }
    
    @keyframes float-particle {
        0% { transform: translateY(100vh) scale(0); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(-100vh) scale(1); opacity: 0; }
    }
    
    .portfolio-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }
    
    .portfolio-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
        color: #10b981;
        padding: 16px 35px;
        border-radius: 60px;
        font-size: 0.9rem;
        font-weight: 800;
        margin-bottom: 35px;
        border: 2px solid rgba(16, 185, 129, 0.4);
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
        animation: glow-pulse 3s ease-in-out infinite;
    }
    
    @keyframes glow-pulse {
        0%, 100% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.3); }
        50% { box-shadow: 0 0 60px rgba(16, 185, 129, 0.5); }
    }
    
    .portfolio-badge i {
        font-size: 1.3rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .portfolio-header h2 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        color: white;
        margin-bottom: 30px;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }
    
    .portfolio-header .gradient-text {
        background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #ff6b9d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% auto;
        animation: gradient-shift 4s ease-in-out infinite;
    }
    
    .portfolio-intro {
        max-width: 950px;
        margin: 0 auto 80px;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .portfolio-intro p {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.9;
        margin-bottom: 25px;
    }
    
    .portfolio-intro strong {
        color: #10b981;
        font-weight: 700;
    }
    
    .portfolio-intro-highlight {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.6);
        font-style: italic;
        padding: 20px 30px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        border-left: 4px solid #10b981;
        display: inline-block;
    }
    
    /* Case Study Cards - Premium Layout */
    .case-studies-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }
    
    .case-study-card-premium {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 32px;
        padding: 0;
        position: relative;
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }
    
    .case-study-card-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #ff6b9d 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s;
    }
    
    .case-study-card-premium:hover {
        transform: translateY(-15px);
        border-color: rgba(16, 185, 129, 0.5);
        box-shadow: 
            0 30px 80px rgba(16, 185, 129, 0.25),
            0 0 0 1px rgba(16, 185, 129, 0.3);
    }
    
    .case-study-card-premium:hover::before {
        transform: scaleX(1);
    }
    
    .case-study-card-premium:nth-child(1) { --accent: #10b981; }
    .case-study-card-premium:nth-child(2) { --accent: #3b82f6; }
    
    .case-study-visual {
        position: relative;
        height: 220px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
        overflow: hidden;
    }
    
    .case-study-card-premium:nth-child(2) .case-study-visual {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(255, 107, 157, 0.15) 100%);
    }
    
    .case-study-icon-large {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 5rem;
        color: rgba(255, 255, 255, 0.15);
        transition: all 0.5s;
    }
    
    .case-study-card-premium:hover .case-study-icon-large {
        transform: translate(-50%, -50%) scale(1.2);
        color: rgba(255, 255, 255, 0.25);
    }
    
    .case-study-number-badge {
        position: absolute;
        top: 25px;
        left: 25px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 900;
        color: white;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
    }
    
    .case-study-card-premium:nth-child(2) .case-study-number-badge {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    }
    
    .case-study-type-badge {
        position: absolute;
        top: 25px;
        right: 25px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .case-study-metrics-preview {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
        padding: 40px 25px 20px;
    }
    
    .metric-preview {
        flex: 1;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    
    .metric-preview:last-child {
        border-right: none;
    }
    
    .metric-preview-value {
        font-size: 2rem;
        font-weight: 900;
        color: #10b981;
        display: block;
        line-height: 1;
        margin-bottom: 5px;
    }
    
    .case-study-card-premium:nth-child(2) .metric-preview-value {
        color: #3b82f6;
    }
    
    .metric-preview-label {
        font-size: 0.7rem;
        color: rgba(255,255,255,0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .case-study-body {
        padding: 35px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .case-study-headline {
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .case-study-story {
        margin-bottom: 25px;
    }
    
    .case-study-story-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        font-weight: 700;
        color: #ff6b9d;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .case-study-story p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.8;
    }
    
    .case-study-solution-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .solution-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }
    
    .case-study-card-premium:nth-child(2) .solution-tag {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
        border-color: rgba(59, 130, 246, 0.2);
    }
    
    .solution-tag i {
        font-size: 0.9rem;
    }
    
    .case-study-cta-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #10b981;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    
    .case-study-card-premium:nth-child(2) .case-study-cta-link {
        color: #3b82f6;
    }
    
    .case-study-cta-link i {
        transition: transform 0.3s;
    }
    
    .case-study-cta-link:hover {
        gap: 15px;
    }
    
    .case-study-cta-link:hover i {
        transform: translateX(5px);
    }
    
    /* Data-Driven Difference Section */
    .portfolio-difference {
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 32px;
        padding: 60px;
        margin: 70px 0;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .portfolio-difference-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 2rem;
        color: white;
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
    }
    
    .portfolio-difference h3 {
        font-size: 2rem;
        font-weight: 900;
        color: white;
        margin-bottom: 25px;
    }
    
    .portfolio-difference h3 .gradient-text {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .portfolio-difference p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.9;
        max-width: 900px;
        margin: 0 auto;
    }
    
    /* Portfolio CTA - Premium Conversion Box */
    .portfolio-cta {
        background: linear-gradient(145deg, rgba(16, 185, 129, 0.12) 0%, rgba(59, 130, 246, 0.08) 50%, rgba(255, 107, 157, 0.08) 100%);
        backdrop-filter: blur(30px);
        border: 2px solid rgba(16, 185, 129, 0.4);
        border-radius: 40px;
        padding: 80px 60px;
        text-align: center;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }
    
    .portfolio-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.1), transparent, rgba(59, 130, 246, 0.1), transparent);
        animation: rotate-bg 20s linear infinite;
        pointer-events: none;
    }
    
    @keyframes rotate-bg {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .portfolio-cta-content {
        position: relative;
        z-index: 2;
    }
    
    .portfolio-cta-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 35px;
        font-size: 2.5rem;
        color: white;
        box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
        animation: float 3s ease-in-out infinite;
    }
    
    .portfolio-cta h3 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        color: white;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .portfolio-cta > .portfolio-cta-content > p:first-of-type {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.8;
        max-width: 750px;
        margin: 0 auto 30px;
    }
    
    .portfolio-cta-highlight {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
        color: #10b981;
        padding: 20px 40px;
        border-radius: 16px;
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 40px;
        border: 2px solid rgba(16, 185, 129, 0.4);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    }
    
    .portfolio-cta-highlight i {
        font-size: 1.5rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .portfolio-cta-subtext {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 40px;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .portfolio-cta-buttons {
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 35px;
    }
    
    .btn-portfolio-main {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 25px 55px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        border-radius: 20px;
        font-weight: 800;
        font-size: 1.15rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-portfolio-main::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;
    }
    
    .btn-portfolio-main:hover::before {
        left: 100%;
    }
    
    .btn-portfolio-main:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 30px 80px rgba(16, 185, 129, 0.5);
        color: white;
    }
    
    .btn-portfolio-main i:last-child {
        transition: transform 0.3s;
    }
    
    .btn-portfolio-main:hover i:last-child {
        transform: translateX(8px);
    }
    
    .portfolio-trust-badges {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        padding-top: 35px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 30px;
    }
    
    .portfolio-trust-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .portfolio-trust-badge i {
        color: #10b981;
        font-size: 1.2rem;
    }
    
    .portfolio-phone-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
    }
    
    .portfolio-phone-cta i {
        color: #10b981;
        font-size: 1.3rem;
    }
    
    .portfolio-phone-cta a {
        color: #10b981;
        font-weight: 800;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 1.2rem;
    }
    
    .portfolio-phone-cta a:hover {
        color: #ff6b9d;
        text-decoration: underline;
    }
    
    /* Responsive */
    @media (max-width: 991.98px) {
        .portfolio-section {
            padding: 100px 0;
        }
        
        .case-studies-wrapper {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .case-study-visual {
            height: 180px;
        }
        
        .case-study-body {
            padding: 30px;
        }
        
        .portfolio-difference {
            padding: 45px 35px;
        }
        
        .portfolio-cta {
            padding: 60px 40px;
        }
        
        .portfolio-trust-badges {
            gap: 25px;
        }
    }
    
    @media (max-width: 767.98px) {
        .portfolio-section {
            padding: 70px 0;
        }
        
        .case-study-visual {
            height: 160px;
        }
        
        .case-study-icon-large {
            font-size: 3.5rem;
        }
        
        .case-study-number-badge {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
        
        .metric-preview-value {
            font-size: 1.5rem;
        }
        
        .case-study-body {
            padding: 25px;
        }
        
        .case-study-headline {
            font-size: 1.3rem;
        }
        
        .portfolio-difference {
            padding: 35px 25px;
            border-radius: 24px;
        }
        
        .portfolio-cta {
            padding: 45px 25px;
            border-radius: 28px;
        }
        
        .portfolio-cta-highlight {
            padding: 15px 25px;
            font-size: 1rem;
        }
        
        .btn-portfolio-main {
            width: 100%;
            justify-content: center;
            padding: 22px 35px;
            font-size: 1rem;
        }
        
        .portfolio-trust-badges {
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
        
        .portfolio-phone-cta {
            flex-wrap: wrap;
            text-align: center;
        }
    }
    
    .btn-portfolio-main {
            width: 100%;
            justify-content: center;
            padding: 20px 30px;
        }
    }
        
        .case-study-image {
            height: 200px;
        }
        
        .case-study-content {
            padding: 25px;
        }
        
        .case-study-metrics {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .case-study-badge {
            font-size: 0.75rem;
            padding: 6px 16px;
        }
    }
    
    .portfolio-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 4/3;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }
    
    .portfolio-item:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Why Choose Us - Ultra Modern Design */
    .why-choose-section {
        padding: 120px 0;
        background: #0f172a;
        position: relative;
        overflow: hidden;
    }
    
    /* Animated Background Pattern */
    .why-choose-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(255, 107, 157, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 107, 157, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        animation: gridMove 20s linear infinite;
        opacity: 0.3;
    }
    
    /* Floating Gradient Orbs */
    .why-bg-orb-1 {
        position: absolute;
        top: 10%;
        left: 5%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(80px);
        animation: float 25s ease-in-out infinite;
    }
    
    .why-bg-orb-2 {
        position: absolute;
        bottom: 10%;
        right: 5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(80px);
        animation: float 20s ease-in-out infinite reverse;
    }
    
    .why-choose-container {
        position: relative;
        z-index: 2;
    }
    
    /* Header Section */
    .why-choose-header {
        text-align: center;
        margin-bottom: 80px;
    }
    
    .why-header-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 25px;
        animation: slideInDown 0.8s ease-out;
    }
    
    .why-header-badge i {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.2rem;
    }
    
    .why-choose-header h2 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        color: white;
        margin-bottom: 25px;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    
    .why-choose-header .gradient-text {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 50%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: gradientShift 5s ease infinite;
    }
    
    .why-header-description {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        color: rgba(255, 255, 255, 0.7);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }
    
    /* Stats Bar */
    .why-stats-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 40px;
        margin-bottom: 80px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    .why-stat-item {
        text-align: center;
        padding: 20px;
        border-radius: 15px;
        transition: all 0.4s;
        cursor: pointer;
    }
    
    .why-stat-item:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
    }
    
    .why-stat-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        transition: all 0.4s;
    }
    
    .why-stat-item:hover .why-stat-icon {
        transform: scale(1.1) rotate(10deg);
    }
    
    .why-stat-icon i {
        font-size: 1.8rem;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .why-stat-number {
        font-size: 2.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .why-stat-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }
    
    /* Feature Grid - Modern Layout */
    .why-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .why-feature-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }
    
    .why-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b9d 0%, #3b82f6 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s;
    }
    
    .why-feature-card:hover::before {
        transform: scaleX(1);
    }
    
    .why-feature-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 107, 157, 0.3);
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(255, 107, 157, 0.2);
    }
    
    .why-feature-number {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 5rem;
        font-weight: 900;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        transition: all 0.4s;
    }
    
    .why-feature-card:hover .why-feature-number {
        transform: scale(1.1);
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .why-feature-icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.4s;
        position: relative;
    }
    
    .why-feature-card:hover .why-feature-icon-wrapper {
        transform: scale(1.1) rotate(-5deg);
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    }
    
    .why-feature-icon-wrapper::after {
        content: '';
        position: absolute;
        inset: -3px;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.4s;
        z-index: -1;
        filter: blur(10px);
    }
    
    .why-feature-card:hover .why-feature-icon-wrapper::after {
        opacity: 0.5;
    }
    
    .why-feature-icon-wrapper i {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .why-feature-card h3 {
        font-size: 1.6rem;
        font-weight: 800;
        color: white;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .why-feature-card p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1rem;
    }
    
    .why-feature-benefits {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .why-benefit-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .why-benefit-item i {
        color: #10b981;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    /* Trust Signals Section */
    .why-trust-section {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 50px;
        margin-bottom: 60px;
    }
    
    .why-trust-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .why-trust-item {
        text-align: center;
        padding: 30px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.4s;
    }
    
    .why-trust-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 107, 157, 0.3);
        transform: translateY(-5px);
    }
    
    .why-trust-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.4s;
    }
    
    .why-trust-item:hover .why-trust-icon {
        transform: scale(1.1);
    }
    
    .why-trust-icon i {
        font-size: 2rem;
        color: #10b981;
    }
    
    .why-trust-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 8px;
    }
    
    .why-trust-subtitle {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }
    
    /* CTA Section */
    .why-cta-wrapper {
        text-align: center;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 60px 40px;
        position: relative;
        overflow: hidden;
    }
    
    .why-cta-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        transform: rotate(45deg);
        animation: shimmer 3s linear infinite;
    }
    
    .why-cta-content {
        position: relative;
        z-index: 1;
    }
    
    .why-cta-wrapper h3 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .why-cta-wrapper p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 35px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-why-primary {
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        color: white;
        padding: 20px 45px;
        border-radius: 14px;
        font-weight: 800;
        font-size: 1.1rem;
        border: none;
        transition: all 0.4s;
        box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .btn-why-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
        color: white;
    }
    
    .btn-why-secondary {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: white;
        padding: 20px 45px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.4s;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }
    
    .btn-why-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-3px);
        color: white;
    }
    
    /* Responsive Design */
    @media (max-width: 1199.98px) {
        .why-stats-bar {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .why-features-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 991.98px) {
        .why-choose-section {
            padding: 80px 0;
        }
        
        .why-choose-header {
            margin-bottom: 60px;
        }
        
        .why-stats-bar {
            padding: 30px;
            gap: 20px;
            margin-bottom: 60px;
        }
        
        .why-trust-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .why-trust-section {
            padding: 40px 30px;
        }
        
        .why-cta-wrapper {
            padding: 50px 30px;
        }
    }
    
    @media (max-width: 767.98px) {
        .why-choose-section {
            padding: 60px 0;
        }
        
        .why-stats-bar {
            grid-template-columns: 1fr;
            padding: 25px;
        }
        
        .why-feature-card {
            padding: 30px 25px;
        }
        
        .why-feature-number {
            font-size: 3.5rem;
            top: 20px;
            right: 20px;
        }
        
        .why-cta-buttons {
            flex-direction: column;
            align-items: stretch;
        }
        
        .btn-why-primary,
        .btn-why-secondary {
            width: 100%;
            justify-content: center;
        }
    }
    
    .feature-card {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s;
        height: 100%;
        text-align: center;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        background: #fff5f5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2rem;
        color: #ff6b9d;
    }
    
    /* Pricing Cards - Modern & Conversion Focused */
    .pricing-section-area {
        padding: 120px 0;
        background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .pricing-header {
        text-align: center;
        margin-bottom: 70px;
    }
    
    .pricing-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
        color: #0f172a;
        padding: 12px 28px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 25px;
        border: 2px solid rgba(255, 107, 157, 0.2);
    }
    
    .pricing-badge i {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.2rem;
    }
    
    .pricing-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
    }
    
    .pricing-toggle-label {
        font-size: 1rem;
        font-weight: 600;
        color: #64748b;
    }
    
    .pricing-toggle-label.active {
        color: #0f172a;
    }
    
    .toggle-switch {
        width: 60px;
        height: 30px;
        background: #e2e8f0;
        border-radius: 50px;
        position: relative;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .toggle-switch.active {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
    }
    
    .toggle-switch::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 24px;
        background: white;
        border-radius: 50%;
        top: 3px;
        left: 3px;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    
    .toggle-switch.active::after {
        left: 33px;
    }
    
    /* ========================================
       PRICING SECTION - Conversion-Focused Design
       ======================================== */
    .pricing-section-area {
        padding: 120px 0;
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        position: relative;
        overflow: hidden;
    }
    
    .pricing-section-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
        pointer-events: none;
    }
    
    .pricing-header {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }
    
    .pricing-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 107, 157, 0.15);
        backdrop-filter: blur(10px);
        color: #ff6b9d;
        padding: 14px 30px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 30px;
        border: 1px solid rgba(255, 107, 157, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .pricing-badge i {
        font-size: 1.2rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .pricing-header h2 {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
        font-weight: 900;
        color: white;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .pricing-header .gradient-text {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 50%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .pricing-intro {
        max-width: 900px;
        margin: 0 auto 50px;
        text-align: center;
    }
    
    .pricing-intro p {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.9;
        margin-bottom: 20px;
    }
    
    .pricing-intro-highlight {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(16, 185, 129, 0.15);
        padding: 15px 30px;
        border-radius: 12px;
        border: 1px solid rgba(16, 185, 129, 0.3);
        color: #10b981;
        font-weight: 700;
        font-size: 1rem;
    }
    
    .pricing-intro-highlight i {
        font-size: 1.3rem;
    }
    
    .pricing-subheader {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .pricing-subheader h3 {
        font-size: 1.6rem;
        font-weight: 800;
        color: white;
        margin-bottom: 10px;
    }
    
    .pricing-subheader p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 1rem;
    }
    
    .pricing-subheader a {
        color: #ff6b9d;
        text-decoration: underline;
        transition: color 0.3s;
    }
    
    .pricing-subheader a:hover {
        color: #3b82f6;
    }
    
    .pricing-cards-wrapper {
        position: relative;
        z-index: 2;
    }
    
    .pricing-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        padding: 45px 35px;
        border-radius: 28px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        height: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #64748b 0%, #94a3b8 100%);
        transition: all 0.5s;
    }
    
    .pricing-card:hover {
        transform: translateY(-15px);
        border-color: rgba(255, 107, 157, 0.4);
        box-shadow: 0 30px 80px rgba(255, 107, 157, 0.2);
        background: rgba(255, 255, 255, 0.06);
    }
    
    .pricing-card:hover::before {
        background: linear-gradient(90deg, #ff6b9d 0%, #3b82f6 100%);
    }
    
    .pricing-card.featured {
        background: linear-gradient(145deg, rgba(255, 107, 157, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
        border: 2px solid rgba(16, 185, 129, 0.5);
        transform: scale(1.05);
        box-shadow: 0 25px 70px rgba(16, 185, 129, 0.25);
        z-index: 3;
    }
    
    .pricing-card.featured::before {
        background: linear-gradient(90deg, #10b981 0%, #ff6b9d 50%, #3b82f6 100%);
        height: 5px;
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.08) translateY(-10px);
        box-shadow: 0 40px 100px rgba(16, 185, 129, 0.35);
    }
    
    .popular-badge {
        position: absolute;
        top: 20px;
        right: -35px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        padding: 10px 50px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        transform: rotate(45deg);
        box-shadow: 0 5px 20px rgba(16, 185, 129, 0.5);
    }
    
    .pricing-plan-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 2rem;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
        color: #ff6b9d;
    }
    
    .pricing-card.featured .pricing-plan-icon {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
        color: #10b981;
    }
    
    .pricing-plan-name {
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 12px;
    }
    
    .pricing-perfect-for {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        margin-bottom: 25px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border-left: 3px solid #ff6b9d;
    }
    
    .pricing-card.featured .pricing-perfect-for {
        border-left-color: #10b981;
    }
    
    .pricing-price-wrapper {
        text-align: center;
        padding: 30px 0;
        margin-bottom: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .pricing-price {
        font-size: 4rem;
        font-weight: 900;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        display: inline-block;
    }
    
    .pricing-card.featured .pricing-price {
        background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .pricing-currency {
        font-size: 2rem;
        vertical-align: super;
    }
    
    .pricing-period {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 600;
        display: block;
        margin-top: 8px;
    }
    
    .pricing-features-title {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
        flex: 1;
    }
    
    .pricing-features li {
        padding: 14px 0;
        color: rgba(255, 255, 255, 0.85);
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 0.95rem;
        line-height: 1.6;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s;
    }
    
    .pricing-features li:last-child {
        border-bottom: none;
    }
    
    .pricing-features li:hover {
        padding-left: 8px;
        color: white;
    }
    
    .pricing-features li i {
        color: #10b981;
        font-size: 1.1rem;
        flex-shrink: 0;
        margin-top: 3px;
    }
    
    .pricing-features li strong {
        color: white;
    }
    
    .pricing-cta-button {
        width: 100%;
        padding: 20px 30px;
        border-radius: 16px;
        font-weight: 800;
        font-size: 1.05rem;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border: none;
        outline: none;
        cursor: pointer;
        font-family: inherit;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
    }
    
    .pricing-cta-button::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;
    }
    
    .pricing-cta-button:hover::before {
        left: 100%;
    }
    
    .pricing-card:not(.featured) .pricing-cta-button {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 107, 157, 0.5);
    }
    
    .pricing-card:not(.featured) .pricing-cta-button:hover {
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        border-color: transparent;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
        color: white;
    }
    
    .pricing-card.featured .pricing-cta-button {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    }
    
    .pricing-card.featured .pricing-cta-button:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
        color: white;
    }
    
    .pricing-guarantee {
        text-align: center;
        margin-top: 18px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .pricing-guarantee i {
        color: #10b981;
    }
    
    /* Included in Every Plan Section */
    .pricing-included-section {
        margin-top: 80px;
        position: relative;
        z-index: 2;
    }
    
    .pricing-included-box {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 28px;
        padding: 50px;
        text-align: center;
    }
    
    .pricing-included-box h3 {
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        margin-bottom: 15px;
    }
    
    .pricing-included-box > p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.05rem;
        margin-bottom: 40px;
    }
    
    .pricing-included-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .pricing-included-item {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px 25px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s;
    }
    
    .pricing-included-item:hover {
        background: rgba(255, 107, 157, 0.1);
        border-color: rgba(255, 107, 157, 0.3);
        transform: translateY(-5px);
    }
    
    .pricing-included-item i {
        font-size: 2.5rem;
        color: #ff6b9d;
        margin-bottom: 18px;
        display: block;
    }
    
    .pricing-included-item h4 {
        font-size: 1.1rem;
        font-weight: 800;
        color: white;
        margin-bottom: 10px;
    }
    
    .pricing-included-item p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.6;
        margin: 0;
    }
    
    /* Final CTA Section */
    .pricing-final-cta {
        margin-top: 80px;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .pricing-final-cta-box {
        background: linear-gradient(145deg, rgba(255, 107, 157, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 107, 157, 0.3);
        border-radius: 28px;
        padding: 60px 50px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .pricing-final-cta h3 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
    }
    
    .pricing-final-cta p {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
        margin-bottom: 35px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }
    
    .btn-strategy-call {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 20px 45px;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        color: white;
        border-radius: 16px;
        font-weight: 800;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.4s;
        box-shadow: 0 10px 40px rgba(255, 107, 157, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .btn-strategy-call:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 60px rgba(255, 107, 157, 0.5);
        color: white;
    }
    
    .pricing-phone-cta {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
    }
    
    .pricing-phone-cta a {
        color: #10b981;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .pricing-phone-cta a:hover {
        color: #ff6b9d;
    }
    
    /* Responsive Design */
    @media (max-width: 1199.98px) {
        .pricing-card.featured {
            transform: scale(1);
        }
        
        .pricing-card.featured:hover {
            transform: translateY(-15px);
        }
        
        .pricing-included-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 991.98px) {
        .pricing-section-area {
            padding: 80px 0;
        }
        
        .pricing-card {
            margin-bottom: 30px;
        }
        
        .pricing-included-box {
            padding: 40px 30px;
        }
        
        .pricing-final-cta-box {
            padding: 45px 35px;
        }
    }
    
    @media (max-width: 767.98px) {
        .pricing-section-area {
            padding: 60px 0;
        }
        
        .pricing-card {
            padding: 35px 25px;
        }
        
        .pricing-price {
            font-size: 3rem;
        }
        
        .pricing-included-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .pricing-included-item {
            padding: 25px 20px;
        }
        
        .pricing-final-cta-box {
            padding: 40px 25px;
        }
        
        .btn-strategy-call {
            width: 100%;
            justify-content: center;
            padding: 18px 30px;
        }
        
        .popular-badge {
            top: 15px;
            right: -40px;
            padding: 8px 45px;
            font-size: 0.7rem;
        }
    }
    
    /* ========================================
       TESTIMONIALS SECTION - Premium Lead-Converting Design
       ======================================== */
    .testimonial4-section-area {
        padding: 140px 0;
        background: linear-gradient(180deg, #020617 0%, #0f172a 30%, #1e293b 50%, #0f172a 70%, #020617 100%);
        position: relative;
        overflow: hidden;
    }
    
    .testimonial4-section-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 80% 50% at 10% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse 80% 50% at 90% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
        pointer-events: none;
        animation: testimonial-aurora 12s ease-in-out infinite;
    }
    
    @keyframes testimonial-aurora {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.05); }
    }
    
    /* Floating Stars Background */
    .testimonial-stars-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        pointer-events: none;
    }
    
    .testimonial-star-float {
        position: absolute;
        color: rgba(251, 191, 36, 0.3);
        animation: star-twinkle 3s ease-in-out infinite;
    }
    
    .testimonial-star-float:nth-child(1) { top: 10%; left: 5%; font-size: 1rem; animation-delay: 0s; }
    .testimonial-star-float:nth-child(2) { top: 20%; left: 15%; font-size: 0.8rem; animation-delay: 0.5s; }
    .testimonial-star-float:nth-child(3) { top: 15%; right: 10%; font-size: 1.2rem; animation-delay: 1s; }
    .testimonial-star-float:nth-child(4) { top: 30%; right: 20%; font-size: 0.9rem; animation-delay: 1.5s; }
    .testimonial-star-float:nth-child(5) { bottom: 25%; left: 8%; font-size: 1.1rem; animation-delay: 2s; }
    .testimonial-star-float:nth-child(6) { bottom: 15%; right: 5%; font-size: 0.85rem; animation-delay: 2.5s; }
    
    @keyframes star-twinkle {
        0%, 100% { opacity: 0.3; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.3); }
    }
    
    .testimonial-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }
    
    .testimonial-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
        color: #fbbf24;
        padding: 16px 35px;
        border-radius: 60px;
        font-size: 0.9rem;
        font-weight: 800;
        margin-bottom: 35px;
        border: 2px solid rgba(251, 191, 36, 0.4);
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
        animation: badge-glow 3s ease-in-out infinite;
    }
    
    @keyframes badge-glow {
        0%, 100% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.3); }
        50% { box-shadow: 0 0 60px rgba(251, 191, 36, 0.5); }
    }
    
    .testimonial-badge i {
        font-size: 1.3rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .testimonial-header h2 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        color: white;
        margin-bottom: 30px;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }
    
    .testimonial-header .gradient-text {
        background: linear-gradient(135deg, #fbbf24 0%, #10b981 50%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% auto;
        animation: gradient-shift 4s ease-in-out infinite;
    }
    
    .testimonial-intro {
        max-width: 900px;
        margin: 0 auto 70px;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .testimonial-intro p {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.9;
    }
    
    .testimonial-intro strong {
        color: #fbbf24;
        font-weight: 700;
    }
    
    /* Stats Bar */
    .testimonial-stats-bar {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-bottom: 70px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }
    
    .testimonial-stat {
        text-align: center;
        padding: 25px 35px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        transition: all 0.4s;
    }
    
    .testimonial-stat:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
        border-color: rgba(251, 191, 36, 0.3);
    }
    
    .testimonial-stat-value {
        font-size: 3rem;
        font-weight: 900;
        background: linear-gradient(135deg, #fbbf24 0%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .testimonial-stat-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }
    
    /* Testimonial Carousel/Grid */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 70px;
        position: relative;
        z-index: 2;
    }
    
    .testimonial-card-premium {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 28px;
        padding: 40px 35px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #fbbf24 0%, #10b981 50%, #3b82f6 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s;
    }
    
    .testimonial-card-premium:hover {
        transform: translateY(-15px);
        border-color: rgba(251, 191, 36, 0.4);
        box-shadow: 
            0 30px 80px rgba(251, 191, 36, 0.2),
            0 0 0 1px rgba(251, 191, 36, 0.2);
    }
    
    .testimonial-card-premium:hover::before {
        transform: scaleX(1);
    }
    
    .testimonial-card-premium:nth-child(1) { --accent: #fbbf24; }
    .testimonial-card-premium:nth-child(2) { --accent: #10b981; }
    .testimonial-card-premium:nth-child(3) { --accent: #3b82f6; }
    
    .testimonial-quote-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent, #fbbf24) 0%, rgba(var(--accent), 0.7) 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: white;
        margin-bottom: 25px;
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    }
    
    .testimonial-card-premium:nth-child(1) .testimonial-quote-icon {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    }
    
    .testimonial-card-premium:nth-child(2) .testimonial-quote-icon {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }
    
    .testimonial-card-premium:nth-child(3) .testimonial-quote-icon {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }
    
    .testimonial-headline {
        font-size: 1.25rem;
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .testimonial-quote-text {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.9;
        margin-bottom: 25px;
        flex: 1;
    }
    
    .testimonial-quote-text .service-tag {
        display: inline-block;
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
        color: #fbbf24;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 700;
        margin: 0 2px;
    }
    
    .testimonial-result-mini {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
        border: 1px solid rgba(16, 185, 129, 0.3);
        border-radius: 14px;
        padding: 18px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .testimonial-result-mini-value {
        font-size: 1.8rem;
        font-weight: 900;
        background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
        margin-bottom: 5px;
    }
    
    .testimonial-result-mini-label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .testimonial-author-mini {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: auto;
    }
    
    .testimonial-author-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: linear-gradient(135deg, #fbbf24 0%, #10b981 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 800;
        color: white;
        flex-shrink: 0;
    }
    
    .testimonial-card-premium:nth-child(2) .testimonial-author-avatar {
        background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    }
    
    .testimonial-card-premium:nth-child(3) .testimonial-author-avatar {
        background: linear-gradient(135deg, #3b82f6 0%, #ff6b9d 100%);
    }
    
    .testimonial-author-details h4 {
        font-size: 1rem;
        font-weight: 800;
        color: white;
        margin-bottom: 3px;
    }
    
    .testimonial-author-details p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 5px;
    }
    
    .testimonial-stars {
        display: flex;
        gap: 3px;
    }
    
    .testimonial-stars i {
        color: #fbbf24;
        font-size: 0.9rem;
    }
    
    /* Google Review Badge */
    .testimonial-google-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 70px;
        position: relative;
        z-index: 2;
    }
    
    .google-rating-box {
        display: flex;
        align-items: center;
        gap: 20px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 25px 40px;
    }
    
    .google-logo {
        font-size: 2.5rem;
        color: white;
    }
    
    .google-rating-info {
        text-align: left;
    }
    
    .google-rating-stars {
        display: flex;
        gap: 5px;
        margin-bottom: 5px;
    }
    
    .google-rating-stars i {
        color: #fbbf24;
        font-size: 1.3rem;
    }
    
    .google-rating-text {
        font-size: 1.1rem;
        color: white;
        font-weight: 700;
    }
    
    .google-rating-text span {
        color: rgba(255, 255, 255, 0.6);
        font-weight: 400;
    }
    
    /* Success Story CTA Section */
    .testimonial-success-cta {
        position: relative;
        z-index: 2;
    }
    
    .testimonial-success-box {
        background: linear-gradient(145deg, rgba(251, 191, 36, 0.1) 0%, rgba(16, 185, 129, 0.08) 50%, rgba(59, 130, 246, 0.08) 100%);
        backdrop-filter: blur(30px);
        border: 2px solid rgba(251, 191, 36, 0.3);
        border-radius: 40px;
        padding: 80px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-success-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(251, 191, 36, 0.1), transparent, rgba(16, 185, 129, 0.1), transparent);
        animation: rotate-bg 20s linear infinite;
        pointer-events: none;
    }
    
    .testimonial-success-content {
        position: relative;
        z-index: 2;
    }
    
    .testimonial-success-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #fbbf24 0%, #10b981 100%);
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 35px;
        font-size: 2.5rem;
        color: white;
        box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4);
        animation: float 3s ease-in-out infinite;
    }
    
    .testimonial-success-box h3 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        color: white;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .testimonial-success-box h3 .gradient-text {
        background: linear-gradient(135deg, #fbbf24 0%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .testimonial-success-box > .testimonial-success-content > p:first-of-type {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.8;
        max-width: 750px;
        margin: 0 auto 30px;
    }
    
    .testimonial-success-highlight {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
        color: #fbbf24;
        padding: 20px 40px;
        border-radius: 16px;
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 40px;
        border: 2px solid rgba(251, 191, 36, 0.4);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
    }
    
    .testimonial-success-highlight i {
        font-size: 1.5rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .testimonial-cta-subtext {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 40px;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-cta-buttons {
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 35px;
    }
    
    .btn-analysis-cta {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 25px 55px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: #0f172a;
        border-radius: 20px;
        font-weight: 800;
        font-size: 1.15rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(251, 191, 36, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-analysis-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s;
    }
    
    .btn-analysis-cta:hover::before {
        left: 100%;
    }
    
    .btn-analysis-cta:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 30px 80px rgba(251, 191, 36, 0.5);
        color: #0f172a;
    }
    
    .btn-analysis-cta i:last-child {
        transition: transform 0.3s;
    }
    
    .btn-analysis-cta:hover i:last-child {
        transform: translateX(8px);
    }
    
    .testimonial-trust-badges {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        padding-top: 35px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 30px;
    }
    
    .testimonial-trust-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .testimonial-trust-badge i {
        color: #10b981;
        font-size: 1.2rem;
    }
    
    .testimonial-phone-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
    }
    
    .testimonial-phone-cta i {
        color: #fbbf24;
        font-size: 1.3rem;
    }
    
    .testimonial-phone-cta a {
        color: #fbbf24;
        font-weight: 800;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 1.2rem;
    }
    
    .testimonial-phone-cta a:hover {
        color: #10b981;
        text-decoration: underline;
    }
    
    /* Responsive Design */
    @media (max-width: 991.98px) {
        .testimonial4-section-area {
            padding: 100px 0;
        }
        
        .testimonial-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .testimonial-stats-bar {
            gap: 30px;
        }
        
        .testimonial-stat {
            padding: 20px 30px;
        }
        
        .testimonial-stat-value {
            font-size: 2.5rem;
        }
        
        .testimonial-success-box {
            padding: 60px 40px;
        }
        
        .testimonial-trust-badges {
            gap: 25px;
        }
        
        .google-rating-box {
            padding: 20px 30px;
        }
    }
    
    @media (max-width: 767.98px) {
        .testimonial4-section-area {
            padding: 70px 0;
        }
        
        .testimonial-card-premium {
            padding: 30px 25px;
        }
        
        .testimonial-headline {
            font-size: 1.15rem;
        }
        
        .testimonial-stats-bar {
            gap: 20px;
        }
        
        .testimonial-stat {
            padding: 18px 25px;
            width: calc(50% - 10px);
        }
        
        .testimonial-stat-value {
            font-size: 2rem;
        }
        
        .testimonial-success-box {
            padding: 45px 25px;
            border-radius: 28px;
        }
        
        .testimonial-success-highlight {
            padding: 15px 25px;
            font-size: 1.1rem;
        }
        
        .btn-analysis-cta {
            width: 100%;
            justify-content: center;
            padding: 22px 35px;
            font-size: 1rem;
        }
        
        .testimonial-trust-badges {
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
        
        .google-rating-box {
            flex-direction: column;
            text-align: center;
            padding: 25px;
        }
        
        .google-rating-info {
            text-align: center;
        }
    }
    
    /* ========================================
       BLOG SECTION - Modern Insights Design (Dark Theme)
       ======================================== */
    .blog4-section-area {
        padding: 120px 0;
        background: linear-gradient(180deg, #020617 0%, #0f172a 30%, #1e293b 50%, #0f172a 70%, #020617 100%);
        position: relative;
        overflow: hidden;
    }
    
    .blog4-section-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 60% 40% at 10% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 90% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .blog-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }
    
    .blog-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
        color: #ff6b9d;
        padding: 16px 35px;
        border-radius: 60px;
        font-size: 0.9rem;
        font-weight: 800;
        margin-bottom: 35px;
        border: 2px solid rgba(255, 107, 157, 0.4);
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 0 0 40px rgba(255, 107, 157, 0.3);
    }
    
    .blog-badge i {
        font-size: 1.2rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .blog-header h2 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        font-weight: 900;
        color: white;
        margin-bottom: 25px;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }
    
    .blog-header .gradient-text {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .blog-header p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }
    
    .blog-cards-wrapper {
        position: relative;
        z-index: 2;
    }
    
    .blog-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
    }
    
    .blog-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px rgba(255, 107, 157, 0.25);
        border-color: rgba(255, 107, 157, 0.4);
    }
    
    .blog-image-wrapper {
        position: relative;
        overflow: hidden;
    }
    
    .blog-image {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    
    .blog-card:hover .blog-image {
        transform: scale(1.08);
    }
    
    .blog-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
        opacity: 0;
        transition: opacity 0.4s;
    }
    
    .blog-card:hover .blog-image-overlay {
        opacity: 1;
    }
    
    .blog-category {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        color: white;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
    }
    
    .blog-content {
        padding: 35px;
        display: flex;
        flex-direction: column;
        flex: 1;
        background: rgba(15, 23, 42, 0.5);
    }
    
    .blog-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 18px;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        flex-wrap: wrap;
    }
    
    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .blog-meta i {
        color: #ff6b9d;
    }
    
    .blog-title {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 18px;
        color: white;
        line-height: 1.4;
    }
    
    .blog-title a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .blog-title a:hover {
        color: #ff6b9d;
    }
    
    .blog-excerpt {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 1rem;
        flex: 1;
    }
    
    .blog-readmore {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #ff6b9d;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s;
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: auto;
    }
    
    .blog-readmore i {
        transition: transform 0.3s;
    }
    
    .blog-readmore:hover {
        color: #3b82f6;
    }
    
    .blog-readmore:hover i {
        transform: translateX(5px);
    }
    
    /* View All Button */
    .blog-view-all {
        text-align: center;
        margin-top: 50px;
        position: relative;
        z-index: 2;
    }
    
    .btn-view-all-blog {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 18px 45px;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        color: white;
        border-radius: 16px;
        font-weight: 800;
        font-size: 1.05rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 35px rgba(255, 107, 157, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-view-all-blog::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;
    }
    
    .btn-view-all-blog:hover::before {
        left: 100%;
    }
    
    .btn-view-all-blog:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 50px rgba(255, 107, 157, 0.4);
        color: white;
    }
    
    /* Responsive Design */
    @media (max-width: 991.98px) {
        .blog4-section-area {
            padding: 80px 0;
        }
        
        .blog-header {
            margin-bottom: 45px;
        }
        
        .blog-card {
            margin-bottom: 30px;
        }
        
        .blog-image {
            height: 240px;
        }
        
        .blog-content {
            padding: 30px;
        }
    }
    
    @media (max-width: 767.98px) {
        .blog4-section-area {
            padding: 60px 0;
        }
        
        .blog-image {
            height: 220px;
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-title {
            font-size: 1.3rem;
        }
        
        .blog-view-all {
            margin-top: 30px;
        }
        
        .btn-view-all-blog {
            width: 100%;
            justify-content: center;
            padding: 16px 30px;
        }
    }
    
    /* ========================================
       CTA SECTION - Modern Conversion Design
       ======================================== */
    .cta-section {
        padding: 140px 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 107, 157, 0.25) 0%, transparent 50%),
            radial-gradient(ellipse 80% 50% at 80% 60%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 50% 100%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }
    
    /* Animated Grid Background */
    .cta-grid-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: grid-move 20s linear infinite;
        pointer-events: none;
    }
    
    @keyframes grid-move {
        0% { transform: translate(0, 0); }
        100% { transform: translate(60px, 60px); }
    }
    
    /* Floating Orbs */
    .cta-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.6;
        animation: cta-float 8s ease-in-out infinite;
        pointer-events: none;
    }
    
    .cta-orb-1 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        top: -100px;
        left: -100px;
        animation-delay: 0s;
    }
    
    .cta-orb-2 {
        width: 350px;
        height: 350px;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        bottom: -80px;
        right: -80px;
        animation-delay: -4s;
    }
    
    .cta-orb-3 {
        width: 250px;
        height: 250px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-delay: -2s;
    }
    
    @keyframes cta-float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(30px, -30px) scale(1.05); }
        50% { transform: translate(-20px, 20px) scale(0.95); }
        75% { transform: translate(20px, 30px) scale(1.02); }
    }
    
    .cta-container {
        position: relative;
        z-index: 2;
    }
    
    .cta-wrapper {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 40px;
        padding: 80px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ff6b9d 0%, #3b82f6 50%, #10b981 100%);
    }
    
    .cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 107, 157, 0.15);
        color: #ff6b9d;
        padding: 14px 30px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 35px;
        border: 1px solid rgba(255, 107, 157, 0.3);
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    
    .cta-badge i {
        font-size: 1.2rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .cta-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 900;
        color: white;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .cta-title .gradient-text {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 50%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% auto;
        animation: gradient-shift 4s ease-in-out infinite;
    }
    
    .cta-text {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 45px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.9;
    }
    
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    
    .btn-cta-main {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 22px 50px;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        color: white;
        border-radius: 18px;
        font-weight: 800;
        font-size: 1.15rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-cta-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
        transition: left 0.6s;
    }
    
    .btn-cta-main:hover::before {
        left: 100%;
    }
    
    .btn-cta-main:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 70px rgba(255, 107, 157, 0.5);
        color: white;
    }
    
    .btn-cta-main i {
        font-size: 1.2rem;
        transition: transform 0.3s;
    }
    
    .btn-cta-main:hover i {
        transform: translateX(5px);
    }
    
    .btn-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 22px 45px;
        background: rgba(255, 255, 255, 0.08);
        color: white;
        border-radius: 18px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.4s;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-5px);
        color: white;
    }
    
    .cta-trust-bar {
        display: flex;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cta-trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .cta-trust-item i {
        color: #10b981;
        font-size: 1.3rem;
    }
    
    .cta-phone {
        margin-top: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.05rem;
    }
    
    .cta-phone i {
        color: #10b981;
        font-size: 1.2rem;
    }
    
    .cta-phone a {
        color: #10b981;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .cta-phone a:hover {
        color: #ff6b9d;
    }
    
    /* Responsive */
    @media (max-width: 991.98px) {
        .cta-section {
            padding: 100px 0;
        }
        
        .cta-wrapper {
            padding: 60px 40px;
            border-radius: 30px;
        }
        
        .cta-trust-bar {
            gap: 30px;
        }
        
        .cta-orb-1, .cta-orb-2 {
            width: 250px;
            height: 250px;
        }
        
        .cta-orb-3 {
            display: none;
        }
    }
    
    @media (max-width: 767.98px) {
        .cta-section {
            padding: 80px 0;
        }
        
        .cta-wrapper {
            padding: 50px 25px;
            border-radius: 24px;
        }
        
        .cta-buttons {
            flex-direction: column;
        }
        
        .btn-cta-main,
        .btn-cta-secondary {
            width: 100%;
            justify-content: center;
            padding: 20px 30px;
        }
        
        .cta-trust-bar {
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        .cta-orb-1, .cta-orb-2 {
            width: 180px;
            height: 180px;
        }
    }
    
    /* Responsive Styles */
    
    /* Extra Large Devices (Large Desktops, 1400px and up) */
    @media (min-width: 1400px) {
        .hero-section {
            padding: 100px 0 180px;
        }
        
        .hero-title {
            font-size: 5rem;
        }
        
        .hero-input-group {
            max-width: 1000px;
        }
        
        .data-card {
            min-width: 360px;
        }
        
        .location-card {
            width: 220px;
        }
    }
    
    /* Large Devices (Desktops, 1200px and up) */
    @media (min-width: 1200px) and (max-width: 1399.98px) {
        .hero-title {
            font-size: 4.5rem;
        }
        
        .hero-input-group {
            max-width: 950px;
        }
    }
    
    /* Medium Devices (Tablets, 992px and up) */
    @media (min-width: 992px) and (max-width: 1199.98px) {
        .hero-section {
            padding: 70px 0 130px;
        }
        
        .hero-title {
            font-size: 3.8rem;
        }
        
        .hero-input-group {
            max-width: 850px;
        }
        
        .data-card {
            min-width: 300px;
            max-width: 350px;
            bottom: 30px;
            left: 30px;
        }
        
        .location-card {
            width: 190px;
            top: 30px;
            right: 30px;
        }
        
        .megaphone-icon {
            font-size: 100px;
            right: 100px;
        }
        
        .red-x-icon {
            font-size: 70px;
            right: 150px;
        }
    }
    
    /* Small Devices (Landscape Phones, 768px and up) */
    @media (min-width: 768px) and (max-width: 991.98px) {
        .hero-section {
            padding: 60px 0 120px;
        }
        
        .hero-section::before {
            width: 400px;
            height: 400px;
        }
        
        .hero-title {
            font-size: 3.2rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
            margin-bottom: 40px;
        }
        
        .hero-input-group {
            flex-wrap: wrap;
            max-width: 100%;
            gap: 10px;
        }
        
        .hero-input-wrapper {
            flex: 1 1 calc(50% - 10px);
            min-width: 200px;
        }
        
        .btn-analyze-now {
            flex: 1 1 100%;
            width: 100%;
            justify-content: center;
        }
        
        .hero-graphics {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 40px;
            min-height: auto;
        }
        
        .data-card {
            position: relative;
            bottom: auto;
            left: auto;
            margin: 30px auto 20px;
            width: 100%;
            max-width: 500px;
            min-width: auto;
        }
        
        .location-card {
            display: none !important;
        }
        
        .megaphone-icon,
        .red-x-icon,
        .pink-arrow {
            display: none;
        }
        
        .floating-shapes {
            display: none;
        }
    }
    
    /* Extra Small to Small Devices (Portrait Phones, up to 767.98px) */
    @media (max-width: 767.98px) {
        .hero-section {
            padding: 60px 0 120px;
            min-height: auto;
        }
        
        .hero-stats {
            gap: 30px;
            margin-top: 40px;
        }
        
        .hero-stat-item {
            flex: 1 1 calc(33.333% - 20px);
            min-width: 100px;
        }
        
        .hero-section::before {
            width: 300px;
            height: 300px;
            top: -30%;
            right: -20%;
        }
        
        .hero-section::after {
            height: 80px;
        }
        
        .hero-top-tag {
            padding: 8px 18px;
            font-size: 0.75rem;
            margin-bottom: 15px;
        }
        
        .hero-title {
            font-size: 2rem;
            line-height: 1.15;
            margin-bottom: 15px;
        }
        
        .hero-title .dominate-pink {
            text-decoration-thickness: 3px;
            text-underline-offset: 6px;
        }
        
        .hero-subtitle {
            font-size: 0.95rem;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .hero-input-group {
            flex-direction: column;
            gap: 12px;
            padding: 0 15px;
        }
        
        .hero-input-wrapper {
            width: 100%;
            max-width: 100%;
            min-width: auto;
        }
        
        .hero-input-wrapper input {
            padding: 14px 18px 14px 45px;
            font-size: 0.9rem;
            min-height: 48px; /* Better touch target */
        }
        
        .btn-analyze-now {
            width: 100%;
            justify-content: center;
            padding: 14px 30px;
            font-size: 0.95rem;
            min-height: 48px; /* Better touch target */
        }
        
        .hero-graphics {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 30px;
            padding: 0 15px;
            min-height: auto;
        }
        
        .data-card {
            position: relative;
            bottom: auto;
            left: auto;
            margin: 25px auto 20px;
            min-width: auto;
            width: 100%;
            max-width: 100%;
            padding: 20px;
        }
        
        .data-card-title {
            font-size: 0.8rem;
        }
        
        .data-card-number {
            font-size: 1.8rem;
        }
        
        .data-card-list li {
            padding: 10px 0;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }
        
        .data-card-list .country-info {
            flex: 1 1 100%;
            margin-bottom: 5px;
        }
        
        .data-card-list .ranking-info {
            flex: 1 1 100%;
            justify-content: space-between;
        }
        
        .location-card {
            display: none !important;
        }
        
        .megaphone-icon,
        .red-x-icon,
        .pink-arrow {
            display: none;
        }
        
        .floating-shapes {
            display: none;
        }
        
        .shape {
            display: none;
        }
    }
    
    /* Extra Small Devices (Small Phones, up to 575.98px) */
    @media (max-width: 575.98px) {
        .hero-section {
            padding: 50px 0 100px;
        }
        
        .hero-top-tag {
            padding: 10px 20px;
            font-size: 0.8rem;
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 0.95rem;
            margin-bottom: 35px;
            padding: 0 10px;
        }
        
        .hero-stats {
            gap: 20px;
            margin-top: 40px;
        }
        
        .hero-stat-item {
            flex: 1 1 calc(50% - 10px);
            min-width: 120px;
        }
        
        .hero-stat-number {
            font-size: 2rem;
        }
        
        .hero-stat-label {
            font-size: 0.75rem;
        }
        
        .hero-input-group {
            gap: 10px;
            padding: 0 10px;
        }
        
        .hero-input-wrapper input {
            padding: 12px 15px 12px 40px;
            font-size: 0.85rem;
            min-height: 44px; /* Better touch target */
        }
        
        .hero-input-wrapper i {
            left: 15px;
            font-size: 0.95rem;
        }
        
        .btn-analyze-now {
            padding: 12px 25px;
            font-size: 0.9rem;
            min-height: 44px; /* Better touch target */
        }
        
        .hero-graphics {
            padding: 0 10px;
            margin-top: 25px;
        }
        
        .data-card {
            padding: 18px;
            margin: 20px auto 15px;
            width: 100%;
        }
        
        .data-card-title {
            font-size: 0.75rem;
            margin-bottom: 12px;
        }
        
        .data-card-header {
            margin-bottom: 15px;
        }
        
        .data-card-number {
            font-size: 1.6rem;
        }
        
        .data-card-list li {
            padding: 8px 0;
            font-size: 0.8rem;
        }
        
        .data-card-list .country-info {
            flex: 1 1 100%;
            margin-bottom: 5px;
        }
        
        .data-card-list .ranking-info {
            flex: 1 1 100%;
            justify-content: space-between;
        }
        
        .data-card-list .country-flag {
            width: 20px;
            height: 20px;
        }
        
        .data-card-list .ranking-value {
            font-size: 0.85rem;
        }
        
        .location-card {
            display: none !important;
        }
    }
    
    /* Landscape Orientation for Mobile */
    @media (max-width: 991.98px) and (orientation: landscape) {
        .hero-section {
            padding: 40px 0 80px;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            margin-bottom: 25px;
        }
    }
    
    /* Section Title Responsive */
    @media (max-width: 767.98px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .pricing-card.featured {
            transform: scale(1);
        }
    }
    
    @media (max-width: 575.98px) {
        .section-title {
            font-size: 1.5rem;
        }
    }
    
    /* Container Responsive Adjustments */
    @media (max-width: 575.98px) {
        .hero-content {
            padding: 0 10px;
        }
    }
    
    /* ========================================
       SEO SERVICES SECTION - Premium Lead-Converting Design
       ======================================== */
    .seo-services-section {
        background: linear-gradient(180deg, #020617 0%, #0f172a 30%, #1e293b 50%, #0f172a 70%, #020617 100%);
        padding: 140px 0;
        position: relative;
        overflow: hidden;
    }
    
    .seo-services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 107, 157, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse 80% 50% at 80% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
        animation: services-aurora 15s ease-in-out infinite;
        pointer-events: none;
    }
    
    @keyframes services-aurora {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.7; transform: scale(1.05); }
    }
    
    /* Floating Grid Pattern */
    .seo-services-grid-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: grid-float 30s linear infinite;
        pointer-events: none;
    }
    
    @keyframes grid-float {
        0% { transform: translate(0, 0); }
        100% { transform: translate(60px, 60px); }
    }
    
    /* Floating Orbs */
    .services-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
        animation: orb-float 20s ease-in-out infinite;
    }
    
    .services-orb-1 {
        width: 400px;
        height: 400px;
        background: rgba(255, 107, 157, 0.15);
        top: 10%;
        left: -10%;
    }
    
    .services-orb-2 {
        width: 350px;
        height: 350px;
        background: rgba(59, 130, 246, 0.12);
        bottom: 20%;
        right: -5%;
        animation-delay: 5s;
    }
    
    .services-orb-3 {
        width: 300px;
        height: 300px;
        background: rgba(16, 185, 129, 0.1);
        top: 50%;
        left: 40%;
        animation-delay: 10s;
    }
    
    @keyframes orb-float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(30px, -30px) scale(1.1); }
        50% { transform: translate(-20px, 20px) scale(0.95); }
        75% { transform: translate(20px, 30px) scale(1.05); }
    }
    
    /* Section Header */
    .seo-services-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }
    
    .seo-services-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
        color: #ff6b9d;
        padding: 16px 35px;
        border-radius: 60px;
        font-size: 0.9rem;
        font-weight: 800;
        margin-bottom: 35px;
        border: 2px solid rgba(255, 107, 157, 0.4);
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 0 0 40px rgba(255, 107, 157, 0.3);
        animation: badge-pulse 3s ease-in-out infinite;
    }
    
    @keyframes badge-pulse {
        0%, 100% { box-shadow: 0 0 40px rgba(255, 107, 157, 0.3); }
        50% { box-shadow: 0 0 60px rgba(255, 107, 157, 0.5); }
    }
    
    .seo-services-badge i {
        font-size: 1.3rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .seo-services-header h2 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        color: white;
        margin-bottom: 30px;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }
    
    .seo-services-header .gradient-text {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 50%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% auto;
        animation: gradient-shift 4s ease-in-out infinite;
    }
    
    .seo-services-header-desc {
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
    }
    
    /* Stats Bar */
    .seo-services-stats {
        display: flex;
        justify-content: center;
        gap: 50px;
        margin-bottom: 80px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }
    
    .services-stat-item {
        text-align: center;
        padding: 30px 40px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        transition: all 0.4s;
        min-width: 160px;
    }
    
    .services-stat-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-8px);
        border-color: rgba(255, 107, 157, 0.4);
        box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
    }
    
    .services-stat-value {
        font-size: 3rem;
        font-weight: 900;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .services-stat-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }
    
    /* Services Grid */
    .seo-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        position: relative;
        z-index: 2;
        margin-bottom: 80px;
    }
    
    /* Service Card Premium */
    .seo-service-card-premium {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 28px;
        padding: 40px 35px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }
    
    .seo-service-card-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--card-accent, #ff6b9d), #3b82f6);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s;
    }
    
    .seo-service-card-premium:hover {
        transform: translateY(-15px);
        border-color: rgba(255, 107, 157, 0.4);
        box-shadow: 
            0 30px 80px rgba(255, 107, 157, 0.2),
            0 0 0 1px rgba(255, 107, 157, 0.2);
    }
    
    .seo-service-card-premium:hover::before {
        transform: scaleX(1);
    }
    
    /* Card Accent Colors */
    .seo-service-card-premium:nth-child(1) { --card-accent: #ff6b9d; }
    .seo-service-card-premium:nth-child(2) { --card-accent: #10b981; }
    .seo-service-card-premium:nth-child(3) { --card-accent: #3b82f6; }
    .seo-service-card-premium:nth-child(4) { --card-accent: #f59e0b; }
    .seo-service-card-premium:nth-child(5) { --card-accent: #8b5cf6; }
    .seo-service-card-premium:nth-child(6) { --card-accent: #06b6d4; }
    .seo-service-card-premium:nth-child(7) { --card-accent: #ec4899; }
    
    .service-card-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 25px;
    }
    
    .service-card-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s;
    }
    
    .seo-service-card-premium:hover .service-card-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
    }
    
    .seo-service-card-premium:nth-child(1) .service-card-icon { background: linear-gradient(135deg, rgba(255, 107, 157, 0.25) 0%, rgba(255, 107, 157, 0.1) 100%); }
    .seo-service-card-premium:nth-child(2) .service-card-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.1) 100%); }
    .seo-service-card-premium:nth-child(3) .service-card-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.1) 100%); }
    .seo-service-card-premium:nth-child(4) .service-card-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.1) 100%); }
    .seo-service-card-premium:nth-child(5) .service-card-icon { background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 100%); }
    .seo-service-card-premium:nth-child(6) .service-card-icon { background: linear-gradient(135deg, rgba(6, 182, 212, 0.25) 0%, rgba(6, 182, 212, 0.1) 100%); }
    .seo-service-card-premium:nth-child(7) .service-card-icon { background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(236, 72, 153, 0.1) 100%); }
    
    .service-card-icon i {
        font-size: 2rem;
        color: var(--card-accent, #ff6b9d);
    }
    
    .service-card-number {
        font-size: 4rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.05);
        line-height: 1;
        transition: all 0.4s;
    }
    
    .seo-service-card-premium:hover .service-card-number {
        color: rgba(255, 255, 255, 0.1);
        transform: scale(1.1);
    }
    
    .service-card-title {
        font-size: 1.4rem;
        font-weight: 800;
        color: white;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .service-card-desc {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        margin-bottom: 25px;
        flex: 1;
    }
    
    /* What You Get Section */
    .service-what-box {
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .service-what-box h4 {
        font-size: 0.85rem;
        font-weight: 800;
        color: #3b82f6;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .service-what-box p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.6;
        margin: 0;
    }
    
    /* Why It Matters Section */
    .service-why-box {
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.3);
        border-radius: 16px;
        padding: 20px;
    }
    
    .service-why-box h4 {
        font-size: 0.85rem;
        font-weight: 800;
        color: #10b981;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .service-why-box p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.6;
        margin: 0;
    }
    
    /* Featured Card (Full Width) */
    .seo-service-card-featured {
        grid-column: span 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px;
    }
    
    .seo-service-card-featured .service-card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .seo-service-card-featured .service-boxes-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* CTA Section */
    .seo-services-cta-premium {
        position: relative;
        z-index: 2;
    }
    
    .seo-services-cta-box {
        background: linear-gradient(145deg, rgba(255, 107, 157, 0.1) 0%, rgba(59, 130, 246, 0.08) 50%, rgba(16, 185, 129, 0.08) 100%);
        backdrop-filter: blur(30px);
        border: 2px solid rgba(255, 107, 157, 0.3);
        border-radius: 40px;
        padding: 80px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .seo-services-cta-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 107, 157, 0.1), transparent, rgba(59, 130, 246, 0.1), transparent);
        animation: rotate-bg 20s linear infinite;
        pointer-events: none;
    }
    
    .seo-services-cta-content {
        position: relative;
        z-index: 2;
    }
    
    .seo-services-cta-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 35px;
        font-size: 2.5rem;
        color: white;
        box-shadow: 0 20px 50px rgba(255, 107, 157, 0.4);
        animation: float 3s ease-in-out infinite;
    }
    
    .seo-services-cta-box h3 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .seo-services-cta-box h3 .gradient-text {
        background: linear-gradient(135deg, #ff6b9d 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .seo-services-cta-highlight {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
        color: #ff6b9d;
        padding: 20px 40px;
        border-radius: 16px;
        font-size: 1.3rem;
        font-weight: 800;
        margin: 30px 0;
        border: 2px solid rgba(255, 107, 157, 0.4);
        box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    }
    
    .seo-services-cta-highlight i {
        font-size: 1.5rem;
        animation: pulse 2s ease-in-out infinite;
    }
    
    .seo-services-cta-desc {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 650px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }
    
    .seo-services-cta-buttons {
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 35px;
    }
    
    .btn-services-main {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 25px 55px;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
        color: white;
        border-radius: 20px;
        font-weight: 800;
        font-size: 1.15rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(255, 107, 157, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-services-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s;
    }
    
    .btn-services-main:hover::before {
        left: 100%;
    }
    
    .btn-services-main:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 30px 80px rgba(255, 107, 157, 0.5);
        color: white;
    }
    
    .btn-services-secondary {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 25px 45px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.4s;
    }
    
    .btn-services-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-5px);
        color: white;
    }
    
    .seo-services-trust-badges {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        padding-top: 35px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 30px;
    }
    
    .services-trust-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .services-trust-badge i {
        color: #10b981;
        font-size: 1.2rem;
    }
    
    .seo-services-phone-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
    }
    
    .seo-services-phone-cta i {
        color: #ff6b9d;
        font-size: 1.3rem;
    }
    
    .seo-services-phone-cta a {
        color: #ff6b9d;
        font-weight: 800;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 1.2rem;
    }
    
    .seo-services-phone-cta a:hover {
        color: #3b82f6;
        text-decoration: underline;
    }
    
    /* Responsive Design */
    @media (max-width: 1199.98px) {
        .seo-services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .seo-service-card-featured {
            grid-column: span 2;
        }
    }
    
    @media (max-width: 991.98px) {
        .seo-services-section {
            padding: 100px 0;
        }
        
        .seo-services-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .seo-service-card-featured {
            grid-column: span 1;
            grid-template-columns: 1fr;
            padding: 40px 30px;
        }
        
        .seo-service-card-featured .service-boxes-grid {
            grid-template-columns: 1fr;
        }
        
        .seo-services-stats {
            gap: 25px;
        }
        
        .services-stat-item {
            padding: 25px 30px;
            min-width: 140px;
        }
        
        .services-stat-value {
            font-size: 2.5rem;
        }
        
        .seo-services-cta-box {
            padding: 60px 40px;
        }
        
        .seo-services-trust-badges {
            gap: 25px;
        }
    }
    
    @media (max-width: 767.98px) {
        .seo-services-section {
            padding: 70px 0;
        }
        
        .seo-service-card-premium {
            padding: 30px 25px;
        }
        
        .service-card-title {
            font-size: 1.2rem;
        }
        
        .seo-services-stats {
            gap: 15px;
        }
        
        .services-stat-item {
            padding: 20px 25px;
            min-width: 130px;
            width: calc(50% - 10px);
        }
        
        .services-stat-value {
            font-size: 2rem;
        }
        
        .seo-services-cta-box {
            padding: 45px 25px;
            border-radius: 28px;
        }
        
        .seo-services-cta-highlight {
            padding: 15px 25px;
            font-size: 1.1rem;
        }
        
        .btn-services-main {
            width: 100%;
            justify-content: center;
            padding: 22px 35px;
            font-size: 1rem;
        }
        
        .btn-services-secondary {
            width: 100%;
            justify-content: center;
            padding: 20px 30px;
        }
        
        .seo-services-trust-badges {
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }
        
        .service-card-number {
            font-size: 3rem;
        }
    }

/* ========================================
   SEO AUDIT SUCCESS MODAL
   ======================================== */
.audit-success-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.audit-success-modal.active {
    display: flex;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.audit-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.audit-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 20px;
    padding: 28px 25px;
    max-width: 400px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 107, 157, 0.2);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 157, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.audit-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.audit-modal-close:hover {
    background: rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.4);
    color: #ff6b9d;
    transform: rotate(90deg);
}

/* Success Icon Animation */
.audit-modal-success-icon {
    position: relative;
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
}

.success-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-circle i {
    font-size: 1.6rem;
    color: white;
    animation: checkPop 0.4s ease 0.5s both;
}

@keyframes checkPop {
    0% { opacity: 0; transform: scale(0) rotate(-45deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.success-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: particleBurst 0.6s ease-out 0.3s both;
}

.success-particles span:nth-child(1) { background: #ff6b9d; top: 0; left: 50%; }
.success-particles span:nth-child(2) { background: #10b981; top: 15%; right: 15%; }
.success-particles span:nth-child(3) { background: #fbbf24; right: 0; top: 50%; }
.success-particles span:nth-child(4) { background: #3b82f6; bottom: 15%; right: 15%; }
.success-particles span:nth-child(5) { background: #8b5cf6; bottom: 0; left: 50%; }
.success-particles span:nth-child(6) { background: #ec4899; bottom: 15%; left: 15%; }
.success-particles span:nth-child(7) { background: #06b6d4; left: 0; top: 50%; }
.success-particles span:nth-child(8) { background: #f97316; top: 15%; left: 15%; }

@keyframes particleBurst {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) scale(1); opacity: 0; }
}

.success-particles span:nth-child(1) { --x: 0px; --y: -25px; }
.success-particles span:nth-child(2) { --x: 18px; --y: -18px; }
.success-particles span:nth-child(3) { --x: 25px; --y: 0px; }
.success-particles span:nth-child(4) { --x: 18px; --y: 18px; }
.success-particles span:nth-child(5) { --x: 0px; --y: 25px; }
.success-particles span:nth-child(6) { --x: -18px; --y: 18px; }
.success-particles span:nth-child(7) { --x: -25px; --y: 0px; }
.success-particles span:nth-child(8) { --x: -18px; --y: -18px; }

.audit-modal-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.audit-modal-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 18px;
}

/* Detail Items */
.audit-modal-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.audit-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audit-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.audit-detail-item:first-child {
    padding-top: 0;
}

.audit-detail-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(255, 107, 157, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b9d;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.audit-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.audit-detail-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.audit-detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Timeline - Compact */
.audit-modal-timeline {
    margin-bottom: 15px;
    display: none; /* Hidden for compact view */
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.timeline-header i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.timeline-steps {
    position: relative;
    padding-left: 25px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(180deg, #10b981 0%, rgba(255, 255, 255, 0.1) 100%);
}

.timeline-step {
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-marker {
    position: absolute;
    left: -25px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.timeline-step.active .step-marker {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: white;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.step-content strong {
    color: white;
    font-size: 0.8rem;
}

.step-content span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

/* Guarantee Badge - Compact */
.audit-modal-guarantee {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.audit-modal-guarantee i {
    font-size: 1.1rem;
    color: #10b981;
    flex-shrink: 0;
}

.audit-modal-guarantee span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.4;
}

.audit-modal-guarantee strong {
    color: #10b981;
}

/* Action Buttons - Compact */
.audit-modal-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.audit-modal-btn {
    flex: 1;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
}

.audit-modal-btn.primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4d7a 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.audit-modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4);
}

.audit-modal-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    display: none; /* Hide secondary button for compact view */
}

.audit-modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Footer - Compact */
.audit-modal-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.audit-modal-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0;
}

.audit-modal-footer a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.audit-modal-footer a:hover {
    color: #ff6b9d;
}

/* Responsive Modal */
@media (max-width: 575.98px) {
    .audit-modal-content {
        padding: 22px 18px;
        border-radius: 16px;
        margin: 15px;
    }
    
    .audit-modal-title {
        font-size: 1.15rem;
    }
    
    .audit-modal-subtitle {
        font-size: 0.8rem;
    }
    
    .audit-modal-actions {
        flex-direction: column;
    }
    
    .audit-modal-btn {
        width: 100%;
        padding: 10px 15px;
    }
    
    .audit-detail-value {
        font-size: 0.8rem;
    }
    
    .audit-modal-success-icon {
        width: 55px;
        height: 55px;
    }
    
    .success-circle i {
        font-size: 1.4rem;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-graphics,
    .floating-shapes,
    .megaphone-icon,
    .red-x-icon,
    .pink-arrow {
        display: none;
    }
}