/* ═══════════════════════════════════════════════════════════════════════════
   BLAZE GLOBAL — Premium Design System v3.0
   blazeglobal.in  •  © 2026 Blaze Global Private Limited
   
   Design: Ultra-clean minimalist with careful typography, 
   generous whitespace, and refined micro-interactions.
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* ── 1. DESIGN TOKENS ────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --flame:       #f04e23;
  --flame-hover: #d94520;
  --flame-light: #fef2ee;
  --flame-glow:  0 4px 14px rgba(240,78,35,.25);

  /* Neutrals (Zinc scale) */
  --n-950: #09090b;
  --n-900: #18181b;
  --n-800: #27272a;
  --n-700: #3f3f46;
  --n-600: #52525b;
  --n-500: #71717a;
  --n-400: #a1a1aa;
  --n-300: #d4d4d8;
  --n-200: #e4e4e7;
  --n-100: #f4f4f5;
  --n-50:  #fafafa;
  --white: #ffffff;

  /* Semantic */
  --green:    #22c55e;
  --green-bg: #f0fdf4;
  --red:      #ef4444;
  --red-bg:   #fef2f2;
  --blue:     #3b82f6;
  --blue-bg:  #eff6ff;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --tracking-tight: -0.025em;
  --tracking-tighter: -0.04em;

  /* Spacing scale */
  --s-1: 0.25rem;  --s-2: 0.5rem;  --s-3: 0.75rem;
  --s-4: 1rem;     --s-5: 1.25rem; --s-6: 1.5rem;
  --s-8: 2rem;     --s-10: 2.5rem; --s-12: 3rem;
  --s-16: 4rem;    --s-20: 5rem;   --s-24: 6rem;
  --s-32: 8rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs:  0 1px 2px rgba(0,0,0,.04);
  --sh-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:  0 4px 6px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.03);
  --sh-lg:  0 10px 15px rgba(0,0,0,.05), 0 4px 6px rgba(0,0,0,.03);
  --sh-xl:  0 20px 25px rgba(0,0,0,.06), 0 8px 10px rgba(0,0,0,.03);
  --sh-glow: var(--flame-glow);

  /* Motion */
  --ease:   cubic-bezier(.16,1,.3,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --t-fast: 150ms;
  --t-med:  250ms;
  --t-slow: 400ms;

  /* Layout */
  --wrap: 1140px;
  --nav-h: 64px;
}

/* ── 2. RESET ────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--n-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul,ol { list-style: none; }
input,select,textarea { font: inherit; }

/* ── 3. TYPOGRAPHY ───────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  color: var(--n-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--tracking-tight);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: var(--tracking-tighter); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p  { color: var(--n-600); line-height: 1.7; }

.text-gradient {
  background: linear-gradient(135deg, var(--n-900) 30%, var(--flame));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8rem; }
.text-center { text-align: center; }

/* ── 4. LAYOUT ───────────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.sec {
  padding: var(--s-24) 0;
}
.sec-alt {
  padding: var(--s-24) 0;
  background: var(--n-50);
}

/* ── 5. ANNOUNCEMENT BAR ────────────────────────────────────────────────── */
.ann-bar {
  background: var(--n-950);
  color: var(--n-300);
  font-size: 0.8rem;
  padding: var(--s-2) 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.ann-bar a {
  color: var(--flame);
  font-weight: 600;
  margin-left: var(--s-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ann-bar a:hover { color: #ff7b54; }
.ann-badge {
  display: inline-block;
  background: var(--flame);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-sm);
  margin-right: var(--s-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: 1px;
}

/* ── 6. NAVBAR ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-med) var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--n-200);
  box-shadow: var(--sh-xs);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* Logo */
.logo { display: flex; align-items: center; gap: var(--s-3); }
.logo-icon {
  width: 34px; height: 34px;
  background: var(--flame);
  color: var(--white);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
  flex-shrink: 0;
}
.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--n-900);
  letter-spacing: -0.01em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}
.nav-links a {
  padding: var(--s-2) var(--s-3);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--n-600);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--n-900);
  background: var(--n-100);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--n-700);
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--n-100); }
.ham-line {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all var(--t-med) var(--ease);
  position: relative;
}
.ham-line::before,
.ham-line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all var(--t-med) var(--ease);
}
.ham-line::before { top: -6px; }
.ham-line::after  { top: 6px; }
.hamburger.open .ham-line { background: transparent; }
.hamburger.open .ham-line::before { top: 0; transform: rotate(45deg); }
.hamburger.open .ham-line::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mob-drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: calc(var(--nav-h) + var(--s-8)) var(--s-6) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
}
.mob-drawer.open { transform: translateX(0); }
.mob-drawer a {
  display: block;
  padding: var(--s-4) var(--s-4);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--n-800);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.mob-drawer a:hover { background: var(--n-100); }
