@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Serif+Bengali:wght@400;600;700&display=swap');

:root {
  --primary: #0D6E5A;
  --primary-dark: #094d3f;
  --primary-light: #11896e;
  --accent: #F4A225;
  --accent-dark: #d4881a;
  --bg: #F7F9F8;
  --bg2: #EEF4F2;
  --white: #ffffff;
  --text: #1a2a24;
  --text2: #3d5a52;
  --text3: #6b8a80;
  --border: #d0deda;
  --shadow: 0 4px 24px rgba(13,110,90,0.10);
  --shadow-sm: 0 2px 8px rgba(13,110,90,0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --font: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
  --font-serif: 'Noto Serif Bengali', serif;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  padding: .4rem 0;
  text-align: center;
  letter-spacing: .02em;
}
.topbar span { margin: 0 1rem; }
.topbar span::before { content: '◉ '; color: var(--accent); font-size:.65rem; }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.5rem; gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-brand .logo-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-brand .brand-text .title {
  font-size: .95rem; font-weight: 700; color: var(--primary); line-height: 1.2;
}
.nav-brand .brand-text .sub {
  font-size: .72rem; color: var(--text3); line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 500; color: var(--text2);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--bg2); color: var(--primary);
}
.nav-cta {
  background: var(--primary); color: white !important;
  padding: .45rem 1.1rem !important;
  border-radius: 99px !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 2000;
  flex-direction: column; padding: 2rem 1.5rem;
  gap: .5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end; background: none; border: none;
  font-size: 1.8rem; color: var(--text); margin-bottom: 1rem;
}
.mobile-menu a {
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1.05rem; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: var(--bg2); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: white; overflow: hidden; position: relative;
  padding: 5rem 1.5rem 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: .35rem .9rem; border-radius: 99px;
  font-size: .78rem; margin-bottom: 1.25rem;
  animation: fadeInUp .6s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 700; line-height: 1.3; margin-bottom: 1rem;
  animation: fadeInUp .7s .1s ease both;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1rem; opacity: .88; margin-bottom: 1.75rem; line-height: 1.8;
  animation: fadeInUp .7s .2s ease both;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; animation: fadeInUp .7s .3s ease both; }
.btn-primary {
  background: var(--accent); color: var(--text); font-weight: 600;
  padding: .7rem 1.6rem; border-radius: 99px; border: none;
  font-size: .9rem; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(244,162,37,.35); }
.btn-outline {
  background: transparent; color: white; font-weight: 500;
  padding: .7rem 1.6rem; border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.45);
  font-size: .9rem; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }

.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem;
  animation: fadeInUp .7s .4s ease both;
}
.hero-stat .num {
  font-size: 1.6rem; font-weight: 700; color: var(--accent);
  font-family: var(--font-serif);
}
.hero-stat .lbl { font-size: .75rem; opacity: .75; }

.hero-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 2rem;
  animation: fadeInRight .8s .2s ease both;
}
.mp-profile { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.mp-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f7c55a);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700; color: var(--text); flex-shrink: 0;
}
.mp-info .name { font-weight: 700; font-size: 1.05rem; }
.mp-info .post { font-size: .8rem; opacity: .8; }
.mp-info .seat { font-size: .75rem; color: var(--accent); }
.mp-meta { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.mp-meta-item {
  background: rgba(255,255,255,.08); border-radius: var(--radius-sm);
  padding: .6rem .75rem;
}
.mp-meta-item .label { font-size: .68rem; opacity: .7; margin-bottom: .15rem; }
.mp-meta-item .value { font-size: .85rem; font-weight: 600; }

/* ─── SECTION COMMONS ─── */
.section { padding: 4rem 1.5rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: var(--bg2); color: var(--primary);
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  padding: .3rem .9rem; border-radius: 99px;
  border: 1px solid var(--border); margin-bottom: .75rem;
  text-transform: uppercase;
}
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem,3vw,2.1rem);
  font-weight: 700; color: var(--text); margin-bottom: .6rem;
}
.section-header p { color: var(--text2); font-size: .95rem; max-width: 560px; margin: 0 auto; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--primary); color: white;
  padding: 1.5rem;
}
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
}
.stat-item { text-align: center; padding: .75rem; }
.stat-item .n {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
  color: var(--accent); display: block;
}
.stat-item .l { font-size: .8rem; opacity: .8; }

