/* ============================================================
   RunWithNoaman.com — Main Stylesheet
   Mobile-First | Vibrant Athletic Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --red:        #e63946;
  --red-dark:   #c1121f;
  --gold:       #f4a261;
  --navy:       #0f1f3d;
  --navy2:      #162240;
  --dark:       #0f1f3d;
  --dark2:      #162240;
  --dark3:      #ffffff;
  --dark4:      #f0f4f8;
  --border:     rgba(0,0,0,0.1);
  --border-dark: rgba(255,255,255,0.1);
  --text:       #0f1f3d;
  --text-muted: #64748b;
  --white:      #ffffff;
  --success:    #10b981;
  --warning:    #f59e0b;
  --info:       #3b82f6;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-red: 0 4px 24px rgba(230,57,70,0.35);
  --transition: 0.3s ease;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --container:  1200px;
  --nav-h:      70px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: #f5f7fb;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── Utility Classes ───────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #e8834a;
  border-color: #e8834a;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); }

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #64748b;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-login-btn {
  display: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-login-btn:hover { color: var(--navy); }
.nav-cta { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 24px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta { margin-top: 20px; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #162040 40%, #1a0d20 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,57,70,0.18) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
/* Floating accent card */
.hero-accent {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 280px;
  display: none;
}

/* ── Section Commons ───────────────────────────────────────── */
.section { padding: 90px 0; background: #ffffff; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--navy2); }
.section-alt { background: #f5f7fb; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-dark .section-title { color: #ffffff; }
.section-dark .section-subtitle { color: #9baec8; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.section-subtitle.centered { margin: 0 auto; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card:hover {
  border-color: rgba(230,57,70,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.card-icon {
  width: 56px; height: 56px;
  background: rgba(230,57,70,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 20px;
}

/* ── Program Cards ─────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.program-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.program-card:hover { border-color: rgba(230,57,70,0.4); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.15); }
.program-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(230,57,70,0.2);
}
.program-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.program-badge.coming-soon { background: #e2e8f0; color: #64748b; }
.program-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.program-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.program-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.program-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.program-price {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: #f8faff;
}
.program-price .price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--navy);
}
.program-price .price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.program-features {
  padding: 24px 32px;
}
.program-features ul { display: flex; flex-direction: column; gap: 12px; }
.program-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #4a5568;
}
.program-features li .check {
  color: var(--success);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.program-features li .x-mark { color: #cbd5e0; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.program-action { padding: 0 32px 32px; }

/* ── Achievement / Stats ───────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stat-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Achievements Table ────────────────────────────────────── */
.achievements-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.achievements-table thead tr {
  background: rgba(230,57,70,0.08);
  border-bottom: 1px solid rgba(230,57,70,0.2);
}
.achievements-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--red);
}
.achievements-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.achievements-table tbody tr:hover { background: rgba(230,57,70,0.04); }
.achievements-table td {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: #4a5568;
}
.achievements-table td:first-child { color: var(--navy); font-weight: 700; }
.section-dark .achievements-table td { color: #9baec8; }
.section-dark .achievements-table td:first-child { color: #ffffff; }
.medal { font-size: 1.1rem; }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.blog-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, #0f1f3d 0%, #1e0a10 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-thumb-icon { font-size: 3rem; opacity: 0.3; color: #ffffff; }
.blog-thumb-cat {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: var(--transition);
}
.blog-card:hover .blog-title { color: var(--red); }
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
  transition: var(--transition);
}
.blog-read-more:hover { gap: 10px; }

/* ── Blog Post Single ──────────────────────────────────────── */
.post-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0f1f3d 0%, #1a2a50 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.post-cat {
  display: inline-block;
  background: rgba(230,57,70,0.15);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(230,57,70,0.3);
  margin-bottom: 20px;
}
.post-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
.post-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 40px 0 16px;
  letter-spacing: -0.5px;
}
.post-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 28px 0 12px;
}
.post-content p {
  color: #4a5568;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1rem;
}
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 8px;
}
.post-content blockquote {
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  background: rgba(230,57,70,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 1.1rem;
}
.post-content strong { color: var(--navy); font-weight: 700; }
.post-highlight {
  background: #f8faff;
  border: 1px solid rgba(15,31,61,0.1);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 28px 0;
}
.post-highlight h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--navy);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.form-control::placeholder { color: #a0aec0; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.form-error {
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-success {
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--success);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-info-box {
  background: rgba(52,152,219,0.1);
  border: 1px solid rgba(52,152,219,0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.form-info-box h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--info);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-info-box p, .form-info-box li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.form-info-box ul { padding-left: 20px; list-style: disc; margin-top: 8px; }
.form-info-box .bank-details {
  background: #f0f4f8;
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 12px;
  font-size: 0.85rem;
}
.form-info-box .bank-details p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin: 0;
}
.form-info-box .bank-details p:last-child { border-bottom: none; }
.form-info-box .bank-details strong { color: var(--navy); }

/* ── Auth Pages ────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 100%);
  padding: 100px 20px 40px;
}
.auth-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo .logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
}
.auth-logo .logo-text span { color: var(--red); }
.auth-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.auth-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-link {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 24px;
}
.auth-link a { color: var(--red); font-weight: 600; }
.auth-link a:hover { text-decoration: underline; }

/* ── Dashboard Layout ──────────────────────────────────────── */
.dashboard-layout {
  min-height: 100vh;
  background: #f5f7fb;
  display: flex;
}
.dashboard-sidebar {
  width: 260px;
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.08);
  position: fixed;
  top: 0; left: -260px;
  height: 100vh;
  z-index: 900;
  overflow-y: auto;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}