.mob-drawer .mob-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

/* ── 7. BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-weight: 600;
  font-size: 0.9rem;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-md);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  line-height: 1.4;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--flame);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(240,78,35,.3);
}
.btn-primary:hover {
  background: var(--flame-hover);
  box-shadow: var(--sh-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--white);
  color: var(--n-800);
  border: 1px solid var(--n-200);
  box-shadow: var(--sh-xs);
}
.btn-secondary:hover {
  background: var(--n-50);
  border-color: var(--n-300);
  box-shadow: var(--sh-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--n-600);
  padding: var(--s-2) var(--s-3);
}
.btn-ghost:hover { color: var(--n-900); background: var(--n-100); }

.btn-sm { font-size: 0.8rem; padding: var(--s-2) var(--s-4); border-radius: var(--r-sm); }
.btn-lg { font-size: 1rem; padding: var(--s-4) var(--s-8); border-radius: var(--r-lg); }
.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: #dc2626; }

/* ── 8. PILL / TAG ───────────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-1) var(--s-4);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--flame);
  background: var(--flame-light);
  border-radius: var(--r-full);
  border: 1px solid rgba(240,78,35,.15);
}
.tag {
  display: inline-block;
  padding: 2px var(--s-3);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  background: var(--n-100);
  color: var(--n-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── 9. HERO ─────────────────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + var(--s-20)) 0 var(--s-20);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,78,35,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.hero-left h1 { margin-bottom: var(--s-6); }
.hero-left p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--n-500);
  margin-bottom: var(--s-8);
  max-width: 520px;
}
.hero-btns { display: flex; gap: var(--s-4); flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: var(--s-10);
  margin-top: var(--s-12);
  padding-top: var(--s-8);
  border-top: 1px solid var(--n-200);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--n-900);
  letter-spacing: var(--tracking-tighter);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--n-500);
  margin-top: var(--s-1);
}

/* Hero right card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: var(--r-2xl);
  padding: var(--s-8);
  box-shadow: var(--sh-xl);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--n-200), transparent 50%);
  z-index: -1;
}
.hero-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--n-100);
}
.hero-card-title h3 { font-size: 1.1rem; }
.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%     { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}

.wing-list { display: flex; flex-direction: column; gap: var(--s-3); }
.wing {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4);
  border-radius: var(--r-lg);
  border: 1px solid var(--n-100);
  transition: all var(--t-fast);
}
.wing:hover {
  border-color: var(--n-200);
  background: var(--n-50);
  transform: translateX(4px);
}
.wing-ico {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}
.wing-ico.sw { background: #3b82f6; }
.wing-ico.gm { background: #8b5cf6; }
.wing-ico.hw { background: #f59e0b; }
.wing-ico.tr { background: #10b981; }
.wing-ico.cn { background: #64748b; }
.wing-name { font-weight: 600; color: var(--n-900); font-size: 0.95rem; }
.wing-sub  { font-size: 0.8rem; color: var(--n-500); margin-top: 1px; }

/* ── 10. SECTION HEADERS ─────────────────────────────────────────────────── */
.sec-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--s-12);
}
.sec-header .pill { margin-bottom: var(--s-4); }
.sec-header h2 { margin-bottom: var(--s-4); }
.sec-header p { font-size: 1.05rem; }

