/* ============================================================
   BestCostOfLiving.com — Main Stylesheet
   Design: Premium editorial, calm, credible, mobile-first
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2744;
  --navy-dark:  #111c33;
  --navy-mid:   #243056;
  --amber:      #c8893a;
  --amber-dark: #7a4d12;
  --amber-light:#f4e9d7;
  --bg:         #f7f5f0;
  --bg-white:   #ffffff;
  --text:       #1c1c1e;
  --text-muted: #5a6072;
  --text-light: #646b80;
  --border:     #e0dbd2;
  --border-dark:#c8c2b8;
  --success:    #2d6a4f;
  --font-sans:  'Georgia', 'Times New Roman', serif;
  --font-ui:    system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --max-w:      1140px;
  --max-w-text: 720px;
}

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

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Skip Link ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-family: var(--font-ui);
  text-decoration: none;
  z-index: 9999;
  border-bottom-right-radius: var(--radius);
}
.skip-link:focus { top: 0; }

/* ── Focus Styles ─────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

a { color: var(--amber-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy); }

strong { font-weight: 700; }
em { font-style: italic; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

blockquote {
  border-left: 4px solid var(--amber);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--amber-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}

hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container-text { max-width: var(--max-w-text); margin: 0 auto; padding: 0 1.5rem; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--amber);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.site-logo .logo-tagline {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-ui);
}

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: .4rem .7rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }

.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  padding: .45rem .75rem;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.nav-cta {
  background: var(--amber) !important;
  color: var(--navy-dark) !important;
  font-weight: 600 !important;
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--amber-dark) !important; }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > button {
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: .45rem .75rem;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.nav-dropdown > button::after { content: '▾'; font-size: .7rem; }
.nav-dropdown > button:hover { background: rgba(255,255,255,.12); color: #fff; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem 0;
  z-index: 200;
}
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem 1rem;
  font-size: .875rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-ui);
}
.dropdown-menu a:hover { background: var(--bg); color: var(--navy); }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1e3a5f 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,137,58,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  font-family: var(--font-ui);
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-ui);
  font-size: .9375rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s;
  line-height: 1.2;
}
.btn-primary { background: var(--amber); color: var(--navy-dark); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: var(--navy-dark); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }
.btn-sm { font-size: .85rem; padding: .5rem 1.1rem; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item { text-align: center; }
.stat-value { font-size: 1.4rem; font-weight: 700; color: var(--navy); font-family: var(--font-sans); line-height: 1; }
.stat-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-top: .2rem; }

/* ── Section ──────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 5rem 0; }
.section-alt { background: var(--bg-white); }
.section-navy { background: var(--navy); }
.section-amber { background: var(--amber-light); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section-header .eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: .75rem;
  font-family: var(--font-ui);
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-link { text-decoration: none; color: inherit; display: block; }
.card-link:hover h3, .card-link:hover h4 { color: var(--amber-dark); }

.card-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: .5rem;
  font-family: var(--font-ui);
}
.card h3, .card h4 { margin-bottom: .5rem; }
.card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 0; }
.card .card-meta {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
}

/* ── Grid layouts ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* ── Tool / Compare Section ───────────────────────────────── */
.tool-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.tool-box h2 { margin-bottom: .5rem; }
.tool-box > p { color: var(--text-muted); margin-bottom: 2rem; font-size: .95rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--navy);
  font-family: var(--font-ui);
}
.form-group select,
.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,137,58,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.compare-arrow {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--amber);
  font-weight: 700;
}

.results-box {
  margin-top: 2rem;
  background: #f0f7f0;
  border: 1px solid #c3dfc7;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: none;
}
.results-box.visible { display: block; }
.results-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.result-item { background: var(--bg-white); border-radius: var(--radius); padding: 1rem; border: 1px solid var(--border); }
.result-item .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: .25rem; font-family: var(--font-ui); }
.result-item .value { font-size: 1.3rem; font-weight: 700; color: var(--navy); font-family: var(--font-sans); }
.result-item .sublabel { font-size: .78rem; color: var(--text-muted); }
.results-note {
  font-size: .82rem;
  color: var(--text-muted);
  border-top: 1px solid #c3dfc7;
  padding-top: 1rem;
  margin-top: 1rem;
  font-style: italic;
}

