/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.65;
  color: #0f172a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Smooth Scroll Offset */
html {
  scroll-padding-top: 5rem;
}

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

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2274FF, #3b82f6);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1e5dd6, #2563eb);
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo a:hover .logo-img {
  transform: scale(1.05);
}

.logo-accent {
  color: #2274FF;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  color: #475569;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2274FF, #60a5fa);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #2274FF;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background: linear-gradient(135deg, #2274FF 0%, #1d63ed 100%);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(34, 116, 255, 0.25);
}

.nav-btn:hover {
  background: linear-gradient(135deg, #1557cc 0%, #1557cc 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.35);
}

.nav-mobile-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-mobile-btn:hover {
  color: #2274FF;
  background-color: #f9fafb;
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  border-top: 1px solid #f3f4f6;
  background-color: white;
}

.nav-mobile-content {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.nav-mobile-link:hover {
  color: #2274FF;
  background-color: #f9fafb;
}

.nav-mobile-btn {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: white;
  background-color: #2274FF;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
  text-align: center;
  font-weight: 500;
}

.nav-mobile-btn:hover {
  background-color: #1557cc;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-mobile-btn {
    display: none;
  }

  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 40%, #1a4fb8 100%);
  color: white;
  overflow: hidden;
  padding-top: 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

.hero-shape-1 {
  top: 5rem;
  right: 2.5rem;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
}

.hero-shape-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
  animation-delay: 1s;
}

.hero-shape-3 {
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
  animation-delay: 2s;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 8rem;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  max-width: 48rem;
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: none;
  }
}

.hero-image-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    display: block;
    position: relative;
  }
}

.hero-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.5s ease;
  max-height: 500px;
}

.hero-image-container:hover {
  transform: scale(1.05);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(34, 116, 255, 0.3) 100%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fade-in 0.6s ease-out;
  letter-spacing: 0.01em;
}

.hero-badge-pulse {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.pulse-ring {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: white;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 0.5rem;
  width: 0.5rem;
  background-color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: slide-up 0.8s ease-out;
}

.hero-title-line {
  display: block;
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #dbeafe 50%, #cffafe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.6;
  animation: slide-up 0.8s ease-out 0.1s backwards;
  font-weight: 500;
}

.hero-text {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  animation: slide-up 0.8s ease-out 0.2s backwards;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slide-up 0.8s ease-out 0.3s backwards;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary {
  background-color: white;
  color: #2274FF;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25), 0 2px 8px rgba(255, 255, 255, 0.15);
}

.hero-btn-primary:hover {
  background: linear-gradient(90deg, #ffffff 0%, #f0f9ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.35), 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-arrow,
.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
  transform: translateX(0.5rem);
}

.hero-btn-secondary:hover .btn-icon {
  transform: rotate(90deg);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* About Section */
.about-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 245, 249, 0.4) 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(34, 116, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  color: #2274FF;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(34, 116, 255, 0.15);
  box-shadow: 0 2px 8px rgba(34, 116, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
}

.section-badge-white {
  background: linear-gradient(90deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-badge-contact {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  width: 1rem;
  height: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.contact-title {
  color: white;
}

.title-gradient {
  background: linear-gradient(90deg, #2274FF 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.65;
}

.about-card-wrapper {
  position: relative;
  margin-bottom: 5rem;
}

.about-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 116, 255, 0.2) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(59, 130, 246, 0.2) 100%);
  border-radius: 1.5rem;
  filter: blur(40px);
  transition: filter 0.5s ease;
}

.about-card-wrapper:hover .about-card-glow {
  filter: blur(60px);
}

.about-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

.card-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.card-decoration-1 {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(219, 234, 254, 0.6) 0%, transparent 70%);
  margin-right: -8rem;
  margin-top: -8rem;
}

.card-decoration-2 {
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(207, 250, 254, 0.6) 0%, transparent 70%);
  margin-left: -6rem;
  margin-bottom: -6rem;
}

.about-text {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  position: relative;
  z-index: 10;
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1024px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Why Section */
.why-section {
  padding: 4.5rem 0 5rem;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background-color: white;
  padding: 1.25rem 1.5rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 8px 16px -4px rgba(34, 116, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.feature-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, transparent 100%);
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-bg {
  opacity: 1;
}

.feature-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 116, 255, 0.2);
}

.icon-svg {
  width: 1.125rem;
  height: 1.125rem;
  color: white;
}

.feature-text {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.5) 100%);
}

.services-content {
  max-width: 64rem;
  margin: 0 auto;
}

.services-intro {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-top: 2.5rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background-color: white;
  border-radius: 0.875rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 4px 12px -2px rgba(34, 116, 255, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}

.service-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(34, 116, 255, 0.4);
}

.service-item:hover .service-dot {
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(34, 116, 255, 0.6);
}

.service-text {
  color: #475569;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Process Section */
.process-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(34, 116, 255, 0.05), transparent 50%);
  pointer-events: none;
}

