/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #50a5f1;
  --secondary-blue: #3c4f76;
  --tertiary-blue: #597ba9;
  --dark-bg: #1f2a44;
  --light-gray: #6b7180;
  --bg-light: #f7f9fc;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  color: #1f2a44;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*Navbar Styles - Dark Theme */
.navbar {
  background: linear-gradient(135deg, #0a0d1a 0%, #1a1d2e 50%, #0a0d1a 100%);
  backdrop-filter: blur(30px);
  padding: 1.2rem 0;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(80, 165, 241, 0.1);
}

.navbar.scrolled {
  background: linear-gradient(135deg, #000000 0%, #0f1117 50%, #000000 100%);
  box-shadow: 0 12px 80px rgba(0, 0, 0, 0.8);
  padding: 0.7rem 0;
  border-bottom-color: rgba(80, 165, 241, 0.2);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(80, 165, 241, 0.6);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.brand-icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 16px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  z-index: -1;
}

.brand-icon:hover {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 10px 50px rgba(80, 165, 241, 0.8);
}

.brand-icon:hover::before {
  opacity: 0.7;
}

.brand-icon i {
  color: white;
  font-size: 1.3rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 500;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  padding: 0.7rem 1.4rem !important;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.15), rgba(99, 102, 241, 0.15));
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), #6366f1, var(--secondary-blue));
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(80, 165, 241, 0.6);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover {
  color: white !important;
  transform: translateY(-2px);
}

.nav-link:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.6rem 1.8rem;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(80, 165, 241, 0.5);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 14px;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-gradient:hover {
  box-shadow: 0 10px 50px rgba(80, 165, 241, 0.8);
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, #5eb3ff, #4a64a0);
}

.btn-gradient:hover::before {
  opacity: 1;
}

/* Hero Section - God Level */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 30%, #e1f2ff 70%, #dff0ff 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(80, 165, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 10s ease-in-out infinite, pulse 5s ease-in-out infinite;
}

.hero-blur-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(80, 165, 241, 0.4), transparent);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero-blur-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

