/* =============================================
   1WIN BRAND PROTECTION — MAIN STYLES
   ============================================= */

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

:root {
  --blue: #1a73e8;
  --blue-light: #4d9cf0;
  --blue-dark: #0f4fa8;
  --accent: #00d4ff;
  --bg-dark: #0a0d14;
  --bg-card: #111520;
  --bg-card2: #161b28;
  --border: rgba(255,255,255,0.08);
  --text: #e8eaf0;
  --text-muted: #8090b0;
  --text-dim: #5a6888;
  --danger: #ff4d6a;
  --warning: #ffb300;
  --success: #00c97a;
  --info: #4d9cf0;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 0;
  justify-content: space-between;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.logo img {
  height: 34px;
  display: block;
  width: auto;
}

.nav {
  display: flex;
  gap: 2px;
  flex: 1;
  align-items: center;
}

.nav-link {
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s;
  font-weight: 500;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 20px;
}

/* ============ LANG SWITCH ============ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 4px 12px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}
.lang-btn.active {
  color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
}
.lang-btn:hover:not(.active) { color: var(--text); }
.lang-divider { color: var(--border); font-size: 16px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(26, 115, 232, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
}
.btn-lg { padding: 14px 30px; font-size: 15px; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

/* ============ HERO LOGO ============ */
.hero-logo-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.hero-logo {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(26,115,232,0.45));
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(26, 115, 232, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0d14 0%, #0d1120 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 115, 232, 0.15);
  border: 1px solid rgba(26, 115, 232, 0.3);
  color: var(--blue-light);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--blue-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 14px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 48px;
  backdrop-filter: blur(10px);
}

.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 12px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ ALERT BANNER ============ */
.alert-banner {
  background: linear-gradient(90deg, rgba(255, 77, 106, 0.12), rgba(255, 179, 0, 0.08));
  border-top: 1px solid rgba(255, 77, 106, 0.25);
  border-bottom: 1px solid rgba(255, 77, 106, 0.25);
  padding: 14px 0;
}
.alert-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.alert-inner i {
  color: var(--warning);
  font-size: 18px;
  flex-shrink: 0;
}
.alert-inner strong { color: var(--warning); }

/* ============ SECTIONS ============ */
.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--bg-card);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(26, 115, 232, 0.12);
  border: 1px solid rgba(26, 115, 232, 0.25);
  color: var(--blue-light);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ============ THREAT CARDS ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(26,115,232,0.3); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  background: rgba(26, 115, 232, 0.12);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--blue-light);
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.threat-examples {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.threat-examples li {
  background: rgba(255,77,106,0.1);
  border: 1px solid rgba(255,77,106,0.2);
  color: #ff8099;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
}

.threat-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.threat-badge.danger { background: rgba(255,77,106,0.12); color: var(--danger); border: 1px solid rgba(255,77,106,0.2); }
.threat-badge.warning { background: rgba(255,179,0,0.1); color: var(--warning); border: 1px solid rgba(255,179,0,0.2); }
.threat-badge.info { background: rgba(77,156,240,0.1); color: var(--info); border: 1px solid rgba(77,156,240,0.2); }

/* ============ STEPS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-item {
  display: flex;
  gap: 22px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.22s;
}
.step-item:hover { border-color: rgba(26,115,232,0.3); }

.step-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(26, 115, 232, 0.25);
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  min-width: 52px;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============ REPORT FORM ============ */
.report-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.report-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.report-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(26,115,232,0.05);
}
.form-group select option { background: #1a2035; color: #fff; }
.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success i { font-size: 56px; color: var(--success); }
.form-success h3 { font-size: 24px; color: #fff; }
.form-success p { color: var(--text-muted); font-size: 15px; }

.hidden { display: none !important; }

.report-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  align-items: flex-start;
}
.info-block > i {
  font-size: 20px;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-block h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.info-block p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ============ LEGAL SECTION ============ */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.legal-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.22s;
}
.legal-card:hover { border-color: rgba(26,115,232,0.3); transform: translateY(-2px); }

.legal-icon {
  width: 44px; height: 44px;
  background: rgba(26, 115, 232, 0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.legal-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.legal-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.warning-box {
  background: rgba(255, 77, 106, 0.06);
  border: 1px solid rgba(255, 77, 106, 0.2);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.warning-icon { font-size: 28px; color: var(--danger); flex-shrink: 0; }
.warning-text h3 { font-size: 17px; font-weight: 700; color: var(--danger); margin-bottom: 8px; }
.warning-text p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============ CHECKLIST ============ */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.checklist-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.danger-title { color: var(--danger); }
.safe-title { color: var(--success); }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.2s;
}
.checklist li:hover { transform: translateX(4px); }

.checklist.bad li::before {
  content: '✕';
  width: 22px; height: 22px;
  background: rgba(255,77,106,0.12);
  color: var(--danger);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.checklist.good li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(0,201,122,0.12);
  color: var(--success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.checklist-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

/* ============ CONTACT SECTION ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.22s;
}
.contact-card:hover { border-color: rgba(26,115,232,0.35); transform: translateY(-3px); }

.contact-icon {
  width: 56px; height: 56px;
  background: rgba(26, 115, 232, 0.12);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--blue-light);
  margin: 0 auto 16px;
}
.contact-card h4 { font-size: 14px; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.contact-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-light);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }

/* ============ LICENSE SECTION ============ */
.license-main {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
}

.license-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.license-seal {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,115,232,0.2), rgba(0,212,255,0.1));
  border: 2px solid rgba(26,115,232,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(26,115,232,0.25);
}
.license-seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.license-seal-inner i {
  font-size: 36px;
  color: var(--blue-light);
}
.license-seal-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.license-seal-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  font-family: monospace;
}

.license-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.license-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.license-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.license-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.license-mono { font-family: monospace; color: var(--accent); font-size: 13px; }
.license-active { color: var(--success) !important; display: flex; align-items: center; gap: 5px; }
.license-active i { font-size: 10px; }

.license-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}

.license-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.license-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.22s;
}
.license-feature-card:hover { border-color: rgba(26,115,232,0.3); transform: translateY(-2px); }
.lf-icon {
  width: 44px; height: 44px;
  background: rgba(26,115,232,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.license-feature-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.license-feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.license-warning {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,179,0,0.06);
  border: 1px solid rgba(255,179,0,0.22);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.license-warning i { color: var(--warning); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.license-warning strong { color: var(--warning); }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-left { display: flex; align-items: center; gap: 20px; }
.footer-logo { height: 30px; }
.footer-desc { font-size: 13px; color: var(--text-dim); max-width: 300px; }
.footer-domain { font-size: 12px; color: var(--blue-light); font-weight: 600; margin-top: 4px; letter-spacing: 0.3px; }

.footer-right { text-align: right; }
.footer-copy { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.footer-disclaimer { font-size: 12px; color: var(--text-dim); max-width: 380px; line-height: 1.5; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-grid { grid-template-columns: repeat(2, 1fr); }
  .license-cards { grid-template-columns: repeat(2, 1fr); }
  .license-row { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 100px 0 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .report-layout { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .license-main { grid-template-columns: 1fr; }
  .license-badge-wrap { justify-content: flex-start; }
  .license-cards { grid-template-columns: 1fr; }
  .license-row { grid-template-columns: 1fr 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; padding: 20px 24px; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
  .hero-actions { flex-direction: column; align-items: center; }
  .header-right .btn-primary { display: none; }
  .warning-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .header-inner { gap: 12px; }
  .hero-stats { padding: 16px; }
  .report-form-wrap { padding: 22px; }
}