/* ─── MODULE CARDS ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.25rem;
}
.module-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem; cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--card-accent, var(--primary));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.module-card:hover::before { transform: scaleX(1); }
.module-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
  background: var(--icon-bg, var(--bg2));
}
.module-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.module-card p { font-size: .82rem; color: var(--text3); line-height: 1.6; margin-bottom: .9rem; }
.module-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.module-tag {
  font-size: .7rem; padding: .2rem .55rem;
  border-radius: 99px; border: 1px solid var(--border);
  color: var(--text3); background: var(--bg2);
}
.module-arrow {
  position: absolute; right: 1.25rem; top: 1.25rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--primary);
  transition: all var(--transition);
}
.module-card:hover .module-arrow { background: var(--primary); color: white; transform: rotate(45deg); }

/* ─── INFO FLOW ─── */
.flow-section { background: var(--primary-dark); color: white; }
.flow-steps {
  display: flex; align-items: center; gap: 0; justify-content: center;
  flex-wrap: wrap;
}
.flow-step {
  text-align: center; padding: 1.5rem 1.25rem; flex: 1; min-width: 140px;
  position: relative;
}
.flow-step::after {
  content: '→'; position: absolute; right: -8px; top: 50%;
  transform: translateY(-50%); font-size: 1.2rem; color: var(--accent);
  opacity: .6;
}
.flow-step:last-child::after { display: none; }
.flow-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--text); font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .6rem;
}
.flow-step .ft { font-size: .9rem; font-weight: 600; }
.flow-step .fs { font-size: .75rem; opacity: .65; margin-top: .15rem; }

/* ─── DATA TABLE SECTION ─── */
.data-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tab-btn {
  padding: .5rem 1.1rem; border-radius: 99px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: .82rem; font-weight: 500; color: var(--text2);
  transition: all var(--transition); font-family: var(--font);
}
.tab-btn.active {
  background: var(--primary); color: white; border-color: var(--primary);
}
.tab-btn:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.data-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: .85rem; }
thead tr { background: var(--primary); color: white; }
thead th { padding: .85rem 1rem; text-align: left; font-weight: 600; font-size: .82rem; white-space: nowrap; }
tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--bg2); }
tbody td { padding: .75rem 1rem; color: var(--text2); }
tbody td:first-child { color: var(--text); font-weight: 500; }
.badge {
  display: inline-block; font-size: .7rem; padding: .2rem .6rem;
  border-radius: 99px; font-weight: 600;
}
.badge-green { background: #d1fae5; color: #065f46; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-blue { background: #dbeafe; color: #1e40af; }

/* ─── MP SECTION ─── */
.mp-section { background: var(--bg2); }
.mp-card-full {
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow);
}
.mp-card-top {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 2.5rem 2rem; color: white;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.mp-avatar-lg {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f7c55a);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 700; color: var(--text);
  border: 4px solid rgba(255,255,255,.3); flex-shrink: 0;
}
.mp-card-info .name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; }
.mp-card-info .role { opacity: .8; margin: .2rem 0; }
.mp-card-info .slogan {
  font-size: .85rem; font-style: italic; opacity: .75;
  border-left: 2px solid var(--accent); padding-left: .75rem; margin-top: .5rem;
}
.mp-card-body { padding: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.mp-info-block h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text3); margin-bottom: .4rem; }
.mp-info-block p { font-size: .9rem; color: var(--text); }
.mp-links { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.mp-link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .7rem; border-radius: 99px;
  background: var(--bg2); border: 1px solid var(--border);
  font-size: .75rem; color: var(--text2);
  transition: all var(--transition);
}
.mp-link:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ─── SEARCH BAR ─── */
.search-hero {
  background: var(--white); padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.search-bar-wrap { max-width: 680px; margin: 0 auto; position: relative; }
.search-bar {
  width: 100%; padding: 1rem 1.25rem 1rem 3.2rem;
  border: 2px solid var(--border); border-radius: 99px;
  font-size: 1rem; font-family: var(--font);
  transition: border-color var(--transition);
  background: var(--bg);
}
.search-bar:focus { outline: none; border-color: var(--primary); background: white; }
.search-icon { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); color: var(--text3); font-size: 1.1rem; }
.search-btn {
  position: absolute; right: .35rem; top: 50%; transform: translateY(-50%);
  background: var(--primary); color: white; border: none;
  padding: .55rem 1.3rem; border-radius: 99px; font-size: .85rem; font-weight: 600;
  font-family: var(--font); transition: background var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }

/* ─── QUICK ACCESS GRID ─── */
.quick-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(100px,1fr)); gap: .75rem;
  max-width: 1280px; margin: 1.25rem auto 0; padding: 0 1.5rem;
}
.quick-item {
  text-align: center; padding: .9rem .5rem;
  border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--border); cursor: pointer;
  transition: all var(--transition);
}
.quick-item:hover { background: var(--primary); border-color: var(--primary); }
.quick-item:hover .qi-icon, .quick-item:hover .qi-label { color: white; }
.qi-icon { font-size: 1.5rem; margin-bottom: .35rem; }
.qi-label { font-size: .72rem; font-weight: 500; color: var(--text2); line-height: 1.3; }

/* ─── NEWS / UPDATES ─── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; }
.news-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-thumb {
  height: 160px; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden; position: relative;
}
.news-body { padding: 1.1rem 1.25rem; }
.news-cat {
  font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: var(--primary); margin-bottom: .4rem;
}
.news-title { font-size: .9rem; font-weight: 600; line-height: 1.5; margin-bottom: .5rem; }
.news-date { font-size: .75rem; color: var(--text3); }

/* ─── PROGRESS BARS ─── */
.progress-list { display: flex; flex-direction: column; gap: 1.1rem; }
.progress-item {}
.progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .4rem; }
.progress-label { font-size: .85rem; font-weight: 500; }
.progress-value { font-size: .8rem; color: var(--primary); font-weight: 600; }
.progress-bar { height: 8px; background: var(--bg2); border-radius: 99px; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ─── CONTACT / FOOTER ─── */
.footer { background: var(--primary-dark); color: white; padding: 3rem 1.5rem 1.5rem; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer-brand .ft-logo {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  color: var(--accent); margin-bottom: .5rem;
}
.footer-brand p { font-size: .82rem; opacity: .65; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; opacity: .5; }
.footer-col a { display: block; font-size: .82rem; opacity: .7; margin-bottom: .5rem; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; opacity: .5;
}

/* ─── PAGE BANNER ─── */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; padding: 3rem 1.5rem 2.5rem;
}
.page-banner-inner { max-width: 1280px; margin: 0 auto; }
.breadcrumb { font-size: .78rem; opacity: .7; margin-bottom: .5rem; }
.breadcrumb span::after { content: ' › '; margin: 0 .3rem; }
.breadcrumb span:last-child { opacity: 1; }
.page-banner h1 { font-family: var(--font-serif); font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; }

/* ─── DETAIL CARDS ─── */
.detail-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1rem; }
.detail-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.25rem;
  transition: all var(--transition);
}
.detail-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.dc-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.dc-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink:0; }
.dc-title { font-size: .88rem; font-weight: 600; }
.dc-value { font-size: 1.4rem; font-weight: 700; color: var(--primary); font-family: var(--font-serif); }
.dc-sub { font-size: .75rem; color: var(--text3); }

/* ─── ALERTS / NOTICES ─── */
.notice-bar {
  background: #fffbeb; border: 1px solid #f59e0b;
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .82rem; color: #92400e; margin-bottom: 1rem;
}
.notice-bar .notice-icon { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
@keyframes spin { to { transform: rotate(360deg); } }

.fade-in-up { animation: fadeInUp .6s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .flow-steps { flex-direction: column; align-items: flex-start; padding: 0 1rem; }
  .flow-step::after { display: none; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .section { padding: 2.5rem 1.25rem; }
}

/* ─── LOADING SPINNER ─── */
.spinner { width: 32px; height: 32px; border: 3px solid var(--bg2); border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite; }

/* ─── UTILITY ─── */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text3); }
.font-serif { font-family: var(--font-serif); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: .5rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
