/* ================================================================
   MyDataTools.ca — Main Stylesheet
   Design system consistent with MyWaypoint / MyCleanData ecosystem
   Brand: sky blue (#0ea5e9) | Tool accent: indigo
   ================================================================ */

:root {
  --brand-50:  #f0f9ff;
  --brand-100: #e0f2fe;
  --brand-200: #bae6fd;
  --brand-300: #7dd3fc;
  --brand-400: #38bdf8;
  --brand-500: #0ea5e9;
  --brand-600: #0284c7;
  --brand-700: #0369a1;
  --brand-800: #075985;
  --brand-900: #0c4a6e;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;

  --indigo-50:  #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;

  --red-50:  #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;

  --amber-50:  #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter Variable", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.2; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
fieldset { border: none; margin: 0; padding: 0; }
legend { font-weight: 600; font-size: 0.875rem; color: var(--slate-700); margin-bottom: 0.5rem; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Page wrapper ── */
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ════════════════════════════════════════
   TOP NAV
   ════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-weight: 800; font-size: 1rem; color: var(--brand-700);
  text-decoration: none; flex-shrink: 0; letter-spacing: -0.01em;
}
.nav-logo-icon {
  width: 2rem; height: 2rem;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  border-radius: 0.375rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 1.125rem; height: 1.125rem; color: #fff; }
.nav-wordmark { white-space: nowrap; }
.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.375rem 0.75rem; border-radius: 0.375rem;
  font-size: 0.875rem; font-weight: 500; color: var(--slate-600);
  transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.nav-link:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-link.active { color: var(--brand-700); background: var(--brand-50); }

.nav-right { display: none; align-items: center; gap: 0.625rem; flex-shrink: 0; }
@media (min-width: 1024px) { .nav-right { display: flex; } }

/* Lang switcher */
.lang-sw { display: flex; align-items: center; gap: 0.125rem; font-size: 0.75rem; font-weight: 600; }
.lang-sw a { padding: 0.25rem 0.375rem; border-radius: 0.25rem; color: var(--slate-500); transition: color 0.15s; }
.lang-sw a:hover { color: var(--slate-900); }
.lang-sw .lang-active { padding: 0.25rem 0.375rem; border-radius: 0.25rem; color: var(--brand-700); background: var(--brand-50); }
.lang-sw .lang-div { color: var(--slate-300); }

/* Mobile hamburger */
.hamburger { display: flex; padding: 0.5rem; color: var(--slate-500); border-radius: 0.375rem; transition: color 0.15s, background 0.15s; }
.hamburger:hover { color: var(--slate-900); background: var(--slate-100); }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger svg { width: 1.25rem; height: 1.25rem; display: block; }
.icon-menu, .icon-close { display: block; }
.hamburger[aria-expanded="true"] .icon-menu { display: none; }
.hamburger[aria-expanded="false"] .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }

/* Mobile nav drawer */
.mobile-nav { display: none; border-top: 1px solid var(--slate-100); padding: 0.75rem 0 1rem; }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.5rem 0.75rem; border-radius: 0.375rem;
  font-size: 0.875rem; font-weight: 500; color: var(--slate-700);
  transition: background 0.15s;
}
.mobile-nav a:hover { background: var(--slate-100); }
.mobile-nav a.active { color: var(--brand-700); background: var(--brand-50); }
.mobile-nav-sep { height: 1px; background: var(--slate-100); margin: 0.75rem 0; }
.mobile-nav-lang { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; }
.mobile-nav-lang span { font-size: 0.75rem; color: var(--slate-400); }
.mobile-nav-cta { padding: 0 0.5rem; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.25rem; }

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--brand-600); color: #fff;
  font-weight: 600; font-size: 0.875rem;
  padding: 0.5rem 1.25rem; border-radius: 0.5rem;
  transition: background 0.15s; text-decoration: none; cursor: pointer;
  border: none; white-space: nowrap;
}
.btn-primary:hover { background: var(--brand-700); }
.btn-primary-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--brand-600); color: #fff;
  font-weight: 600; font-size: 1rem;
  padding: 0.75rem 1.875rem; border-radius: 0.625rem;
  transition: background 0.15s; text-decoration: none; cursor: pointer;
  border: none; white-space: nowrap;
}
.btn-primary-lg:hover { background: var(--brand-700); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #fff; color: var(--slate-700);
  font-weight: 600; font-size: 0.875rem;
  padding: 0.5rem 1.25rem; border-radius: 0.5rem;
  border: 1px solid var(--slate-300); transition: border-color 0.15s, background 0.15s;
  text-decoration: none; cursor: pointer; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--slate-400); background: var(--slate-50); }
