/* ============================================
   BLOCKCHAIN LEGAL SOLUTIONS — DESIGN SYSTEM
   Premium White Mode + Blue Accent
   ============================================ */

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

:root {
  /* Primary Blues */
  --blue-900: #0a2540;
  --blue-800: #0d3868;
  --blue-700: #0f4c8a;
  --blue-600: #1565c0;
  --blue-500: #1976d2;
  --blue-400: #42a5f5;
  --blue-300: #90caf9;
  --blue-200: #bbdefb;
  --blue-100: #e3f2fd;
  --blue-50:  #f0f7ff;

  /* Accent */
  --accent: #00b4d8;
  --accent-light: #90e0ef;
  --accent-glow: rgba(0, 180, 216, 0.25);

  /* Neutrals */
  --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;

  /* Semantic */
  --success: #10b981;
  --success-bg: #ecfdf5;
  --error: #ef4444;
  --error-bg: #fef2f2;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-blue: 0 4px 14px rgba(21, 101, 192, 0.25);
  --shadow-blue-lg: 0 10px 30px rgba(21, 101, 192, 0.35);
  --shadow-card-hover: 0 20px 40px -8px rgba(21, 101, 192, 0.15);

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
  --duration-slow: 0.4s;
}

@keyframes pulse-soft {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(21, 101, 192, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(21, 101, 192, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(21, 101, 192, 0); }
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: var(--blue-600);
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--blue-800);
}

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.text-blue { color: var(--blue-600); }
.text-accent { color: var(--accent); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }
.text-center { text-align: center; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-blue {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: var(--white);
}

.section-blue h2,
.section-blue h3,
.section-blue h4 {
  color: var(--white);
}

.section-blue p {
  color: var(--blue-200);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  font-size: 1.125rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
  background: var(--blue-50);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--blue-200);
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 3rem; }
.crypto-article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }
.crypto-article-grid.reverse .article-content { grid-column: 2; grid-row: 1; }
.crypto-article-grid.reverse .article-image { grid-column: 1; grid-row: 1; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--blue-900);
}

.logo-icon {
  color: var(--blue-500);
}

.logo span {
  color: var(--blue-500);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav-link:hover {
  color: var(--blue-600);
  background: var(--blue-50);
}

.nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-700);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
}

.btn-pulse {
  animation: pulse-soft 2s infinite;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-600);
  border: 1.5px solid var(--blue-200);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  color: var(--blue-700);
}

.btn-lg {
  padding: 0.9375rem 2rem;
  font-size: 1.0625rem;
}

.btn-white {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  color: var(--blue-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  padding-top: 1rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--white);
  padding: 0.4375rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--blue-200);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--blue-600);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1875rem;
  color: var(--gray-500);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Trust Row */
.trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
}

.trust-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  color: var(--blue-500);
}

/* ============================================
   FORM CARD
   ============================================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--blue-200);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--accent));
  z-index: 10;
}

.form-card-inner {
  padding: 2.25rem;
}

.form-header {
  padding: 2rem 2.25rem 1.5rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0;
}

.form-header h3 {
  font-size: 1.375rem;
  margin-bottom: 0.375rem;
}

.form-header p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.15);
}

.form-control::placeholder {
  color: var(--gray-400);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 16px;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
}

.form-status {
  margin-top: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background: var(--success-bg);
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  display: block;
  background: var(--error-bg);
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-security {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.875rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--blue-200);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}

.feature-card h4 {
  margin-bottom: 0.625rem;
}

.feature-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--gray-500);
}

/* ============================================
   STAT STRIP
   ============================================ */
.stat-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.5rem 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 0.375rem;
}

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

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step-counter;
}

.step-card {
  position: relative;
  background: var(--white);
  padding: 2rem 1.75rem 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  counter-increment: step-counter;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h4 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--gray-500);
}

/* ============================================
   CONTENT CARD (for inner pages)
   ============================================ */
.content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.content-card h3 {
  color: var(--blue-800);
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
}

.content-card h3:first-child {
  margin-top: 0;
}