.hero-blur-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.icon-float {
  position: absolute;
  font-size: 3.5rem;
  color: rgba(80, 165, 241, 0.2);
  animation: float 8s ease-in-out infinite, rotate 20s linear infinite;
  transition: all 0.3s ease;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.icon-float:nth-child(1) {
  animation-delay: 0s;
}
.icon-float:nth-child(2) {
  animation-delay: 1s;
}
.icon-float:nth-child(3) {
  animation-delay: 2s;
}
.icon-float:nth-child(4) {
  animation-delay: 3s;
}
.icon-float:nth-child(5) {
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
  75% {
    transform: translateY(-40px) rotate(3deg);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  animation: scaleIn 0.6s ease;
  border: 1px solid rgba(80, 165, 241, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--light-gray);
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: slideUp 0.8s ease 0.4s both;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: slideUp 0.8s ease 0.6s both;
}

.btn-hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border: none;
  padding: 1.1rem 2.8rem;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 14px;
  box-shadow: 0 12px 45px rgba(80, 165, 241, 0.5);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.btn-hero::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 ease;
}

.btn-hero::after {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 16px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover::after {
  opacity: 0.8;
}

.btn-hero:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 60px rgba(80, 165, 241, 0.7);
}

.btn-outline-dark {
  border: 2px solid #1f2a44;
  color: #1f2a44;
  background: white;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: #1f2a44;
  color: white;
  transform: translateY(-4px);
}

.social-platforms {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem 0;
  animation: slideUp 0.8s ease 0.8s both;
}

.platform-icon {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.platform-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.platform-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 24px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.platform-icon:hover::before {
  opacity: 1;
}

.platform-icon:hover::after {
  opacity: 0.8;
}

.platform-icon i {
  font-size: 2.2rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.platform-icon:hover {
  transform: translateY(-20px) scale(1.2) rotateY(10deg) rotateX(5deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.platform-icon:hover i {
  transform: scale(1.2) rotate(5deg);
}

.platform-instagram::after {
  background: linear-gradient(135deg, #e1306c, #fd1d1d);
}

.platform-youtube::after {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.platform-facebook::after {
  background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.platform-tiktok::after {
  background: linear-gradient(135deg, #000000, #25f4ee);
}

.platform-twitter::after {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.hero-stats {
  margin-top: 4rem;
  animation: slideUp 0.8s ease 1s both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.2rem 1.2rem;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(80, 165, 241, 0.2);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.1), rgba(99, 102, 241, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 70px rgba(80, 165, 241, 0.3);
  border-color: var(--primary-blue);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-value {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), #6366f1, var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.6rem;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}

.stat-card:hover .stat-value {
  transform: scale(1.15);
}

.stat-label {
  color: var(--light-gray);
  font-weight: 600;
  font-size: 0.9rem;
}

/* What is SMM Section */
.what-is-smm-section {
  padding: 120px 0;
  background: linear-gradient(135deg, white 0%, #f8fbff 50%, white 100%);
  position: relative;
  overflow: hidden;
}

.what-is-smm-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80, 165, 241, 0.3), transparent);
}

.what-is-smm-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80, 165, 241, 0.3), transparent);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.1), rgba(99, 102, 241, 0.1));
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(80, 165, 241, 0.3);
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--secondary-blue);
}

.section-badge i {
  color: var(--primary-blue);
  animation: pulse 2s ease-in-out infinite;
}

.section-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.2rem;
  color: var(--light-gray);
  font-weight: 500;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.feature-box {
  background: linear-gradient(135deg, white, rgba(80, 165, 241, 0.03));
  border: 2px solid rgba(80, 165, 241, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.08), rgba(99, 102, 241, 0.08));
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-box:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 70px rgba(80, 165, 241, 0.3);
  border-color: var(--primary-blue);
}

.feature-box:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 40px rgba(80, 165, 241, 0.4);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}

.feature-box:hover .feature-icon {
  transform: scale(1.2) rotate(-10deg);
  box-shadow: 0 20px 60px rgba(80, 165, 241, 0.6);
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-box h4 {
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 0.8rem;
}

.feature-box p {
  color: var(--light-gray);
  margin: 0;
}

/* How to Use Section */
.how-to-use-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef5ff 50%, #f7f9fc 100%);
  position: relative;
  overflow: hidden;
}

.how-to-use-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(80, 165, 241, 0.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(99, 102, 241, 0.08), transparent 40%);
}

.how-to-use-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(80, 165, 241, 0.4), transparent);
}

.step-card {
  background: white;
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  border: 2px solid transparent;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-card:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.08));
}

.step-card:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.08));
}

.step-card:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(220, 38, 38, 0.08));
}

.step-card:nth-child(4)::before {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.08));
}

.step-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.step-card:nth-child(1):hover {
  border-color: #3b82f6;
  box-shadow: 0 35px 80px rgba(59, 130, 246, 0.3);
}

.step-card:nth-child(2):hover {
  border-color: #a855f7;
  box-shadow: 0 35px 80px rgba(168, 85, 247, 0.3);
}

.step-card:nth-child(3):hover {
  border-color: #f97316;
  box-shadow: 0 35px 80px rgba(249, 115, 22, 0.3);
}

.step-card:nth-child(4):hover {
  border-color: #10b981;
  box-shadow: 0 35px 80px rgba(16, 185, 129, 0.3);
}

