

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            animation: float 25s ease-in-out infinite;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
            animation: float 30s ease-in-out infinite reverse;
            z-index: 1;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        .hero-content {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--accent-teal);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.2);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(13, 148, 136, 0);
            }
        }

        .hero-title {
            font-size: clamp(3rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.7;
            color: var(--neutral-600);
            margin-bottom: 32px;
            max-width: 560px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
        }

        .hero-description strong {
            color: var(--neutral-900);
            font-weight: 600;
            background: rgba(59, 130, 246, 0.1);
            padding: 2px 6px;
            border-radius: var(--radius-sm);
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: var(--white);
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-lg);
            transition: var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .feature-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-blue-light);
        }

        .feature-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            flex-shrink: 0;
        }

        .feature-text {
            font-weight: 500;
            font-size: 14px;
            color: var(--neutral-800);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            z-index: 2;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        .stat-card {
            background: var(--white);
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-xl);
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity var(--transition-base);
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card.featured {
            grid-column: span 2;
            background: var(--gradient-primary);
            border: none;
            color: var(--white);
        }

        @media (max-width: 768px) {
            .stat-card.featured {
                grid-column: span 1;
            }
        }

        .stat-card.featured:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-2xl);
        }

        .stat-icon {
            width: 56px;
            height: 56px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-blue);
            margin-bottom: 16px;
            transition: all var(--transition-base);
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .stat-card.featured .stat-icon {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .stat-value {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
            color: var(--neutral-900);
            font-family: 'Clash Grotesk', sans-serif;
        }

        .stat-card.featured .stat-value {
            color: var(--white);
            font-size: 3.5rem;
        }

        .stat-label {
            font-size: 15px;
            color: var(--neutral-500);
            font-weight: 500;
            line-height: 1.4;
        }

        .stat-card.featured .stat-label {
            color: rgba(255, 255, 255, 0.9);
        }

        .floating-badge {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 16px 20px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: floatBadge 6s ease-in-out infinite;
            border: 1px solid var(--neutral-200);
            z-index: 3;
        }

        @keyframes floatBadge {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(2deg);
            }
            75% {
                transform: translateY(5px) rotate(-2deg);
            }
        }

        .floating-badge.badge-1 {
            top: 10%;
            right: -30px;
            animation-delay: 0s;
        }

        .floating-badge.badge-2 {
            bottom: 15%;
            left: -40px;
            animation-delay: 3s;
        }

        @media (max-width: 992px) {
            .floating-badge {
                display: none;
            }
        }

        .badge-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .badge-icon.success {
            background: rgba(13, 148, 136, 0.1);
            color: var(--accent-teal);
            border: 1px solid rgba(13, 148, 136, 0.2);
        }

        .badge-icon.primary {
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-blue);
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .badge-text strong {
            display: block;
            font-weight: 700;
            font-size: 16px;
            color: var(--neutral-900);
            margin-bottom: 2px;
        }

        .badge-text span {
            font-size: 13px;
            color: var(--neutral-500);
        }

        /* ========== TRUST BAR ========== */
        .trust-bar {
            background: var(--neutral-50);
            border-top: 1px solid var(--neutral-200);
            border-bottom: 1px solid var(--neutral-200);
            padding: 60px 0;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        @media (max-width: 1200px) {
            .trust-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .trust-grid {
                grid-template-columns: 1fr;
            }
        }

        .trust-item {
            background: var(--white);
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-xl);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .trust-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-blue-light);
        }

        .trust-icon {
            width: 56px;
            height: 56px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-blue);
            flex-shrink: 0;
            transition: var(--transition-base);
        }

        .trust-item:hover .trust-icon {
            transform: scale(1.1);
            background: var(--primary-blue);
            color: var(--white);
        }

        .trust-text strong {
            display: block;
            font-weight: 700;
            font-size: 16px;
            color: var(--neutral-900);
            margin-bottom: 4px;
        }

        .trust-text span {
            font-size: 14px;
            color: var(--neutral-500);
        }

.services-layout-v3 {
  padding: 100px 0;
  background: #f8fafc;
}

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.services-pill {
  background: #eef2ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

.services-header h2 span {
  color: #2563eb;
}

.services-header p {
  font-size: 18px;
  color: #64748b;
}

/* GRID */
.services-grid-v3 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}

.right-column {
  display: grid;
  gap: 24px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 40px rgba(0,0,0,.05);
  position: relative;
  transition: .35s ease;
}

.service-card.big {
  padding: 36px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

/* BADGES */
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.primary { background:#eef2ff; color:#2563eb; }
.success { background:#ecfdf5; color:#059669; }
.warning { background:#fff7ed; color:#ea580c; }

/* ICON */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.blue { background:#eef2ff; color:#2563eb; }
.green { background:#ecfdf5; color:#059669; }
.orange { background:#fff7ed; color:#ea580c; }
.pink { background:#fdf2f8; color:#db2777; }

/* TEXT */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.features span {
  background: #f1f5f9;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
}

.features.small span {
  font-size: 12px;
}

/* STATS */
.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.service-stats div {
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.service-stats strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
}

.service-stats span {
  font-size: 12px;
  color: #64748b;
}

/* GUARANTEE */
.service-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  color: #065f46;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}

/* FOOTER */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer a {
  font-weight: 600;
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid-v3 {
    grid-template-columns: 1fr;
  }
}

        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials {
            background: var(--neutral-50);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--white);
            border: 1px solid var(--neutral-200);
            border-radius: var(--radius-2xl);
            padding: 32px;
            position: relative;
            transition: var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .testimonial-content {
            font-size: 16px;
            line-height: 1.8;
            color: var(--neutral-600);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            font-style: italic;
        }

        .testimonial-content::before {
            content: '"';
            font-size: 80px;
            position: absolute;
            top: -30px;
            left: -10px;
            color: var(--neutral-200);
            font-family: serif;
            line-height: 1;
            z-index: -1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            color: var(--white);
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--neutral-900);
            margin-bottom: 4px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--accent-teal);
            font-weight: 500;
        }

        /* ========== CTA SECTION ========== */
        .cta {
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
            padding: 80px 0;
        }

        .cta-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 16px;
            color: var(--white);
        }

        .cta-description {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
        }

   
    
       
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .cta-actions .btn {
                width: 100%;
                max-width: 300px;
            }
            
        
        }

        @media (max-width: 480px) {
            .hero {
                padding: 120px 0 60px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-value {
                font-size: 2.5rem;
            }
            
            .stat-card.featured .stat-value {
                font-size: 3rem;
            }
            
          
    
        }

        /* ========== ACCESSIBILITY ========== */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important;
            }
        }

        .focus-visible {
            outline: 2px solid var(--primary-blue);
            outline-offset: 2px;
        }

        /* Counter Animation */
        .counter {
            display: inline-block;
        }
    