@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes floatReverse {

  0%,
  100% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(0px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.98);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
  }
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 50px rgba(0, 102, 255, 0.5);
  }
}

@keyframes glowAccent {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
  }

  50% {
    box-shadow: 0 0 50px rgba(0, 212, 170, 0.5);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes shimmerLight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes meshMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideInUp 0.6s ease-out forwards;
}

.animate-slide-down {
  animation: slideInDown 0.6s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

.animate-rotate {
  animation: rotate 20s linear infinite;
}

.animate-rotate-slow {
  animation: rotateSlow 40s linear infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-shimmer {
  position: relative;
  overflow: hidden;
}

.animate-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmerLight 2s infinite;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

.animate-delay-6 {
  animation-delay: 0.6s;
}

.animate-delay-7 {
  animation-delay: 0.7s;
}

.animate-delay-8 {
  animation-delay: 0.8s;
}

.animate-delay-9 {
  animation-delay: 0.9s;
}

.animate-delay-10 {
  animation-delay: 1s;
}

.animate-delay-11 {
  animation-delay: 1.1s;
}

.animate-delay-12 {
  animation-delay: 1.2s;
}

.animate-delay-13 {
  animation-delay: 1.3s;
}

.animate-delay-14 {
  animation-delay: 1.4s;
}

.animate-delay-15 {
  animation-delay: 1.5s;
}

.animate-delay-16 {
  animation-delay: 1.6s;
}

.animate-delay-17 {
  animation-delay: 1.7s;
}

.animate-delay-18 {
  animation-delay: 1.8s;
}

.animate-delay-19 {
  animation-delay: 1.9s;
}

.animate-delay-20 {
  animation-delay: 2s;
}

.duration-fast {
  animation-duration: 0.3s;
}

.duration-normal {
  animation-duration: 0.6s;
}

.duration-slow {
  animation-duration: 1s;
}

.duration-slower {
  animation-duration: 2s;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.hover-grow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-grow:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.3);
}

.hover-glow-accent {
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow-accent:hover {
  box-shadow: 0 0 40px rgba(0, 212, 170, 0.3);
}

.hover-rotate {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-tilt {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-tilt:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

.stagger-children>*:nth-child(1) {
  animation-delay: 0s;
}

.stagger-children>*:nth-child(2) {
  animation-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
  animation-delay: 0.2s;
}

.stagger-children>*:nth-child(4) {
  animation-delay: 0.3s;
}

.stagger-children>*:nth-child(5) {
  animation-delay: 0.4s;
}

.stagger-children>*:nth-child(6) {
  animation-delay: 0.5s;
}

.stagger-children>*:nth-child(7) {
  animation-delay: 0.6s;
}

.stagger-children>*:nth-child(8) {
  animation-delay: 0.7s;
}

.stagger-children>*:nth-child(9) {
  animation-delay: 0.8s;
}

.stagger-children>*:nth-child(10) {
  animation-delay: 0.9s;
}

.stagger-children>*:nth-child(11) {
  animation-delay: 1s;
}

.stagger-children>*:nth-child(12) {
  animation-delay: 1.1s;
}

.loading-skeleton {
  background: linear-gradient(90deg, #E5E7EB 0%, #F3F4F6 50%, #E5E7EB 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.5rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E5E7EB;
  border-top-color: #0066FF;
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-scale {
    opacity: 1;
    transform: none;
  }
}

.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-custom:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 40px -10px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px -15px rgba(0, 102, 255, 0.5);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background: #FFFFFF;
  color: #0F172A;
  border: 2px solid #E5E7EB;
}

.btn-secondary:hover:not(:disabled) {
  background: #F9FAFB;
  border-color: #0066FF;
  color: #0066FF;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-outline {
  background: transparent;
  color: #0066FF;
  border: 2px solid #0066FF;
}

.btn-outline:hover:not(:disabled) {
  background: #0066FF;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px rgba(0, 102, 255, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-ghost:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  padding: 0.75rem;
  width: 48px;
  height: 48px;
}

.btn-icon i {
  font-size: 1.25rem;
}

.card-custom {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #F3F4F6;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-dark {
  background: #1E293B;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dark:hover {
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.3);
}

.card-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
}

.card-feature {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #F3F4F6;
}

.card-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-feature {
  text-align: center;
  padding: 3rem;
}

.card-feature .icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  border-radius: 1rem;
  color: #FFFFFF;
  font-size: 28px;
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 40px -10px rgba(0, 102, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-feature h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.card-feature p {
  color: #4B5563;
  line-height: 1.7;
  margin: 0;
}

.card-feature:hover {
  border-color: #0066FF;
}

.card-feature:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 60px -15px rgba(0, 102, 255, 0.5);
}

.badge-custom,
.floating-card .card-badge,
.pricing-card.featured .badge-featured,
.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.badge-primary,
.badge-label {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #FFFFFF;
}


/* Favicon accents (Pricing) */
.badge-favicon {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px;
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.35);
}

/* Pricing: plan header with brand icon */
.pricing-card .plan-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pricing-card .plan-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pricing-card .plan-icon i {
  font-size: 18px;
  line-height: 1;
}

.pricing-card .plan-icon-basic {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
}

.pricing-card .plan-icon-pro {
  background: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
}

.pricing-card .plan-icon-enterprise {
  background: linear-gradient(135deg, #0EA5E9 0%, #22C55E 100%);
}

.badge-secondary {
  background: #0F172A;
  color: #FFFFFF;
}

.badge-outline {
  background: transparent;
  color: #0066FF;
  border: 2px solid #0066FF;
}

.badge-success {
  background: rgba(0, 200, 83, 0.15);
  color: #00C853;
}

.badge-info {
  background: rgba(0, 176, 255, 0.15);
  color: #00B0FF;
}

.badge-warning {
  background: rgba(255, 179, 0, 0.15);
  color: rgb(204, 143.2, 0);
}

.badge-danger {
  background: rgba(255, 61, 87, 0.15);
  color: #FF3D57;
}

.badge-label {
  margin-bottom: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 5;
}

.section-title .badge-label {
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 1.75rem;
  }
}

.section-title h2 span {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  font-size: 1.05rem;
  color: #4B5563;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-title.section-title-light h2 {
  color: #FFFFFF;
}

.section-title.section-title-light p {
  color: #9CA3AF;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  border: 2px solid #E5E7EB;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card .plan-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.pricing-card .plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.pricing-card .plan-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
}

.pricing-card .plan-price .amount {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-card .plan-price .period {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 500;
  margin-left: 0.25rem;
}

.pricing-card .plan-description {
  color: #6B7280;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  min-height: auto;
}

.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.pricing-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  color: #374151;
  font-size: 0.9rem;
  border-bottom: 1px solid #F3F4F6;
}

.pricing-card .plan-features li:last-child {
  border-bottom: none;
}

.pricing-card .plan-features li i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  border-color: #0066FF;
  box-shadow: 0 15px 40px -10px rgba(0, 102, 255, 0.35);
  transform: scale(1.02);
  z-index: 2;
}

.pricing-card.featured::before {
  opacity: 1;
}

.pricing-card.featured .badge-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #FFFFFF;
  font-size: 0.7rem;
  padding: 0.3rem 0.75rem;
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(0, 102, 255, 0.45);
}

/* Pricing Grid Layout */
.pricing-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
}

.pricing-section .row>[class*=col-] {
  padding: 0;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .pricing-section .col-lg-4 {
    width: calc(33.333% - 1rem);
    max-width: 380px;
  }
}

@media (max-width: 991px) {
  .pricing-section .row {
    flex-direction: column;
    align-items: center;
  }

  .pricing-section .col-lg-4,
  .pricing-section .col-md-6 {
    width: 100%;
    max-width: 400px;
  }
}

/* Pricing Section Dark Theme */
.pricing-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(at 30% 20%, rgba(0, 102, 255, 0.12) 0px, transparent 50%),
    radial-gradient(at 70% 80%, rgba(0, 212, 170, 0.08) 0px, transparent 50%);
  pointer-events: none;
}

.pricing-section .section-title h2 {
  color: #FFFFFF;
}