.step-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.step-icon {
  width: 85px;
  height: 85px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-card:hover .step-icon {
  transform: scale(1.2) rotate(-15deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.step-icon i {
  font-size: 2rem;
  color: white;
}

.step-icon-1 {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.step-icon-2 {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.step-icon-3 {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.step-icon-4 {
  background: linear-gradient(135deg, #10b981, #059669);
}

.step-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.step-card:nth-child(1) .step-number {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.step-card:nth-child(2) .step-number {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.step-card:nth-child(3) .step-number {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.step-card:nth-child(4) .step-number {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.step-card h4 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-bg);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.step-card:hover h4 {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-card p {
  color: var(--light-gray);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* All Services Section */
.all-services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, white 0%, #f0f7ff 25%, #e6f2ff 50%, #f0f7ff 75%, white 100%);
  position: relative;
  overflow: hidden;
}

.all-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(80, 165, 241, 0.06), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.06), transparent 50%);
}

.all-services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(80, 165, 241, 0.5), transparent);
}

.service-card {
  background: white;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  border: 2px solid rgba(80, 165, 241, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.1), rgba(99, 102, 241, 0.1));
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-20px) scale(1.04);
  box-shadow: 0 35px 80px rgba(80, 165, 241, 0.35);
  border-color: var(--primary-blue);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  width: 85px;
  height: 85px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-icon {
  transform: scale(1.25) rotate(-12deg);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.35);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-instagram {
  background: linear-gradient(135deg, #e1306c, #fd1d1d);
}

.service-facebook {
  background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.service-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.service-tiktok {
  background: linear-gradient(135deg, #000000, #69c9d0);
}

.service-twitter {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.service-telegram {
  background: linear-gradient(135deg, #0088cc, #229ed9);
}

.service-spotify {
  background: linear-gradient(135deg, #1db954, #1ed760);
}

.service-website {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.service-seo {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.service-card h4 {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--dark-bg);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card:hover h4 {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.service-card p {
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-link {
  color: var(--primary-blue);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link::after {
  content: "→";
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

.service-card:hover .service-link::after {
  transform: translateX(8px);
}

/* Benefits Section */
.benefits-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef5ff 25%, #e6f2ff 50%, #eef5ff 75%, #f7f9fc 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(80, 165, 241, 0.5), transparent);
}

.benefits-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(80, 165, 241, 0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.06), transparent 40%);
}

.benefit-card {
  background: white;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  display: flex;
  gap: 2.5rem;
  border: 2px solid transparent;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 0;
}

.benefit-card:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(249, 115, 22, 0.1));
}

.benefit-card:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(5, 150, 105, 0.1));
}

.benefit-card:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
}

.benefit-card:nth-child(4)::before {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.benefit-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
}

.benefit-card:nth-child(1):hover {
  border-color: #facc15;
  box-shadow: 0 35px 90px rgba(250, 204, 21, 0.3);
}

.benefit-card:nth-child(2):hover {
  border-color: #22c55e;
  box-shadow: 0 35px 90px rgba(34, 197, 94, 0.3);
}

.benefit-card:nth-child(3):hover {
  border-color: #3b82f6;
  box-shadow: 0 35px 90px rgba(59, 130, 246, 0.3);
}

.benefit-card:nth-child(4):hover {
  border-color: #a855f7;
  box-shadow: 0 35px 90px rgba(168, 85, 247, 0.3);
}

.benefit-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.benefit-icon {
  width: 95px;
  height: 95px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(-15deg);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.benefit-icon i {
  font-size: 2.5rem;
  color: white;
}

.benefit-icon-1 {
  background: linear-gradient(135deg, #facc15, #f97316);
}

.benefit-icon-2 {
  background: linear-gradient(135deg, #22c55e, #059669);
}

.benefit-icon-3 {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.benefit-icon-4 {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.benefit-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.benefit-content h4 {
  font-weight: 800;
  font-size: 2rem;
  color: var(--dark-bg);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.benefit-card:hover .benefit-content h4 {
  background: linear-gradient(135deg, var(--primary-blue), #6366f1, var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(5px);
}

.benefit-content p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.benefit-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.benefit-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  transition: all 0.3s ease;
}

.benefit-card:nth-child(1) .benefit-stat .stat-value {
  background: linear-gradient(135deg, #facc15, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card:nth-child(2) .benefit-stat .stat-value {
  background: linear-gradient(135deg, #22c55e, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card:nth-child(3) .benefit-stat .stat-value {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card:nth-child(4) .benefit-stat .stat-value {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card:hover .benefit-stat .stat-value {
  transform: scale(1.1);
}

.benefit-stat .stat-label {
  color: var(--light-gray);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 120px 0;
  background: linear-gradient(135deg, white 0%, #f8fbff 50%, white 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(80, 165, 241, 0.5), transparent);
}

.why-choose-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(80, 165, 241, 0.04), transparent 60%);
}

.why-choose-card {
  background: white;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  border: 2px solid rgba(80, 165, 241, 0.1);
}

.why-choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.08), rgba(99, 102, 241, 0.08));
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.why-choose-card:hover {
  transform: translateY(-20px) scale(1.04);
  box-shadow: 0 35px 80px rgba(80, 165, 241, 0.35);
  border-color: var(--primary-blue);
}

.why-choose-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.2) rotate(-12deg);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.35);
}

.why-choose-icon i {
  font-size: 1.8rem;
  color: white;
}

.why-icon-1 {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.why-icon-2 {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.why-icon-3 {
  background: linear-gradient(135deg, #10b981, #059669);
}

.why-icon-4 {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.why-icon-5 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.why-icon-6 {
  background: linear-gradient(135deg, #475569, #1e293b);
}

.why-choose-card h4 {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--dark-bg);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.why-choose-card:hover h4 {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.why-choose-card p {
  color: var(--light-gray);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* FAQs Section */
.faqs-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef5ff 25%, #e6f2ff 50%, #eef5ff 75%, #f7f9fc 100%);
  position: relative;
  overflow: hidden;
}

.faqs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(80, 165, 241, 0.5), transparent);
}

.faqs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(80, 165, 241, 0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.08), transparent 40%),
    linear-gradient(135deg, transparent 30%, rgba(80, 165, 241, 0.03) 50%, transparent 70%);
}

.faq-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 40px rgba(80, 165, 241, 0.3);
}

.faq-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.accordion-item {
  background: white;
  border: none;
  border-radius: 20px !important;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.accordion-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.05), rgba(99, 102, 241, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.accordion-item:hover {
  box-shadow: 0 20px 60px rgba(80, 165, 241, 0.25);
  transform: translateY(-8px);
}

.accordion-item:hover::before {
  opacity: 1;
}

.accordion-button {
  background: white;
  color: var(--dark-bg);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.8rem 2.5rem;
  border: none;
  box-shadow: none !important;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.12), rgba(99, 102, 241, 0.12));
  color: var(--primary-blue);
}

.accordion-button::after {
  background-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 1.5rem 2rem 2rem;
  color: var(--light-gray);
  line-height: 1.8;
  font-size: 1rem;
}

/* Final CTA Section */
.final-cta-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1d2e 25%, #2d3748 50%, #1a1d2e 75%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(80, 165, 241, 0.15), transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.15), transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

.cta-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 165, 241, 0.3), transparent);
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.cta-particle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.cta-particle-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  animation-delay: 2s;
}

.cta-particle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

.cta-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-section .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  background: transparent;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.final-cta-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-4px);
}

/* Legal pages */
.legal-body {
  background: var(--bg-light);
}

.legal-main {
  padding-top: 0;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 90px;
  background: linear-gradient(135deg, #ffffff 0%, #e8f2ff 40%, #d9eaff 100%);
}

.legal-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(80, 165, 241, 0.15), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.15), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.12), transparent 45%);
  pointer-events: none;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(80, 165, 241, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.legal-pill .pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-blue);
  box-shadow: 0 0 0 8px rgba(80, 165, 241, 0.15);
  animation: pulse 2s ease-in-out infinite;
}

.legal-title {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0f172a;
  position: relative;
  z-index: 1;
}

.legal-subtitle {
  font-size: 1.05rem;
  max-width: 820px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-meta {
  font-weight: 600;
  color: var(--secondary-blue);
}

.legal-summary-card {
  background: #0a0d1a;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.legal-summary-card h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-summary-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.legal-summary-card li {
  position: relative;
  padding-left: 1.2rem;
}

.legal-summary-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
  box-shadow: 0 0 0 8px rgba(80, 165, 241, 0.1);
}

.legal-content-section {
  padding: 70px 0 110px;
}

.legal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(80, 165, 241, 0.12);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.legal-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.legal-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(80, 165, 241, 0.4);
  flex-shrink: 0;
}

.legal-item-body h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.legal-item-body p {
  margin-bottom: 0.75rem;
  color: #475569;
  line-height: 1.65;
}

.legal-side-card {
  background: #0a0d1a;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-side-card + .legal-side-card {
  margin-top: 1rem;
}

.legal-side-card h4 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.support-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(80, 165, 241, 0.45);
}

.support-link {
  color: #fff;
  text-decoration: none;
}

.support-link:hover {
  color: var(--primary-blue);
}

.legal-side-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.legal-side-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-side-links a:hover {
  color: #fff;
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.12);
}