.page-header {
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-12);
  text-align: center;
  background: linear-gradient(180deg, var(--n-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--n-100);
}
.page-header .pill { margin-bottom: var(--s-4); }
.page-header h1 { margin-bottom: var(--s-4); max-width: 700px; margin-left: auto; margin-right: auto; }
.page-header p { font-size: 1.1rem; max-width: 550px; margin: 0 auto; color: var(--n-500); }

/* ── 11. CARDS SYSTEM ────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  transition: all var(--t-med) var(--ease);
}
.card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--n-300);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-5);
  color: var(--flame);
  background: var(--flame-light);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: var(--s-3); }
.card p { font-size: 0.95rem; line-height: 1.7; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-6); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s-6); }

/* ── 12. PRODUCTS ────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-8);
  gap: var(--s-4);
  flex-wrap: wrap;
}
.filter-tabs {
  display: flex;
  gap: var(--s-1);
  background: var(--n-100);
  padding: 3px;
  border-radius: var(--r-md);
}
.filter-tab {
  padding: var(--s-2) var(--s-4);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--n-600);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--white);
  color: var(--n-900);
  box-shadow: var(--sh-xs);
}

.search-input {
  width: 260px;
  padding: var(--s-3) var(--s-4);
  padding-left: 40px;
  border: 1px solid var(--n-200);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  outline: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 12px center;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-input:focus {
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgba(240,78,35,.1);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: var(--s-8);
}

.p-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.p-card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--n-300);
  transform: translateY(-3px);
}
.p-card-head {
  padding: var(--s-6);
  background: var(--n-50);
  border-bottom: 1px solid var(--n-100);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-icon {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--n-100);
}
.p-tags { display: flex; flex-direction: column; align-items: flex-end; gap: var(--s-2); }
.p-card-body {
  padding: var(--s-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--n-900);
  margin-bottom: var(--s-1);
}
.p-platform {
  font-size: 0.85rem;
  color: var(--flame);
  font-weight: 500;
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.p-platform svg { width: 14px; height: 14px; }
.p-desc {
  font-size: 0.9rem;
  color: var(--n-600);
  line-height: 1.7;
  margin-bottom: var(--s-5);
  flex: 1;
}
.p-reqs {
  background: var(--n-50);
  border: 1px solid var(--n-100);
  border-radius: var(--r-md);
  padding: var(--s-4);
  font-size: 0.82rem;
  color: var(--n-500);
  line-height: 1.6;
}
.p-reqs strong {
  display: block;
  color: var(--n-700);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-1);
}
.p-card-foot {
  padding: var(--s-5) var(--s-6);
  border-top: 1px solid var(--n-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.82rem;
  color: var(--n-500);
}
.p-meta svg { width: 14px; height: 14px; }
.p-meta span { display: flex; align-items: center; gap: var(--s-1); }
.p-actions { display: flex; gap: var(--s-2); }

/* ── 13. DIVISIONS ───────────────────────────────────────────────────────── */
.div-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-6);
}
.div-card {
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  transition: all var(--t-med) var(--ease);
}
.div-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--n-300);
  transform: translateY(-2px);
}
.div-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-5);
  font-size: 1.25rem;
}
.div-card h3 { margin-bottom: var(--s-3); }
.div-card p { font-size: 0.9rem; margin-bottom: var(--s-5); }
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.check-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.88rem;
  color: var(--n-600);
}
.check-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.filter-pills {
  display: flex;
  justify-content: center;
  gap: var(--s-2);
  margin-bottom: var(--s-10);
  flex-wrap: wrap;
}
.filter-pill {
  padding: var(--s-2) var(--s-5);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--n-600);
  border-radius: var(--r-full);
  border: 1px solid var(--n-200);
  background: var(--white);
  transition: all var(--t-fast);
}
.filter-pill:hover { border-color: var(--n-400); color: var(--n-900); }
.filter-pill.active {
  background: var(--n-900);
  color: var(--white);
  border-color: var(--n-900);
}

