:root {
  --primary-color: #09be4f;
  --text-dark: #252628;
  --text-gray: #616161;
  --text-light: #989898;
  --bg-light: #fefefe;
  --bg-dark: #2a2a35;
  --max-width: 1440px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 42px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: #08a845;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: rgba(9, 190, 79, 0.1);
  color: var(--primary-color);
  border-radius: 60px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-title span {
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 48px;
}

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

/* Background Blurs */
.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
}

.bg-blur-green {
  background-color: rgba(9, 190, 79, 0.15);
}

.bg-blur-red {
  background-color: rgba(221, 71, 71, 0.15);
}

.bg-blur-blue {
  background-color: rgba(0, 93, 156, 0.15);
}

/* ===== Scroll Reveal Base ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: transform, opacity;
}

/* Saat aktif */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional delay utilities */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}