.pricing-section .section-title h2 span {
  background: linear-gradient(135deg, #00D4AA 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-section .section-title p {
  color: #94A3B8;
}

.pricing-section .pricing-note p {
  color: #64748B;
}

.pricing-section .pricing-note a {
  color: #00D4AA;
}

.pricing-section .pricing-note a:hover {
  color: #0066FF;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 1rem;
  border: 2px solid #F3F4F6;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: #E5E7EB;
}

.faq-item.active {
  border-color: #0066FF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question {
  color: #0066FF;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #0066FF;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
  color: #0066FF;
}

.faq-question i {
  font-size: 1.25rem;
  color: #9CA3AF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 2rem 2rem;
  color: #4B5563;
  line-height: 1.8;
  margin: 0;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #F3F4F6;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-card {
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card .testimonial-header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 575px) {
  .testimonial-card .testimonial-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.testimonial-card .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  object-fit: cover;
  border: 4px solid #E6F0FF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.testimonial-card .testimonial-header .testimonial-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.testimonial-card .testimonial-header .testimonial-info .role {
  color: #6B7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.testimonial-card .testimonial-header .testimonial-info .rating-stars {
  color: #FFB300;
  font-size: 1.125rem;
}

.testimonial-card .testimonial-quote {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.9;
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}

.testimonial-card .testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3.75rem;
  color: #CCE0FF;
  font-family: Georgia, serif;
  line-height: 1;
}

.input-group-custom {
  margin-bottom: 1.5rem;
}

.input-group-custom label {
  display: block;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.input-group-custom input,
.input-group-custom textarea,
.input-group-custom select {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #0F172A;
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group-custom input::placeholder,
.input-group-custom textarea::placeholder,
.input-group-custom select::placeholder {
  color: #9CA3AF;
}

.input-group-custom input:focus,
.input-group-custom textarea:focus,
.input-group-custom select:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.input-group-custom textarea {
  resize: vertical;
  min-height: 140px;
}

.input-group-custom.input-dark input,
.input-group-custom.input-dark textarea,
.input-group-custom.input-dark select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.input-group-custom.input-dark input::placeholder,
.input-group-custom.input-dark textarea::placeholder,
.input-group-custom.input-dark select::placeholder {
  color: #6B7280;
}

.input-group-custom.input-dark input:focus,
.input-group-custom.input-dark textarea:focus,
.input-group-custom.input-dark select:focus {
  border-color: #0066FF;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar-custom {
  height: 10px;
  background: #E5E7EB;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.progress-bar-custom .progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  border-radius: 9999px;
  position: relative;
  transition: width 1s ease-out;
}

.progress-bar-custom .progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmerLight 2s infinite;
}

.progress-bar-custom.progress-dark {
  background: rgba(255, 255, 255, 0.1);
}

.floating-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: -2s;
}

.floating-card:nth-child(3) {
  animation-delay: -4s;
}

.floating-card .card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.floating-card .card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  border-radius: 1rem;
  color: #FFFFFF;
  font-size: 20.8px;
  flex-shrink: 0;
}

.floating-card .card-badge {
  font-size: 0.65rem;
}

.floating-card .card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1.5rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.metric-item {
  text-align: center;
  padding: 0.75rem;
  background: #F9FAFB;
  border-radius: 0.75rem;
}

