/* Haksizlik.com — Legal Rights & Consumer Justice Education
   Colors: navy #1A365D, gold #D69E2E, parchment #F7FAFC, slate #4A5568, crimson #C53030
   Fonts: Merriweather (display), Source Sans 3 (body) */

:root {
  --navy: #1A365D;
  --navy-light: #2A4A7A;
  --navy-dark: #102540;
  --gold: #D69E2E;
  --gold-light: #E6B84F;
  --gold-dark: #B7791F;
  --parchment: #F7FAFC;
  --parchment-warm: #FAF4E8;
  --slate: #4A5568;
  --slate-light: #718096;
  --slate-dark: #2D3748;
  --crimson: #C53030;
  --crimson-dark: #9B2C2C;
  --white: #ffffff;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(26, 54, 93, 0.08);
  --shadow: 0 4px 12px rgba(26, 54, 93, 0.1);
  --shadow-lg: 0 12px 32px rgba(26, 54, 93, 0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --content-width: 760px;
  --font-display: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background: var(--parchment);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1.2rem; color: var(--slate-dark); }

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }

img, svg { max-width: 100%; height: auto; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--gold); }

.logo-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: -2px;
}

.main-nav { display: flex; align-items: center; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-list a {
  display: block;
  padding: 0.55rem 0.75rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-list a:hover, .nav-list a.active {
  background: rgba(214, 158, 46, 0.2);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214,158,46,0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(214,158,46,0.18);
  color: var(--gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-art { display: flex; justify-content: center; align-items: center; }
.hero-art svg { width: 100%; max-width: 420px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ===== SECTION ===== */
section { padding: 4rem 0; }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--slate); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.section-head.left { text-align: left; }
.section-head.left p { margin-left: 0; }

/* ===== FEATURED GUIDE ===== */
.featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.featured-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}

.featured-visual svg { width: 100%; max-width: 300px; }

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-content { padding: 3rem; }
.featured-content h2 { margin-bottom: 1rem; }
.featured-content .meta { margin-bottom: 1.2rem; }
.featured-content p { font-size: 1.05rem; }

/* ===== TOPIC CARDS ===== */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.topic-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.topic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.topic-icon {
  width: 56px;
  height: 56px;
  background: var(--parchment-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.topic-icon svg { width: 32px; height: 32px; }

.topic-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.topic-card p { font-size: 0.95rem; color: var(--slate); margin-bottom: 1rem; }

.topic-card .card-link {
  margin-top: auto;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
}
.topic-card:hover .card-link { color: var(--navy); }

/* ===== ARTICLE CARDS ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.article-card-visual {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.article-card-visual svg { width: 100%; height: 100%; }

.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.article-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--parchment-warm);
  color: var(--gold-dark);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.article-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; line-height: 1.35; }
.article-card h3 a { color: var(--navy); }
.article-card:hover h3 a { color: var(--gold-dark); }

.article-card .excerpt { font-size: 0.92rem; color: var(--slate); margin-bottom: 1rem; }

.article-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--slate-light);
}

/* ===== CONSUMER PROTECTION BANNER ===== */
.protection-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.protection-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(214,158,46,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.protection-banner h2 { color: var(--white); }
.protection-banner p { color: rgba(255,255,255,0.82); }

.protection-list { list-style: none; margin-top: 1.5rem; }
.protection-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.88);
}
.protection-list svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); }

.protection-art { display: flex; justify-content: center; position: relative; z-index: 1; }
.protection-art svg { width: 100%; max-width: 320px; }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

.article-hero h1 { color: var(--white); margin-bottom: 1rem; max-width: 800px; }

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.article-hero-meta .tag {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-body {
  padding: 3rem 0 4rem;
  background: var(--white);
}

.article-body .content-narrow > p,
.article-body .content-narrow > ul,
.article-body .content-narrow > ol,
.article-body .content-narrow > h2,
.article-body .content-narrow > h3,
.article-body .content-narrow > blockquote {
  margin-bottom: 1.4rem;
}

.article-body h2 {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.article-body h3 { margin-top: 2rem; font-size: 1.25rem; color: var(--navy-light); }

.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.article-body li { margin-bottom: 0.6rem; color: var(--slate-dark); }

.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--parchment-warm);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--slate-dark);
}

.article-body strong { color: var(--navy); }

.article-callout {
  background: var(--parchment-warm);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.article-callout h4 {
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.article-disclaimer-box {
  background: #FFF5F5;
  border-left: 4px solid var(--crimson);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.article-disclaimer-box strong { color: var(--crimson-dark); }

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.article-nav a {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  color: var(--slate-light);
}
.article-nav a span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-top: 0.2rem;
}
.article-nav a:hover span:last-child { color: var(--gold-dark); }
.article-nav .next { text-align: right; }

/* ===== PAGE HERO (interior) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 620px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-visual svg { width: 100%; max-width: 380px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.value-card .topic-icon { background: var(--parchment-warm); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.92rem; color: var(--slate); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.85);
}
.contact-info-item svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.contact-info-item .label { font-size: 0.78rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-item .value { font-size: 1rem; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-dark);
  background: var(--parchment);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 0.82rem; color: var(--slate-light); margin-top: 0.5rem; }

.form-success {
  display: none;
  background: #F0FFF4;
  border: 1px solid #38A169;
  color: #22543D;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* ===== RIGHTS GUIDE ===== */
.guide-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  border-left: 4px solid var(--gold);
}
.guide-section h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.guide-section .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  margin-right: 0.75rem;
}

.guide-toc {
  background: var(--parchment-warm);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}
.guide-toc h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.guide-toc ol { padding-left: 1.3rem; }
.guide-toc li { margin-bottom: 0.5rem; }
.guide-toc a { color: var(--navy); font-weight: 600; }

/* ===== TOPICS PAGE ===== */
.topic-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.topic-section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.topic-section-head .topic-icon { margin-bottom: 0; }
.topic-section h2 { font-size: 1.4rem; }
.topic-article-list { list-style: none; }
.topic-article-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.topic-article-list li:last-child { border-bottom: none; }
.topic-article-list a { font-weight: 600; color: var(--navy); }
.topic-article-list a:hover { color: var(--gold-dark); }
.topic-article-list .desc { display: block; font-size: 0.88rem; color: var(--slate); font-weight: 400; margin-top: 0.2rem; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.legal-content h2 { margin-top: 2.5rem; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-updated { color: var(--slate-light); font-size: 0.88rem; font-style: italic; margin-bottom: 2rem; }

/* ===== SITEMAP PAGE ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.sitemap-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.sitemap-col h3 { font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.sitemap-col ul { list-style: none; }
.sitemap-col li { margin-bottom: 0.5rem; }
.sitemap-col a { color: var(--slate-dark); font-size: 0.95rem; }
.sitemap-col a:hover { color: var(--gold-dark); }

/* ===== 404 ===== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.error-page svg { max-width: 280px; margin-bottom: 2rem; }
.error-page h1 { font-size: 3.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.error-page h2 { margin-bottom: 1rem; }
.error-page p { font-size: 1.1rem; color: var(--slate); max-width: 480px; margin: 0 auto 2rem; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--gold);
  padding: 3rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--navy-dark); margin-bottom: 0.5rem; }
.cta-strip p { color: var(--navy-dark); margin-bottom: 1.5rem; font-size: 1.1rem; }
.cta-strip .btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-strip .btn-primary:hover { background: var(--navy-dark); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-text { margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-light); }

.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-disclaimer p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  line-height: 1.6;
}
.footer-disclaimer strong { color: var(--gold-light); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--gold-light); }

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

.reveal { opacity: 0; }
.reveal.visible { animation: fadeUp 0.6s ease forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 300px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .featured { grid-template-columns: 1fr; }
  .protection-banner { grid-template-columns: 1fr; padding: 2.5rem; }
  .protection-art { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 1rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.open { max-height: 600px; overflow-y: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-list a { padding: 0.85rem 0.5rem; }
  .hero { padding: 3rem 0 3.5rem; }
  section { padding: 2.75rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .legal-content, .guide-section, .topic-section { padding: 1.75rem; }
  .featured-content, .featured-visual { padding: 2rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: auto; }
}