/* ── Tables ───────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  font-family: var(--font-ui);
}
thead { background: var(--navy); color: #fff; }
thead th { padding: .75rem 1rem; text-align: left; font-weight: 600; font-size: .82rem; letter-spacing: .03em; }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(0,0,0,.02); }
tbody td { padding: .7rem 1rem; vertical-align: top; }
.td-highlight { font-weight: 700; color: var(--navy); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  padding: .75rem 0;
  font-size: .82rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .25rem; }
.breadcrumb li { display: flex; align-items: center; gap: .25rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--border-dark); margin-left: .25rem; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber-dark); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 3rem 1.5rem 2.5rem;
  border-bottom: 3px solid var(--amber);
}
.page-hero-content { max-width: var(--max-w); margin: 0 auto; }
.page-hero .eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
  font-family: var(--font-ui);
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.7); margin-bottom: 0; font-size: 1.05rem; max-width: 640px; }

/* ── Article / Guide Layout ───────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.article-body { min-width: 0; }
.article-sidebar { position: sticky; top: 5rem; }

.article-body h2 { margin-top: 2.5rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--border); }
.article-body h3 { margin-top: 2rem; margin-bottom: .5rem; }
.article-body h2:first-child, .article-body h3:first-child { margin-top: 0; }
.article-body p { line-height: 1.75; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; }
.article-body li { margin-bottom: .5rem; line-height: 1.65; }

.callout-box {
  background: var(--amber-light);
  border: 1px solid #e5cca2;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: .92rem;
}
.callout-box strong { display: block; margin-bottom: .25rem; color: var(--navy); }

.toc {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.toc h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-ui); font-weight: 700; margin-bottom: .75rem; font-size: .85rem; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.toc li { margin-bottom: .4rem; }
.toc a { font-size: .875rem; color: var(--text-muted); text-decoration: none; }
.toc a:hover { color: var(--amber-dark); text-decoration: underline; }

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.sidebar-card h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-ui); font-weight: 700; margin-bottom: .75rem; color: var(--navy); }
.sidebar-card ul { padding-left: 0; list-style: none; margin: 0; }
.sidebar-card li { margin-bottom: .5rem; border-bottom: 1px solid var(--border); padding-bottom: .5rem; }
.sidebar-card li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.sidebar-card a { font-size: .875rem; color: var(--text-muted); }
.sidebar-card a:hover { color: var(--amber-dark); }

/* ── Tag / Badge ──────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 99px;
  font-family: var(--font-ui);
}
.tag-amber { background: var(--amber-light); color: var(--amber-dark); border: 1px solid #e5cca2; }
.tag-navy { background: rgba(26,39,68,.08); color: var(--navy); border: 1px solid rgba(26,39,68,.15); }
.tag-green { background: #e6f4ea; color: #2d6a4f; border: 1px solid #b7d9bf; }

/* ── Alert / Notice ───────────────────────────────────────── */
.notice {
  background: #eef4ff;
  border: 1px solid #c2d7f5;
  border-left: 4px solid #3b82f6;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.notice-warning { background: var(--amber-light); border-color: #e5cca2; border-left-color: var(--amber); }

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-dark);
  padding: 1.25rem 1.5rem;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-family: var(--font-ui);
}
.trust-item .trust-icon { font-size: 1rem; }