/* About page - Professional Design */
.about-body {
  background: var(--bg-light);
  color: #0f172a;
}

.about-hero-pro {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0d1a 0%, #1a1d2e 50%, #0a0d1a 100%);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 15s ease-in-out infinite;
}

.hero-circle-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(80, 165, 241, 0.4), transparent);
  top: -100px;
  left: -100px;
}

.hero-circle-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

.hero-circle-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent);
  top: 40%;
  left: 50%;
  animation-delay: 6s;
}

.about-pill-pro {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  background: rgba(80, 165, 241, 0.15);
  border: 1px solid rgba(80, 165, 241, 0.3);
  color: #50a5f1;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.about-hero-title {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.15;
}

.about-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 550px;
}

.about-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-primary {
  border: 2px solid rgba(80, 165, 241, 0.4);
  color: #50a5f1;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: rgba(80, 165, 241, 0.15);
  border-color: #50a5f1;
  color: #fff;
  transform: translateY(-2px);
}

.about-hero-visual {
  position: relative;
  height: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visual-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
}

.visual-card i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: #50a5f1;
}

.visual-card span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1.05rem;
}

.visual-card:hover {
  transform: translateY(-8px);
  background: rgba(80, 165, 241, 0.15);
  border-color: rgba(80, 165, 241, 0.4);
  box-shadow: 0 20px 50px rgba(80, 165, 241, 0.3);
}

