::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f0fdf4;
}

::-webkit-scrollbar-thumb {
  background: #0d9488;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0f766e;
}

.text-gradient {
  background: linear-gradient(to right, #0d9488, #059669);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-soft {
  background: radial-gradient(circle at top right, #ecfdf5, #fff, #f0fdfa);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.08);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(13, 148, 136, 0.15);
  border-color: #34d399;
}

.glass-card-strong {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(209, 250, 229, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

@media (min-width: 1024px) {
  @keyframes float {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-15px);
    }

    100% {
      transform: translateY(0);
    }
  }

  .animate-float {
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float-delayed {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(0);
    }
  }

  .animate-float-delayed {
    animation: float-delayed 5s ease-in-out infinite;
    animation-delay: 2s;
  }
}

@keyframes spin-wheel {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes car-suspension {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes road-moving {
  100% {
    background-position: -40px 0;
  }
}

.car-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 180px;
  z-index: 10;
  margin: 0 auto;
}

.car-body {
  animation: car-suspension 1s ease-in-out infinite;
}

.car-wheel {
  transform-origin: center;
  animation: spin-wheel 0.6s linear infinite;
}

.moving-road {
  position: absolute;
  bottom: 10px;
  left: -50%;
  width: 200%;
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    #94a3b8 0,
    #94a3b8 20px,
    transparent 20px,
    transparent 40px
  );
  animation: road-moving 0.8s linear infinite;
  opacity: 0.5;
}

.masonry-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }

  .col-span-2 {
    grid-column: span 2;
  }

  .row-span-2 {
    grid-row: span 2;
  }
}

.feature-card-large {
  background: linear-gradient(135deg, #047857 0, #0d9488 100%);
  color: #fff;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(4, 120, 87, 0.3);
}

.feature-card-tall {
  background: #0f172a;
  color: #fff;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card-tall:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: #10b981;
  box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.15);
  transform: translateY(-5px);
}

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

@keyframes flow {
  to {
    stroke-dashoffset: 0;
  }
}

.connection-line {
  stroke-dasharray: 10;
  stroke-dashoffset: 100;
  animation: flow 2s linear infinite;
  opacity: 0.4;
}

@keyframes float-node {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.branch-node {
  animation: float-node 4s ease-in-out infinite;
}

.branch-node:first-child {
  animation-delay: 0s;
}

.branch-node:nth-child(2) {
  animation-delay: 1s;
}

.branch-node:nth-child(3) {
  animation-delay: 2s;
}

.branch-node:nth-child(4) {
  animation-delay: 1.5s;
}

.branch-node:nth-child(5) {
  animation-delay: 0.5s;
}

.text-gradient-yellow {
  background: linear-gradient(to right, #d97706, #f59e0b);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-yellow-soft {
  background: radial-gradient(circle at top right, #fffbeb, #fff, #fef3c7);
}

.border-amber-glow {
  border-color: #fbbf24;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08);
}

.glass-panel-yellow {
  background: rgba(255, 251, 235, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(252, 211, 77, 0.5);
  transition: all 0.3s ease;
}

.glass-panel-yellow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
}

.connection-line-yellow {
  stroke: #f59e0b;
  stroke-dasharray: 10;
  stroke-dashoffset: 100;
  animation: flow 2s linear infinite;
  opacity: 0.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marquee-track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: 2rem;
  padding-right: 2rem;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