/* ── 14. STEPS / PROCESS ─────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-6); }
.step {
  text-align: center;
  padding: var(--s-6);
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--n-100);
  line-height: 1;
  margin-bottom: var(--s-4);
}
.step h4 { margin-bottom: var(--s-3); }
.step p { font-size: 0.88rem; }

/* ── 15. FAQ ─────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq {
  border: 1px solid var(--n-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq:hover { border-color: var(--n-300); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-5) var(--s-6);
  font-size: 1rem;
  font-weight: 600;
  color: var(--n-900);
  background: var(--white);
}
.faq-chevron {
  width: 18px; height: 18px;
  color: var(--n-400);
  transition: transform var(--t-med) var(--ease), color var(--t-fast);
  flex-shrink: 0;
}
.faq.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--flame);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 var(--s-6) var(--s-5);
  font-size: 0.95rem;
  color: var(--n-600);
  line-height: 1.7;
}

/* ── 16. CONTACT ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.contact-info {
  background: var(--n-950);
  color: var(--white);
  padding: var(--s-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h3 { color: var(--white); font-size: 1.5rem; margin-bottom: var(--s-3); }
.contact-info > p { color: var(--n-400); margin-bottom: var(--s-10); font-size: 0.95rem; }
.c-item {
  display: flex;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.c-ico {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--flame);
  flex-shrink: 0;
}
.c-ico svg { width: 18px; height: 18px; }
.c-label { font-size: 0.8rem; color: var(--n-400); margin-bottom: 2px; }
.c-value { font-size: 0.95rem; color: var(--n-200); }

.contact-form-wrap { padding: var(--s-12); }
.contact-form-wrap h3 { margin-bottom: var(--s-3); }
.contact-form-wrap > p { margin-bottom: var(--s-8); font-size: 0.95rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.fg { display: flex; flex-direction: column; gap: var(--s-2); }
.fg.full { grid-column: 1 / -1; }
.fg label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--n-700);
}
.fg label .req { color: var(--flame); margin-left: 2px; }
.fg input,
.fg select,
.fg textarea {
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--n-200);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: var(--white);
  color: var(--n-800);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgba(240,78,35,.08);
}
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: var(--s-6); }

/* ── 17. LEGAL PAGES ─────────────────────────────────────────────────────── */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--s-12) var(--s-6);
}
.legal-wrap h3 {
  font-size: 1.15rem;
  margin: var(--s-8) 0 var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--n-100);
}
.legal-wrap h3:first-child { margin-top: 0; }
.legal-wrap p { margin-bottom: var(--s-4); font-size: 0.95rem; }
.legal-wrap ul,
.legal-wrap ol {
  margin: var(--s-3) 0 var(--s-5) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  list-style: disc;
}
.legal-wrap ol { list-style: decimal; }
.legal-wrap li { font-size: 0.92rem; color: var(--n-600); line-height: 1.7; }
.legal-wrap strong { color: var(--n-800); }

/* ── 18. ABOUT: INCORPORATION ────────────────────────────────────────────── */
.inc-card {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--n-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.inc-item {
  padding: var(--s-5) var(--s-6);
  border-bottom: 1px solid var(--n-100);
}
.inc-item:nth-child(odd) { border-right: 1px solid var(--n-100); }
.inc-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--n-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-1);
}
.inc-value { font-size: 1rem; font-weight: 600; color: var(--n-900); }
.inc-footer {
  padding: var(--s-5) var(--s-6);
  background: var(--n-50);
  text-align: center;
  font-size: 0.85rem;
  color: var(--n-500);
}
.inc-footer a { color: var(--flame); font-weight: 600; }

