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

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

:root {
  --primary: #0D2B4E;
  --primary-light: #1A3F6F;
  --primary-dark: #081A30;
  --accent: #F97316;
  --accent-light: #FB923C;
  --accent-dark: #EA580C;
  --success: #16A34A;
  --warning: #D97706;
  --error: #DC2626;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-text span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-link.active {
  color: var(--accent-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.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");
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 100px;
}

.hero-disclaimer::before {
  content: 'ℹ';
  font-size: 14px;
  color: var(--accent);
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 24px;
}

.section-alt {
  background: var(--gray-50);
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--gray-300);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-icon.orange {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.card-icon.green {
  background: linear-gradient(135deg, #166534, #16A34A);
}

.card-icon.blue {
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
}

.card-icon.teal {
  background: linear-gradient(135deg, #0F766E, #14B8A6);
}

.card-icon.red {
  background: linear-gradient(135deg, #991B1B, #DC2626);
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-text {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

.card-link::after {
  content: '→';
}

/* ===== CONTENT PAGE ===== */
.content-page {
  padding: 64px 24px;
}

.content-layout {
  max-width: 900px;
  margin: 0 auto;
}

.content-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--gray-100);
}

.content-tag {
  display: inline-block;
  background: rgba(13, 43, 78, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.content-header h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.content-header p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
}

.content-body h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 16px;
  line-height: 1.3;
  padding-top: 8px;
}

.content-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 28px 0 12px;
}

.content-body p {
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 18px;
}

.content-body ul,
.content-body ol {
  margin: 16px 0 20px 0;
  padding-left: 0;
}

.content-body ul li,
.content-body ol li {
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.content-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
  top: 2px;
}

.content-body ol {
  list-style: none;
  counter-reset: ol-counter;
}

.content-body ol li {
  counter-increment: ol-counter;
}

.content-body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
}

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(13, 43, 78, 0.04);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.info-box.orange {
  background: rgba(249, 115, 22, 0.06);
  border-left-color: var(--accent);
}

.info-box.green {
  background: rgba(22, 163, 74, 0.06);
  border-left-color: var(--success);
}

.info-box.warning {
  background: rgba(217, 119, 6, 0.06);
  border-left-color: var(--warning);
}

.info-box-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-box.orange .info-box-title {
  color: var(--accent-dark);
}

.info-box.green .info-box-title {
  color: var(--success);
}

.info-box.warning .info-box-title {
  color: var(--warning);
}

.info-box p {
  font-size: 15px !important;
  margin-bottom: 0 !important;
  color: var(--gray-700) !important;
}

/* ===== FORMULA BOX ===== */
.formula-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
  text-align: center;
}

.formula-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.formula {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--white);
  font-family: 'Courier New', monospace;
  line-height: 1.4;
}

.formula span {
  color: var(--accent);
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

thead {
  background: var(--primary);
}

thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--gray-50);
}

tbody td {
  padding: 13px 18px;
  color: var(--gray-700);
  line-height: 1.5;
}

tbody td strong {
  color: var(--primary);
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.badge-green {
  background: rgba(22, 163, 74, 0.12);
  color: #15803D;
}

.badge-orange {
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent-dark);
}

.badge-red {
  background: rgba(220, 38, 38, 0.1);
  color: #B91C1C;
}

.badge-blue {
  background: rgba(29, 78, 216, 0.1);
  color: #1D4ED8;
}

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 32px 0;
}

.disclaimer-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.disclaimer-text strong {
  display: block;
  color: var(--gray-800);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA RESPONSIBLE ===== */
.responsible-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  color: var(--white);
}

.responsible-cta h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 12px;
}

.responsible-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 28px;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.cta-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45);
  transform: translateY(-1px);
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 56px 24px 52px;
  text-align: center;
}

.page-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 24px;
}

.breadcrumb-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.breadcrumb-list a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--gray-300);
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-name span {
  color: var(--accent);
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #FCA5A5;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  text-align: center;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ===== RESPONSIBLE PAGE ===== */
.helpline-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.helpline-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.helpline-icon.blue {
  background: rgba(29, 78, 216, 0.1);
}

.helpline-icon.green {
  background: rgba(22, 163, 74, 0.1);
}

.helpline-icon.orange {
  background: rgba(249, 115, 22, 0.1);
}

.helpline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.helpline-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 10px;
}

.helpline-contact {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .responsible-cta {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 56px 20px 52px;
  }

  .section {
    padding: 56px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content-body h2 {
    margin-top: 32px;
  }
}

/* ===== PRIVACY PAGE ===== */
.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in-delay-1 {
  animation-delay: 0.1s;
}

.fade-in-delay-2 {
  animation-delay: 0.2s;
}
