body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

:root {
  --accent-blue: #00a3ff;
  --brand-indigo: #4f46e5;
}

.gradient-text {
  background: linear-gradient(to right, #0ea5e9, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-card {
  transition: all 400ms ease;
  position: relative;
  overflow: hidden;
}

.hover-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: #0ea5e9;
  transition: height 400ms ease;
}

.hover-card:hover::before {
  height: 100%;
}

.hover-card:hover {
  transform: translateY(-6px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--brand-indigo) 100%);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}

@media (max-width: 768px) {
  .case-icon {
    width: 48px;
    height: 48px;
  }

  .case-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .case-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .case-icon svg {
    width: 22px;
    height: 22px;
  }
}
