/* ============================================
   ICTKillzone.com — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ── */
:root {
  --navy:       #003366;
  --navy-dark:  #002244;
  --navy-light: #e8f0f8;
  --amber:      #e8961e;
  --amber-light:#fff8ee;
  --green:      #2e7d32;
  --green-light:#e8f5e9;
  --green-mid:  #4caf50;
  --red:        #c0392b;
  --text-dark:  #1a1a1a;
  --text-mid:   #444444;
  --text-muted: #888888;
  --text-light: #aaaaaa;
  --border:     #e0e0e0;
  --border-light: #f0f0f0;
  --bg:         #ffffff;
  --bg-soft:    #f8f9fa;
  --bg-warm:    #f7f6f2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Source Serif 4', Georgia, serif;
  --font-sans:    'DM Sans', -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'SF Mono', monospace;
  --max-width: 1160px;
  --radius: 6px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.top-bar-sep { color: rgba(255,255,255,0.2); }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green-mid);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--green-mid);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  background: var(--bg);
  border-bottom: 2.5px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav .container {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-main span { color: var(--amber); }
.logo-tagline {
  font-size: 9px;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0 18px;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; border-bottom-color: var(--amber); }
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.nav-search:hover { border-color: var(--navy); }
.search-icon {
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.search-icon::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 6px;
  height: 1.5px;
  background: var(--text-muted);
  transform: rotate(45deg);
  border-radius: 1px;
}
.search-placeholder { font-size: 12px; color: var(--text-light); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bc-item {
  font-size: 12px;
  color: var(--navy);
  transition: color 0.15s;
}
.bc-item:hover { color: var(--amber); }
.bc-sep { font-size: 12px; color: var(--border); }
.bc-current { font-size: 12px; color: var(--text-muted); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.hero-category {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
  font-family: var(--font-sans);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--navy);
}
.hero-deck {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 22px;
}
.meta-avatar {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.meta-info { flex: 1; }
.meta-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.meta-detail { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.meta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  border: 1px solid #c8e6c9;
  border-radius: 4px;
  padding: 6px 12px;
  flex-shrink: 0;
}
.meta-badge-dot { width: 6px; height: 6px; background: var(--green-mid); border-radius: 50%; flex-shrink: 0; }
.meta-badge-text { font-size: 11px; color: var(--green); font-weight: 700; letter-spacing: 0.04em; font-family: var(--font-sans); }
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.trust-item { display: flex; align-items: center; gap: 7px; }
.trust-icon {
  width: 16px;
  height: 16px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-check { color: #fff; font-size: 9px; font-weight: 800; }
.trust-text { font-size: 13px; color: var(--text-mid); }
.hero-cta { display: flex; gap: 14px; align-items: center; }
.btn-primary {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.1s;
  font-family: var(--font-sans);
  cursor: pointer;
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-secondary {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
  font-family: var(--font-sans);
}
.btn-secondary:hover { color: var(--amber); border-color: var(--amber); }

/* Kill Zone Widget */
.kz-widget {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,51,102,0.08);
}
.kz-widget-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kz-widget-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.kz-widget-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green-mid);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
}
.kz-rows {}
.kz-row {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
.kz-row:last-child { border-bottom: none; }
.kz-row.active { background: #eef4fb; }
.kz-row:hover { background: var(--navy-light); }
.kz-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  margin-right: 12px;
  flex-shrink: 0;
}
.kz-dot.live { background: var(--green-mid); animation: livePulse 2s ease-in-out infinite; }
.kz-dot.next { background: #ff9800; }
.kz-info { flex: 1; }
.kz-name { font-size: 13px; color: var(--text-mid); font-weight: 500; }
.kz-name.live { color: var(--navy); font-weight: 700; }
.kz-time { font-size: 11px; color: var(--text-light); margin-top: 1px; font-family: var(--font-mono); }
.kz-time.live { color: var(--navy); opacity: 0.7; }
.kz-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  flex-shrink: 0;
}
.kz-badge.live { background: var(--green-light); color: var(--green); border: 1px solid #c8e6c9; }
.kz-badge.next { background: #fff3e0; color: #e65100; border: 1px solid #ffe0b2; }
.kz-badge.closed { background: var(--bg-soft); color: var(--text-light); border: 1px solid var(--border-light); }
.kz-progress-bar {
  height: 3px;
  background: var(--border-light);
  margin: 0 20px 4px;
  border-radius: 2px;
  overflow: hidden;
}
.kz-progress-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: width 1s ease;
}
.kz-widget-footer {
  background: #eef4fb;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
}
.kz-widget-cta {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.15s;
  font-family: var(--font-sans);
}
.kz-widget-cta:hover { color: var(--amber); }
.kz-countdown {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: var(--font-mono);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--navy);
  padding: 32px 0;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-bar-item {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-bar-item:first-child { padding-left: 0; }
.trust-bar-item:last-child { border-right: none; }
.trust-bar-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.trust-bar-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}
.trust-bar-text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================
   FEATURED ARTICLE
   ============================================ */
.featured-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1.5px;
  background: var(--amber);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-family: var(--font-serif);
}
.featured-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.featured-card:hover { box-shadow: 0 4px 24px rgba(0,51,102,0.1); }
.featured-thumb {
  background: var(--navy);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.featured-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 41px
  );
}
.candle-group { display: flex; align-items: flex-end; gap: 6px; height: 120px; position: relative; z-index: 1; }
.candle { display: flex; flex-direction: column; align-items: center; gap: 0; }
.candle-wick { width: 2px; border-radius: 1px; }
.candle-body { width: 14px; border-radius: 2px; }
.bull .candle-wick { background: #4caf50; }
.bull .candle-body { background: #4caf50; }
.bear .candle-wick { background: #ef5350; }
.bear .candle-body { background: #ef5350; }
.featured-body { padding: 32px; }
.featured-tag {
  font-size: 10px;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-sans);
}
.featured-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.featured-excerpt {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.featured-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured-meta strong { color: var(--text-muted); font-weight: 600; }
.featured-meta-sep { color: var(--border); }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 1px;
  margin-top: 16px;
  transition: color 0.15s, border-color 0.15s;
  font-family: var(--font-sans);
}
.read-more:hover { color: var(--amber); border-color: var(--amber); }

/* ============================================
   MAIN CONTENT + SIDEBAR
   ============================================ */
.main-section {
  padding: 52px 0 64px;
  background: var(--bg);
}
.main-section .container {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 52px;
  align-items: start;
}
.content-main {}
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
}
.section-view-all {
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
  transition: opacity 0.15s;
  font-family: var(--font-sans);
}
.section-view-all:hover { opacity: 0.75; }

/* Article list */
.article-list { display: flex; flex-direction: column; }
.article-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: background 0.15s;
}
.article-item:last-child { border-bottom: none; }
.article-item:hover .article-title { color: var(--navy); }
.article-thumb {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.mini-chart { display: flex; align-items: flex-end; gap: 3px; height: 40px; padding: 4px; }
.mini-bar { width: 7px; border-radius: 1px 1px 0 0; }
.article-body {}
.article-cat {
  font-size: 10px;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: var(--font-sans);
}
.article-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.article-meta {
  font-size: 11px;
  color: var(--text-light);
  font-family: var(--font-sans);
}
.article-meta strong { color: var(--text-muted); font-weight: 600; }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.fact-box {
  background: var(--navy-light);
  border: 1px solid #b3d4f5;
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
}
.fact-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.fact-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-family: var(--font-serif);
}
.sidebar-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-box-header {
  background: var(--navy);
  padding: 12px 18px;
}
.sidebar-box-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.sidebar-box-body { padding: 4px 0; }
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
  cursor: pointer;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { background: var(--navy-light); }
.sidebar-link-text {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.15s;
}
.sidebar-link:hover .sidebar-link-text { color: var(--amber); }
.sidebar-link-arrow { font-size: 14px; color: var(--border); }

/* ============================================
   EMAIL CTA BAND
   ============================================ */
.email-band {
  background: var(--navy-dark);
  padding: 56px 0;
  border-top: 4px solid var(--amber);
}
.email-band .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.email-band-h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.email-band-h2 span { color: var(--amber); font-style: italic; }
.email-band-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-family: var(--font-serif);
}
.email-form { display: flex; flex-direction: column; gap: 12px; }
.email-input-row { display: flex; gap: 0; }
.email-input {
  flex: 1;
  padding: 14px 18px;
  font-size: 14px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-family: var(--font-sans);
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
}
.email-input::placeholder { color: var(--text-light); }
.email-btn {
  background: var(--amber);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 22px;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.email-btn:hover { background: #d4841a; }
.email-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-sans);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 40px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--amber); }
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-family: var(--font-serif);
  font-style: italic;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-sans);
}
.footer-col-links { display: flex; flex-direction: column; gap: 8px; }
.footer-col-link {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
  font-family: var(--font-sans);
}
.footer-col-link:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); font-family: var(--font-sans); }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
  font-family: var(--font-sans);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-widget { display: none; }
  .trust-bar .container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-bar-item { border-right: none; padding: 0; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 140px; }
  .main-section .container { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .email-band .container { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-disclaimer { text-align: center; max-width: 100%; }
  .hero-h1 { font-size: 34px; }
  .nav-links { display: none; }
}