.visual-card-1 {
  animation-delay: 0.1s;
}

.visual-card-2 {
  animation-delay: 0.2s;
  margin-top: 2rem;
}

.visual-card-3 {
  animation-delay: 0.3s;
  margin-top: 1rem;
}

.visual-card-4 {
  animation-delay: 0.4s;
  margin-top: 3rem;
}

.about-stats-section {
  padding: 80px 0;
  background: #ffffff;
}

.stat-card {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(80, 165, 241, 0.3);
}

.stat-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #64748b;
  font-weight: 600;
  margin: 0;
}

.about-story-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.section-header-pro {
  margin-bottom: 3rem;
}

.section-header-pro.text-start {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(80, 165, 241, 0.12);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title-pro {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.section-desc-pro {
  font-size: 1.1rem;
  color: #475569;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.story-content {
  display: grid;
  gap: 2rem;
}

.story-block {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.story-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(80, 165, 241, 0.3);
}

.story-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.story-text h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.story-text p {
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.story-visual {
  display: grid;
  gap: 1.5rem;
}

.story-quote-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #334155;
  line-height: 1.8;
  margin: 2rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-weight: 700;
  color: #0f172a;
}

.story-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-item {
  background: linear-gradient(135deg, #0a0d1a 0%, #1a1d2e 100%);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #50a5f1;
  margin-bottom: 0.25rem;
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-values-section {
  padding: 90px 0;
  background: #ffffff;
}

.value-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  border-color: rgba(80, 165, 241, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 30px rgba(80, 165, 241, 0.3);
}

.value-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.value-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.value-desc {
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.about-features-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.feature-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

.feature-check {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(80, 165, 241, 0.3);
}

.feature-check i {
  color: #ffffff;
  font-size: 1.2rem;
}

.feature-content h5 {
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.feature-content p {
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.features-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: relative;
}

.feature-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  border-color: rgba(80, 165, 241, 0.2);
}

.feature-box i {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-box h5 {
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.feature-box p {
  color: #64748b;
  margin: 0;
  font-size: 0.9rem;
}

.feature-box-2,
.feature-box-4 {
  margin-top: 2rem;
}

.about-commitment-section {
  padding: 90px 0;
  background: #ffffff;
}

.commitment-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.commitment-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  height: 100%;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.commitment-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(80, 165, 241, 0.3);
}

.commitment-icon i {
  font-size: 1.6rem;
  color: #ffffff;
}

.commitment-card h4 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.commitment-card p {
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.about-cta-pro-section {
  padding: 90px 0 140px;
  background: linear-gradient(135deg, #1a1d3a 0%, #2a2d4a 20%, #1e2244 40%, #252850 60%, #1a1d3a 80%, #0f1128 100%);
  position: relative;
  overflow: hidden;
}

.about-cta-pro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(80, 165, 241, 0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.2), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.15), transparent 60%);
  pointer-events: none;
  animation: gradientShift 12s ease-in-out infinite;
}

.about-cta-pro-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(90deg, rgba(80, 165, 241, 0.03) 0px, transparent 2px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(80, 165, 241, 0.03) 0px, transparent 2px, transparent 40px);
  pointer-events: none;
  opacity: 0.5;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) rotate(2deg);
  }
}

.cta-pro-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-pro-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(80, 165, 241, 0.2), rgba(99, 102, 241, 0.2));
  border: 1px solid rgba(80, 165, 241, 0.4);
  color: #70b5ff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(80, 165, 241, 0.2);
}