.dashboard-sidebar.open { left: 0; }
.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
}
.sidebar-logo span { color: var(--red); }
.sidebar-user {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-avatar {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.sidebar-user-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.sidebar-user-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.sidebar-nav {
  padding: 16px 0;
  flex: 1;
}
.sidebar-nav-label {
  padding: 8px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #444;
  margin-top: 8px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  border-left: 3px solid transparent;
  cursor: pointer;
}
.sidebar-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.03);
  border-left-color: rgba(230,57,70,0.5);
}
.sidebar-link.active {
  color: var(--white);
  background: rgba(230,57,70,0.08);
  border-left-color: var(--red);
}
.sidebar-link i { font-size: 1rem; width: 20px; text-align: center; }
.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}
.dashboard-main {
  flex: 1;
  margin-left: 0;
  transition: margin-left 0.3s ease;
}
.dashboard-topbar {
  position: sticky;
  top: 0;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
}
.dashboard-menu-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.dashboard-content {
  padding: 32px 20px;
  max-width: 1100px;
}
.dashboard-section { display: none; }
.dashboard-section.active { display: block; }
.section-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.section-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }

/* Dashboard cards */
.dash-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
.dash-stat {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.dash-stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.dash-stat-icon.red { background: rgba(230,57,70,0.15); color: var(--red); }
.dash-stat-icon.gold { background: rgba(244,162,97,0.15); color: var(--gold); }
.dash-stat-icon.green { background: rgba(46,204,113,0.15); color: var(--success); }
.dash-stat-icon.blue { background: rgba(52,152,219,0.15); color: var(--info); }
.dash-stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}
.dash-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* Content items */
.content-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.content-item:hover { border-color: rgba(230,57,70,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.content-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.content-icon.text { background: rgba(52,152,219,0.15); color: var(--info); }
.content-icon.file { background: rgba(244,162,97,0.15); color: var(--gold); }
.content-icon.video { background: rgba(230,57,70,0.15); color: var(--red); }
.content-info { flex: 1; }
.content-name { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 3px; }
.content-meta { font-size: 0.78rem; color: var(--text-muted); }
.content-action a, .content-action button {
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.content-action a:hover, .content-action button:hover { border-color: var(--red); color: var(--red); }

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-green { background: rgba(46,204,113,0.15); color: var(--success); }
.badge-red { background: rgba(230,57,70,0.15); color: var(--red); }
.badge-yellow { background: rgba(243,156,18,0.15); color: var(--warning); }
.badge-blue { background: rgba(52,152,219,0.15); color: var(--info); }
.badge-gray { background: #e2e8f0; color: #64748b; }

/* Table */
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead tr {
  background: #f8faff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.data-table tbody tr { border-bottom: 1px solid rgba(0,0,0,0.06); transition: var(--transition); }
.data-table tbody tr:hover { background: rgba(230,57,70,0.03); }
.data-table td { padding: 14px 16px; font-size: 0.88rem; color: #4a5568; }
.data-table td:first-child { color: var(--navy); font-weight: 600; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.08); background: #ffffff; }

/* ── How It Works ──────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 48px;
}
.step-item:last-child { padding-bottom: 0; }
.step-line-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.step-connector {
  flex: 1;
  width: 2px;
  background: rgba(0,0,0,0.12);
  margin: 8px 0;
  min-height: 40px;
}
.step-item:last-child .step-connector { display: none; }
.step-body { padding-top: 10px; }
.step-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-dark .step-title { color: #ffffff; }
.section-dark .step-desc { color: #9baec8; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: #4a5568; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.testimonial-name { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testimonial-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.faq-question {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: #f8faff; }
.faq-question.open { background: #f0f4ff; }
.faq-icon { color: var(--red); font-size: 1.1rem; flex-shrink: 0; transition: var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: #ffffff;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.8;
}
.faq-answer.open { display: block; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(230,57,70,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: #4a5568;
  transition: var(--transition);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.social-link:hover { border-color: var(--red); color: var(--red); }
.social-link.instagram:hover { border-color: #e1306c; color: #e1306c; }
.social-link.facebook:hover { border-color: #1877f2; color: #1877f2; }
.social-link.whatsapp:hover { border-color: #25d366; color: #25d366; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a0a1a 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(230,57,70,0.15) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: none;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand .logo span { color: var(--red); }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--red); }
.footer-links a::before { content: '→'; font-size: 0.7rem; opacity: 0; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom .footer-bottom-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer-bottom .footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom .footer-bottom-links a:hover { color: var(--white); }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, #0f1f3d 0%, #1a2a50 50%, #1a0d20 100%);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(230,57,70,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb { color: rgba(255,255,255,0.5); }
.page-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.page-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.8; }

/* ── Timeline ──────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.1);
}
.section-dark .timeline::before { background: rgba(255,255,255,0.1); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 6px;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.2);
}
.timeline-year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-content {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.section-dark .timeline-content { color: #ffffff; }
.section-dark .timeline-desc { color: #9baec8; }
.timeline-desc { font-size: 0.85rem; color: var(--text-muted); }

/* ── Notification / Alert ──────────────────────────────────── */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.alert-success { background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3); color: var(--success); }
.alert-error { background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.3); color: var(--red); }
.alert-warning { background: rgba(243,156,18,0.1); border: 1px solid rgba(243,156,18,0.3); color: var(--warning); }
.alert-info { background: rgba(52,152,219,0.1); border: 1px solid rgba(52,152,219,0.3); color: var(--info); }

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-title { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--navy); }
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}
.modal-close:hover { color: var(--red); }

/* ── Progress Bar ──────────────────────────────────────────── */
.progress-bar { background: #e2e8f0; border-radius: 50px; height: 8px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--red); border-radius: 50px; transition: width 0.5s ease; }

/* ── Scroll to top ─────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ── Floating WhatsApp ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 52px; height: 52px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.08); }

/* ── Media Queries ─────────────────────────────────────────── */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-login-btn { display: block; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-accent { display: block; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .dashboard-sidebar { left: 0; }
  .dashboard-main { margin-left: 260px; }
  .dashboard-menu-btn { display: none; }
  .dashboard-content { padding: 32px; }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ── Overlay for mobile sidebar ────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 899;
}
.sidebar-overlay.open { display: block; }
