/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --bg:          #F8FAFC;
  --bg-tint:     #F1F5F9;
  --text:        #0F172A;
  --text-mid:    #334155;
  --text-muted:  #64748B;
  --green:       #16A34A;
  --green-light: #DCFCE7;
  --green-mid:   #22C55E;
  --red:         #DC2626;
  --red-light:   #FEE2E2;
  --orange:      #EA580C;
  --orange-light:#FFEDD5;
  --blue:        #2563EB;
  --blue-light:  #DBEAFE;
  --purple:      #7C3AED;
  --purple-light:#EDE9FE;
  --yellow:      #D97706;
  --yellow-light:#FEF3C7;
  --border:      #E2E8F0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --r:           12px;
  --r-lg:        20px;
  --t:           0.22s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.green { color: var(--green); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 0.95rem; font-weight: 700;
  background: var(--green); color: #fff;
  border: none; cursor: pointer; transition: var(--t);
  white-space: nowrap;
}
.btn-green:hover {
  background: #15803D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 0.95rem; font-weight: 600;
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border); cursor: pointer; transition: var(--t);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--green); color: var(--green);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 0.95rem; font-weight: 700;
  background: #fff; color: var(--text);
  border: none; cursor: pointer; transition: var(--t);
  white-space: nowrap;
}
.btn-white:hover { background: #F1F5F9; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r);
  font-size: 0.95rem; font-weight: 600;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: var(--t); white-space: nowrap;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
  display: flex; align-items: center; gap: 9px;
}
.nav-logo-badge { font-size: 1.3rem; }
.logo-green { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nl {
  padding: 7px 13px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); border-radius: 8px; transition: var(--t);
}
.nl:hover, .nl.active { color: var(--text); background: var(--bg-tint); }
.nl-cta {
  background: var(--red-light); color: var(--red) !important;
  font-weight: 700; margin-left: 6px;
  border: 1px solid rgba(220,38,38,0.2);
}
.nl-cta:hover { background: #FEE2E2 !important; }

.nav-toggle {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--t);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  padding: 120px 24px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 72px; align-items: center;
}

.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(22,163,74,0.25);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.04em; color: var(--text);
  margin-bottom: 22px;
}
.h1-green { color: var(--green); }

.hero-p {
  font-size: 1.1rem; color: var(--text-mid);
  max-width: 500px; margin-bottom: 28px; line-height: 1.72;
}

.hero-scam-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.hero-scam-tags span {
  font-size: 0.8rem; font-weight: 600; color: var(--text-mid);
  background: var(--bg); border: 1.5px solid var(--border);
  padding: 5px 13px; border-radius: 8px;
}

.hero-actions { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }

.hero-alert-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-mid);
  background: var(--orange-light);
  border: 1px solid rgba(234,88,12,0.2);
  padding: 10px 18px; border-radius: var(--r);
}
.hero-alert-pill strong { color: var(--orange); }
.hap-icon { font-size: 1rem; }

