/* ─── Base ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; }

/* ─── Hero gradient ─── */
.hero-gradient {
  background: linear-gradient(135deg, #F5EEF8 0%, #E8D5F0 25%, #D4B3E6 50%, #FFE9A8 75%, #FFFBF0 100%);
}

/* ─── Hero blobs ─── */
.hero-blob-1 { background: radial-gradient(circle, rgba(123,45,142,0.4) 0%, transparent 70%); }
.hero-blob-2 { background: radial-gradient(circle, rgba(212,148,58,0.35) 0%, transparent 70%); }
.hero-blob-3 { background: radial-gradient(circle, rgba(255,217,102,0.3) 0%, transparent 70%); }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.7s ease both;
}
.delay-100  { animation-delay: 0.1s; }
.delay-200  { animation-delay: 0.2s; }
.delay-300  { animation-delay: 0.3s; }
.delay-500  { animation-delay: 0.5s; }

/* ─── Scroll reveal ─── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Badge tag ─── */
.badge-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(123,45,142,0.08) 0%, rgba(212,148,58,0.08) 100%);
  border: 1px solid rgba(123,45,142,0.15);
  color: #7B2D8E;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4em 1em;
  border-radius: 100px;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  background: linear-gradient(135deg, #7B2D8E 0%, #9B59B6 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.85em 1.8em;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(123,45,142,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,45,142,0.35);
  background: linear-gradient(135deg, #6A2278 0%, #8A4AA8 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  color: #541A60;
  font-weight: 600;
  padding: 0.85em 1.8em;
  border-radius: 14px;
  border: 1.5px solid rgba(123,45,142,0.2);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(123,45,142,0.4);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  background: #fff;
  color: #541A60;
  font-weight: 600;
  padding: 0.85em 1.8em;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ─── Service cards ─── */
.service-card {
  background: #fff;
  border: 1px solid rgba(123,45,142,0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(123,45,142,0.1);
  border-color: rgba(123,45,142,0.15);
}

/* ─── Process cards ─── */
.process-card {
  background: #fff;
  border: 1px solid rgba(123,45,142,0.08);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(123,45,142,0.08);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, #E8D5F0 0%, #FFE9A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Testimonial cards ─── */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(123,45,142,0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(123,45,142,0.08);
}

/* ─── Input fields ─── */
.input-field {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid rgba(123,45,142,0.15);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #3D1345;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-field::placeholder { color: #BA85D8; }
.input-field:focus {
  border-color: #7B2D8E;
  box-shadow: 0 0 0 3px rgba(123,45,142,0.1);
}

/* ─── Nav ─── */
#navbar {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,45,142,0.06);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 30px rgba(123,45,142,0.06);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7B2D8E, #D4943A);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }

.mobile-link { border-bottom: 1px solid rgba(123,45,142,0.06); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero-gradient { background: linear-gradient(160deg, #F5EEF8 0%, #E8D5F0 40%, #FFE9A8 100%); }
  h1 { font-size: 2.6rem !important; }
}
