/* Royalty Advisors — Design System
   Brand: forest green + cream + gold-tan accent
   Type: Cormorant Garamond (display) + Montserrat (body) */

:root {
  /* Forest green palette */
  --green-900: #0e2a1f;
  --green-800: #143526;
  --green-700: #1c4332;
  --green-600: #2a5a44;
  --green-500: #3d7256;
  --green-300: #88a797;
  --green-100: #d4e0d8;
  --green-50:  #eef2ee;

  /* Cream / paper */
  --cream-100: #f8f3e8;
  --cream-50:  #fbf8f0;
  --paper:     #fdfcf7;

  /* Accent */
  --gold:      #b08d4f;
  --gold-soft: #c9a36b;

  /* Neutrals */
  --ink:       #1a1f1c;
  --ink-soft:  #3a4640;
  --muted:     #6c7a72;
  --line:      #e6e1d4;
  --line-soft: #f0ece0;

  /* System */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 31, 0.06);
  --shadow:    0 8px 24px rgba(14, 42, 31, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 42, 31, 0.12);

  --container: 1200px;
  --container-narrow: 880px;

  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body:    'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: var(--green-700); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--gold); }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--green-900);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  display: inline-block;
}
.lede { font-size: 1.18rem; line-height: 1.55; color: var(--ink-soft); font-weight: 300; }
.muted { color: var(--muted); }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 128px 0; }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--green-900);
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--green-900);
  letter-spacing: 0.02em;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  color: var(--green-900);
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}
.brand-sub::before, .brand-sub::after { content: ''; }
/* Brand stays anchored left; links + phone + CTA form one right-aligned group */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--green-700); }
/* Visual divider between primary links and the action group */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green-900);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto; /* pin hamburger to the right when links are hidden */
}
/* Hidden by default — only revealed by the toggle at mobile widths */
.nav-mobile { display: none; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-900);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--green-900);
  left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--green-800);
  color: var(--cream-50);
  border-color: var(--green-800);
}
.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--cream-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn-secondary:hover {
  background: var(--green-800);
  color: var(--cream-50);
}
.btn-ghost {
  background: transparent;
  color: var(--green-800);
  padding: 14px 8px;
}
.btn-ghost:hover { color: var(--gold); }
.btn-gold {
  background: var(--gold);
  color: var(--cream-50);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--cream-50);
}
.btn-lg { padding: 18px 34px; font-size: 0.98rem; }
.btn-block { display: flex; width: 100%; }

/* === CARDS === */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s ease;
}
.card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card-link { display: block; color: inherit; text-decoration: none; }
.card-link:hover { color: inherit; }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--cream-50);
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(176, 141, 79, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(136, 167, 151, 0.1), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--cream-50); }
.hero .lede { color: rgba(248, 243, 232, 0.85); max-width: 640px; }
.hero .eyebrow { color: var(--gold-soft); }

/* === DIVIDER === */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.divider-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

/* Brand-style divider used in lockups */
.lockup-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--muted);
  margin: 0 10px;
  vertical-align: middle;
}

/* === FORMS === */
.form-group { margin-bottom: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 8px;
}
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="date"], select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(28, 67, 50, 0.1);
}
input.error, select.error, textarea.error {
  border-color: #c2434a;
  box-shadow: 0 0 0 3px rgba(194, 67, 74, 0.08);
}
.field-error {
  display: none;
  color: #c2434a;
  font-size: 0.82rem;
  margin-top: 6px;
}
.field-error.show { display: block; }
textarea { min-height: 120px; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231c4332' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Radio cards */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  cursor: pointer;
  transition: all 0.15s ease;
}
.radio-card input { position: absolute; opacity: 0; }
.radio-card-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--green-300);
  display: grid;
  place-items: center;
}
.radio-card-mark::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-700);
  transform: scale(0);
  transition: transform 0.15s ease;
}
.radio-card:has(input:checked) {
  border-color: var(--green-700);
  background: var(--green-50);
}
.radio-card:has(input:checked) .radio-card-mark { border-color: var(--green-700); }
.radio-card:has(input:checked) .radio-card-mark::after { transform: scale(1); }
.radio-card-label {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin: 0;
}

/* === SECTIONS === */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { margin-top: 12px; }
.section-head .lede { margin-top: 16px; }

/* === FOOTER === */
.site-footer {
  background: var(--green-900);
  color: rgba(248, 243, 232, 0.78);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.site-footer h4 {
  color: var(--cream-50);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248, 243, 232, 0.1);
}
.footer-brand .brand-name { color: var(--cream-50); }
.footer-brand .brand-sub { color: var(--gold-soft); }
.footer-brand p { margin-top: 16px; max-width: 320px; font-size: 0.92rem; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a {
  color: rgba(248, 243, 232, 0.78);
  font-size: 0.92rem;
}
.footer-grid a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(248, 243, 232, 0.55);
}
.footer-bottom p { margin: 0; }