.content-card ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.content-card ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  color: var(--gray-600);
}

.content-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
}

/* Callout Box */
.callout {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-500);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.callout p {
  color: var(--blue-800);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* External Link Card */
.news-card {
  display: flex;
  gap: 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--duration-fast) var(--ease-out);
  margin-bottom: 1rem;
}

.news-card:hover {
  border-color: var(--blue-300);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.news-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.news-card h5 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  color: var(--gray-800);
}

.news-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* Country Pills */
.country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.country-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
}

.country-pill:hover {
  background: var(--blue-100);
  color: var(--blue-800);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--blue-200);
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ============================================
   PAGE HERO (Inner Page)
   ============================================ */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--gray-400);
}

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

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--blue-400);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.footer h5 {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.footer-legal a {
  color: var(--gray-600);
  margin-left: 1.5rem;
}

.footer-legal a:hover {
  color: var(--gray-400);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--duration-normal) var(--ease-out);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--accent));
}

.modal-body {
  padding: 2.25rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--gray-500);
  transition: all var(--duration-fast) var(--ease-out);
  z-index: 1;
}

.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-700);
}

/* ============================================
   HERO IMAGE
   ============================================ */
.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.85) 0%, transparent 100%);
  color: var(--white);
}

.hero-image-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ============================================
   PAGE IMAGES
   ============================================ */
.section-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.section-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.content-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 1.5rem 0;
}

.content-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .trust-row { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  /* --- Navigation --- */
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  
  /* Cap logo text so it doesn't collide with the CTA button */
  .logo img { height: 28px; }
  .logo-text { font-size: 0.72rem !important; letter-spacing: -0.3px; white-space: nowrap; }
  .nav { gap: 0.5rem; }
  /* Make CTA button in nav smaller */
  .nav .btn { display: none; }

  /* --- Grids --- */
  .grid-2, .grid-3, .grid-4, .steps-grid, .crypto-article-grid { grid-template-columns: 1fr; }
  .crypto-article-grid.reverse .article-content { grid-column: 1; grid-row: 2; }
  .crypto-article-grid.reverse .article-image { grid-column: 1; grid-row: 1; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-legal a { margin-left: 0; margin-right: 1rem; }

  /* --- Hero --- */

  /* --- Hero --- */
  .hero { padding: 5rem 0 2rem; }
  h1 { font-size: 2rem; line-height: 1.2; }
  h2 { font-size: 1.65rem; }
  .section { padding: 2.5rem 0; }

  /* --- Forms --- */
  .content-card { padding: 1.5rem 1rem; }
  .cta-banner { padding: 2rem 1.25rem; }
  .form-card { padding: 1.25rem; }
  /* Collapse all 2-col form grids into 1 col on mobile */
  .form-card-inner .grid-2,
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Inline form submit button shouldn't overflow */
  .form-card-inner .btn { width: 100%; white-space: normal; text-align: center; justify-content: center; }

  /* --- Trust Wallet Box (article pages) --- */
  .trust-wallet-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.25rem !important;
  }
  .trust-wallet-box img { width: 40px !important; }

  /* --- Article image --- */
  .article-image img { max-height: 260px; width: 100%; object-fit: cover; border-radius: 12px; }

  /* --- Modal --- */
  .modal-overlay { padding: 1rem; }
  .modal-container { transform: translateY(10px) scale(0.98); }
  .modal-body { padding: 1.25rem; }
  .modal-close { top: 0.5rem; right: 0.5rem; }

  /* --- Hero image --- */
  .hero-image img { height: 240px; }
  .section-image img { height: 200px; }
}

/* ============================================
   SMALL PHONES (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .trust-row { flex-direction: column; gap: 0.75rem; align-items: center; }
  .stat-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Tighten up container padding */
  .container { padding: 0 1rem; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  /* Form inputs easier to tap */
  .form-control { font-size: 16px; } /* Prevents iOS zoom-in on focus */
  .btn { min-height: 48px; }

  /* Keep country/phone labels readable */
  .form-label { font-size: 0.8rem; }
}