/* ── Featured Section ─────────────────────────────────────── */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.feature-content .eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: .75rem;
  font-family: var(--font-ui);
  display: block;
}
.feature-content h2 { margin-bottom: 1rem; }
.feature-content p { color: var(--text-muted); margin-bottom: 1.25rem; }
.feature-list { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check { color: var(--amber-dark); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }

.feature-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cost-item:last-child { border-bottom: none; }
.cost-label { font-size: .88rem; color: rgba(255,255,255,.7); font-family: var(--font-ui); }
.cost-value { font-size: 1rem; font-weight: 700; color: #fff; font-family: var(--font-sans); }
.cost-diff-pos { color: #5fd88f; font-size: .8rem; margin-left: .4rem; }
.cost-diff-neg { color: #ff7f7f; font-size: .8rem; margin-left: .4rem; }

/* ── How It Works ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step { text-align: center; }
.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy-dark);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .9rem; color: var(--text-muted); }

/* ── Guide List ───────────────────────────────────────────── */
.guide-list { list-style: none; padding: 0; margin: 0; }
.guide-list li { border-bottom: 1px solid var(--border); }
.guide-list li:last-child { border-bottom: none; }
.guide-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--text);
  transition: color .15s;
}
.guide-list a:hover { color: var(--amber-dark); }
.guide-list .guide-title { font-weight: 600; font-size: .95rem; }
.guide-list .guide-arrow { font-size: .8rem; color: var(--amber-dark); flex-shrink: 0; }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 3.5rem 1.5rem 2rem;
  border-top: 3px solid var(--amber);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: var(--font-ui);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.55); text-decoration: none; }
.footer-col a:hover { color: rgba(255,255,255,.9); text-decoration: underline; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.3); max-width: 600px; line-height: 1.5; }

/* ── Trust Pages ──────────────────────────────────────────── */
.prose { max-width: var(--max-w-text); }
.prose h2 { margin-top: 2.5rem; margin-bottom: .75rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .5rem; }
.prose p { line-height: 1.78; margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin-bottom: 1.25rem; }
.prose li { line-height: 1.65; }
.prose a { color: var(--amber-dark); }
.last-updated { font-size: .82rem; color: var(--text-muted); font-style: italic; margin-bottom: 2rem; }