.process-steps {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: white;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.step-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.3) 0%, transparent 100%);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover .step-bg {
  opacity: 1;
}

.step-number {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  color: white;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(34, 116, 255, 0.25);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.35);
}

.step-text {
  position: relative;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.65;
  padding-top: 0.375rem;
  font-weight: 500;
}

/* Clients Section */
.clients-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}

.client-card {
  position: relative;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  text-align: center;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover {
  border-color: rgba(34, 116, 255, 0.25);
  box-shadow: 0 12px 24px -8px rgba(34, 116, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.client-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-card:hover .client-bg {
  opacity: 1;
}

.client-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #2274FF 0%, #1557cc 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(34, 116, 255, 0.3);
  transition: all 0.3s ease;
}

.client-card:hover .client-icon {
  transform: scale(1.1) rotate(3deg);
}

.icon-inner {
  width: 2rem;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 0.5rem;
}

.client-title {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.client-card-simple {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.client-card-simple:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.client-card-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(147, 51, 234, 0.3) 50%, rgba(6, 182, 212, 0.5) 100%);
  opacity: 0;
  border-radius: 1rem;
  transition: opacity 0.5s ease;
}

.client-card-simple:hover::before {
  opacity: 1;
}

.client-text {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  text-align: center;
  line-height: 1.75;
}

/* Rich Client Cards */

.clients-grid-rich.custom-voorwie-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.clients-grid-rich.custom-voorwie-grid .client-card-rich {
  width: calc(32% - 1.5rem);
  min-width: 280px;
  min-height: 440px;
  margin: 0;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .clients-grid-rich.custom-voorwie-grid {
    gap: 1.5rem;
  }
  .clients-grid-rich.custom-voorwie-grid .client-card-rich {
    width: calc(48% - 1rem);
    min-width: 240px;
  }
}

@media (max-width: 600px) {
  .clients-grid-rich.custom-voorwie-grid {
    gap: 1.25rem;
  }
  .clients-grid-rich.custom-voorwie-grid .client-card-rich {
    width: 100%;
    min-width: 0;
  }
}

/* Eye-catching, interactive card styles */
.interactive-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.90) 100%);
  border-radius: 1.75rem;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 10px 40px rgba(34,116,255,0.12), 0 4px 12px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.45s cubic-bezier(.4,0,.2,1);
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.interactive-card:hover {
  box-shadow: 0 20px 60px 0 rgba(34,116,255,0.25), 0 12px 32px rgba(0,0,0,0.12), inset 0 2px 4px rgba(34,116,255,0.08), 0 0 0 4px rgba(34,116,255,0.08);
  transform: translateY(-12px) scale(1.04) rotate(-1.5deg);
  border: 2px solid #2274FF;
  background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(240,247,255,0.98) 100%);
}