.metric-item .metric-value {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-item .metric-label {
  font-size: 0.875rem;
  color: #4B5563;
  font-weight: 500;
}

.icon-primary {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  border-radius: 1rem;
  color: #FFFFFF;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 10px 40px -10px rgba(0, 102, 255, 0.4);
}

.icon-accent {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00D4AA 0%, #00F5C4 100%);
  border-radius: 1rem;
  color: #FFFFFF;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 10px 40px -10px rgba(0, 212, 170, 0.4);
}

.icon-dark {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: 1rem;
  color: #FFFFFF;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.5);
}

.partner-logos {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

.partner-logos p {
  color: #6B7280;
  margin-bottom: 2rem;
  font-weight: 500;
}

.partner-logos .logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logos .logos-grid img {
  height: 32px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logos .logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.counter {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 1px;
  background: #E5E7EB;
  margin: 3rem 0;
}

.divider.divider-dark {
  background: rgba(255, 255, 255, 0.1);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  object-fit: cover;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.avatar.avatar-lg {
  width: 80px;
  height: 80px;
  border-width: 4px;
}

.avatar.avatar-sm {
  width: 32px;
  height: 32px;
  border-width: 2px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #F3F4F6;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.tag:hover {
  background: #E6F0FF;
  color: #0066FF;
}

.tooltip-custom {
  position: relative;
}

.tooltip-custom::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: 0.5rem 0.75rem;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1070;
}

.tooltip-custom:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #0F172A;
  background-color: #F8FAFC;
  line-height: 1.7;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-track {
  background: #E5E7EB;
  border-radius: 9999px;
}

body::-webkit-scrollbar-thumb {
  background: #0066FF;
  border-radius: 9999px;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgb(0, 81.6, 204);
}

body {
  scrollbar-width: thin;
  scrollbar-color: #0066FF #E5E7EB;
}

body ::selection {
  background: #0066FF;
  color: #FFFFFF;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0F172A;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar-unique {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  padding: 1.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar-unique.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-unique.scrolled .logo-unique img {
  height: 38px;
}

.navbar-unique .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-unique {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.logo-unique img {
  height: 45px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-unique .logo-badge {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .nav-center {
    display: none;
  }
}

/* ============================================
   ITEM ICONS
   ============================================ */
.item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.item-icon.blue {
  background: rgba(0, 102, 255, 0.1);
  color: #0066FF;
}

.dropdown-item:hover .item-icon.blue {
  background: #0066FF;
  color: #FFFFFF;
}

.item-icon.orange {
  background: rgba(255, 153, 0, 0.1);
  color: #FF9900;
}

.dropdown-item:hover .item-icon.orange {
  background: #FF9900;
  color: #FFFFFF;
}

.item-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}

.dropdown-item:hover .item-icon.purple {
  background: #8B5CF6;
  color: #FFFFFF;
}

.item-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.dropdown-item:hover .item-icon.green {
  background: #10B981;
  color: #FFFFFF;
}

.item-icon i {
  font-size: inherit;
  line-height: 1;
}

.nav-link-unique {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0F172A;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link-unique::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 9999px;
}

.nav-link-unique:hover,
.nav-link-unique.active {
  color: #0066FF;
}

.nav-link-unique:hover::before,
.nav-link-unique.active::before {
  width: calc(100% - 2rem);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-nav:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-nav {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-ghost {
  background: transparent;
  color: #0F172A;
  border: 2px solid #E5E7EB;
}

.btn-ghost:hover {
  background: #F9FAFB;
  border-color: #0066FF;
  color: #0066FF;
}

.btn-primary-nav {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 10px 40px -10px rgba(0, 102, 255, 0.4);
}

.btn-primary-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px -15px rgba(0, 102, 255, 0.5);
}

.hero-unique {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(at 40% 20%, rgba(0, 102, 255, 0.15) 0px, transparent 50%), radial-gradient(at 80% 0%, rgba(0, 212, 170, 0.1) 0px, transparent 50%), radial-gradient(at 0% 50%, rgba(0, 102, 255, 0.1) 0px, transparent 50%);
  opacity: 0.8;
  animation: meshMove 30s ease-in-out infinite;
  pointer-events: none;
}

.hero-unique::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content-unique {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

@media (max-width: 991px) {
  .hero-content-unique {
    max-width: 100%;
    text-align: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.hero-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D4AA;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-title-unique {
  font-size: 3.5rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

@media (max-width: 991px) {
  .hero-title-unique {
    font-size: 3.75rem;
  }
}

@media (max-width: 767px) {
  .hero-title-unique {
    font-size: 3rem;
  }
}

@media (max-width: 575px) {
  .hero-title-unique {
    font-size: 2.25rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #9CA3AF;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-cta-group {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-cta-group {
    flex-direction: column;
  }
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-hero:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-hero {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 1.5rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #FFFFFF;
  box-shadow: 0 20px 60px -15px rgba(0, 102, 255, 0.5);
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 70px -15px rgba(0, 102, 255, 0.6);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

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

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .hero-visual {
    display: none;
  }
}

.section {
  padding: 6rem 0;
}

@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }
}

.features-section {
  background: #F8FAFC;
}

.pricing-section {
  background: #0F172A;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(at 40% 20%, rgba(0, 102, 255, 0.15) 0px, transparent 50%), radial-gradient(at 80% 0%, rgba(0, 212, 170, 0.1) 0px, transparent 50%), radial-gradient(at 0% 50%, rgba(0, 102, 255, 0.1) 0px, transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}

.pricing-section .section-title h2 {
  color: #FFFFFF;
}

.pricing-section .section-title p {
  color: #9CA3AF;
}

.testimonials-section {
  background: #FFFFFF;
}

.faq-section {
  background: #F9FAFB;
}

.footer-custom {
  background: linear-gradient(180deg, #0F172A 0%, #0A1120 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.footer-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.5), rgba(0, 212, 170, 0.5), transparent);
}

.footer-custom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-newsletter {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  margin: 3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.footer-newsletter h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer-newsletter p {
  color: #94A3B8;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
  margin-left: auto;
}

@media (max-width: 991px) {
  .newsletter-form {
    margin-left: 0;
    margin-top: 1.5rem;
  }
}

@media (max-width: 575px) {
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form input::placeholder {
  color: #64748B;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #0066FF;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 25px -8px rgba(0, 102, 255, 0.4);
}

.newsletter-form button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -8px rgba(0, 102, 255, 0.5);
}

.newsletter-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-about .footer-logo {
  margin-bottom: 1.25rem;
}

.footer-about .footer-logo .footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-about .footer-logo .brand-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about p {
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-about .social-links {
  display: flex;
  gap: 0.625rem;
}

.footer-about .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.625rem;
  color: #94A3B8;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-about .social-links a:hover {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px -8px rgba(0, 102, 255, 0.4);
}

.footer-links h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  border-radius: 9999px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.625rem;
}

.footer-links ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #94A3B8;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links ul li a i {
  font-size: 0.8rem;
  color: #0066FF;
}

.footer-links ul li a:hover {
  color: #00D4AA;
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom .footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer-bottom .copyright {
  color: #64748B;
  font-size: 0.85rem;
}

.footer-bottom .payment-methods {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom .payment-methods span {
  color: #64748B;
  font-size: 0.85rem;
}

.footer-bottom .payment-methods img {
  height: 22px;
  opacity: 0.5;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) invert(1);
}

.footer-bottom .payment-methods img:hover {
  opacity: 0.8;
}

.text-gradient {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: #6B7280;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

[class*=col-] {
  padding: 0 0.75rem;
  width: 100%;
}

.g-4 {
  margin: 0 -1.5rem;
}

.g-4>[class*=col-] {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .col-lg-2 {
    width: 16.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    width: 33.333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1030;
  box-shadow: 0 10px 40px -10px rgba(0, 102, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px -15px rgba(0, 102, 255, 0.5);
}

/* ================================================
   ULTRA MODERN PILL HEADER
   ================================================ */

.header-pill {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-pill.scrolled {
  padding: 0.75rem 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-logo img {
  height: 40px;
  transition: all 0.3s ease;
}

/* Logo Switch on Scroll */
.header-logo .logo-white {
  display: block;
}

.header-logo .logo-color {
  display: none;
}

.header-pill.scrolled .header-logo .logo-white {
  display: none;
}

.header-pill.scrolled .header-logo .logo-color {
  display: block;
}

.logo-version {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
}

/* Pill Navigation */
.nav-pill {
  position: relative;
}

.nav-pill-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-pill-item {
  position: relative;
}

.nav-pill-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-pill-link:hover {
  color: #fff;
}

.nav-pill-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-pill-link i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.nav-pill-item.has-dropdown:hover .nav-pill-link i {
  transform: rotate(180deg);
}

.nav-badge {
  background: linear-gradient(135deg, #FF6B35, #F59E0B);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 50px;
  text-transform: uppercase;
}

/* Pill Dropdowns */
.pill-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.pill-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.nav-pill-item.has-dropdown:hover .pill-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Simple Dropdown */
.pill-dropdown.simple {
  min-width: 220px;
  padding: 0.5rem;
}

.pill-dropdown.simple .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.pill-dropdown.simple .dropdown-item:hover {
  background: #F3F4F6;
  color: #0066FF;
  transform: translateX(4px);
}

.pill-dropdown.simple .dropdown-item i {
  font-size: 1.1rem;
  color: #9CA3AF;
  width: 20px;
  text-align: center;
}

.pill-dropdown.simple .dropdown-item:hover i {
  color: #0066FF;
}

/* Mega Dropdown */
.pill-dropdown.mega {
  min-width: 680px;
  padding: 1.25rem;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 1.5rem;
}

.dropdown-col {
  min-width: 180px;
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #F3F4F6;
}

.dropdown-header i {
  color: #0066FF;
}

.pill-dropdown.mega .dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem;
  border-radius: 0.6rem;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.pill-dropdown.mega .dropdown-item:hover {
  background: #F8FAFC;
}

.item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.item-icon.blue {
  background: linear-gradient(135deg, #0066FF, #3B82F6);
}

.item-icon.green {
  background: linear-gradient(135deg, #00D4AA, #10B981);
}

.item-icon.purple {
  background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.item-icon.orange {
  background: linear-gradient(135deg, #FF6B35, #F59E0B);
}

.item-icon.red {
  background: linear-gradient(135deg, #EF4444, #DC2626);
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.item-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0F172A;
}

.item-text span {
  font-size: 0.8rem;
  color: #6B7280;
}

/* Promo Column */
.promo-col {
  display: flex;
  align-items: stretch;
}

.dropdown-promo {
  flex: 1;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
  border-radius: 0.75rem;
  padding: 1.25rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35, #F59E0B);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.dropdown-promo h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: #FFFFFF;
  line-height: 1.2;
}

.dropdown-promo p {
  font-size: 0.8rem;
  color: #94A3B8;
  margin: 0 0 0.75rem 0;
}

.promo-cta {
  display: inline-block;
  background: linear-gradient(135deg, #0066FF, #00D4AA);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.promo-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
  color: #fff;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-header.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-header.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-header.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F59E0B 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-header.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1199px) {
  .nav-pill {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }
}

@media (max-width: 575px) {
  .header-logo img {
    height: 32px;
  }

  .logo-version {
    display: none;
  }

  .btn-header.btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .btn-header.btn-primary i {
    display: none;
  }
}

/* ================================================
   PREMIUM NAVBAR WITH DROPDOWNS (Legacy Support)
   ================================================ */

.navbar-premium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  padding: 1rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar-premium.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-premium .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 42px;
  transition: all 0.3s ease;
}

.version-badge {
  background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.nav-item .nav-link:hover {
  color: #0066FF;
  background: rgba(0, 102, 255, 0.05);
}

.nav-item .nav-link.active {
  color: #0066FF;
}

.nav-item .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-badge {
  background: #FF6B35;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.25rem;
}

/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Simple Dropdown */
.simple-dropdown {
  min-width: 220px;
  padding: 0.75rem;
}

.simple-dropdown .dropdown-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.simple-dropdown .dropdown-links li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.simple-dropdown .dropdown-links li a:hover {
  background: rgba(0, 102, 255, 0.05);
  color: #0066FF;
  transform: translateX(5px);
}

.simple-dropdown .dropdown-links li a i {
  font-size: 1.1rem;
  color: #6B7280;
  transition: color 0.2s ease;
}

.simple-dropdown .dropdown-links li a:hover i {
  color: #0066FF;
}

/* Mega Dropdown */
.mega-dropdown {
  min-width: 700px;
  padding: 1.5rem;
}

.mega-dropdown .dropdown-container {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
}

.dropdown-section {
  min-width: 200px;
}

.dropdown-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F3F4F6;
}

.dropdown-title i {
  color: #0066FF;
}

.dropdown-section .dropdown-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-section .dropdown-links li {
  margin-bottom: 0.5rem;
}

.dropdown-section .dropdown-links li a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.dropdown-section .dropdown-links li a:hover {
  background: #F8FAFC;
}

.dropdown-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.dropdown-icon.bg-blue {
  background: linear-gradient(135deg, #0066FF, #3B82F6);
}

.dropdown-icon.bg-green {
  background: linear-gradient(135deg, #00D4AA, #10B981);
}

.dropdown-icon.bg-purple {
  background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.dropdown-icon.bg-orange {
  background: linear-gradient(135deg, #FF6B35, #F59E0B);
}

.dropdown-icon.bg-red {
  background: linear-gradient(135deg, #EF4444, #DC2626);
}

.dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown-link-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
}

.dropdown-link-desc {
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 0.2rem;
}

/* Promo Card in Dropdown */
.dropdown-promo {
  min-width: 200px;
}

.promo-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35, #F59E0B);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.promo-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.promo-card p {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0066FF, #00D4AA);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  color: #fff;
}

/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-actions .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-actions .btn-ghost {
  background: transparent;
  color: #374151;
  border: 2px solid #E5E7EB;
}

.navbar-actions .btn-ghost:hover {
  background: #F9FAFB;
  border-color: #0066FF;
  color: #0066FF;
}

.navbar-actions .btn-primary-nav {
  background: linear-gradient(135deg, #FF6B35 0%, #F59E0B 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.navbar-actions .btn-primary-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Mobile Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: #0F172A;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-actions .btn-ghost {
    display: none;
  }
}

/* ================================================
   HERO CARDS SLIDER
   ================================================ */

.hero-cards-slider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  z-index: 10;
}

.hero-swiper {
  overflow: visible;
  padding: 20px 0;
}

.hero-swiper .swiper-slide {
  width: 340px;
  opacity: 0.5;
  transform: scale(0.92);
  transition: all 0.4s ease;
}

.hero-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.hero-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  font-size: 1.35rem;
  color: #fff;
}

.hero-card-icon.blue {
  background: linear-gradient(135deg, #0066FF, #3B82F6);
}

.hero-card-icon.teal {
  background: linear-gradient(135deg, #00D4AA, #14B8A6);
}

.hero-card-icon.purple {
  background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.hero-card-icon.green {
  background: linear-gradient(135deg, #10B981, #059669);
}

.hero-card-icon.orange {
  background: linear-gradient(135deg, #FF6B35, #F59E0B);
}

.hero-card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-card-badge.green {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.hero-card-badge.blue {
  background: rgba(0, 102, 255, 0.12);
  color: #0066FF;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 1.25rem 0;
}

.hero-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-box {
  background: #F8FAFC;
  border-radius: 0.875rem;
  padding: 1rem;
  text-align: center;
}

.metric-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.metric-val.blue {
  color: #0066FF;
}

.metric-val.teal {
  color: #00D4AA;
}

.metric-val.green {
  color: #10B981;
}

.metric-lbl {
  display: block;
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 0.3rem;
  font-weight: 500;
}

.hero-card-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid #F3F4F6;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 0.95rem;
  color: #6B7280;
  font-weight: 500;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-cards-slider {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 2.5rem;
  }

  .hero-swiper .swiper-slide {
    width: 320px;
  }
}

@media (max-width: 575px) {
  .hero-swiper .swiper-slide {
    width: 300px;
  }

  .hero-card {
    padding: 1.5rem;
  }
}

/* ================================================
   FEATURES SLIDER SECTION
   ================================================ */

.features-slider-section {
  background: #F8FAFC;
  padding: 5rem 0;
  overflow: hidden;
}

.features-slider-wrapper {
  position: relative;
  margin-top: 2rem;
  /* Container içinde kalsa bile akışı full-width yapmak için viewport'a taşır */
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.features-swiper-row-1,
.features-swiper-row-2 {
  overflow: visible;
  margin-bottom: 1rem;
}

.features-swiper-row-1 .swiper-wrapper,
.features-swiper-row-2 .swiper-wrapper {
  transition-timing-function: linear;
}

/* ================================================
   FEATURES MARQUEE (NO JS, NO STOP)
   ================================================ */

.features-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.features-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: hostimux-marquee-left 32s linear infinite;
}

/* 2. satır ters yöne aksın */
.features-marquee-row-2 .features-marquee-track {
  animation-name: hostimux-marquee-right;
}

/* Kullanıcı hover edince DURMASIN (bazı browser'lar default pause'lar) */
.features-marquee-track,
.features-marquee:hover .features-marquee-track {
  animation-play-state: running;
}

@keyframes hostimux-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes hostimux-marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Küçük ekranlarda biraz daha yavaşlat */
@media (max-width: 768px) {
  .features-marquee-track {
    animation-duration: 40s;
  }
}

/* Feature Mini Card */
.feature-mini-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  min-width: 280px;
}

.feature-mini-card:hover {
  border-color: #0066FF;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
  transform: translateY(-3px);
}

.feature-mini-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.feature-mini-icon.bg-blue {
  background: linear-gradient(135deg, #0066FF, #3B82F6);
}

.feature-mini-icon.bg-green {
  background: linear-gradient(135deg, #00D4AA, #10B981);
}

.feature-mini-icon.bg-purple {
  background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.feature-mini-icon.bg-teal {
  background: linear-gradient(135deg, #14B8A6, #06B6D4);
}

.feature-mini-icon.bg-orange {
  background: linear-gradient(135deg, #FF6B35, #F59E0B);
}

.feature-mini-icon.bg-cyan {
  background: linear-gradient(135deg, #06B6D4, #0EA5E9);
}

.feature-mini-icon.bg-pink {
  background: linear-gradient(135deg, #EC4899, #F472B6);
}

.feature-mini-icon.bg-red {
  background: linear-gradient(135deg, #EF4444, #DC2626);
}

.feature-mini-icon.bg-indigo {
  background: linear-gradient(135deg, #6366F1, #4F46E5);
}

.feature-mini-icon.bg-yellow {
  background: linear-gradient(135deg, #F59E0B, #EAB308);
}

.feature-mini-icon.bg-gray {
  background: linear-gradient(135deg, #64748B, #475569);
}

.feature-mini-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 0.25rem 0;
}

.feature-mini-content p {
  font-size: 0.8rem;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
}

/* Slider Navigation */
.features-slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider-nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-nav-btn:hover {
  background: #0066FF;
  border-color: #0066FF;
  color: #fff;
}

/* ================================================
   MODERN FAQ SECTION
   ================================================ */

.faq-modern-section {
  background: #F8FAFC;
  padding: 5rem 0;
}

.faq-modern-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .faq-modern-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Left Side - Contact */
.faq-contact-side {
  position: sticky;
  top: 120px;
}

.badge-orange {
  background: linear-gradient(135deg, #0066FF, #00D4AA);
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F172A;
  margin: 1rem 0;
  line-height: 1.2;
}

.faq-title span {
  background: linear-gradient(135deg, #0066FF, #00D4AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-live-support {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.btn-live-support:hover {
  background: #0066FF;
  border-color: #0066FF;
  color: #fff;
}

/* Contact Card */
.faq-contact-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  font-size: 1.1rem;
}

.contact-icon.whatsapp {
  background: #25D366;
}

.contact-icon.email {
  background: #FF6B35;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.contact-value:hover {
  color: #00D4AA;
}

.contact-hours {
  font-size: 0.8rem;
  color: #64748B;
  margin: 1rem 0 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Right Side - FAQ List */
.faq-list-modern {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item-modern {
  background: #fff;
  border-radius: 1rem;
  border: 2px solid #E5E7EB;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  border-color: #D1D5DB;
}

.faq-item-modern.active {
  border-color: #0066FF;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.faq-question-modern {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question-modern:hover {
  color: #0066FF;
}

.faq-question-modern i {
  font-size: 1.25rem;
  color: #9CA3AF;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item-modern.active .faq-question-modern {
  color: #0066FF;
}

.faq-item-modern.active .faq-question-modern i {
  transform: rotate(180deg);
  color: #0066FF;
}

.faq-answer-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-modern p {
  padding: 0 1.5rem 1.5rem;
  color: #6B7280;
  line-height: 1.8;
  margin: 0;
}

.faq-item-modern.active .faq-answer-modern {
  max-height: 300px;
}

/* ================================================
   TESTIMONIALS SECTION - NEW DESIGN
   ================================================ */

.testimonials-section {
  background: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-item {
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  border-color: #0066FF;
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.1);
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.customer-avatar {
  position: relative;
  flex-shrink: 0;
}

.customer-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.verified-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified-icon i {
  color: #0066FF;
  font-size: 1rem;
}

.customer-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 0.25rem 0;
}

.customer-details .customer-role {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}

.customer-details .customer-company {
  font-size: 0.875rem;
  color: #0066FF;
  font-weight: 600;
  margin: 0;
}

.testimonial-item .rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-item .rating-stars i {
  color: #F59E0B;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid #E5E7EB;
}

/* Partners Strip */
.partners-strip {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

.partners-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.partner-logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #CBD5E1;
  transition: color 0.3s ease;
}

.partner-logo:hover {
  color: #0066FF;
}

/* ================================================
   PRICING SECTION FIXES
   ================================================ */

.pricing-section .pricing-note {
  position: relative;
  z-index: 5;
}

.pricing-section .pricing-note p {
  color: #94A3B8;
}

.pricing-section .pricing-note p i {
  color: #64748B;
}

.pricing-section .pricing-note a {
  color: #00D4AA;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pricing-section .pricing-note a:hover {
  color: #FFFFFF;
}

/* Text visibility fixes for dark backgrounds */
.pricing-section .text-muted {
  color: #94A3B8 !important;
}

/*# sourceMappingURL=style.css.map */



/* =========================================================
   VDS PRICING - GENİŞ, OKUNAKLI KART TASARIMI
   ========================================================= */

.vds-pricing-section {
  padding: 96px 0 80px;
  background: #020617;
}

.vds-pricing-section>.container {
  max-width: 1200px !important;
  margin: 0 auto;
}

/* Başlık */
.vds-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.vds-section-title .vds-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(129, 140, 248, 0.12);
  color: #a5b4fc;
}

.vds-section-title h2 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #e5e7eb;
}

.vds-section-title h2 span {
  background: linear-gradient(135deg, #6366f1, #22c1c3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vds-section-title p {
  max-width: 620px;
  margin: 0.25rem auto 0;
  color: #9ca3af;
  font-size: 0.95rem;
}

/* GRID - geniş kartlar */
.vds-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Eski dar width ayarlarını override et */
.vds-pricing-grid .vds-card {
  max-width: none;
  flex: 1 1 auto;
}

/* KART */
.vds-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background:
    radial-gradient(140% 200% at 0% 0%, rgba(129, 140, 248, 0.35), transparent 55%),
    #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  overflow: hidden;
}

/* Header */
.vds-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.vds-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, #4f46e5, #0f172a);
  color: #e5e7eb;
  font-size: 1.1rem;
}

.vds-card-title h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: #f9fafb;
}

.vds-card-title span {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Fiyat */
.vds-card-price {
  margin-bottom: 8px;
}

.vds-card-price .price {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #a855f7, #22c1c3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vds-card-price .period {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-left: 4px;
}

/* Özellik listesi */
.vds-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.85rem;
  color: #d1d5db;
}

.vds-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
}

.vds-card-features i {
  font-size: 0.9rem;
  color: #4ade80;
}

/* Buton */
.vds-card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(129, 140, 248, 0.9);
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.5), transparent 55%),
    linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 18px 45px rgba(37, 99, 235, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.vds-card-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 22px 60px rgba(59, 130, 246, 0.85);
}

/* Mobil uyum */
@media (max-width: 991.98px) {
  .vds-pricing-section {
    padding: 72px 0 56px;
  }

  .vds-card {
    padding: 18px 18px 16px;
  }

  .vds-card-price .price {
    font-size: 1.7rem;
  }
}


/* === Corporate hero alignment fixes (all Kurumsal pages) === */
.hero-unique .hero-content-unique .badge-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.hero-unique .hero-content-unique .hero-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero-unique .hero-content-unique .hero-subtitle {
  margin-top: 0;
}

.hero-unique .hero-content-unique .hero-subtitle p {
  margin: 0;
}


/* =========================================================
   MOBILE NAV - HEADER PILL MENÜ
   ========================================================= */

@media (max-width: 1199px) {

  /* Menü açıkken sayfa kaymasın */
  body.menu-open {
    overflow: hidden;
  }

  /* Menü açıldığında nav-pill'i görünür yap */
  .header-pill.menu-open .nav-pill,
  body.menu-open .nav-pill {
    display: block !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 1rem 1.25rem;
    z-index: 1040;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header-pill.menu-open .nav-pill-list,
  body.menu-open .nav-pill-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.9);
  }

  .header-pill.menu-open .nav-pill-item,
  body.menu-open .nav-pill-item {
    width: 100%;
  }

  .header-pill.menu-open .nav-pill-link,
  body.menu-open .nav-pill-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    background: transparent;
  }

  /* Dropdown'lar mobilde içeriye açılacak */
  .header-pill.menu-open .nav-pill-item.has-dropdown .pill-dropdown,
  body.menu-open .nav-pill-item.has-dropdown .pill-dropdown {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-top: 0.4rem;
    box-shadow: none;
    border-radius: 14px;
    border: 1px solid rgba(31, 41, 55, 0.9);
    background: #020617;
  }

  /* Sadece .open olduğunda göster */
  .header-pill.menu-open .nav-pill-item.has-dropdown.open .pill-dropdown,
  body.menu-open .nav-pill-item.has-dropdown.open .pill-dropdown {
    display: block;
  }

  /* Menü açıkken sağdaki butonları gizle */
  .header-pill.menu-open .header-actions,
  body.menu-open .header-actions {
    display: none;
  }
}


/* ========================================================
   MOBILE HEADER FIX - MEGA DROPDOWN ALT ALTA
   =======================================================*/
@media (max-width: 1199px) {

  /* Mega dropdown genişliği mobilde ekrana otursun */
  .header-pill.menu-open .pill-dropdown.mega,
  .header-pill.menu-open .mega-dropdown {
    min-width: 0;
    width: 100%;
    padding: 0.9rem 0.85rem 1rem;
  }

  /* Grid yapısını tek sütuna çevir */
  .header-pill.menu-open .dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Her kolon tam genişlik alsın */
  .header-pill.menu-open .dropdown-col,
  .header-pill.menu-open .promo-col {
    width: 100%;
    min-width: 0;
  }

  /* Kampanya / promo kartı da alta gelsin */
  .header-pill.menu-open .dropdown-promo {
    margin-top: 0.75rem;
  }

  /* İçteki item'lar da mobil için sıkışık olmasın */
  .header-pill.menu-open .pill-dropdown .dropdown-item {
    padding: 0.6rem 0.75rem;
  }

  /* Açıklama satırları tek satıra zorlanmasın */
  .header-pill.menu-open .pill-dropdown .dropdown-item .item-text span {
    white-space: normal;
  }
}

/* ========================================================
   MOBILE HEADER FIX - MEGA DROPDOWN ALT ALTA (v2)
   =======================================================*/
@media (max-width: 1199px) {

  /* Menü açıldığında tüm içerik ekrana sığsın ve içeride scroll olsun */
  .header-pill.menu-open .nav-pill,
  body.menu-open .nav-pill {
    bottom: 1rem;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Mega dropdown genişliği mobilde ekrana otursun */
  .header-pill.menu-open .pill-dropdown.mega,
  .header-pill.menu-open .mega-dropdown {
    min-width: 0;
    width: 100%;
    padding: 0.9rem 0.85rem 1rem;
  }

  /* Grid yapısını tek sütuna çevir */
  .header-pill.menu-open .dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Her kolon tam genişlik alsın */
  .header-pill.menu-open .dropdown-col,
  .header-pill.menu-open .promo-col {
    width: 100%;
    min-width: 0;
  }

  /* Kampanya / promo kartı da alta gelsin */
  .header-pill.menu-open .dropdown-promo {
    margin-top: 0.75rem;
  }

  /* İçteki item'lar mobilde daha okunabilir olsun */
  .header-pill.menu-open .pill-dropdown .dropdown-item {
    padding: 0.6rem 0.75rem;
    color: #E5E7EB;
  }

  .header-pill.menu-open .pill-dropdown .dropdown-item .item-text strong {
    color: #E5E7EB;
  }

  .header-pill.menu-open .pill-dropdown .dropdown-item .item-text span {
    color: #9CA3AF;
    white-space: normal;
  }

  .header-pill.menu-open .dropdown-header {
    border-bottom-color: rgba(148, 163, 184, 0.4);
    color: #9CA3AF;
  }
}

/* ============================================
   THEME TOGGLE BUTTON STYLES
   ============================================ */

#themeToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(148, 163, 184, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #F9FAFB;
  font-size: 1.1rem;
}

#themeToggle:hover {
  border-color: rgba(168, 85, 247, 0.6);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(56, 189, 248, 0.2) 100%);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

#themeToggle:active {
  transform: scale(0.95);
}

#themeToggle i {
  transition: transform 0.3s ease;
}

#themeToggle:hover i {
  transform: rotate(15deg);
}

/* ============================================
   GLOBAL DARK MODE STYLES
   ============================================ */

/* Light mode is default - no changes needed */

/* Dark Mode - Applied via data-theme="dark" on html element */
[data-theme="dark"] {
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --bg-tertiary: #334155;
  --text-primary: #F9FAFB;
  --text-secondary: #E5E7EB;
  --text-muted: #94A3B8;
  --border-color: rgba(148, 163, 184, 0.2);
}

/* Body Background */
[data-theme="dark"] body {
  background: #0F172A;
  color: #E5E7EB;
}

/* Hero Section */
[data-theme="dark"] .hero-unique {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 119, 198, 0.3), transparent),
    linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .hero-title {
  color: #F9FAFB;
}

[data-theme="dark"] .hero-subtitle {
  color: #CBD5E1;
}

/* Features Section */
[data-theme="dark"] .features-section {
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
}

[data-theme="dark"] .features-section .section-title,
[data-theme="dark"] .features-section h2 {
  color: #F9FAFB;
}

[data-theme="dark"] .features-section .section-subtitle,
[data-theme="dark"] .features-section p {
  color: #94A3B8;
}

[data-theme="dark"] .feature-card {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .feature-card:hover {
  background: rgba(51, 65, 85, 0.9);
  border-color: rgba(168, 85, 247, 0.3);
}

[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .feature-card .feature-title {
  color: #F9FAFB;
}

[data-theme="dark"] .feature-card p,
[data-theme="dark"] .feature-card .feature-desc {
  color: #94A3B8;
}

/* Pricing Section */
[data-theme="dark"] .pricing-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
}

[data-theme="dark"] .pricing-section .section-title,
[data-theme="dark"] .pricing-section h2 {
  color: #F9FAFB;
}

[data-theme="dark"] .pricing-section .section-subtitle {
  color: #94A3B8;
}

[data-theme="dark"] .pricing-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .pricing-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

[data-theme="dark"] .pricing-card .plan-name,
[data-theme="dark"] .pricing-card h3 {
  color: #F9FAFB;
}

[data-theme="dark"] .pricing-card .plan-price,
[data-theme="dark"] .pricing-card .price {
  color: #F9FAFB;
}

[data-theme="dark"] .pricing-card .plan-features li,
[data-theme="dark"] .pricing-card ul li {
  color: #CBD5E1;
}

/* FAQ Section */
[data-theme="dark"] .faq-section {
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
}

[data-theme="dark"] .faq-section .section-title,
[data-theme="dark"] .faq-section h2 {
  color: #F9FAFB;
}

[data-theme="dark"] .faq-item,
[data-theme="dark"] .accordion-item {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .faq-question,
[data-theme="dark"] .accordion-button {
  color: #F9FAFB;
  background: transparent;
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
  background: rgba(168, 85, 247, 0.1);
  color: #A855F7;
}

[data-theme="dark"] .faq-answer,
[data-theme="dark"] .accordion-body {
  color: #94A3B8;
  background: rgba(30, 41, 59, 0.5);
}

/* Testimonials Section */
[data-theme="dark"] .testimonials-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .testimonials-section .section-title {
  color: #F9FAFB;
}

[data-theme="dark"] .testimonial-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .testimonial-card .testimonial-text {
  color: #CBD5E1;
}

[data-theme="dark"] .testimonial-card .testimonial-author {
  color: #F9FAFB;
}

[data-theme="dark"] .testimonial-card .testimonial-role {
  color: #94A3B8;
}

/* CTA Section */
[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(56, 189, 248, 0.15) 100%);
}

[data-theme="dark"] .cta-section h2 {
  color: #F9FAFB;
}

[data-theme="dark"] .cta-section p {
  color: #CBD5E1;
}

/* Footer */
[data-theme="dark"] .footer {
  background: #0F172A;
  border-top-color: rgba(148, 163, 184, 0.1);
}

[data-theme="dark"] .footer h5,
[data-theme="dark"] .footer .footer-title {
  color: #F9FAFB;
}

[data-theme="dark"] .footer p,
[data-theme="dark"] .footer a {
  color: #94A3B8;
}

[data-theme="dark"] .footer a:hover {
  color: #A855F7;
}

/* Cards and Containers */
[data-theme="dark"] .card,
[data-theme="dark"] .glass-card {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.15);
  color: #E5E7EB;
}

[data-theme="dark"] .card h1,
[data-theme="dark"] .card h2,
[data-theme="dark"] .card h3,
[data-theme="dark"] .card h4,
[data-theme="dark"] .card h5,
[data-theme="dark"] .card h6 {
  color: #F9FAFB;
}

[data-theme="dark"] .card p {
  color: #94A3B8;
}

/* Badges */
[data-theme="dark"] .badge,
[data-theme="dark"] .section-badge {
  background: rgba(168, 85, 247, 0.2);
  color: #A855F7;
  border-color: rgba(168, 85, 247, 0.3);
}

/* Tables */
[data-theme="dark"] table {
  color: #E5E7EB;
}

[data-theme="dark"] th {
  background: rgba(30, 41, 59, 0.8);
  color: #F9FAFB;
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] td {
  border-color: rgba(148, 163, 184, 0.1);
}

[data-theme="dark"] tr:hover {
  background: rgba(51, 65, 85, 0.5);
}

/* Forms */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.2);
  color: #F9FAFB;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: #64748B;
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
  border-color: #A855F7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

/* Product/Service Cards */
[data-theme="dark"] .product-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .plan-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .product-card:hover,
[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .plan-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
[data-theme="dark"] .stats-section {
  background: rgba(30, 41, 59, 0.5);
}

[data-theme="dark"] .stat-number {
  color: #F9FAFB;
}

[data-theme="dark"] .stat-label {
  color: #94A3B8;
}

/* Partners/Logos Section */
[data-theme="dark"] .partners-section {
  background: rgba(15, 23, 42, 0.8);
}

[data-theme="dark"] .partner-logo {
  filter: brightness(0.8) grayscale(0.3);
}

[data-theme="dark"] .partner-logo:hover {
  filter: brightness(1) grayscale(0);
}

/* Scroll and UI Elements */
[data-theme="dark"] ::-webkit-scrollbar {
  width: 10px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
  background: #1E293B;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 5px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background: #64748B;
}

/* General Text */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #F9FAFB;
}

[data-theme="dark"] p {
  color: #CBD5E1;
}

[data-theme="dark"] .text-muted {
  color: #94A3B8 !important;
}

/* VDS/Dedicated/Hosting Page Specific */
[data-theme="dark"] .page-hero {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.2), transparent),
    linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .specs-table {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .specs-table th,
[data-theme="dark"] .specs-table td {
  border-color: rgba(148, 163, 184, 0.1);
}

[data-theme="dark"] .order-btn {
  background: linear-gradient(135deg, #A855F7 0%, #38BDF8 100%);
}

/* Contact Page */
[data-theme="dark"] .contact-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .contact-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .contact-card h3 {
  color: #F9FAFB;
}

[data-theme="dark"] .contact-card p {
  color: #94A3B8;
}

/* About Page */
[data-theme="dark"] .about-section {
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
}

[data-theme="dark"] .team-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .team-card h4 {
  color: #F9FAFB;
}

[data-theme="dark"] .team-card p {
  color: #94A3B8;
}

/* Light Mode - Ensure proper colors */
[data-theme="light"] body,
:root body {
  background: #F9FAFB;
  color: #0F172A;
}

[data-theme="light"] .features-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}

[data-theme="light"] .feature-card {
  background: #FFFFFF;
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="light"] .feature-card h3 {
  color: #0F172A;
}

[data-theme="light"] .feature-card p {
  color: #64748B;
}

[data-theme="light"] .pricing-section {
  background: linear-gradient(180deg, #F1F5F9 0%, #FFFFFF 50%, #F1F5F9 100%);
}

[data-theme="light"] .pricing-card {
  background: #FFFFFF;
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="light"] .faq-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}

[data-theme="light"] .accordion-item {
  background: #FFFFFF;
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="light"] .accordion-button {
  color: #0F172A;
  background: #FFFFFF;
}

[data-theme="light"] .accordion-body {
  color: #64748B;
  background: #FFFFFF;
}

/* Smooth Transitions for Theme Change */
body,
.hero-unique,
.features-section,
.pricing-section,
.faq-section,
.testimonials-section,
.cta-section,
.footer,
.feature-card,
.pricing-card,
.testimonial-card,
.accordion-item,
.card,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ============================================
   ADDITIONAL DARK MODE - FEATURES SLIDER
   ============================================ */

[data-theme="dark"] .features-slider-section,
[data-theme="dark"] .section.features-slider-section {
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
}

[data-theme="dark"] .features-slider-section .section-title h2,
[data-theme="dark"] .features-slider-section h2 {
  color: #F9FAFB;
}

[data-theme="dark"] .features-slider-section .section-title p,
[data-theme="dark"] .features-slider-section p {
  color: #94A3B8;
}

[data-theme="dark"] .features-slider-section .badge-label {
  background: rgba(168, 85, 247, 0.2);
  color: #A855F7;
  border-color: rgba(168, 85, 247, 0.3);
}

[data-theme="dark"] .feature-mini-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .feature-mini-card:hover {
  background: rgba(51, 65, 85, 0.95) !important;
  border-color: rgba(168, 85, 247, 0.4) !important;
}

[data-theme="dark"] .feature-mini-card h4,
[data-theme="dark"] .feature-mini-content h4 {
  color: #F9FAFB !important;
}

[data-theme="dark"] .feature-mini-card p,
[data-theme="dark"] .feature-mini-content p {
  color: #94A3B8 !important;
}

/* Success Stories / Büyüyen İşletmeler */
[data-theme="dark"] .success-stories-section,
[data-theme="dark"] .testimonials-slider-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .success-card,
[data-theme="dark"] .story-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

[data-theme="dark"] .success-card h4,
[data-theme="dark"] .story-card h4 {
  color: #F9FAFB !important;
}

[data-theme="dark"] .success-card p,
[data-theme="dark"] .story-card p {
  color: #94A3B8 !important;
}

/* CTA and Call-to-action areas */
[data-theme="dark"] .cta-box,
[data-theme="dark"] .cta-card {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(56, 189, 248, 0.15) 100%);
  border-color: rgba(168, 85, 247, 0.3);
}

/* General sections */
[data-theme="dark"] .section,
[data-theme="dark"] section {
  background-color: transparent;
}

[data-theme="dark"] .section h2,
[data-theme="dark"] section h2 {
  color: #F9FAFB;
}

[data-theme="dark"] .section p,
[data-theme="dark"] section p {
  color: #CBD5E1;
}

/* Badge labels */
[data-theme="dark"] .badge-label,
[data-theme="dark"] .section-badge {
  background: rgba(168, 85, 247, 0.2) !important;
  color: #A855F7 !important;
  border-color: rgba(168, 85, 247, 0.3) !important;
}

/* All white backgrounds to dark */
[data-theme="dark"] [style*="background:#fff"],
[data-theme="dark"] [style*="background: #fff"],
[data-theme="dark"] [style*="background:white"],
[data-theme="dark"] [style*="background: white"],
[data-theme="dark"] [style*="background-color:#fff"],
[data-theme="dark"] [style*="background-color: #fff"],
[data-theme="dark"] [style*="background-color:white"],
[data-theme="dark"] [style*="background-color: white"] {
  background: rgba(30, 41, 59, 0.9) !important;
}

/* Container backgrounds */
[data-theme="dark"] .container {
  background: transparent;
}

/* Main content area */
[data-theme="dark"] main,
[data-theme="dark"] .main-content {
  background: #0F172A;
}

/* Row backgrounds */
[data-theme="dark"] .row {
  background: transparent;
}

/* Header adjustments for dark mode */
[data-theme="dark"] .header-pill {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.2);
}

/* Pricing toggle */
[data-theme="dark"] .pricing-toggle {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.2);
}

/* Contact form */
[data-theme="dark"] .contact-form {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .contact-form label {
  color: #E5E7EB;
}

/* Page specific backgrounds */
[data-theme="dark"] .page-wrapper,
[data-theme="dark"] .content-wrapper {
  background: #0F172A;
}

/* Ensure dropdown menus are visible */
[data-theme="dark"] .dropdown-menu {
  background: rgba(30, 41, 59, 0.98);
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] .dropdown-item {
  color: #E5E7EB;
}

[data-theme="dark"] .dropdown-item:hover {
  background: rgba(168, 85, 247, 0.2);
  color: #A855F7;
}

/* Modals */
[data-theme="dark"] .modal-content {
  background: #1E293B;
  border-color: rgba(148, 163, 184, 0.15);
}

[data-theme="dark"] .modal-header,
[data-theme="dark"] .modal-footer {
  border-color: rgba(148, 163, 184, 0.1);
}

[data-theme="dark"] .modal-title {
  color: #F9FAFB;
}

[data-theme="dark"] .btn-close {
  filter: invert(1);
}

/* ============================================
   LIGHT MODE - IMPROVED READABILITY
   ============================================ */

/* Pricing Cards - Light Mode Enhanced Readability */
.pricing-card,
[data-theme="light"] .pricing-card {
  background: #FFFFFF;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card .plan-name,
.pricing-card h3,
[data-theme="light"] .pricing-card .plan-name,
[data-theme="light"] .pricing-card h3 {
  color: #1E293B !important;
  font-weight: 700;
}

.pricing-card .plan-price,
.pricing-card .price,
[data-theme="light"] .pricing-card .plan-price,
[data-theme="light"] .pricing-card .price {
  color: #0F172A !important;
  font-weight: 800;
}

.pricing-card .plan-description,
[data-theme="light"] .pricing-card .plan-description {
  color: #475569 !important;
}

.pricing-card .plan-features li,
.pricing-card ul li,
[data-theme="light"] .pricing-card .plan-features li,
[data-theme="light"] .pricing-card ul li {
  color: #334155 !important;
  font-weight: 500;
}

.pricing-card .plan-features li i,
.pricing-card ul li i,
[data-theme="light"] .pricing-card .plan-features li i,
[data-theme="light"] .pricing-card ul li i {
  color: #10B981 !important;
}

/* Pricing section background - Light Mode */
.pricing-section,
[data-theme="light"] .pricing-section {
  background: linear-gradient(180deg, #F0F9FF 0%, #E0F2FE 50%, #F0F9FF 100%);
}

.pricing-section .section-title h2,
.pricing-section h2,
[data-theme="light"] .pricing-section .section-title h2,
[data-theme="light"] .pricing-section h2 {
  color: #0F172A !important;
}

.pricing-section .section-title p,
[data-theme="light"] .pricing-section .section-title p {
  color: #475569 !important;
}

/* Feature Cards - Light Mode */
.feature-mini-card,
[data-theme="light"] .feature-mini-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(148, 163, 184, 0.25) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
}

.feature-mini-card h4,
.feature-mini-content h4,
[data-theme="light"] .feature-mini-card h4,
[data-theme="light"] .feature-mini-content h4 {
  color: #1E293B !important;
  font-weight: 600;
}

.feature-mini-card p,
.feature-mini-content p,
[data-theme="light"] .feature-mini-card p,
[data-theme="light"] .feature-mini-content p {
  color: #475569 !important;
}

/* Features section - Light Mode */
.features-slider-section,
[data-theme="light"] .features-slider-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.features-slider-section .section-title h2,
[data-theme="light"] .features-slider-section .section-title h2 {
  color: #0F172A !important;
}

.features-slider-section .section-title p,
[data-theme="light"] .features-slider-section .section-title p {
  color: #475569 !important;
}

/* Badge labels - Light Mode */
.badge-label,
[data-theme="light"] .badge-label {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%) !important;
  color: #0369A1 !important;
  border: 1px solid rgba(14, 165, 233, 0.3) !important;
  font-weight: 600;
}

/* FAQ section - Light Mode */
.faq-section,
[data-theme="light"] .faq-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.accordion-item,
[data-theme="light"] .accordion-item {
  background: #FFFFFF !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
}

.accordion-button,
[data-theme="light"] .accordion-button {
  color: #1E293B !important;
  background: #FFFFFF !important;
  font-weight: 600;
}

.accordion-button:not(.collapsed),
[data-theme="light"] .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%) !important;
  color: #0369A1 !important;
}

.accordion-body,
[data-theme="light"] .accordion-body {
  color: #475569 !important;
  background: #FAFAFA !important;
}

/* ============================================
   ALL PAGES - DARK MODE SUPPORT
   ============================================ */

/* VDS Sunucu Page */
[data-theme="dark"] .vds-section,
[data-theme="dark"] .vds-hero {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .vds-card,
[data-theme="dark"] .server-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

[data-theme="dark"] .vds-card h3,
[data-theme="dark"] .server-card h3 {
  color: #F9FAFB !important;
}

[data-theme="dark"] .vds-card p,
[data-theme="dark"] .server-card p {
  color: #94A3B8 !important;
}

/* Web Hosting Page */
[data-theme="dark"] .hosting-section,
[data-theme="dark"] .web-hosting-hero {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .hosting-card,
[data-theme="dark"] .hosting-plan-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

/* Dedicated Server Page */
[data-theme="dark"] .dedicated-section,
[data-theme="dark"] .dedicated-hero {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .dedicated-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

/* Reseller Hosting Page */
[data-theme="dark"] .reseller-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .reseller-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

/* WordPress Hosting Page */
[data-theme="dark"] .wordpress-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .wordpress-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

/* İletişim (Contact) Page */
[data-theme="dark"] .contact-hero,
[data-theme="dark"] .contact-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .contact-info-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

[data-theme="dark"] .contact-form-wrapper {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

[data-theme="dark"] .form-control {
  background: rgba(15, 23, 42, 0.8) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  color: #F9FAFB !important;
}

[data-theme="dark"] .form-control::placeholder {
  color: #64748B !important;
}

/* Hakkımızda (About) Page */
[data-theme="dark"] .about-hero,
[data-theme="dark"] .about-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .about-card,
[data-theme="dark"] .team-member-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

[data-theme="dark"] .about-card h3,
[data-theme="dark"] .team-member-card h4 {
  color: #F9FAFB !important;
}

[data-theme="dark"] .about-card p,
[data-theme="dark"] .team-member-card p {
  color: #94A3B8 !important;
}

/* Kariyer (Career) Page */
[data-theme="dark"] .career-section,
[data-theme="dark"] .career-hero {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .job-card,
[data-theme="dark"] .position-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

[data-theme="dark"] .job-card h3,
[data-theme="dark"] .position-card h3 {
  color: #F9FAFB !important;
}

[data-theme="dark"] .job-card p,
[data-theme="dark"] .position-card p {
  color: #94A3B8 !important;
}

/* Sözleşmeler (Legal) Pages */
[data-theme="dark"] .legal-section,
[data-theme="dark"] .contract-section,
[data-theme="dark"] .privacy-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .legal-content,
[data-theme="dark"] .contract-content {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] .legal-content h1,
[data-theme="dark"] .legal-content h2,
[data-theme="dark"] .legal-content h3 {
  color: #F9FAFB !important;
}

/* Sunucu Barındırma Page */
[data-theme="dark"] .colocation-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .colocation-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

/* Nested Sunucu Page */
[data-theme="dark"] .nested-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .nested-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

/* Page Hero Sections - All Pages */
[data-theme="dark"] .page-hero,
[data-theme="dark"] .inner-hero,
[data-theme="dark"] .product-hero {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.2), transparent),
    linear-gradient(180deg, #0F172A 0%, #1E293B 100%) !important;
}

[data-theme="dark"] .page-hero h1,
[data-theme="dark"] .inner-hero h1,
[data-theme="dark"] .product-hero h1 {
  color: #F9FAFB !important;
}

[data-theme="dark"] .page-hero p,
[data-theme="dark"] .inner-hero p,
[data-theme="dark"] .product-hero p {
  color: #CBD5E1 !important;
}

/* Breadcrumb - Dark Mode */
[data-theme="dark"] .breadcrumb {
  background: transparent;
}

[data-theme="dark"] .breadcrumb-item a {
  color: #94A3B8;
}

[data-theme="dark"] .breadcrumb-item.active {
  color: #A855F7;
}

/* General Cards - All Pages */
[data-theme="dark"] .info-card,
[data-theme="dark"] .feature-box,
[data-theme="dark"] .benefit-card,
[data-theme="dark"] .spec-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

[data-theme="dark"] .info-card h3,
[data-theme="dark"] .feature-box h3,
[data-theme="dark"] .benefit-card h3,
[data-theme="dark"] .spec-card h3 {
  color: #F9FAFB !important;
}

[data-theme="dark"] .info-card p,
[data-theme="dark"] .feature-box p,
[data-theme="dark"] .benefit-card p,
[data-theme="dark"] .spec-card p {
  color: #94A3B8 !important;
}

/* Tables - All Pages */
[data-theme="dark"] .table,
[data-theme="dark"] .specs-table,
[data-theme="dark"] .comparison-table {
  background: rgba(30, 41, 59, 0.8);
  color: #E5E7EB;
}

[data-theme="dark"] .table thead th,
[data-theme="dark"] .specs-table thead th {
  background: rgba(51, 65, 85, 0.8);
  color: #F9FAFB;
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] .table tbody td,
[data-theme="dark"] .specs-table tbody td {
  border-color: rgba(148, 163, 184, 0.1);
  color: #CBD5E1;
}

[data-theme="dark"] .table tbody tr:hover,
[data-theme="dark"] .specs-table tbody tr:hover {
  background: rgba(51, 65, 85, 0.5);
}

/* Buttons in Dark Mode */
[data-theme="dark"] .btn-outline-primary {
  color: #A855F7;
  border-color: #A855F7;
}

[data-theme="dark"] .btn-outline-primary:hover {
  background: #A855F7;
  color: #FFFFFF;
}

[data-theme="dark"] .btn-outline-secondary {
  color: #94A3B8;
  border-color: #475569;
}

[data-theme="dark"] .btn-outline-secondary:hover {
  background: #475569;
  color: #FFFFFF;
}

/* Testimonials/Reviews - Both Modes */
.testimonial-card,
.review-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .review-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
}

.testimonial-card .testimonial-text,
[data-theme="light"] .testimonial-card .testimonial-text {
  color: #334155 !important;
}

.testimonial-card .author-name,
[data-theme="light"] .testimonial-card .author-name {
  color: #1E293B !important;
}

.testimonial-card .author-role,
[data-theme="light"] .testimonial-card .author-role {
  color: #64748B !important;
}

[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .review-card {
  background: rgba(30, 41, 59, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.15) !important;
}

[data-theme="dark"] .testimonial-card .testimonial-text {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .testimonial-card .author-name {
  color: #F9FAFB !important;
}

[data-theme="dark"] .testimonial-card .author-role {
  color: #94A3B8 !important;
}

/* Stats/Numbers Section */
[data-theme="dark"] .stats-section,
[data-theme="dark"] .numbers-section {
  background: rgba(30, 41, 59, 0.5);
}

[data-theme="dark"] .stat-item .stat-number,
[data-theme="dark"] .stat-box .number {
  color: #F9FAFB !important;
}

[data-theme="dark"] .stat-item .stat-label,
[data-theme="dark"] .stat-box .label {
  color: #94A3B8 !important;
}

/* Partners/Clients Section */
[data-theme="dark"] .partners-section,
[data-theme="dark"] .clients-section {
  background: rgba(15, 23, 42, 0.8);
}

/* CTA Sections - Both Modes */
.cta-section,
[data-theme="light"] .cta-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.cta-section h2,
[data-theme="light"] .cta-section h2 {
  color: #0F172A !important;
}

.cta-section p,
[data-theme="light"] .cta-section p {
  color: #475569 !important;
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(56, 189, 248, 0.15) 100%);
}

[data-theme="dark"] .cta-section h2 {
  color: #F9FAFB !important;
}

[data-theme="dark"] .cta-section p {
  color: #CBD5E1 !important;
}

/* Alert boxes */
[data-theme="dark"] .alert {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.2);
  color: #E5E7EB;
}

/* Smooth transitions for all elements */
.pricing-card,
.feature-mini-card,
.testimonial-card,
.accordion-item,
.vds-card,
.hosting-card,
.dedicated-card,
.contact-card,
.about-card,
.job-card,
.info-card,
.cta-section {
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* ============================================
   ITEM ICONS
   ============================================ */
.item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.item-icon.blue {
  background: rgba(0, 102, 255, 0.1);
  color: #0066FF;
}

.dropdown-item:hover .item-icon.blue {
  background: #0066FF;
  color: #FFFFFF;
}

.item-icon.orange {
  background: rgba(255, 153, 0, 0.1);
  color: #FF9900;
}

.dropdown-item:hover .item-icon.orange {
  background: #FF9900;
  color: #FFFFFF;
}

.item-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}

.dropdown-item:hover .item-icon.purple {
  background: #8B5CF6;
  color: #FFFFFF;
}

.item-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.dropdown-item:hover .item-icon.green {
  background: #10B981;
  color: #FFFFFF;
}

.item-icon i {
  font-size: inherit;
  line-height: 1;
}

.item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}