/* ── States Hub ───────────────────────────────────────────── */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.state-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  transition: border-color .15s, box-shadow .15s;
}
.state-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.state-abbr { font-weight: 800; font-size: .9rem; color: var(--navy); width: 2rem; flex-shrink: 0; font-family: var(--font-ui); }
.state-name { font-size: .85rem; color: var(--text-muted); }

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .trust-bar, .cta-band, .nav-toggle, .article-sidebar { display: none; }
  body { background: #fff; }
  .container { padding: 0; }
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .feature-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: .5rem 0 1rem;
    border-bottom: 3px solid var(--amber);
    z-index: 90;
  }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-dropdown > button {
    border-radius: 0;
    padding: .7rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    width: 100%;
    text-align: left;
  }
  .nav-cta { margin-left: 0; border-radius: 0; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu { position: static; border-radius: 0; box-shadow: none; background: rgba(255,255,255,.05); border: none; padding-left: 1.5rem; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { color: rgba(255,255,255,.7); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { gap: 1.25rem; }
  .trust-inner { gap: 1rem; }
  .feature-visual { display: none; }
  .compare-arrow { transform: rotate(90deg); }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .section { padding: 3rem 0; }
  .section-lg { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  :root { font-size: 15px; }
  .tool-box { padding: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ── Remediation additions: methodology notes, accessible errors, worksheets ── */
.method-note {
  background: #fff8ea;
  border: 1px solid #ead4ad;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: .95rem 1rem;
  color: #3f3526;
  font-size: .92rem;
  margin: 1rem 0 1.5rem;
}
.method-note a { font-weight: 700; }
.form-error {
  color: #8f1d1d;
  background: #fff1f1;
  border: 1px solid #f0b8b8;
  border-radius: var(--radius);
  padding: .75rem 1rem;
  margin-top: 1rem;
  display: none;
  font-weight: 600;
}
.form-error:not(:empty) { display: block; }
.callout-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.callout-tile { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.callout-tile h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.checklist { list-style: none; padding-left: 0; }
.checklist li { padding: .75rem 0 .75rem 2rem; border-bottom: 1px solid var(--border); position: relative; }
.checklist li::before { content: '□'; position: absolute; left: 0; top: .72rem; color: var(--amber-dark); font-weight: 700; }
.kpi-strip { display:grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap:1rem; margin:1.5rem 0; }
.kpi-card { background: var(--navy); color:#fff; border-radius: var(--radius-lg); padding:1.25rem; }
.kpi-card strong { display:block; color: var(--amber); font-size:1.25rem; font-family: var(--font-sans); }
.kpi-card span { color: rgba(255,255,255,.78); font-size:.88rem; }
@media print { .method-note, .callout-tile { break-inside: avoid; } .checklist li::before { content: '□'; } }

/* ============================================================
   Premium visual refresh — May 2026
   Goal: prevent the site from reading as a plain text/reference site
   while keeping the bundle tiny and Cloudflare Free friendly.
   ============================================================ */
:root {
  --ink: #182235;
  --ink-soft: #334155;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --sand: #eee2ce;
  --blue: #173654;
  --blue-2: #245170;
  --copper: #c8792d;
  --copper-2: #a85f21;
  --mint: #dff1e8;
  --line: #e7dccb;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 30px rgba(28, 37, 52, .06);
  --shadow: 0 22px 55px rgba(28, 37, 52, .11);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, .20);
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-ui: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

html { background: var(--cream); }
body {
  background:
    radial-gradient(circle at top left, rgba(200,121,45,.13), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(36,81,112,.13), transparent 30rem),
    linear-gradient(180deg, #fbf7ef 0%, #f7f1e7 45%, #fbf8f1 100%);
  color: var(--ink);
}

p { color: #384458; }
a { color: #995318; }
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.45rem, 5.6vw, 5.4rem); line-height: .96; }
h2 { font-size: clamp(1.85rem, 3.1vw, 3.1rem); line-height: 1.03; }
h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); }

.site-header {
  background: rgba(20, 31, 51, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(12, 18, 30, .18);
}
.header-inner { padding: .78rem 1.5rem; }
.site-logo .logo-name { letter-spacing: -.035em; font-size: 1.18rem; }
.site-logo .logo-tagline { color: rgba(255,255,255,.62); letter-spacing: .16em; }
.site-nav a, .nav-dropdown > button { border-radius: 999px; font-weight: 650; }
.site-nav a:hover, .site-nav a[aria-current="page"], .nav-dropdown > button:hover { background: rgba(255,255,255,.12); }
.nav-cta {
  background: linear-gradient(135deg, #f2b25e, #d68432) !important;
  box-shadow: 0 8px 24px rgba(200,121,45,.32);
}

.hero {
  background:
    linear-gradient(135deg, rgba(14, 26, 44, .94), rgba(23, 54, 84, .94)),
    radial-gradient(circle at 20% 20%, rgba(242,178,94,.25), transparent 36rem);
  text-align: left;
  padding: 6.4rem 1.5rem 5.25rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.hero::before {
  inset: 0;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 86%, transparent);
}
.hero-shell {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 700px; margin: 0; }
.hero-eyebrow {
  color: #f2b25e;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .48rem .8rem;
  margin-bottom: 1.35rem;
}
.hero h1 { color: #fff; margin-bottom: 1.35rem; text-wrap: balance; }
.hero p {
  color: rgba(255,255,255,.78);
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.7;
  max-width: 650px;
}
.hero-actions { justify-content: flex-start; margin-top: 1.9rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}
.hero-proof span {
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: .42rem .7rem;
  font-size: .84rem;
  font-weight: 700;
}
.btn { border-radius: 999px; box-shadow: none; }
.btn-primary {
  background: linear-gradient(135deg, #f7be69, #d87c2f);
  border-color: transparent;
  color: #142033;
  box-shadow: 0 18px 38px rgba(200,121,45,.30);
}
.btn-primary:hover { background: linear-gradient(135deg, #ffd08a, #c96f28); color: #111827; transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.btn-outline:hover { background: rgba(255,255,255,.14); }
.btn-navy { background: linear-gradient(135deg, var(--blue), #102238); }

.hero-visual { position: relative; min-height: 420px; }
.visual-card {
  background: rgba(255,253,248,.95);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.visual-card-main { padding: 1.25rem; transform: rotate(1deg); }
.visual-card-top {
  display: flex;
  align-items: center;
  gap: .45rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .9rem;
  margin-bottom: 1rem;
  color: #273348;
  font-size: .88rem;
}
.dot { width: .72rem; height: .72rem; border-radius: 99px; display: inline-block; }
.dot-red { background: #e88b7a; }
.dot-gold { background: #e5b45f; }
.dot-green { background: #7acb94; margin-right: .4rem; }
.city-compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #f9f2e8, #fff);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem;
}
.city-label { display: block; color: #6b7280; font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.city-compare-row strong { font-size: 1.14rem; color: var(--ink); }
.visual-arrow {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #173654;
  color: #fff;
  font-weight: 900;
}
.impact-meter {
  height: .86rem;
  border-radius: 999px;
  background: #e8dfd1;
  overflow: hidden;
  margin: 1.25rem 0;
}
.impact-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #76c893, #f2b25e, #d87c2f);
  border-radius: inherit;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.impact-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .85rem;
}
.impact-grid span { display: block; color: #667085; font-size: .78rem; font-weight: 750; }
.impact-grid strong { display: block; color: #9f4f18; font-size: 1.38rem; line-height: 1.05; }
.visual-card-float {
  position: absolute;
  right: -1rem;
  bottom: 1.25rem;
  width: 250px;
  padding: 1.1rem 1.2rem;
  transform: rotate(-3deg);
}
.visual-card-float span { display:block; color: #667085; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 850; }
.visual-card-float strong { display:block; font-size: 2rem; color: var(--ink); letter-spacing: -.05em; }
.visual-card-float small { color: #667085; font-weight: 650; }

.stats-bar {
  background: rgba(255,253,248,.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(28, 37, 52, .05);
}
.stats-inner {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  transform: translateY(-1.8rem);
  margin-bottom: -1.8rem;
  box-shadow: var(--shadow-sm);
}
.stat-item { min-width: 140px; }
.stat-value { font-size: 1.75rem; color: var(--blue); letter-spacing: -.04em; }
.stat-label { color: #667085; font-weight: 800; }

.section { position: relative; }
.section-alt {
  background:
    radial-gradient(circle at top right, rgba(200,121,45,.08), transparent 28rem),
    #fffdf8;
}
.section-header { max-width: 720px; }
.section-header .eyebrow, .feature-content .eyebrow, .card-eyebrow {
  color: #9f4f18;
  font-weight: 850;
}
.section-header p { color: #526071; }

.tool-box {
  max-width: 980px;
  background:
    linear-gradient(#fffdf8, #fffdf8) padding-box,
    linear-gradient(135deg, rgba(216,124,47,.65), rgba(23,54,84,.18)) border-box;
  border: 1px solid transparent;
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.tool-box::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: .42rem;
  background: linear-gradient(90deg, #173654, #d87c2f, #76c893);
}
.tool-box h2 { letter-spacing: -.04em; }
.method-note, .notice, .callout-box {
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(28,37,52,.05);
}
.form-group select,
.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
  background: #fff;
  border: 1px solid #d8cbbb;
  border-radius: 16px;
  padding: .86rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.compare-arrow {
  align-items: center;
  padding-bottom: 0;
  width: 3rem;
  height: 3rem;
  align-self: end;
  margin-bottom: 1.18rem;
  border-radius: 50%;
  background: #173654;
  color: #fff;
  box-shadow: 0 12px 24px rgba(23,54,84,.22);
}
.results-box {
  background: linear-gradient(135deg, #effaf4, #fffdf8);
  border: 1px solid #bdddc9;
  border-radius: 24px;
}
.result-item { border-radius: 18px; }

.card, .callout-tile, .sidebar-card, .toc, .state-card {
  background: rgba(255,253,248,.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.card {
  position: relative;
  overflow: hidden;
  padding: 1.65rem;
}
.card::before {
  content: '';
  display: block;
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #173654, #d87c2f);
  margin-bottom: 1.05rem;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(200,121,45,.32); }
.card p { color: #526071; }
.card .card-meta { border-top-color: var(--line); font-weight: 700; }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

.feature-split {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(1.2rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.feature-visual {
  background:
    radial-gradient(circle at 20% 0%, rgba(242,178,94,.22), transparent 18rem),
    linear-gradient(135deg, #142033, #173654);
  border-radius: 30px;
}
.cost-item { padding: 1rem 0; }
.cost-label { color: rgba(255,255,255,.72); }
.cost-value { font-family: var(--font-ui); font-weight: 850; }
.steps { gap: 1.25rem; }
.step {
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.step-num { background: linear-gradient(135deg, #f7be69, #d87c2f); }

.page-hero {
  background:
    linear-gradient(135deg, rgba(20,32,51,.95), rgba(23,54,84,.94)),
    radial-gradient(circle at 15% 15%, rgba(242,178,94,.24), transparent 28rem);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .85;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  color: #f2b25e;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .42rem .72rem;
}
.page-hero h1 { color: #fff; max-width: 850px; }
.page-hero p { color: rgba(255,255,255,.76); }

.article-layout {
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(231,220,203,.7);
  border-radius: 34px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.article-body h2 { border-bottom-color: var(--line); }
.prose {
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(231,220,203,.75);
  border-radius: 30px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.container-text .prose, .container .prose { margin-left: auto; margin-right: auto; }
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
thead { background: linear-gradient(135deg, #173654, #245170); }
thead th:first-child { border-top-left-radius: 20px; }
thead th:last-child { border-top-right-radius: 20px; }
tbody tr:nth-child(even) { background: #faf4eb; }

.cta-band {
  background:
    linear-gradient(135deg, rgba(20,32,51,.96), rgba(23,54,84,.96)),
    radial-gradient(circle at 30% 20%, rgba(242,178,94,.24), transparent 32rem);
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer {
  background: #111b2d;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-bar { background: #0e1726; }
.trust-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .5rem .72rem;
}

@media (max-width: 960px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; max-width: 540px; width: 100%; }
  .visual-card-float { right: 1rem; }
}
@media (max-width: 768px) {
  h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .hero { padding: 4.25rem 1.25rem 3.8rem; }
  .hero-actions { align-items: stretch; }
  .hero-proof { gap: .5rem; }
  .hero-proof span { font-size: .78rem; }
  .hero-visual { display: none; }
  .stats-inner { transform: none; margin-bottom: 0; border-radius: 20px; }
  .stats-bar { padding: 1rem; }
  .compare-arrow { transform: rotate(90deg); justify-self: center; align-self: center; margin: -.25rem 0 .5rem; }
  .tool-box, .feature-split, .article-layout, .prose { border-radius: 24px; }
  .feature-visual { display: block; padding: 1.25rem; }
}
@media (max-width: 480px) {
  .container, .container-text { padding: 0 1rem; }
  .tool-box { padding: 1.35rem; }
  .card { padding: 1.3rem; }
  .feature-visual { display: none; }
}
@media (min-width: 769px) {
  .form-row { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: end; }
}
