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

:root {
  --primary: #002452;
  --primary-light: #1b3a6b;
  --primary-bg: #e6effc;
  --secondary: #5d5f5f;
  --accent: #b3924e;       /* Elegant Gold */
  --accent-light: #f7ede2;
  --success: #0d9488;      /* Teal */
  --success-bg: #e0f2f1;
  --background: #f8f9fa;
  --surface: #ffffff;
  --surface-dim: #f1f3f5;
  --on-background: #191c1d;
  --on-surface: #191c1d;
  --on-primary: #ffffff;
  --muted: #626569;
  --line: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 36, 82, 0.03);
  --shadow-md: 0 6px 20px rgba(0, 36, 82, 0.05);
  --shadow-lg: 0 12px 35px rgba(0, 36, 82, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-background);
  background-color: var(--background);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

/* Skip link for accessibility */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: fixed;
  left: 24px;
  top: 24px;
  width: auto;
  height: auto;
  background: var(--surface);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  z-index: 9999;
}

/* Header */
.site-header {
  height: 80px;
  padding: 0 max(4vw, 24px);
  display: flex;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand span {
  font-size: 11px;
  font-weight: 800;
  color: var(--on-primary);
  background: var(--primary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  letter-spacing: -0.5px;
  box-shadow: 0 3px 6px rgba(0, 36, 82, 0.2);
  transition: var(--transition);
}

.brand:hover span {
  background: var(--accent);
  transform: rotate(-10deg) scale(1.05);
}

.site-header nav {
  display: flex;
  gap: 28px;
  margin: auto;
}

.site-header nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  padding: 6px 0;
  position: relative;
}

.site-header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.site-header nav a:hover {
  color: var(--primary);
}

.site-header nav a:hover::after {
  width: 100%;
}

.site-header nav a[aria-current]::after {
  width: 100%;
  background: var(--primary);
}

.site-header nav a[aria-current] {
  font-weight: 700;
  color: var(--primary);
}

.header-search {
  font-size: 22px;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
  padding: 6px;
}

.header-search:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.button {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary) !important;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 36, 82, 0.15);
  text-align: center;
}

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(179, 146, 78, 0.35);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button.small {
  padding: 8px 20px;
  font-size: 13px;
}

.button.light {
  background: var(--surface);
  color: var(--primary) !important;
  border-color: var(--surface);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button.light:hover {
  background: var(--primary-bg);
  color: var(--primary) !important;
  border-color: var(--primary-bg);
}

.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--primary);
  cursor: pointer;
  padding: 6px;
}

/* Sections Base */
.hero, .section, .cta {
  padding-left: max(6vw, 24px);
  padding-right: max(6vw, 24px);
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 1440px;
  margin: auto;
}

.soft {
  max-width: none;
  background-color: var(--surface-dim);
}

.soft > * {
  max-width: 1268px;
  margin-left: auto;
  margin-right: auto;
}

/* Typography styling */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.lead {
  font-size: 19px;
  max-width: 680px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero Section */
.hero {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: 1440px;
  margin: auto;
  align-items: center;
}

.search {
  margin-top: 35px;
  max-width: 580px;
}

.search label {
  font-size: 13px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search div {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.search div:focus-within {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(27, 58, 107, 0.15);
}

.search input {
  padding: 12px 20px;
  border: 0;
  outline: 0;
  flex: 1;
  font-size: 16px;
  min-width: 0;
  font-family: inherit;
  color: var(--on-background);
}

.search button {
  border: none;
}

.search small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin: 10px 20px 0;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent);
}

.hero-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  line-height: 1.2;
  display: block;
  margin: 12px 0 16px;
  color: var(--primary);
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  font-size: 14px;
  color: var(--secondary);
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

/* Engagements Logos Section */
.logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  background: var(--surface);
  overflow-x: auto;
}

.logos span {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logos span::before {
  content: '✦';
  color: var(--accent);
}

/* Two Column Layout */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
  color: var(--muted);
}

.text-link {
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}

.text-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.text-link span {
  transition: var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Steps (How to React) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.steps article {
  padding: 35px 30px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.steps article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.steps b {
  font-family: 'Outfit', sans-serif;
  color: var(--accent);
  font-size: 32px;
  font-weight: 800;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 30px;
}

.steps h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.steps p {
  color: var(--muted);
  font-size: 14.5px;
}

/* Card Sections */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent);
}

