/* ═══════════════════════════════════════════════════════
   RESULT WALLAH — Premium SaaS Design System v2.0
   Clean, light, modern — professional coaching institute
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Bricolage+Grotesque:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg:         #f8fafd;
  --surface:    #ffffff;
  --surface-2:  #f1f5f9;
  --surface-3:  #e8f0fe;
  --border:     #e2e8f0;
  --border-2:   #cbd5e1;

  --blue:       #2563eb;
  --blue-dk:    #1d4ed8;
  --blue-md:    #3b82f6;
  --blue-lt:    #dbeafe;
  --blue-xlt:   #eff6ff;
  --indigo:     #4f46e5;
  --sky:        #0ea5e9;
  --gold:       #f59e0b;
  --gold-dk:    #d97706;
  --gold-lt:    #fef3c7;
  --emerald:    #10b981;
  --red:        #ef4444;

  --grad-blue:  linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --grad-hero:  linear-gradient(150deg, #060d1f 0%, #0f2040 40%, #1a3a70 80%, #2563eb 100%);
  --grad-warm:  linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --grad-dir:   linear-gradient(145deg, #f0f7ff 0%, #e0efff 40%, #f5f0ff 100%);
  --grad-card:  linear-gradient(145deg, #ffffff 0%, #f8fafd 100%);

  --text-1: #0f172a;
  --text-2: #1e293b;
  --text-3: #475569;
  --text-4: #94a3b8;
  --text-inv: #ffffff;

  --sh-xs:   0 1px 3px rgba(15,23,42,.05);
  --sh-sm:   0 2px 8px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --sh-md:   0 8px 24px rgba(15,23,42,.08), 0 3px 8px rgba(15,23,42,.04);
  --sh-lg:   0 20px 48px rgba(15,23,42,.10), 0 8px 16px rgba(15,23,42,.05);
  --sh-xl:   0 32px 80px rgba(15,23,42,.13), 0 16px 32px rgba(15,23,42,.07);
  --sh-blue: 0 8px 28px rgba(37,99,235,.28);
  --sh-gold: 0 8px 28px rgba(245,158,11,.32);

  --r-sm:  8px; --r-md: 12px; --r-lg: 16px;
  --r-xl:  24px; --r-2xl: 32px; --r-pill: 9999px;

  --ease:     cubic-bezier(.22,.68,0,1.15);
  --ease-std: cubic-bezier(.4,0,.2,1);

  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-head: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-md); border-radius: 3px; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ─── TYPOGRAPHY UTILITIES ─── */
.section-eyebrow { text-align: center; margin-bottom: 12px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800; text-align: center;
  color: var(--text-1); letter-spacing: -.6px; line-height: 1.12;
  margin-bottom: 16px;
}
.section-title .accent {
  background: var(--grad-blue);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  text-align: center; color: var(--text-3); font-size: .97rem;
  line-height: 1.75; max-width: 560px; margin: 0 auto 56px;
}
.divider {
  width: 52px; height: 4px; border-radius: var(--r-pill);
  background: var(--grad-blue); margin: 12px auto 0;
}

/* ─── CHIPS / BADGES ─── */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: var(--r-pill);
}
.chip-blue  { background: var(--blue-xlt); color: var(--blue);    border: 1px solid rgba(37,99,235,.18); }
.chip-gold  { background: var(--gold-lt);  color: var(--gold-dk); border: 1px solid rgba(245,158,11,.22); }
.chip-green { background: #dcfce7;         color: #15803d;         border: 1px solid rgba(21,128,61,.18); }
.chip-purple{ background: #f3e8ff;         color: #7c3aed;         border: 1px solid rgba(124,58,237,.18); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  padding: 13px 26px; border-radius: var(--r-pill);
  border: none; cursor: pointer; text-decoration: none;
  transition: all .25s var(--ease-std); white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--grad-blue); color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,99,235,.38); filter: brightness(1.06); }
.btn-gold {
  background: var(--grad-warm); color: #fff;
  box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(245,158,11,.42); filter: brightness(1.06); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-xlt); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .82rem; }
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ─── FORM CONTROLS ─── */
.form-label {
  display: block; font-size: .82rem;
  font-weight: 600; color: var(--text-2); margin-bottom: 7px;
}
.form-control {
  width: 100%; background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-1); padding: 13px 16px;
  border-radius: var(--r-md); font-family: var(--font-body);
  font-size: .9rem; outline: none; transition: all .25s;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-control::placeholder { color: var(--text-4); }
select.form-control option { background: #fff; color: var(--text-1); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ─── CARD BASE ─── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-sm);
  overflow: hidden; transition: all .32s var(--ease-std);
}
.card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s var(--ease-std), transform .65s var(--ease-std);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .26s; }
.reveal-d4 { transition-delay: .34s; }

/* ─── ALERTS ─── */
.alert {
  padding: 13px 18px; border-radius: var(--r-md);
  margin-bottom: 18px; font-size: .85rem; font-weight: 500;
}
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #dc2626; }