.btn-secondary-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #fff; color: var(--slate-700);
  font-weight: 600; font-size: 1rem;
  padding: 0.75rem 1.875rem; border-radius: 0.625rem;
  border: 1px solid var(--slate-300); transition: border-color 0.15s, background 0.15s;
  text-decoration: none; cursor: pointer; white-space: nowrap;
}
.btn-secondary-lg:hover { border-color: var(--slate-400); background: var(--slate-50); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: #fff;
  font-weight: 600; font-size: 0.875rem;
  padding: 0.5rem 1.25rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none; cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.1); }
.btn-ghost-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: #fff;
  font-weight: 600; font-size: 1rem;
  padding: 0.75rem 1.875rem; border-radius: 0.625rem;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none; cursor: pointer;
}
.btn-ghost-lg:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--slate-700);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #0c4a6e 100%);
  margin-top: auto;
}
.footer-inner { padding: 2.5rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand-name { font-weight: 800; font-size: 0.9375rem; color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.footer-tagline { font-size: 0.75rem; color: var(--brand-300); margin-bottom: 0.75rem; font-style: italic; }
.footer-brand-desc { font-size: 0.75rem; color: var(--slate-400); line-height: 1.65; margin-bottom: 0.75rem; }
.footer-powered { font-size: 0.75rem; color: var(--slate-500); }
.footer-powered a { color: var(--brand-400); transition: color 0.15s; }
.footer-powered a:hover { color: var(--brand-300); }

.footer-col-heading {
  font-size: 0.6875rem; font-weight: 700; color: var(--brand-300);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.875rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--slate-400); transition: color 0.15s; }
.footer-links a:hover { color: var(--slate-200); }

.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid var(--slate-700);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; font-size: 0.75rem; color: var(--slate-500); text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-lang-sw { display: flex; align-items: center; gap: 0.25rem; font-weight: 600; font-size: 0.75rem; }
.footer-lang-sw a { color: var(--slate-400); transition: color 0.15s; }
.footer-lang-sw a:hover { color: var(--slate-200); }
.footer-lang-sw .active { color: var(--brand-400); }
.footer-lang-sw .div { color: var(--slate-600); }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  background: linear-gradient(180deg, var(--brand-100) 0%, #99c098 0%, var(--indigo-50) 75%);
  padding: 4.5rem 0 5.5rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.6875rem; font-weight: 700; color: var(--brand-700);
  background: var(--brand-50); border: 1px solid var(--brand-200);
  padding: 0.25rem 0.875rem; border-radius: 9999px;
  margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.07em;
}
.hero-eyebrow svg { width: 0.875rem; height: 0.875rem; }
.hero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: var(--slate-900);
  line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 1.375rem; max-width: 44rem;
}
.hero-heading em { font-style: normal; color: var(--brand-600); }
.hero-sub {
  font-size: 1.125rem; color: var(--slate-600);
  line-height: 1.75; max-width: 38rem; margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid var(--slate-200);
}
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--slate-500); }
.hero-trust-icon { color: var(--green-600); width: 1rem; height: 1rem; flex-shrink: 0; }
.hero-trust-icon svg { width: 1rem; height: 1rem; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--brand-50) 0%, #ffffff 100%);
  padding: 3rem 0 3.5rem; border-bottom: 1px solid var(--slate-200);
}
.page-hero-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; color: var(--slate-900);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1.0625rem; color: var(--slate-600);
  line-height: 1.75; max-width: 42rem;
}