/* Leaders */
.leaders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); }
.leader {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-6);
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: var(--r-xl);
}
.leader-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.leader-avatar.sf { background: linear-gradient(135deg, var(--n-900), var(--n-700)); }
.leader-avatar.sk { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.leader-info h3 { margin-bottom: 2px; }
.leader-role { font-size: 0.85rem; color: var(--flame); font-weight: 600; margin-bottom: var(--s-3); }
.leader-tags { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.leader-tags span { font-size: 0.72rem; }

/* ── 19. FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--n-950);
  color: var(--n-400);
  padding: var(--s-16) 0 var(--s-8);
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--s-10);
  margin-bottom: var(--s-12);
}
.ft-about p { font-size: 0.88rem; line-height: 1.7; color: var(--n-400); margin-top: var(--s-4); }
.ft-about .text-xs { color: var(--n-600); margin-top: var(--s-3); }
.ft-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-5);
}
.ft-links { display: flex; flex-direction: column; gap: var(--s-3); }
.ft-links a { font-size: 0.88rem; color: var(--n-400); transition: color var(--t-fast); }
.ft-links a:hover { color: var(--white); }
.ft-bar {
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--n-600);
  flex-wrap: wrap;
  gap: var(--s-4);
}
.ft-bar-links { display: flex; gap: var(--s-6); }
.ft-bar-links a { color: var(--n-500); transition: color var(--t-fast); }
.ft-bar-links a:hover { color: var(--n-300); }

/* ── 20. MODALS ──────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(.95) translateY(8px);
  transition: transform var(--t-med) var(--spring);
  box-shadow: var(--sh-xl);
  position: relative;
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  font-size: 1.25rem;
  color: var(--n-500);
  transition: background var(--t-fast), color var(--t-fast);
}
.modal-close:hover { background: var(--n-100); color: var(--n-900); }

/* ── 21. TOAST ───────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--s-3) var(--s-6);
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--n-900);
  color: var(--white);
  box-shadow: var(--sh-lg);
  z-index: 99999;
  transition: bottom var(--t-med) var(--spring);
  white-space: nowrap;
}
.toast.show { bottom: 32px; }
.toast.ok { background: #065f46; }
.toast.err { background: #991b1b; }

/* ── 22. SCROLL REVEAL ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── 23. ADMIN STYLES ────────────────────────────────────────────────────── */
body.admin-body {
  background: var(--n-100);
  overflow-x: hidden;
}
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--n-950);
  padding: var(--s-6);
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s-12);
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: var(--sh-xl);
}
.admin-login-logo {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--flame), #ff7b54);
  border-radius: var(--r-lg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: var(--s-6);
}
.admin-login-card h2 { margin-bottom: var(--s-2); }
.admin-login-card p { margin-bottom: var(--s-8); }
.admin-alert-error {
  background: var(--red-bg);
  color: var(--red);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  margin-bottom: var(--s-5);
}

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--n-950);
  color: var(--white);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; bottom: 0; left: 0;
  z-index: 100;
}
.admin-brand {
  padding: var(--s-6);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.admin-brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--flame), #ff7b54);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; color: var(--white);
}
.admin-brand-text h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1px; }
.admin-brand-text span { font-size: 0.72rem; color: var(--n-500); }

.admin-menu { padding: var(--s-4) var(--s-3); flex: 1; }
.admin-tab-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--n-400);
  margin-bottom: var(--s-1);
  transition: all var(--t-fast);
}
.admin-tab-btn:hover { color: var(--white); background: rgba(255,255,255,.06); }
.admin-tab-btn.active { color: var(--white); background: rgba(255,255,255,.1); }
.admin-tab-btn svg { width: 18px; height: 18px; }
.badge-count {
  margin-left: auto;
  background: var(--flame);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: var(--r-full);
}

