*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(34, 197, 94, 0.05) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(236, 72, 153, 0.05) 0px, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wl-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Scroll offset for navigation */
section {
  scroll-margin-top: 5px; 
}

/* HEADER */

.wl-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(209, 213, 219, 0.3);
}

.wl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 100%;
}

.wl-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.wl-logo-icon {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.wl-logo:hover .wl-logo-icon {
  transform: scale(1.05);
}

.wl-logo-text {
  font-size: 1.15rem;
  line-height: 1;
  color: #0f172a;
}

.wl-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #374151;
  flex-shrink: 0;
  font-weight: 500;
}

.wl-nav a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.15s ease;
}

.wl-nav a:hover {
  color: #2563eb;
}

.wl-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

.wl-nav a:hover::after {
  width: 100%;
}

/* BUTTONS */

.wl-btn {
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}

.wl-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  border: 1px solid transparent;
}

.wl-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.wl-btn-primary:active {
  transform: translateY(0);
}

.wl-btn-outline {
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: #2563eb;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.wl-btn-outline:hover {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.wl-btn-ghost {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.wl-btn-ghost:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.wl-btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.wl-btn-small.wl-btn-outline {
  flex-shrink: 0;
}

.wl-btn-full {
  width: 100%;
}

/* Scroll Down Indicator */
.wl-scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.wl-scroll-down:hover {
  opacity: 1;
}

.wl-scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #2563eb;
  border-radius: 20px;
  position: relative;
}

.wl-scroll-wheel {
  width: 4px;
  height: 8px;
  background: #2563eb;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

.wl-scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -5px;
}

.wl-scroll-arrows span {
  width: 10px;
  height: 10px;
  border-right: 2px solid #2563eb;
  border-bottom: 2px solid #2563eb;
  transform: rotate(45deg);
  margin: -3px 0;
  animation: scrollArrow 2s infinite;
  opacity: 0;
}

.wl-scroll-arrows span:nth-child(1) { animation-delay: 0s; }
.wl-scroll-arrows span:nth-child(2) { animation-delay: 0.15s; }
.wl-scroll-arrows span:nth-child(3) { animation-delay: 0.3s; }

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

@keyframes scrollArrow {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* HERO - Ultra-Modern Design */

.wl-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Simplified floating orbs matching Creatio style */
.wl-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.wl-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.wl-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.wl-hero-copy h1 {
  font-size: clamp(3rem, 5.5vw + 1rem, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
  font-weight: 800;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wl-hero-subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
  color: #475569;
  max-width: 36rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.wl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.wl-hero-actions .wl-btn-primary {
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
}

.wl-hero-actions .wl-btn-ghost {
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
}

.wl-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.wl-hero-meta span {
  padding: 0.5rem 1rem;
  position: relative;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  color: #1e40af;
  font-weight: 600;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.wl-hero-meta span:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.wl-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.wl-hero-card {
  background: transparent;
  border-radius: 24px;
  padding: 0;
  box-shadow: none;
  border: none;
  max-width: 480px;
  backdrop-filter: none;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.wl-hero-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

/* Enhanced Messenger Grid */
.wl-hero-messengers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  padding: 2rem;
}

/* Beautiful Floating Animation */
.wl-messenger-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(10px);
  animation: float-y 5s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

/* Staggered Floating Delays */
.wl-messenger-item:nth-child(1) { animation-delay: 0s; }
.wl-messenger-item:nth-child(2) { animation-delay: 2.5s; }
.wl-messenger-item:nth-child(3) { animation-delay: 1s; }
.wl-messenger-item:nth-child(4) { animation-delay: 3.5s; }
/* 5th is Spacer */
.wl-messenger-item:nth-child(6) { animation-delay: 1.5s; }
.wl-messenger-item:nth-child(7) { animation-delay: 4s; }
.wl-messenger-item:nth-child(8) { animation-delay: 0.5s; }
.wl-messenger-item:nth-child(9) { animation-delay: 3s; }

@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.wl-messenger-item:hover {
  background: #ffffff;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.2);
  border-color: #2563eb;
  z-index: 10;
  animation-play-state: paused;
}

.wl-hero-center-icon {
  position: absolute;
  top: 42.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
  z-index: 0;
  animation: pulse-ring 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

.wl-hero-center-icon svg {
  width: 40px;
  height: 40px;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.2);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Colorful messenger icons */
.wl-messenger-item:nth-child(1) svg { color: #2563eb; } /* Web - blue */
.wl-messenger-item:nth-child(2) svg { color: #7c3aed; } /* Mobile - purple */
.wl-messenger-item:nth-child(3) svg { color: #25D366; } /* WhatsApp - green */
.wl-messenger-item:nth-child(4) svg { color: #0084ff; } /* Messenger - blue */
.wl-messenger-item:nth-child(6) svg { color: #0088cc; } /* Telegram - cyan */
.wl-messenger-item:nth-child(7) svg { color: #7360f2; } /* Viber - purple */
.wl-messenger-item:nth-child(8) svg { color: #E4405F; } /* Instagram - pink */
.wl-messenger-item:nth-child(9) svg { color: #09B83E; } /* WeChat - green */

.wl-messenger-item svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.wl-messenger-item:hover svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transform: scale(1.1);
}

.wl-messenger-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

.wl-hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* SECTIONS */

.wl-section {
  padding: 6rem 0;
  background: transparent;
}

.wl-section-alt {
  background: transparent;
}

/* SOLUTIONS SECTION */
#solutions.wl-section {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(37,99,235,0.03) 50%, rgba(255,255,255,0) 100%);
  position: relative;
}

/* CREATIO INTEGRATION SECTION */

.wl-creatio-section {
  padding: 5rem 0;
  /* Removed specific background to smooth transition */
  background: transparent;
  position: relative;
  overflow: hidden;
}

.wl-creatio-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.wl-creatio-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.wl-creatio-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 50px;
  color: #ff6b00;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.wl-creatio-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 2.5rem;
}

.wl-creatio-features {
  display: grid;
  gap: 1.5rem;
}

.wl-creatio-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.wl-creatio-feature:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.1);
}

.wl-creatio-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 140, 0, 0.15) 100%);
  border-radius: 10px;
  color: #ff6b00;
}

.wl-creatio-feature h4 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.wl-creatio-feature p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

.wl-creatio-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wl-creatio-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 245, 0.98) 100%);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.15);
  max-width: 520px;
  width: 100%;
  backdrop-filter: blur(12px);
  animation: fadeInRight 0.8s ease-out 0.3s both;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.wl-creatio-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: visible;
  padding: 20px;
}

.wl-creatio-card-image svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.wl-creatio-card-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  animation: creatioGlow 6s ease-in-out infinite;
}