/* Tool page hero */
.tool-hero {
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--slate-800) 100%);
  padding: 2.5rem 0 3rem;
}
.tool-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.6875rem; font-weight: 700; color: var(--brand-300);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 0.25rem 0.875rem; border-radius: 9999px;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.07em;
}
.tool-hero-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.875rem;
}
.tool-hero-sub {
  font-size: 1rem; color: var(--slate-300);
  line-height: 1.75; max-width: 44rem; margin-bottom: 1.25rem;
}
.tool-hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tool-hero-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 600; color: var(--brand-300);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
}
.tool-hero-badge svg { width: 0.75rem; height: 0.75rem; }

/* ════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════ */
.section     { padding: 4rem 0; }
.section-sm  { padding: 2.5rem 0; }
.section-alt { padding: 4rem 0; background: var(--slate-50); }
.section-dark {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 50%, var(--brand-900) 100%);
  color: #fff;
}

.section-label {
  font-size: 0.6875rem; font-weight: 700; color: var(--brand-600);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.section-label-white { color: var(--brand-300); }
.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700;
  color: var(--slate-900); margin-bottom: 0.75rem; letter-spacing: -0.015em;
}
.section-heading-white { color: #fff; }
.section-sub {
  font-size: 1.0625rem; color: var(--slate-600);
  line-height: 1.75; max-width: 44rem; margin-bottom: 2.5rem;
}
.section-sub-white { color: var(--slate-300); }
.section-sub-center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ════════════════════════════════════════
   CARDS
   ════════════════════════════════════════ */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .card-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 0.75rem; padding: 1.5rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-color: var(--slate-300); }
.card-link { text-decoration: none; display: block; color: inherit; }
.card-icon {
  width: 2.5rem; height: 2.5rem; background: var(--brand-50);
  border-radius: 0.5rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--brand-600); flex-shrink: 0;
}
.card-icon svg { width: 1.25rem; height: 1.25rem; }
.card-icon-green { background: var(--green-50); color: var(--green-700); }
.card-icon-indigo { background: var(--indigo-50); color: var(--indigo-600); }
.card-title { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.card-body { font-size: 0.875rem; color: var(--slate-600); line-height: 1.65; }
.card-arrow {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--brand-600);
}
.card-arrow svg { width: 0.875rem; height: 0.875rem; }

/* Tool card (7 up on tools index) */
.tool-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 0.875rem; padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.tool-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  border-color: var(--brand-200);
  transform: translateY(-2px);
}
.tool-card-icon {
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex-shrink: 0;
}
.tool-card-icon svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.tool-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.tool-card-body { font-size: 0.875rem; color: var(--slate-600); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.tool-card-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 1rem; }
.tool-card-tag {
  font-size: 0.6875rem; font-weight: 600; color: var(--brand-700);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  padding: 0.125rem 0.5rem; border-radius: 9999px;
}
.tool-card-cta {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--brand-600);
  margin-top: auto;
}
.tool-card-cta svg { width: 1rem; height: 1rem; }

/* ════════════════════════════════════════
   STEPS
   ════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--slate-100); }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: var(--brand-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
}
.step-body h3 { font-size: 1.0625rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.375rem; }
.step-body p  { font-size: 0.9375rem; color: var(--slate-600); line-height: 1.7; }

/* ════════════════════════════════════════
   PROSE (text-heavy pages)
   ════════════════════════════════════════ */