/* Hero visual card */
.hero-visual-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hvc-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.hvc-icon-wrap {
  font-size: 1.6rem; width: 44px; height: 44px;
  background: var(--green-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hvc-title { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.hvc-sub   { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.hvc-live  {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; color: var(--red);
  background: var(--red-light); padding: 4px 10px; border-radius: 100px;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: blink 1.2s ease-in-out infinite;
}

.hvc-stats {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.hvc-stat { flex: 1; padding: 18px 16px; text-align: center; }
.hvc-stat:not(:last-child) { border-right: 1px solid var(--border); }
.hvc-stat-val {
  font-size: 1.2rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.hvc-stat-val.danger { color: var(--red); }
.hvc-stat-val.orange { color: var(--orange); }
.hvc-stat-key { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.hvc-stat-div { width: 1px; background: var(--border); }

.hvc-helpline {
  padding: 22px 24px; text-align: center;
  background: var(--green-light);
  border-bottom: 1px solid rgba(22,163,74,0.15);
}
.hvc-hl-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green); margin-bottom: 8px;
}
.hvc-hl-num {
  font-size: 3rem; font-weight: 900; color: var(--green);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px;
}
.hvc-hl-sub { font-size: 0.75rem; color: var(--text-muted); }

.hvc-threats { padding: 16px 20px; }
.hvc-threats-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
}
.hvc-threat-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.tc {
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.tc-red    { background: var(--red-light);    color: var(--red); }
.tc-orange { background: var(--orange-light); color: var(--orange); }
.tc-yellow { background: var(--yellow-light); color: var(--yellow); }
.tc-purple { background: var(--purple-light); color: var(--purple); }
.tc-blue   { background: var(--blue-light);   color: var(--blue); }
.tc-green  { background: var(--green-light);  color: var(--green); }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--text);
  padding: 0;
}
.stats-band-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 36px 24px;
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.sb-stat { text-align: center; }
.sb-num {
  display: block; font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--green-mid);
  letter-spacing: -0.025em; margin-bottom: 5px;
}
.sb-lbl { font-size: 0.78rem; color: #94A3B8; font-weight: 500; }
.sb-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-white { background: var(--white); }
.section-tint  { background: var(--bg-tint); }
.section-green-tint { background: #F0FDF4; }

.container { max-width: 1200px; margin: 0 auto; padding: 96px 24px; }

.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 4px 14px; border-radius: 100px; margin-bottom: 16px;
}
.tag-red {
  color: var(--red); background: var(--red-light);
  border-color: rgba(220,38,38,0.2);
}
.tag-white {
  color: #fff; background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.section-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.025em; color: var(--text);
}
.section-lead {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 640px; margin-bottom: 56px; line-height: 1.78;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 540px; margin-bottom: 52px; line-height: 1.72;
}

/* ============================================================
   THREAT CARDS
   ============================================================ */
.four-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.threat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 26px;
  transition: var(--t); box-shadow: var(--shadow-sm);
}
.threat-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.tc-emoji-wrap {
  font-size: 2rem; width: 58px; height: 58px;
  border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.tc-wrap-blue   { background: var(--blue-light); }
.tc-wrap-green  { background: var(--green-light); }
.tc-wrap-orange { background: var(--orange-light); }
.tc-wrap-purple { background: var(--purple-light); }

.threat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.threat-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SCAM ALERT CARDS
   ============================================================ */
.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.alert-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: var(--t); box-shadow: var(--shadow-sm);
}
.alert-hot { border-color: rgba(220,38,38,0.25); }
.alert-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--red);
}
.alert-card::before {
  content: ''; display: block;
  height: 3px; border-radius: 3px 3px 0 0;
  background: transparent;
  position: absolute; top: -1px; left: -1px; right: -1px;
}
.alert-card { position: relative; }
.alert-hot::before { background: var(--red); }