.gradient-border {
  border-radius: 1.75rem 1.75rem 0 0;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.gradient-border:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 40%, #60a5fa 70%, #a5b4fc 100%);
  opacity: 0.15;
  pointer-events: none;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { opacity: 0.15; transform: translateX(0) scale(1); }
  50% { opacity: 0.25; transform: translateX(5%) scale(1.05); }
}
.client-card-image img {
  position: relative;
  z-index: 1;
  border-radius: 1.75rem 1.75rem 0 0;
  box-shadow: 0 2px 20px rgba(34,116,255,0.12);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.interactive-card:hover .client-card-image img {
  filter: brightness(1.1) saturate(1.25) contrast(1.05) drop-shadow(0 8px 24px #2274FF44);
  transform: scale(1.1) rotate(-1.5deg);
}

.interactive-card .client-card-overlay {
  background: linear-gradient(180deg,rgba(34,116,255,0.08) 0%,rgba(34,116,255,0.28) 60%, rgba(15,23,42,0.15) 100%);
  opacity: 0.75;
  transition: all 0.4s ease;
}
.interactive-card:hover .client-card-overlay {
  background: linear-gradient(180deg,rgba(34,116,255,0.20) 0%,rgba(34,116,255,0.50) 60%, rgba(15,23,42,0.25) 100%);
  opacity: 1;
}

.interactive-card .client-card-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.95) 100%);
  box-shadow: 0 6px 20px rgba(34,116,255,0.20), 0 2px 8px rgba(0,0,0,0.08);
  border: 2px solid rgba(34,116,255,0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.interactive-card:hover .client-card-icon {
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 60%, #60a5fa 100%);
  border: 2px solid #60a5fa;
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 10px 30px rgba(34,116,255,0.40), 0 4px 12px rgba(34,116,255,0.30);
}
.interactive-card .client-icon-svg {
  color: #2274FF;
  filter: drop-shadow(0 2px 6px rgba(34,116,255,0.25));
  transition: all 0.3s ease;
}
.interactive-card:hover .client-icon-svg {
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(255,255,255,0.60)) drop-shadow(0 0 8px rgba(96,165,250,0.80));
  animation: iconPulse 1s ease infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.interactive-card .client-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  color: #0f172a;
  text-shadow: 0 2px 8px rgba(34,116,255,0.08);
  transition: all 0.35s ease;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.interactive-card:hover .client-card-title {
  color: transparent;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 50%, #60a5fa 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 6px 20px rgba(34,116,255,0.35);
  transform: translateX(3px);
}
.interactive-card .client-card-description {
  color: #475569;
  font-size: 1.0125rem;
  font-weight: 500;
  margin-top: 0.625rem;
  text-shadow: 0 1px 4px rgba(34,116,255,0.06);
  transition: all 0.3s ease;
  line-height: 1.7;
}
.interactive-card:hover .client-card-description {
  color: #1e293b;
  text-shadow: 0 2px 10px rgba(34,116,255,0.15);
  transform: translateX(2px);
}
.interactive-card:after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 1.75rem;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, rgba(34,116,255,0.15) 50%, transparent 100%);
  box-shadow: 0 0 40px 12px rgba(34,116,255,0.25), inset 0 0 20px rgba(96,165,250,0.20);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  animation: glowPulse 3s ease-in-out infinite;
}
.interactive-card:hover:after {
  opacity: 1;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 40px 12px rgba(34,116,255,0.25), inset 0 0 20px rgba(96,165,250,0.20); }
  50% { box-shadow: 0 0 60px 16px rgba(34,116,255,0.35), inset 0 0 30px rgba(96,165,250,0.30); }
}

.client-card-rich {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 480px;
}

.client-card-rich:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 116, 255, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(34, 116, 255, 0.3);
}

.client-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.client-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card-rich:hover .client-card-image img {
  transform: scale(1.08);
}

.client-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 116, 255, 0.05) 0%,
    rgba(34, 116, 255, 0.35) 100%
  );
  transition: opacity 0.4s ease;
}

.client-card-rich:hover .client-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(34, 116, 255, 0.15) 0%,
    rgba(34, 116, 255, 0.45) 100%
  );
}

.client-card-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 10;
}

.client-card-rich:hover .client-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
}

.client-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2274FF;
  transition: color 0.3s ease;
}

.client-card-rich:hover .client-icon-svg {
  color: white;
}

.client-card-content {
  padding: 1.5rem 1.5rem;
}

.client-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.client-card-rich:hover .client-card-title {
  color: #2274FF;
}

.client-card-description {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
  font-weight: 400;
}

/* Contact Section */
.contact-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, #2274FF 0%, #1e5dd6 40%, #1a4fb8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.contact-shape-1 {
  top: 2.5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-shape-2 {
  bottom: 2.5rem;
  left: 5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-content {
  max-width: 1024px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-company {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-value {
  font-size: 1.125rem;
  color: white;
  text-decoration: none;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-form-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.625rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(226, 232, 240, 0.6);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-textarea {
  resize: none;
}

.form-submit {
  width: 100%;
  background-color: white;
  color: #2274FF;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.form-submit:hover {
  background-color: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #cbd5e1;
  padding: 3.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(34, 116, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff 0%, #dbeafe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-text {
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

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

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

  .clients-grid-rich {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .client-card-image {
    height: 180px;
  }

  .client-card-rich {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

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

  .hero-text {
    font-size: 1.125rem;
  }

  .hero-container {
    padding: 6rem 1.5rem 9rem;
  }

  .about-section {
    padding: 5.5rem 0 6rem;
  }

  .about-card {
    padding: 2.5rem;
  }

  .about-text {
    font-size: 1.25rem;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .services-intro {
    font-size: 1.125rem;
  }

  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .step-text {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-grid-rich {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .client-card-image {
    height: 200px;
  }

  .client-card-rich {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

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

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-container,
  .section-container {
    padding: 0 2rem;
  }
}