.cta-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-info-item i {
  color: #50a5f1;
  font-size: 1.1rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .about-hero-pro {
    padding: 140px 0 80px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-visual {
    height: auto;
    margin-top: 3rem;
  }

  .visual-card-2,
  .visual-card-3,
  .visual-card-4 {
    margin-top: 0;
  }

  .story-visual {
    margin-top: 3rem;
  }

  .features-visual {
    margin-top: 3rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-visual {
    grid-template-columns: 1fr;
  }

  .visual-card {
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title-pro {
    font-size: 1.8rem;
  }

  .story-block {
    flex-direction: column;
    gap: 1rem;
  }

  .story-metrics {
    grid-template-columns: 1fr;
  }

  .features-visual {
    grid-template-columns: 1fr;
  }

  .feature-box-2,
  .feature-box-4 {
    margin-top: 0;
  }

  .cta-title {
    font-size: 1.75rem;
  }
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, #000000 0%, #0a0d1a 25%, #1a1d2e 50%, #0a0d1a 75%, #000000 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 100px 0 40px;
  position: relative;
  border-top: 2px solid rgba(80, 165, 241, 0.2);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(80, 165, 241, 0.08), transparent 60%);
  pointer-events: none;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  margin: 1.5rem 0;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(80, 165, 241, 0.12);
  border: 2px solid rgba(80, 165, 241, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-links a:hover {
  background: transparent;
  color: white;
  transform: translateY(-8px) scale(1.1);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(80, 165, 241, 0.5);
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a i {
  position: relative;
  z-index: 1;
}

.footer-heading {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 10px;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.25rem rgba(80, 165, 241, 0.25);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    margin-top: 3rem;
  }

  .benefit-card {
    flex-direction: column;
  }

  .legal-hero {
    padding: 140px 0 70px;
  }

  .legal-summary-card {
    margin-top: 1rem;
  }

  .legal-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .social-platforms {
    gap: 1rem;
  }

  .platform-icon {
    width: 60px;
    height: 60px;
  }

  .platform-icon i {
    font-size: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .legal-list-item {
    flex-direction: column;
  }

  .legal-number {
    width: 42px;
    height: 42px;
  }
}
