/* ================================================================
   MyDataOnDemand.ca — Main Stylesheet
   Design system adapted from MyCleanData / MyWaypoint ecosystem
   Brand: sky blue (#0ea5e9)  |  Greener Tomorrow accent: green
   ================================================================ */

: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;
}

/* ── 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;
}
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 { font-size: 1rem; padding: 0.75rem 1.875rem; border-radius: 0.625rem; }
.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 { font-size: 1rem; padding: 0.75rem 1.875rem; border-radius: 0.625rem; }
.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 { font-size: 1rem; padding: 0.75rem 1.875rem; }
.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(135deg, var(--brand-50) 0%, #ffffff 55%, var(--green-50) 100%);
  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; }

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

/* ════════════════════════════════════════
   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-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-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-step-num { font-size: 0.6875rem; font-weight: 700; color: var(--brand-500); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.375rem; }

/* ════════════════════════════════════════
   STEPS (methodology, process)
   ════════════════════════════════════════ */
.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; }
.step-body ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; }
.step-body li { font-size: 0.875rem; color: var(--slate-600); line-height: 1.65; margin-bottom: 0.25rem; }

/* ════════════════════════════════════════
   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); }
.caution {
  background: #fff7ed; border-left: 3px solid #fb923c;
  padding: 1rem 1.25rem; border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0; font-size: 0.875rem; color: #7c2d12; line-height: 1.7;
}

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--slate-200); border-radius: 0.75rem; overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; padding: 1.125rem 1.5rem;
  font-size: 0.9375rem; font-weight: 600; color: var(--slate-900);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--slate-50); }
.faq-q[aria-expanded="true"] { color: var(--brand-700); background: var(--brand-50); }
.faq-q svg { flex-shrink: 0; width: 1.125rem; height: 1.125rem; transition: transform 0.2s; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.125rem 1.5rem; font-size: 0.9375rem; color: var(--slate-600); line-height: 1.75; }
.faq-a.open { display: block; }
.faq-a p { margin-bottom: 0.75rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--brand-600); }
.faq-a a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   FORM
   ════════════════════════════════════════ */
.form-wrap { max-width: 52rem; }
.form-section-title {
  font-size: 1.0625rem; font-weight: 700; color: var(--slate-800);
  padding-bottom: 0.75rem; border-bottom: 2px solid var(--brand-100);
  margin-bottom: 1.5rem; margin-top: 2.5rem;
}
.form-section-title:first-child { margin-top: 0; }
.form-group { margin-bottom: 1.375rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.375rem; }
.form-label .req { color: #dc2626; margin-left: 0.125rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.625rem 0.875rem;
  border: 1px solid var(--slate-300); border-radius: 0.5rem;
  font-size: 0.9375rem; color: var(--slate-900); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none; appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.form-textarea { resize: vertical; min-height: 5.5rem; line-height: 1.6; }
.form-hint { font-size: 0.8125rem; color: var(--slate-400); margin-top: 0.25rem; line-height: 1.5; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.checkbox-list { display: flex; flex-direction: column; gap: 0.625rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.625rem; cursor: pointer; }
.check-item input[type="checkbox"] { margin-top: 0.1875rem; accent-color: var(--brand-600); width: 1rem; height: 1rem; flex-shrink: 0; cursor: pointer; }
.check-item span { font-size: 0.9375rem; color: var(--slate-700); line-height: 1.5; }
.radio-list { display: flex; flex-direction: column; gap: 0.625rem; }
.radio-item { display: flex; align-items: flex-start; gap: 0.625rem; cursor: pointer; }
.radio-item input[type="radio"] { margin-top: 0.1875rem; accent-color: var(--brand-600); width: 1rem; height: 1rem; flex-shrink: 0; cursor: pointer; }
.radio-item span { font-size: 0.9375rem; color: var(--slate-700); }
.form-ack {
  background: var(--brand-50); border: 1px solid var(--brand-200);
  border-radius: 0.625rem; padding: 1.25rem; margin-top: 1.5rem;
}
.form-ack-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.9375rem; color: var(--slate-700); line-height: 1.65; }
.form-ack-label input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--brand-600); width: 1.125rem; height: 1.125rem; flex-shrink: 0; cursor: pointer; }
.form-submit-area { margin-top: 2rem; }
.form-submit-note { font-size: 0.8125rem; color: var(--slate-500); margin-top: 0.75rem; line-height: 1.5; }

/* ════════════════════════════════════════
   EXAMPLES PAGE
   ════════════════════════════════════════ */
.example-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 0.875rem; padding: 1.625rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.example-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-color: var(--slate-300); }
.example-card-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.example-card-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: var(--brand-50); color: var(--brand-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.example-card-icon svg { width: 1.25rem; height: 1.25rem; }
.example-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.example-card .need { font-size: 0.875rem; color: var(--slate-600); line-height: 1.65; margin-bottom: 1.125rem; }
.example-meta { border-top: 1px solid var(--slate-100); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.example-meta-row { display: flex; flex-direction: column; gap: 0.1875rem; }
.example-meta-label { font-size: 0.6875rem; font-weight: 700; color: var(--brand-600); text-transform: uppercase; letter-spacing: 0.07em; }
.example-meta-value { font-size: 0.8125rem; color: var(--slate-600); line-height: 1.55; }
.feasibility { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 0.5rem; padding: 0.625rem 0.875rem; font-size: 0.8125rem; color: #92400e; margin-top: 1rem; line-height: 1.55; }

/* ════════════════════════════════════════
   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 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 { background: #fff; color: var(--brand-700); }
.cta-block .btn-inv:hover { background: var(--brand-50); }

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.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; }

/* ════════════════════════════════════════
   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); }
.privacy-badges { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.5rem; }

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

/* ── 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; }

/* ── Banner logo ── */
.nav-logo-banner {
  display: block;
  height: 2rem;
  width: auto;
  max-width: 178px;
}
@media (min-width: 640px) {
  .nav-logo-banner { height: 2.25rem; max-width: 213px; }
}
@media (min-width: 1024px) {
  .nav-logo-banner { height: 2.5rem; max-width: 222px; }
}

/* ── Prevent horizontal overflow on narrow viewports ── */
body { overflow-x: hidden; }

/* ── btn-primary-lg base colour (missing from modifier-only class) ── */
.btn-primary-lg {
  background: var(--brand-600); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; border-radius: 0.625rem; text-decoration: none;
  cursor: pointer; border: none; white-space: nowrap;
  transition: background 0.15s;
}
.btn-primary-lg:hover { background: var(--brand-700); }

/* ── contact-info-card h2 (pages use h2, CSS only had h3) ── */
.contact-info-card h2 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.375rem; }

/* ── CTA block narrow padding ── */
@media (max-width: 480px) {
  .cta-block { padding: 2rem 1.25rem; }
}

/* ── form-row single-col explicit on small screens ── */
@media (max-width: 639px) {
  .form-row-2 { grid-template-columns: 1fr; }
}
