/* ===============================
   Base & Typography
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #87e415;
  --dark: #0f172a;
  --gray: #64748b;
  --light-bg: #f8fafc;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: var(--dark);
  overflow-x: hidden;
}

/* ===============================
   Background Decorative Circles
================================ */
.bg-circles::before,
.bg-circles::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: -1;
}

.bg-circles::before {
  width: 320px;
  height: 320px;
  background: var(--primary);
  top: -80px;
  left: -80px;
}

.bg-circles::after {
  width: 420px;
  height: 420px;
  background: #22c55e;
  bottom: -120px;
  right: -120px;
}

/* ===============================
   Headings & Text
================================ */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  line-height: 1.7;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(90deg, var(--primary), #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   Badges
================================ */
.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(135, 228, 21, 0.12);
  color: var(--primary);
}

.badge-primary {
  background: var(--primary);
  color: #ffffff;
}

/* ===============================
   Cards
================================ */
.card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

/* ===============================
   Buttons
================================ */
.btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), #22c55e);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ===============================
   Animations
================================ */
.animate-fade-in-up {
  animation: fadeInUp 0.9s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 