/* ============================================
   SCAM TYPES GRID
   ============================================ */
.scam-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.scam-type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.scam-type-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--accent));
  transform: scaleX(0);
  transition: transform var(--duration-normal) var(--ease-out);
  transform-origin: left center;
}

.scam-type-card:hover {
  border-color: var(--blue-400);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  color: inherit;
}

.scam-type-card:hover::before {
  transform: scaleX(1);
}

.scam-type-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.scam-type-icon svg {
  width: 32px;
  height: 32px;
}

.scam-type-body {
  flex: 1;
}

.scam-type-body h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.scam-type-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.scam-type-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.scam-type-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.2rem;
  color: var(--gray-300);
  transition: color var(--duration-fast), transform var(--duration-fast);
}

.scam-type-card:hover .scam-type-arrow {
  color: var(--blue-500);
  transform: translateX(4px);
}

/* ============================================
   LANDING PAGE HERO (scam-type pages)
   ============================================ */
.landing-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.landing-hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.landing-hero p.hero-subtitle {
  color: var(--blue-200);
  font-size: 1.125rem;
  max-width: 650px;
}
.landing-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 960px) {
  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Warning / info callout on landing pages */
.warning-callout {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.warning-callout p {
  color: #92400e;
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.alert-callout {
  background: #fef2f2;
  border-left: 4px solid var(--error);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.alert-callout p {
  color: #991b1b;
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--blue-900);
  color: white;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
  box-shadow: 0 -4px 24px rgba(10,37,64,0.25);
  flex-wrap: wrap;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.sticky-cta-text strong {
  color: white;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-cta-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #93c5fd;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .sticky-cta {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .sticky-cta-text { font-size: 0.875rem; }
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-700);
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: ticker-pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes ticker-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

#socialProofTicker {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================
   INLINE ARTICLE CTA CARD
   ============================================ */
.article-inline-cta {
  background: linear-gradient(135deg, var(--blue-50) 0%, white 100%);
  border: 1.5px solid var(--blue-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-inline-cta-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.article-inline-cta-content {
  flex: 1;
  min-width: 200px;
}

.article-inline-cta-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: var(--blue-900);
}

.article-inline-cta-content p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ============================================
   TRUST BADGES ROW (forms)
   ============================================ */
.trust-badges-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.875rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
}

.trust-badge-item svg {
  color: var(--success);
}

/* ============================================
   COUNTRY / CITY HERO VARIANTS
   ============================================ */
.country-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(160deg, #e8f0fe 0%, #f0f7ff 40%, #fff 100%);
  border-bottom: 1px solid var(--gray-200);
}

.country-hero h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
}

.country-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.country-breadcrumb a {
  color: var(--blue-500);
}

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

/* ============================================
   SCAM TYPE GRID (city pages)
   ============================================ */
.scam-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.scam-type-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  display: block;
}

.scam-type-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  background: var(--blue-50);
}

.scam-type-card-icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
  line-height: 1;
}

.scam-type-card h4 {
  color: var(--blue-900);
  margin-bottom: 0.375rem;
  font-size: 1rem;
}

.scam-type-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.scam-type-card .card-arrow {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--blue-500);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ============================================
   CANADA / AUSTRALIA HIGHLIGHT BOXES
   ============================================ */
.region-highlight {
  background: linear-gradient(135deg, #1a56db 0%, #0f3fa8 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: white;
  margin: 3rem 0;
}

.region-highlight h3 {
  color: white;
  margin-bottom: 1rem;
}

.region-highlight p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.region-stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.region-stat {
  text-align: center;
}

.region-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.region-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}

/* ============================================
   COMPARISON TABLE (enhanced)
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  background: var(--blue-900);
  color: white;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}

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

.comparison-table tr:nth-child(even) td {
  background: var(--gray-50);
}

.td-green { color: var(--success); font-weight: 600; }
.td-red { color: var(--error); font-weight: 600; }
.td-yellow { color: #d97706; font-weight: 600; }

/* ============================================
   FAQ ACCORDION (landing pages)
   ============================================ */
