/* ==========================================================================
   SentryTitle — Design System
   All brand colors are variables below. Swap the :root values to rebrand.
   ========================================================================== */

:root {
  /* Brand colors — forest green primary, warm gold accent, cream foundation */
  --primary: #1f4d2b;         /* forest green — matches logo shield */
  --primary-dark: #143a1f;    /* deep forest — hovers, headers, depth */
  --primary-light: #2d6b3d;   /* lighter forest — accents and highlights */
  --primary-soft: #e6f0e9;    /* very light green for subtle backgrounds */
  --cream: #f8f6f3;
  --cream-dark: #efeae0;
  --accent: #c9a961;          /* warm gold — pairs naturally with forest green */
  --accent-dark: #a88843;

  /* Neutrals */
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --muted-soft: #9a9a9a;
  --line: #e6e1d8;
  --line-soft: #f0ebe2;
  --white: #ffffff;

  /* Semantic */
  --danger: #b23a3a;
  --danger-bg: #fbeeee;
  --success: #2d6a4f;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 860px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(31,77,43,0.14);

  /* Typography */
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Roboto', Georgia, serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t: 250ms var(--ease);
  --t-slow: 400ms var(--ease);
}

/* Reset --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-light); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.35rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1rem;
  display: inline-block;
}

/* Layout -------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-cream { background: var(--cream); }
.section-cream-dark { background: var(--cream-dark); }
.section-dark { background: var(--primary); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--accent); }

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: all var(--t);
  text-align: center;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--cream); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: var(--cream); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--cream); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--primary); border-color: transparent; padding-left: 0.5rem; padding-right: 0.5rem; }
.btn-ghost:hover { color: var(--primary-dark); }
.btn-on-dark { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }
.btn-on-dark:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }

/* Wire fraud alert ---------------------------------------------------------- */
.alert-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 0.55rem 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.alert-bar strong { color: var(--accent); }
.alert-bar a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }
.alert-bar a:hover { color: var(--accent); }
.alert-bar-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Header / Nav -------------------------------------------------------------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(248,246,243,0.96);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--primary); }
.logo-img {
  display: block;
  width: 210px;
  height: 48px;
  background-image: url('../img/logo.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.logo-img-cream {
  width: 180px;
  height: 44px;
  background-image: url('../img/logo-cream.svg');
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.logo-text { line-height: 1.1; }
.logo-text small { display: block; font-size: 0.7rem; font-weight: 400; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

@media (max-width: 560px) {
  .logo-img { width: 170px; height: 38px; } .logo-img-cream { width: 150px; height: 36px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--t);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
}
.lang-toggle a,
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 0.35rem 0.6rem;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: all var(--t-fast);
}
.lang-toggle a + a,
.lang-toggle button + button {
  border-left: 1px solid var(--line);
}
.lang-toggle a:hover,
.lang-toggle button:hover {
  color: var(--ink);
  background: var(--cream-dark);
}
.lang-toggle a.active,
.lang-toggle button.active { background: var(--primary); color: var(--cream); }
.lang-toggle a.active:hover,
.lang-toggle button.active:hover { background: var(--primary); color: var(--cream); }

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  color: var(--primary);
}

/* Hero ---------------------------------------------------------------------- */
.hero {
  background: var(--cream);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,92,172,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,97,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: 1.25rem;
}
.hero h1 .accent-word {
  color: var(--primary);
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent-word::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: var(--accent);
  opacity: 0.35;
  z-index: -1;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

/* Hero card: signature status preview */
.hero-visual {
  position: relative;
  padding: 1.5rem;
}
.closing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform var(--t-slow);
}
.closing-card:hover { transform: rotate(0deg); }
.closing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.closing-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.closing-card-address {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0.25rem 0 0;
}
.closing-card-status {
  background: rgba(45,106,79,0.1);
  color: var(--success);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.status-dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}
.timeline li:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 30px;
  bottom: -8px;
  width: 2px;
  background: var(--line);
}
.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--line);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline li.done .timeline-dot { background: var(--primary); border-color: var(--primary); }
.timeline li.done .timeline-dot::after { content: ''; width: 6px; height: 3px; border-left: 2px solid var(--cream); border-bottom: 2px solid var(--cream); transform: rotate(-45deg) translate(1px, -1px); }
.timeline li.current .timeline-dot { background: var(--cream); border-color: var(--primary); border-width: 3px; }
.timeline li.current .timeline-dot::after { content: ''; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.timeline-text { padding-top: 2px; }
.timeline-text strong { display: block; font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.timeline-text small { font-size: 0.8rem; color: var(--muted); }

/* Service cards ------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-soft);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--t);
}
.service-card:hover .service-link { gap: 0.6rem; }

/* Two column text/visual ---------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* Stats / Trust band -------------------------------------------------------- */
.trust-band {
  background: var(--primary);
  color: var(--cream);
  padding: 3rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.trust-stat .label {
  font-size: 0.85rem;
  color: rgba(248,246,243,0.8);
  letter-spacing: 0.05em;
}

/* Calculator preview -------------------------------------------------------- */
.calc-preview {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.calc-preview h3 { margin-bottom: 0.35rem; }
.calc-preview-sub { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-group input, .form-group select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t-fast);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,92,172,0.12);
}

.calc-result {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--accent);
}
.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.calc-result-row.total {
  border-top: 1px solid var(--line);
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.calc-result-row.total span:last-child { color: var(--primary); }

/* Testimonials -------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.stars { color: var(--accent); margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial p { font-style: italic; color: var(--ink-soft); margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-attr { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.testimonial-role { font-size: 0.8rem; color: var(--muted); }

/* Location cards ------------------------------------------------------------ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--t);
}
.location-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.location-card h4 { margin-bottom: 0.5rem; color: var(--primary); }
.location-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.4rem; }
.location-card a.phone { font-weight: 600; color: var(--ink); }

/* CTA band ------------------------------------------------------------------ */
.cta-band {
  background: var(--primary);
  color: var(--cream);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.08) 0%, transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: rgba(248,246,243,0.85); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* Footer -------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(248,246,243,0.7); font-size: 0.9rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--accent); }
.footer-brand-text { color: rgba(248,246,243,0.6); font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; }

.footer-underwriters {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.underwriter-badge {
  background: rgba(248,246,243,0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: rgba(248,246,243,0.7);
  letter-spacing: 0.05em;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(248,246,243,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(248,246,243,0.5);
}

/* Page header (interior pages) --------------------------------------------- */
.page-header {
  background: var(--cream-dark);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: var(--muted); font-size: 1.1rem; max-width: 680px; margin: 0 auto; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }

/* Utilities ----------------------------------------------------------------- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Animations ---------------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s var(--ease) backwards; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .hero { padding: 3rem 0 4rem; }
  .section { padding: 3.5rem 0; }

  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: 1.5rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 1rem; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .mobile-toggle { display: block; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .alert-bar { font-size: 0.78rem; padding: 0.5rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .closing-card { transform: none; }
}