/* === CTA STRIP === */
.cta-strip {
  background: var(--green-800);
  color: var(--cream-50);
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--cream-50); }
.cta-strip .lede { color: rgba(248, 243, 232, 0.85); margin: 16px auto 32px; max-width: 600px; }
.cta-strip .btn-secondary { color: var(--cream-50); border-color: var(--cream-50); }
.cta-strip .btn-secondary:hover { background: var(--cream-50); color: var(--green-900); }

/* === TRUST STRIP === */
.trust-strip {
  background: var(--cream-100);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1;
}
.trust-item .label {
  margin-top: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === LINE OF BUSINESS GRID === */
.lob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lob-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.lob-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  color: inherit;
  text-decoration: none;
  min-height: 180px;
}
.lob-card:hover {
  border-color: var(--green-700);
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: inherit;
}
.lob-card .icon {
  width: 32px;
  height: 32px;
  color: var(--green-700);
}
.lob-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-900);
  margin: 0;
}
.lob-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.lob-card .arrow {
  margin-top: auto;
  color: var(--green-700);
  font-size: 1.4rem;
  align-self: flex-end;
  transition: transform 0.2s ease;
}
.lob-card:hover .arrow { transform: translateX(4px); }

/* === DIVISION CARDS === */
.division-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.division-card {
  position: relative;
  padding: 56px 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.division-card.featured {
  background: var(--green-900);
  color: var(--cream-50);
  border-color: var(--green-900);
}
.division-card.featured h3 { color: var(--cream-50); }
.division-card.featured p { color: rgba(248, 243, 232, 0.85); }
.division-card.featured .eyebrow { color: var(--gold-soft); }
.division-card .division-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--green-700);
}
.division-card.featured .division-mark { color: var(--gold-soft); }
.division-card h3 { margin: 16px 0 8px; font-size: 1.85rem; }
.division-card p { color: var(--ink-soft); }
.division-card ul {
  list-style: none;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.division-card li {
  font-size: 0.92rem;
  padding-left: 16px;
  position: relative;
}
.division-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.division-card .pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.division-card.featured .pill {
  background: rgba(176, 141, 79, 0.18);
  color: var(--gold-soft);
}

/* === STEP INDICATOR (forms) === */
.steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--cream-100);
  font-size: 0.85rem;
  color: var(--muted);
  transition: all 0.2s ease;
}
.step.active {
  background: var(--green-800);
  color: var(--cream-50);
}
.step.done {
  background: var(--green-50);
  color: var(--green-800);
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 500;
}
.step.done .step-num { background: var(--green-700); color: var(--cream-50); }
.step:not(.active):not(.done) .step-num { background: rgba(108, 122, 114, 0.18); }

/* Step panels */
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* === SUCCESS / CONFIRMATION === */
.success-panel {
  display: none;
  text-align: center;
  padding: 56px 24px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
}
.success-panel.show { display: block; animation: fadeIn 0.4s ease; }
.success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--cream-50);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}
.success-panel h3 { color: var(--green-900); margin-bottom: 12px; }
.success-panel p { color: var(--ink-soft); max-width: 440px; margin: 0 auto; }

/* === DATE PICKER === */
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-width: 520px;
}
.date-btn {
  padding: 12px 4px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.date-btn .dow {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.date-btn .day {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green-900);
  line-height: 1;
}
.date-btn:hover:not(.disabled) {
  border-color: var(--green-700);
  background: var(--green-50);
}
.date-btn.selected {
  background: var(--green-800);
  border-color: var(--green-800);
}
.date-btn.selected .dow { color: var(--gold-soft); }
.date-btn.selected .day { color: var(--cream-50); }
.date-btn.disabled { opacity: 0.4; cursor: not-allowed; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 24px;
}
.time-btn {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--ink);
}
.time-btn:hover { border-color: var(--green-700); background: var(--green-50); }
.time-btn.selected {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--cream-50);
}

/* === RESPONSIVE === */
/* Tighten nav at narrower desktops: hide the phone before it wraps,
   compress link gaps. Keeps brand + links + quote button on one line. */
@media (max-width: 1100px) {
  .nav { gap: 20px; padding: 16px 24px; }
  .nav-links { gap: 22px; }
  .nav-phone { display: none; }
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .division-grid { grid-template-columns: 1fr; }
  .lob-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-row, .form-row.cols-3 { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-lg { padding: 96px 0; }
  .nav-links { gap: 18px; }
  .nav-cta .btn { padding: 12px 18px; font-size: 0.85rem; }
}

@media (max-width: 720px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span { background: transparent; }
  .nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }
  .nav-mobile {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--paper);
    padding: 32px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--line-soft);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-mobile .btn { margin-top: 16px; }
  .hero { padding: 72px 0 60px; }
  .division-card { padding: 40px 28px; }
  .division-card ul { grid-template-columns: 1fr; }
  .lob-grid, .lob-grid.cols-3 { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.2rem; }
  .section-head { margin-bottom: 36px; }
  .step { padding: 6px 10px; font-size: 0.78rem; }
  .step-num { width: 18px; height: 18px; font-size: 0.7rem; }
}