@keyframes creatioGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.wl-creatio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.wl-creatio-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wl-creatio-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.wl-creatio-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
}

.wl-creatio-logo svg {
  flex-shrink: 0;
}

.wl-creatio-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.15) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 600;
}

.wl-creatio-status svg {
  animation: pulse 2s ease-in-out infinite;
}

.wl-creatio-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wl-creatio-description-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

.wl-creatio-description-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

.wl-creatio-marketplace-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
}

.wl-creatio-marketplace-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
  background: linear-gradient(135deg, #FF7A10 0%, #FF9C10 100%);
}

.wl-creatio-marketplace-link svg {
  flex-shrink: 0;
}

.wl-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}

.wl-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  color: #2563eb;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.wl-section-badge svg {
  color: #2563eb;
}

.wl-section-header-left {
  text-align: left;
  margin-left: 0;
}

.wl-section-header h2 {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.wl-section-header p {
  margin: 0;
  color: #4b5563;
  font-size: 0.98rem;
}

.wl-grid {
  display: grid;
  gap: 2rem;
}

.wl-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wl-card {
  --card-accent: 37, 99, 235;
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 12px 40px -8px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(var(--card-accent), 0.8), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.wl-card::after {
  content: '';
  position: absolute;
  inset: -150%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.wl-card:hover::before {
  transform: translateX(100%);
}

.wl-card:hover::after {
  opacity: 0.5;
}

.wl-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow:
    0 28px 70px -12px rgba(0, 0, 0, 0.20),
    0 12px 35px -8px rgba(var(--card-accent), 0.30),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(255, 255, 255, 1);
}

.wl-card-soft {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%);
}

/* Product Card Variants - Unique color-driven styling */
.wl-card-blue { --card-accent: 37, 99, 235; }
.wl-card-purple { --card-accent: 124, 58, 237; }
.wl-card-indigo { --card-accent: 79, 70, 229; }
.wl-card-cyan { --card-accent: 8, 145, 178; }
.wl-card-teal { --card-accent: 15, 118, 110; }
.wl-card-pink { --card-accent: 190, 24, 93; }

/* Ensure content is above pseudo-elements */
.wl-card > * {
  position: relative;
  z-index: 1;
}

/* Vibrant gradient headings with shimmer effect */
.wl-card-blue h3, 
.wl-card-purple h3, 
.wl-card-indigo h3,
.wl-card-cyan h3,
.wl-card-teal h3,
.wl-card-pink h3 {
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  font-weight: 700;
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.025em;
}

.wl-card-blue:hover h3,
.wl-card-purple:hover h3,
.wl-card-indigo:hover h3,
.wl-card-cyan:hover h3,
.wl-card-teal:hover h3,
.wl-card-pink:hover h3 {
  background-position: right center;
  letter-spacing: -0.015em;
}

.wl-card-blue h3 { background-image: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #60a5fa 100%); }
.wl-card-purple h3 { background-image: linear-gradient(135deg, #6b21a8 0%, #7c3aed 50%, #c084fc 100%); }
.wl-card-indigo h3 { background-image: linear-gradient(135deg, #3730a3 0%, #4f46e5 50%, #818cf8 100%); }
.wl-card-cyan h3 { background-image: linear-gradient(135deg, #155e75 0%, #0891b2 50%, #22d3ee 100%); }
.wl-card-teal h3 { background-image: linear-gradient(135deg, #134e4a 0%, #0f766e 50%, #2dd4bf 100%); }
.wl-card-pink h3 { background-image: linear-gradient(135deg, #9f1239 0%, #be185d 50%, #f472b6 100%); }


.wl-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.wl-card p {
  margin: 0 0 1.3rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.wl-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 0.9rem;
  color: #475569;
}

.wl-list li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.wl-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 0.95rem;
}

.wl-list li + li {
  margin-top: 0.5rem;
}

/* STEPS */

.wl-steps {
  display: grid;
  gap: 1.4rem;
}

.wl-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.wl-step:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.wl-step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.wl-step h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.wl-step p {
  margin: 0;
  font-size: 0.92rem;
  color: #4b5563;
}

/* CONTACT - Modern & Minimal */

.wl-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: stretch;
}

.wl-contact-grid > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wl-contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.wl-contact-details > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wl-contact-details h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.wl-contact-details p {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 500;
}

.wl-contact-details a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wl-contact-details a:hover {
  color: #1d4ed8;
}

.wl-contact-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.wl-contact-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.wl-contact-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wl-contact-social-link:nth-child(1):hover {
  color: #0077b5;
  background: rgba(0, 119, 181, 0.1);
  border-color: #0077b5;
}

.wl-contact-social-link:nth-child(2):hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877f2;
}

.wl-contact-social-link:nth-child(3):hover {
  color: #0088cc;
  background: rgba(0, 136, 204, 0.1);
  border-color: #0088cc;
}

.wl-contact-social-link:nth-child(4):hover {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
}

.wl-contact-form {
  padding: 2rem 2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
  border: 2px solid rgba(37, 99, 235, 0.12);
  box-shadow: 
    0 20px 50px -12px rgba(37, 99, 235, 0.16),
    0 10px 25px -8px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.wl-contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #4f46e5, #7c3aed);
  opacity: 0.85;
}

.wl-contact-form:hover {
  box-shadow: 
    0 32px 80px -12px rgba(37, 99, 235, 0.22),
    0 16px 40px -8px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-2px);
}

.wl-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wl-field {
  margin-bottom: 1rem;
}

.wl-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.wl-field input,
.wl-field select,
.wl-field textarea {
  width: 100%;
  border-radius: 10px;
  border: 2px solid rgba(148, 163, 184, 0.3);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.98);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wl-field input:focus,
.wl-field select:focus,
.wl-field textarea:focus {
  border-color: #2563eb;
  box-shadow: 
    0 0 0 4px rgba(37, 99, 235, 0.1),
    0 4px 12px rgba(37, 99, 235, 0.15);
  background: #ffffff;
  transform: translateY(-2px);
}

.wl-field input::placeholder,
.wl-field textarea::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.wl-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.65;
}

.wl-form-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
}

.wl-form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

.wl-form-message-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.15) 100%);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.wl-form-message-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.15) 100%);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.wl-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* FOOTER */

.wl-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.6rem 0 2rem;
  background: #ffffff;
}

.wl-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1.4rem;
  align-items: center;
}

.wl-footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.wl-footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.wl-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.wl-footer-links a:hover {
  color: #111827;
}

.wl-footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .wl-header-inner {
    gap: 1rem;
  }

  .wl-nav {
    display: none;
  }

  .wl-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .wl-hero-visual {
    justify-content: flex-start;
  }

  .wl-hero-card {
    max-width: 100%;
  }

  .wl-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wl-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wl-contact-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .wl-footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .wl-creatio-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .wl-creatio-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .wl-hero {
    padding-top: 3.3rem;
  }

  .wl-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wl-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .wl-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .wl-header-inner {
    height: 64px;
  }

  .wl-hero-card {
    margin: 0 auto;
  }

  .wl-hero-messengers {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    padding: 1.25rem;
    justify-items: center;
  }

  .wl-hero-messengers > div:nth-child(5) {
    display: none;
  }

  .wl-hero-center-icon {
    display: none;
  }

  .wl-messenger-item {
    padding: 0.875rem 0.625rem;
    gap: 0.5rem;
    border-radius: 14px;
    width: 100%;
    max-width: 140px;
  }

  .wl-messenger-item svg {
    width: 18px;
    height: 18px;
  }

  .wl-messenger-item span {
    font-size: 0.6875rem;
  }
}