.card > span {
  font-family: 'Outfit', sans-serif;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card a {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Chapter Navigation for Pillar Pages */
.chapter-nav {
  position: sticky;
  top: 80px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px max(6vw, 24px);
  display: flex;
  gap: 28px;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 14px;
  backdrop-filter: blur(8px);
}

.chapter-nav strong {
  color: var(--primary);
  font-weight: 700;
}

.chapter-nav a {
  color: var(--secondary);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
}

.chapter-nav a:hover {
  color: var(--primary);
  background: var(--surface-dim);
  text-decoration: none;
}

/* Split Section (Stats / Why Us) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 30px;
}

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

.facts div {
  padding: 30px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.facts div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.facts strong {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.facts span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Knowledge (Pillar Main Section) */
.definition {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  border: 1px solid var(--line);
  padding: 35px;
  margin: 40px 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.definition > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 36, 82, 0.1);
}

.definition h3 {
  margin-bottom: 8px;
}

/* Process Section */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.process article {
  padding: 35px 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.process span {
  font-size: 32px;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 12px;
}

.process p {
  font-size: 14.5px;
  color: var(--muted);
}

/* Table Style */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

th, td {
  padding: 16px 20px;
  text-align: left;
}

th {
  background-color: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  color: var(--on-surface);
  font-size: 14.5px;
}

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

tr:nth-child(even) td {
  background-color: var(--surface-dim);
}

/* Scenario Grid */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.scenario-grid article {
  padding: 35px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.scenario-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}

.scenario-grid span {
  font-size: 32px;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 15px;
}

.scenario-grid p {
  color: var(--muted);
  font-size: 14.5px;
}

/* Dark Section */
.dark-section {
  background: var(--primary);
  color: var(--surface);
  max-width: none;
  padding-top: 100px;
  padding-bottom: 100px;
}

.dark-section > * {
  max-width: 1268px;
  margin-left: auto;
  margin-right: auto;
}

.dark-section h2, .dark-section h3 {
  color: var(--surface);
}

.dark-section .eyebrow {
  color: var(--accent);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  margin-top: 40px;
}

.safety-grid li {
  margin: 14px 0;
  color: #d1d9e6;
  list-style-position: inside;
}

.warning {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.warning > span {
  font-size: 22px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.warning p {
  color: #cbd5e1;
  font-size: 15px;
  margin-bottom: 20px;
}

.warning a {
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.warning a:hover {
  color: var(--surface);
}

/* Myths Section */
.myths {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.myths > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.myths p {
  color: var(--muted);
  font-size: 14.5px;
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.myths b {
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

/* Decision Matrix */
.decision {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.decision div {
  padding: 30px 24px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  transition: var(--transition);
}

.decision div:last-child {
  border-right: none;
}

.decision div:hover {
  background: var(--surface-dim);
}

.decision b {
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.decision h3 {
  font-size: 19px;
  margin: 10px 0 8px;
}

.decision p {
  font-size: 14px;
  color: var(--muted);
}

.fine-print {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

/* Glossary Section */
.glossary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.glossary article {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: var(--transition);
}

.glossary article:hover {
  background: var(--surface-dim);
}

.glossary h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.glossary p {
  font-size: 14px;
  color: var(--muted);
}

/* Trust Section */
.trust {
  background: var(--accent-light);
  max-width: none;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.trust > div {
  max-width: 580px;
}

.trust > div + div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust article {
  background: var(--surface);
  padding: 30px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(179, 146, 78, 0.15);
}

.trust article span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust article h3 {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 10px;
}

.trust article p {
  font-size: 13.5px;
  color: var(--muted);
}

/* FAQ Accordion */
.faq-list {
  margin: 40px 0;
  max-width: 860px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-list details[open] {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  padding: 22px 28px;
  user-select: none;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '＋';
  font-size: 18px;
  color: var(--accent);
  transition: var(--transition);
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: '－';
  transform: rotate(90deg);
}

.faq-list p {
  color: var(--muted);
  padding: 0 28px 22px;
  font-size: 15px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* Articles list */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.articles article {
  padding: 30px;
  background: var(--surface);
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.articles article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}

.articles p {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.articles h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.articles h3 a:hover {
  color: var(--primary-light);
}

.articles span {
  color: var(--muted);
  font-size: 14px;
}

/* CTA */
.cta {
  background: var(--primary);
  color: var(--on-primary);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  color: var(--surface);
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.cta p:not(.eyebrow) {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 18px;
}

/* Footer styling */
.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 80px max(4vw, 24px) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--surface);
  font-size: 24px;
  margin-bottom: 16px;
}

.site-footer p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 20px;
}

.site-footer h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.site-footer a {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--surface);
}

.newsletter {
  display: flex;
  margin-top: 20px;
  max-width: 320px;
}

.newsletter input {
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px 0 0 999px;
  color: var(--surface);
  font-family: inherit;
  outline: none;
}

.newsletter input:focus {
  border-color: var(--accent);
}

.newsletter button {
  border-radius: 0 999px 999px 0;
  padding: 12px 20px;
  border: none;
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter button:hover {
  background: var(--surface);
  color: var(--primary) !important;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 24px;
  font-size: 12px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* Pillar Content Styling */
.page-hero {
  background: var(--primary-bg);
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.page-hero h1 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--primary-light);
  font-size: 19px;
}

.content {
  max-width: 860px;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.content h2 {
  font-size: 32px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 12px;
}

.content p, .content li {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content li {
  margin-bottom: 10px;
}

.callout {
  background: var(--accent-light);
  border-left: 5px solid var(--accent);
  padding: 24px 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 35px 0;
}

.callout strong {
  color: var(--primary);
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

/* Contact Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-info strong {
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.map {
  height: 220px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-top: 30px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.contact-form {
  background: var(--surface);
  padding: 45px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  margin-bottom: 10px;
}

.contact-form p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-top: 18px;
  margin-bottom: 6px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background-color: var(--background);
  transition: var(--transition);
  outline: none;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--primary-light);
  background-color: var(--surface);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  margin-top: 24px;
  width: 100%;
}

/* 404 Page */
.not-found {
  text-align: center;
  padding: 120px 24px;
  max-width: 600px;
  margin: auto;
}

.not-found strong {
  font-size: 120px;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

/* Cookies RGPD Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 1000;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner h3 {
  color: var(--surface);
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13.5px;
  color: #94a3b8;
  margin-bottom: 18px;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons button {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept {
  background: var(--accent);
  color: var(--primary) !important;
  border: none;
}

.btn-accept:hover {
  background: var(--surface);
}

.btn-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-decline:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

/* Modal Search Results & Loading */
.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.search-modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 90%;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-modal-overlay.show .search-modal {
  transform: scale(1);
}

.search-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-dim);
  border: none;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  color: var(--secondary);
}

.search-modal-close:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--primary-bg);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner-text {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}

.spinner-step {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  height: 20px;
}

.results-container {
  display: none;
}

.results-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.results-num {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  color: var(--primary);
  font-weight: 800;
  display: block;
}

.results-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 6px;
}

.tag-warning {
  background-color: var(--accent-light);
  color: var(--accent);
}

.tag-success {
  background-color: var(--success-bg);
  color: var(--success);
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--surface-dim);
  font-size: 14.5px;
}

.result-item:last-of-type {
  border-bottom: none;
}

.result-label {
  color: var(--secondary);
  font-weight: 500;
}

.result-value {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

.results-actions {
  background-color: var(--surface-dim);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}

.results-actions h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.results-actions p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 70px;
    justify-content: space-between;
  }
  
  .site-header nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--line);
  }
  
  .site-header nav.open {
    display: flex;
  }
  
  .site-header nav a {
    padding: 15px 30px;
    border-bottom: 1px solid var(--surface-dim);
    font-size: 16px;
  }
  
  .site-header nav a::after {
    display: none;
  }
  
  .menu {
    display: block;
    order: 3;
  }
  
  .site-header .button.small {
    display: none;
  }
  
  .header-search {
    margin-left: auto;
    margin-right: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 50px;
    gap: 40px;
  }

  .logos {
    padding: 16px 24px;
    justify-content: flex-start;
  }

  .two, .split, .contact-grid, .trust {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .steps, .cards, .articles, .scenario-grid, .myths > div, .decision, .glossary, .trust > div + div {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .decision div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  
  .decision div:last-child {
    border-bottom: none;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .contact-form {
    padding: 30px 24px;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