.admin-sidebar-footer {
  padding: var(--s-4) var(--s-6);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.admin-sidebar-footer a {
  font-size: 0.85rem;
  color: var(--n-500);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  transition: color var(--t-fast);
}
.admin-sidebar-footer a:hover { color: var(--white); }
.admin-sidebar-footer a svg { width: 16px; height: 16px; }

.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: var(--s-8);
  min-height: 100vh;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-8);
}
.admin-topbar h2 { font-size: 1.5rem; }

.admin-tab-pane { display: none; }
.admin-tab-pane.active { display: block; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
.kpi {
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.kpi-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kpi-icon svg { width: 20px; height: 20px; }
.kpi-icon.orange { background: var(--flame-light); color: var(--flame); }
.kpi-icon.blue   { background: var(--blue-bg); color: var(--blue); }
.kpi-icon.green  { background: var(--green-bg); color: var(--green); }
.kpi-icon.gray   { background: var(--n-100); color: var(--n-600); }
.kpi-value { font-size: 1.75rem; font-weight: 800; color: var(--n-900); }
.kpi-label { font-size: 0.82rem; color: var(--n-500); margin-top: 2px; }

.admin-card {
  background: var(--white);
  border: 1px solid var(--n-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--s-6);
}
.admin-card-head {
  padding: var(--s-5) var(--s-6);
  border-bottom: 1px solid var(--n-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-card-head h3 { font-size: 1.05rem; }

.tbl-wrap { overflow-x: auto; }
.admin-tbl { width: 100%; border-collapse: collapse; }
.admin-tbl th {
  text-align: left;
  padding: var(--s-3) var(--s-5);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--n-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--n-50);
  border-bottom: 1px solid var(--n-200);
}
.admin-tbl td {
  padding: var(--s-4) var(--s-5);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--n-100);
  vertical-align: middle;
  color: var(--n-700);
}
.admin-tbl tr:hover td { background: var(--n-50); }

.status-pill {
  display: inline-block;
  padding: 2px var(--s-3);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
}
.status-pill.unread { background: var(--flame-light); color: var(--flame); }
.status-pill.read   { background: var(--blue-bg); color: var(--blue); }
.status-pill.archived { background: var(--n-100); color: var(--n-500); }

.status-toggle-btn {
  padding: 3px var(--s-3);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.status-toggle-btn.status-active { background: var(--green-bg); color: #15803d; }
.status-toggle-btn.status-hidden { background: var(--n-100); color: var(--n-500); }
.status-dropdown {
  padding: 4px var(--s-3);
  border: 1px solid var(--n-200);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  outline: none;
}

.admin-filter-group {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  flex-wrap: wrap;
}
.admin-search-input {
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--n-200);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  outline: none;
  width: 220px;
}
.admin-search-input:focus { border-color: var(--flame); }
.admin-select {
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--n-200);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  outline: none;
}

/* ── 24. RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .hero-card { max-width: 500px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .contact-grid { grid-template-columns: 1fr; }
  .leaders-grid { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr; }
  .inc-item:nth-child(odd) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .nav-actions { gap: var(--s-2); }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .div-grid { grid-template-columns: 1fr; }

  .hero { padding-top: calc(var(--nav-h) + var(--s-12)); padding-bottom: var(--s-12); }
  .hero-stats { flex-direction: column; gap: var(--s-4); }
  .hero-left p { font-size: 1rem; }

  .sec { padding: var(--s-16) 0; }
  .sec-alt { padding: var(--s-16) 0; }

  .filter-bar { flex-direction: column; align-items: stretch; }
  .search-input { width: 100%; }
  .filter-tabs { justify-content: center; }

  .ft-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .ft-bar { flex-direction: column; text-align: center; }

  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .sec { padding: var(--s-12) 0; }
  .sec-alt { padding: var(--s-12) 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .filter-tabs { flex-wrap: wrap; }
}