.prose { max-width: 44rem; }
.prose-wide { max-width: 56rem; }
.prose h2 {
  font-size: 1.375rem; font-weight: 700; color: var(--slate-900);
  margin-top: 2.5rem; margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--slate-100);
}
.prose h3 { font-size: 1.0625rem; font-weight: 700; color: var(--slate-900); margin-top: 1.75rem; margin-bottom: 0.5rem; }
.prose p  { font-size: 0.9375rem; color: var(--slate-700); line-height: 1.8; margin-bottom: 1.125rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.125rem; }
.prose li { font-size: 0.9375rem; color: var(--slate-700); line-height: 1.75; margin-bottom: 0.25rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { font-weight: 700; color: var(--slate-900); }
.prose a { color: var(--brand-600); }
.prose a:hover { text-decoration: underline; }
.note {
  background: var(--brand-50); border-left: 3px solid var(--brand-400);
  padding: 1rem 1.25rem; border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0; font-size: 0.875rem; color: var(--slate-700); line-height: 1.7;
}
.note strong { font-weight: 700; color: var(--brand-800); }

/* ════════════════════════════════════════
   CTA BLOCK
   ════════════════════════════════════════ */
.cta-block {
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-900) 100%);
  border-radius: 1rem; padding: 3rem 2rem; text-align: center; color: #fff;
}
.cta-block .section-label-white { margin-bottom: 0.375rem; }
.cta-block h2 { font-size: clamp(1.375rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-block p {
  font-size: 1.0625rem; color: var(--brand-100);
  margin-bottom: 1.875rem; max-width: 36rem;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center; }
.cta-block .btn-inv {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #fff; color: var(--brand-700); font-weight: 600;
  padding: 0.75rem 1.875rem; border-radius: 0.625rem;
  font-size: 1rem; text-decoration: none; transition: background 0.15s;
}
.cta-block .btn-inv:hover { background: var(--brand-50); }
@media (max-width: 480px) { .cta-block { padding: 2rem 1.25rem; } }

/* ════════════════════════════════════════
   MISC UTILITY
   ════════════════════════════════════════ */
.divider { border: none; border-top: 1px solid var(--slate-200); margin: 2rem 0; }
.badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 0.1875rem 0.625rem; border-radius: 9999px;
}
.badge-brand  { background: var(--brand-100); color: var(--brand-800); }
.badge-green  { background: var(--green-100); color: var(--green-700); }
.badge-slate  { background: var(--slate-100); color: var(--slate-600); }
.badge-red    { background: var(--red-100); color: var(--red-700); }
.badge-amber  { background: var(--amber-100); color: var(--amber-600); }
.privacy-badges { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.5rem; }

/* ── Skip nav ── */
.skip-nav {
  position: absolute; top: -9999px; left: 0; z-index: 9999;
  background: var(--brand-600); color: #fff;
  padding: 0.75rem 1.5rem; font-weight: 600; font-size: 0.875rem;
  border-radius: 0 0 0.5rem 0;
}
.skip-nav:focus { top: 0; }

/* ── Responsive helpers ── */
.hidden-mobile { display: none; }
@media (min-width: 640px) { .hidden-mobile { display: block; } }

/* ── Ecosystem / partner links section ── */
.ecosystem-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .ecosystem-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ecosystem-grid { grid-template-columns: repeat(5, 1fr); } }

.ecosystem-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 0.625rem; padding: 1rem;
  text-align: center; transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.ecosystem-card:hover { border-color: var(--brand-300); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.ecosystem-card-name { font-size: 0.875rem; font-weight: 700; color: var(--brand-700); margin-bottom: 0.25rem; }
.ecosystem-card-desc { font-size: 0.75rem; color: var(--slate-500); line-height: 1.5; }

/* ── Contact info card ── */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.6fr; } }
.contact-info-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 0.875rem; padding: 1.75rem;
}
.contact-info-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.375rem; }
.contact-info-card p { font-size: 0.875rem; color: var(--slate-600); line-height: 1.65; }
.contact-info-card a { color: var(--brand-600); }
.contact-info-card a:hover { text-decoration: underline; }