.ac-top { display: flex; align-items: center; justify-content: space-between; }
.risk-tag {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.09em;
  padding: 3px 10px; border-radius: 4px;
}
.risk-high { background: var(--red-light); color: var(--red); }
.risk-med  { background: var(--yellow-light); color: var(--yellow); }
.ac-date   { font-size: 0.73rem; color: var(--text-muted); }
.ac-emoji  { font-size: 2.2rem; }
.ac-title  { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.ac-body   { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.ac-chips  { display: flex; flex-wrap: wrap; gap: 7px; }
.ac-chips span {
  font-size: 0.7rem; font-weight: 600; color: var(--text-muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px;
}
.ac-link {
  font-size: 0.85rem; font-weight: 700; color: var(--red);
  transition: var(--t); margin-top: auto;
}
.ac-link:hover { color: #B91C1C; letter-spacing: 0.02em; }

/* ============================================================
   SCAM LIBRARY
   ============================================================ */
.lib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.lib-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 20px;
  transition: var(--t); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.lib-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.lib-item-cta {
  border-color: rgba(22,163,74,0.3);
  background: #F0FDF4;
}
.li-icon {
  font-size: 1.6rem; flex-shrink: 0;
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.li-blue   { background: var(--blue-light); }
.li-green  { background: var(--green-light); }
.li-orange { background: var(--orange-light); }
.li-purple { background: var(--purple-light); }
.li-red    { background: var(--red-light); }
.li-dark   { background: var(--bg-tint); }

.li-body { flex: 1; min-width: 0; }
.li-body h3 { font-size: 0.93rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.li-body p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 7px; }
.li-count {
  font-size: 0.68rem; font-weight: 700; color: var(--green);
  background: var(--green-light); padding: 2px 9px; border-radius: 100px;
}
.li-arrow {
  font-size: 1.1rem; color: var(--text-muted); flex-shrink: 0; transition: var(--t);
}
.lib-item:hover .li-arrow { color: var(--green); transform: translateX(4px); }

/* ============================================================
   SAFETY GUIDES
   ============================================================ */
.safety-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.safety-list {
  display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px;
}
.safety-list li {
  display: flex; align-items: flex-start; gap: 14px;
}
.sl-check {
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--green); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: #fff; font-weight: 900; margin-top: 2px;
}
.safety-list strong { display: block; font-size: 0.93rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.safety-list span   { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* Safety floating cards */
.safety-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.sg-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 20px;
  box-shadow: var(--shadow-md);
  transition: var(--t);
}
.sg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sgc-icon  { font-size: 2rem; margin-bottom: 10px; }
.sgc-title { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.sgc-sub   { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.4; }
.sgc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.sgc-ok   { background: var(--green-light); color: var(--green); }
.sgc-warn { background: var(--orange-light); color: var(--orange); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
  display: flex; align-items: flex-start; gap: 0; margin-top: 20px;
}
.step-item {
  flex: 1; text-align: center; padding: 0 16px;
}
.step-circle {
  font-size: 2rem; width: 72px; height: 72px;
  border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.step-c1 { background: var(--blue-light); }
.step-c2 { background: var(--green-light); }
.step-c3 { background: var(--orange-light); }
.step-num {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.step-item h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-item p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; max-width: 220px; margin: 0 auto; }
.step-connector {
  width: 80px; height: 2px; flex-shrink: 0;
  background: linear-gradient(to right, var(--green), rgba(22,163,74,0.2));
  margin-top: 36px;
}

/* ============================================================
   EMERGENCY
   ============================================================ */
.emergency-section {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  position: relative; overflow: hidden;
}
.emergency-section::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='%2322C55E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.emg-split {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.emg-chip {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
  background: rgba(220,38,38,0.8);
  padding: 4px 14px; border-radius: 100px; margin-bottom: 20px;
}
.emg-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 18px; letter-spacing: -0.025em;
}
.emg-h2 span { color: #FCA5A5; }
.emg-p {
  color: #94A3B8; font-size: 1rem;
  line-height: 1.72; margin-bottom: 36px; max-width: 460px;
}
.emg-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.emg-step  { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: #CBD5E1; }
.emg-n {
  flex-shrink: 0; width: 28px; height: 28px;
  background: rgba(220,38,38,0.2); border: 1px solid rgba(220,38,38,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: #FCA5A5;
}
.emg-step strong { color: #fff; }

.helpline-card {
  background: #fff;
  border-radius: var(--r-lg); padding: 44px 36px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.hlc-icon   { font-size: 3rem; margin-bottom: 12px; }
.hlc-label  {
  font-size: 0.75rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 12px;
}
.hlc-number {
  font-size: 4.2rem; font-weight: 900; color: var(--red);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px;
  cursor: pointer; transition: var(--t);
}
.hlc-number:hover { transform: scale(1.05); color: #B91C1C; }
.hlc-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; }
.hlc-hint { font-size: 0.68rem; color: #CBD5E1; }

/* ============================================================
   RESOURCES
   ============================================================ */
.res-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: var(--t); box-shadow: var(--shadow-sm);
}
.res-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.res-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.res-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.res-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.res-link {
  font-size: 0.85rem; font-weight: 700; color: var(--green);
  transition: var(--t);
}
.res-card:hover .res-link { letter-spacing: 0.02em; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #15803D 0%, #166534 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box {
  text-align: center; position: relative; z-index: 1;
  padding: 20px 0;
}
.cta-h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 16px;
}
.cta-h2 span { color: #86EFAC; }
.cta-p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 44px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: #fff;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 2fr;
  gap: 64px; padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.footer-desc {
  font-size: 0.85rem; color: #94A3B8;
  line-height: 1.65; max-width: 260px; margin-bottom: 18px;
}
.footer-helpline {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; color: #94A3B8;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px; border-radius: 100px;
}
.footer-helpline strong { color: #FCA5A5; }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fcol h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; margin-bottom: 20px;
}
.fcol a {
  display: block; font-size: 0.875rem;
  color: #94A3B8; margin-bottom: 12px; transition: var(--t);
}
.fcol a:hover { color: var(--green-mid); }

.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: #64748B; }
.footer-bottom strong { color: #FCA5A5; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  background: var(--white);
  padding: 120px 24px 72px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--green); transition: var(--t); }
.breadcrumb a:hover { color: #15803D; }
.breadcrumb-sep { font-size: 0.7rem; color: var(--text-muted); }
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 16px; color: var(--text);
}
.page-hero-desc {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 560px; line-height: 1.75;
}

.filter-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-muted); transition: var(--t);
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.article-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: var(--t); cursor: pointer; box-shadow: var(--shadow-sm);
}
.article-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.article-card-meta { display: flex; align-items: center; justify-content: space-between; }
.article-category {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-light); padding: 3px 9px; border-radius: 4px;
}
.article-category.orange { color: var(--orange); background: var(--orange-light); }
.article-date    { font-size: 0.73rem; color: var(--text-muted); }
.article-icon    { font-size: 2rem; }
.article-title   { font-size: 1.05rem; font-weight: 700; line-height: 1.35; color: var(--text); }
.article-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.article-footer  {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto;
}
.article-read-time { font-size: 0.73rem; color: var(--text-muted); }
.article-link { font-size: 0.82rem; font-weight: 700; color: var(--green); transition: var(--t); }
.article-link:hover { color: #15803D; }

.alert-feed { display: flex; flex-direction: column; gap: 16px; }
.alert-feed-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 24px 28px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 20px; align-items: start; transition: var(--t); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.alert-feed-item:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateX(4px); }
.alert-feed-item.risk-high   { border-left: 3px solid var(--red); }
.alert-feed-item.risk-medium { border-left: 3px solid var(--yellow); }
.alert-feed-item.risk-low    { border-left: 3px solid var(--green); }
.alert-feed-icon  { font-size: 2.2rem; padding-top: 4px; }
.alert-feed-body  { min-width: 0; }
.alert-feed-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.alert-feed-desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.alert-feed-tags  { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.alert-feed-action { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.alert-new-badge {
  font-size: 0.63rem; font-weight: 800; letter-spacing: 0.08em;
  background: var(--green-light); color: var(--green); padding: 3px 8px; border-radius: 4px;
}

.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.guide-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: var(--t);
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.guide-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.guide-card-top {
  padding: 22px; background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.guide-icon {
  font-size: 2rem; width: 50px; height: 50px;
  background: var(--green-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guide-card-body { padding: 20px 22px; }
.guide-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.guide-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.guide-link { font-size: 0.82rem; font-weight: 700; color: var(--green); transition: var(--t); }
.guide-link:hover { color: #15803D; }

.step-blocks { display: flex; flex-direction: column; gap: 18px; }
.step-block {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 24px; transition: var(--t); box-shadow: var(--shadow-sm);
}
.step-block:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.sb-num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--green);
}
.sb-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sb-body p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

.helpline-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.helpline-card-inner {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  text-align: center; transition: var(--t); box-shadow: var(--shadow-sm);
}
.helpline-card-inner:hover { border-color: var(--green); box-shadow: var(--shadow-lg); }
.hc-icon   { font-size: 2.4rem; margin-bottom: 12px; }
.hc-title  { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.hc-number { font-size: 2rem; font-weight: 900; color: var(--green); margin-bottom: 6px; }
.hc-note   { font-size: 0.8rem; color: var(--text-muted); }

.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: var(--t); box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--green); }
.faq-q {
  padding: 18px 22px; font-weight: 700; font-size: 0.95rem;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-a { padding: 0 22px 18px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
::selection { background: var(--green-light); color: var(--text); }

/* ============================================================
   RESPONSIVE — TABLET ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 52px; }
  .safety-split  { grid-template-columns: 1fr; gap: 52px; }
  .emg-split     { grid-template-columns: 1fr; gap: 52px; }
  .footer-top    { grid-template-columns: 1fr; gap: 44px; }
  .steps-row     { flex-direction: column; align-items: center; gap: 0; }
  .step-connector { width: 2px; height: 32px; background: linear-gradient(to bottom, var(--green), transparent); }
  .sb-sep        { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤ 640px
   ============================================================ */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 12px 16px 20px; gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nl { padding: 12px 16px; font-size: 0.92rem; }

  .hero { padding: 100px 20px 60px; }
  .hero-h1 { font-size: 2.1rem; }
  .hero-p  { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-green, .btn-ghost { width: 100%; justify-content: center; }

  .container  { padding: 72px 20px; }
  .section-h2 { font-size: 1.8rem; }

  .stats-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: center; }

  .three-col  { grid-template-columns: 1fr; }
  .lib-grid   { grid-template-columns: 1fr; }
  .four-col   { grid-template-columns: 1fr; }
  .safety-cards { grid-template-columns: 1fr 1fr; }

  .footer-cols   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .helpline-card { padding: 32px 20px; }
  .hlc-number    { font-size: 3.4rem; }
  .cta-h2        { font-size: 2rem; }
  .cta-btns      { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { width: 100%; justify-content: center; max-width: 300px; }

  .alert-feed-item { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================================
   NAVBAR & FOOTER — COMPATIBILITY ALIASES
   (article pages inside /scam-library/, /safety-guides/, /scam-alerts/
    use these class names — they map to the same visual styles)
   ============================================================ */
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-menu {
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  padding: 7px 13px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); border-radius: 8px; transition: var(--t);
  text-decoration: none; display: block;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg-tint); }
.nav-link-alert {
  background: var(--red-light); color: var(--red) !important;
  font-weight: 700; margin-left: 6px;
  border: 1px solid rgba(220,38,38,0.2);
  padding: 7px 13px; font-size: 0.875rem; border-radius: 8px;
  transition: var(--t); text-decoration: none; display: block;
}
.nav-link-alert:hover { background: #FEE2E2 !important; }
.logo-icon  { font-size: 1.3rem; }
.logo-accent { color: var(--green); }

.footer          { background: var(--text); color: #fff; }
.footer-container{ max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-brand    { /* inherits footer-brand styles above */ }
.footer-tagline  {
  font-size: 0.85rem; color: #94A3B8;
  line-height: 1.65; max-width: 260px; margin-bottom: 18px;
}
.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #fff; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: #94A3B8;
  margin-bottom: 12px; transition: var(--t); text-decoration: none;
}
.footer-col a:hover { color: var(--green-mid); }

/* ============================================================
   ARTICLE HERO — for individual scam-library / guide pages
   ============================================================ */
.article-hero {
  background: var(--white);
  padding: 120px 24px 56px;
  border-bottom: 1px solid var(--border);
}
.article-hero-inner {
  max-width: 860px; margin: 0 auto;
}
.article-cat-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.blog-cat-pill {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.pill-payment   { background: var(--green-light);  color: var(--green); }
.pill-social    { background: var(--blue-light);   color: var(--blue); }
.pill-job       { background: var(--orange-light); color: var(--orange); }
.pill-gaming    { background: var(--purple-light); color: var(--purple); }
.pill-phishing  { background: var(--red-light);    color: var(--red); }
.pill-investment{ background: var(--yellow-light); color: var(--yellow); }
.pill-identity  { background: var(--blue-light);   color: #1e40af; }
.pill-romance   { background: #FCE7F3;             color: #9D174D; }
.pill-alert     { background: var(--red-light);    color: var(--red); }
.pill-guide     { background: var(--green-light);  color: var(--green); }
.pill-high      { background: var(--red-light);    color: var(--red); }
.pill-medium    { background: var(--yellow-light); color: var(--yellow); }
.pill-low       { background: var(--green-light);  color: var(--green); }

.article-title-main {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 18px;
}
.article-meta-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted);
}
.article-meta-sep { color: #CBD5E1; }

/* ============================================================
   ARTICLE LAYOUT — two-column: article body + sticky sidebar
   ============================================================ */
.article-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 24px 100px;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 56px; align-items: start;
}
.article-main { min-width: 0; }

.article-lead {
  font-size: 1.1rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 40px; padding-bottom: 32px;
  border-bottom: 2px solid var(--border);
}
.article-section { margin-bottom: 36px; }
.article-section h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--text);
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.article-section h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px;
}
.article-section p {
  font-size: 0.93rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 14px;
}
.article-section ul, .article-section ol {
  padding-left: 20px; display: flex; flex-direction: column;
  gap: 8px; margin-top: 8px; margin-bottom: 14px;
}
.article-section li {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.68; list-style: disc;
}
.article-section ol li { list-style: decimal; }
.article-section strong { color: var(--text); font-weight: 700; }

/* Callout boxes */
.article-callout {
  background: var(--orange-light);
  border: 1.5px solid rgba(234,88,12,0.2);
  border-left: 4px solid var(--orange);
  border-radius: var(--r); padding: 22px 26px; margin-bottom: 32px;
}
.article-callout h3 {
  font-size: 0.95rem; font-weight: 800; color: var(--orange); margin-bottom: 12px;
}
.article-callout ul {
  padding-left: 18px; display: flex; flex-direction: column; gap: 7px;
}
.article-callout li {
  font-size: 0.87rem; color: #78350F; line-height: 1.62; list-style: disc;
}
.article-callout.safe {
  background: var(--green-light);
  border-color: rgba(22,163,74,0.2); border-left-color: var(--green);
}
.article-callout.safe h3 { color: var(--green); }
.article-callout.safe li { color: #14532D; }
.article-callout.info {
  background: var(--blue-light);
  border-color: rgba(37,99,235,0.2); border-left-color: var(--blue);
}
.article-callout.info h3 { color: var(--blue); }
.article-callout.info li { color: #1e3a8a; }

/* Numbered steps list inside articles */
.article-steps {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none !important; padding-left: 0 !important; margin: 0 !important;
}
.article-steps li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 14px 18px;
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.65;
  list-style: none !important;
}
.article-step-num {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--green);
}

/* ============================================================
   ARTICLE SIDEBAR
   ============================================================ */
.article-sidebar {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 20px;
}
.sidebar-emergency-card {
  background: linear-gradient(135deg, var(--red), #B91C1C);
  border-radius: var(--r-lg); padding: 28px 22px;
  text-align: center; color: #fff;
  box-shadow: 0 8px 28px rgba(220,38,38,0.3);
}
.sec-icon  { font-size: 2.2rem; margin-bottom: 10px; }
.sec-label {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.85; margin-bottom: 8px;
}
.sec-num {
  font-size: 2.8rem; font-weight: 900;
  letter-spacing: -0.04em; margin-bottom: 14px; line-height: 1;
}
.sec-link {
  display: inline-block; font-size: 0.82rem; font-weight: 700;
  background: rgba(255,255,255,0.2); color: #fff;
  padding: 8px 18px; border-radius: var(--r); transition: var(--t);
  text-decoration: none;
}
.sec-link:hover { background: rgba(255,255,255,0.35); }

.sidebar-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px;
}
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; font-weight: 600; color: var(--text-mid);
  padding: 9px 0; border-bottom: 1px solid var(--border);
  transition: var(--t); text-decoration: none;
}
.sidebar-link:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-link:hover { color: var(--green); }
.sidebar-link-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   SCAM ALERT BLOG POST — individual discussion posts
   ============================================================ */
.alert-post-hero {
  background: var(--white);
  padding: 120px 24px 56px;
  border-bottom: 1px solid var(--border);
}
.alert-post-hero-inner {
  max-width: 860px; margin: 0 auto;
}
.alert-post-meta-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
}
.alert-post-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 16px;
}
.alert-post-lead {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.75; max-width: 680px;
}

.alert-post-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 24px 100px;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 56px; align-items: start;
}
.alert-post-body { min-width: 0; }
.alert-post-body h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--text);
  margin-bottom: 14px; margin-top: 36px; letter-spacing: -0.02em;
}
.alert-post-body h2:first-child { margin-top: 0; }
.alert-post-body p {
  font-size: 0.93rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 16px;
}
.alert-post-body ul, .alert-post-body ol {
  padding-left: 20px; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.alert-post-body li {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; list-style: disc;
}
.alert-post-body ol li { list-style: decimal; }
.alert-post-body strong { color: var(--text); font-weight: 700; }

/* Inline blog callout */
.blog-callout {
  border-radius: var(--r); padding: 18px 22px; margin: 24px 0;
  border-left: 4px solid;
}
.blog-callout.warning {
  background: var(--orange-light); border-left-color: var(--orange);
}
.blog-callout.warning h4 { color: var(--orange); }
.blog-callout.warning p  { color: #78350F; }
.blog-callout.danger {
  background: var(--red-light); border-left-color: var(--red);
}
.blog-callout.danger h4 { color: var(--red); }
.blog-callout.danger p  { color: #7F1D1D; }
.blog-callout.safe {
  background: var(--green-light); border-left-color: var(--green);
}
.blog-callout.safe h4 { color: var(--green); }
.blog-callout.safe p  { color: #14532D; }
.blog-callout.info {
  background: var(--blue-light); border-left-color: var(--blue);
}
.blog-callout.info h4 { color: var(--blue); }
.blog-callout.info p  { color: #1e3a8a; }
.blog-callout h4 {
  font-size: 0.88rem; font-weight: 800; margin-bottom: 6px;
}
.blog-callout p {
  font-size: 0.875rem; line-height: 1.65; margin: 0;
}

/* Post tags at the bottom */
.post-tags-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
}
.post-tag {
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  background: var(--bg-tint); color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ============================================================
   GUIDE PAGE STYLES — individual safety guide pages
   ============================================================ */
.guide-page-hero {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  padding: 120px 24px 56px;
  border-bottom: 1px solid rgba(22,163,74,0.15);
}
.guide-page-hero-inner {
  max-width: 860px; margin: 0 auto;
}
.guide-page-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 24px 100px;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 56px; align-items: start;
}
.guide-page-body { min-width: 0; }
.guide-page-body h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--text);
  margin-bottom: 14px; margin-top: 36px; letter-spacing: -0.02em;
}
.guide-page-body h2:first-child { margin-top: 0; }
.guide-page-body p {
  font-size: 0.93rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 16px;
}
.guide-page-body ul, .guide-page-body ol {
  padding-left: 20px; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.guide-page-body li {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; list-style: disc;
}
.guide-page-body ol li { list-style: decimal; }
.guide-page-body strong { color: var(--text); font-weight: 700; }

/* Numbered guide steps */
.guide-steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.guide-step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 20px 22px;
  box-shadow: var(--shadow-sm); transition: var(--t);
}
.guide-step:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.guide-step-num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: #fff;
}
.guide-step-body h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.guide-step-body p {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0;
}

/* ============================================================
   ARTICLE / POST RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .article-layout, .alert-post-layout, .guide-page-layout {
    grid-template-columns: 1fr; gap: 40px;
  }
  .article-sidebar { position: static; }
  .nav-container { padding: 0 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .article-hero, .alert-post-hero, .guide-page-hero { padding: 100px 20px 48px; }
  .article-layout, .alert-post-layout, .guide-page-layout { padding: 40px 20px 80px; }
  .nav-menu {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); flex-direction: column;
    align-items: stretch; padding: 12px 16px 20px; gap: 4px;
    box-shadow: var(--shadow-lg); z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