.faq-accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-accordion-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--duration-fast) var(--ease-out);
}

.faq-accordion-trigger:hover {
  background: var(--gray-50);
}

.faq-accordion-trigger.open {
  color: var(--blue-600);
  background: var(--blue-50);
}

.faq-accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-accordion-trigger.open .faq-accordion-icon {
  transform: rotate(45deg);
}

.faq-accordion-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.faq-accordion-body.open {
  display: block;
}

/* ============================================
   TRUST WALLET — WHITE ON DARK BACKGROUNDS
   ============================================ */
.footer-brand a img[alt="Trust Wallet"],
.trust-wallet-dark img,
.footer .footer-brand img[alt="Trust Wallet"] {
  filter: brightness(0) invert(1);
}
/* Keep original colors inside the blue box */
.trust-wallet-box img { filter: none !important; }

/* ============================================
   LANDING HERO GRID — MOBILE STACKING
   ============================================ */
.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .landing-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .landing-hero-grid > div:first-child { order: 1; }
  .landing-hero-grid > div:last-child  { order: 2; }
  .landing-hero h1 { font-size: 2rem !important; line-height: 1.2 !important; }
  .landing-hero .hero-subtitle { font-size: 1rem !important; }
  .hero-badge {
    font-size: 0.78rem !important;
    white-space: normal !important;
    word-break: break-word;
  }
  #lp-form { margin-top: 1.5rem !important; }
}

/* ============================================
   COUNTRY HERO GRID — MOBILE STACKING (new pages)
   ============================================ */
@media (max-width: 960px) {
  .country-hero .container > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ============================================
   STICKY CTA — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .sticky-cta {
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
  .sticky-cta-text { font-size: 0.8rem !important; text-align: center !important; }
  .sticky-cta-actions { width: 100%; justify-content: center !important; }
  .sticky-cta-actions .btn { width: 100%; max-width: 280px; }
}

/* ============================================
   FORM CARD — INNER MOBILE PADDING
   ============================================ */
@media (max-width: 768px) {
  .hero-form-wrapper { max-width: 100% !important; }
  .form-card-inner { padding: 1.25rem 1rem !important; }
  .scam-type-grid { grid-template-columns: 1fr !important; }
  .region-stat-row { gap: 1rem !important; }
  .region-stat-num { font-size: 1.5rem !important; }
}

/* ============================================
   NAV — MID SCREEN OVERFLOW GUARD
   ============================================ */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav-links { gap: 0.75rem; font-size: 0.875rem; }
  .nav-links .nav-link { padding: 0.375rem 0.5rem; }
}

/* ============================================
   ANNOUNCEMENT BAR — SMALL PHONES
   ============================================ */
@media (max-width: 480px) {
  body > div:first-child:not(.header) {
    font-size: 0.78rem !important;
    padding: 8px 12px !important;
  }
}

/* ============================================
   MOBILE HAMBURGER MENU (MCP Generated)
   ============================================ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-btn:hover span { background-color: var(--blue-600); }
.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

@media (max-width: 768px) {
  .hamburger-btn { display: flex; }

  .header .nav {
    flex-wrap: wrap;
    position: relative;
    gap: 0 !important;
  }

  .header .nav > .logo { flex: 1; }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    flex-direction: column !important;
    padding: 0.5rem 0 1rem;
    gap: 0 !important;
  }
  .nav-links.mobile-open {
    display: flex !important;
  }
  .nav-links .nav-link {
    display: block;
    padding: 0.875rem 1.5rem;
    min-height: 44px;
    font-size: 1rem !important;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800) !important;
    text-align: left;
  }
  .nav-links .nav-link:hover { background: var(--gray-50); }

  /* Logo text on mobile — make font smaller so Solutions fits */
  .logo-text { font-size: 0.9rem !important; }
  
  /* Move CTA button to row after logo on mobile, before hamburger */
  .header .nav > a.btn { font-size: 0.8rem !important; padding: 0.5rem 0.875rem !important; }
}
