/* ================================================================
   SAUTI HUB — Design System
   Poppins (headings) + Inter (body) | Sage Teal + Terracotta
   ================================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --color-primary:       #4a9e8e;
  --color-primary-dark:  #357a6e;
  --color-primary-light: #7ec8bb;
  --color-accent:        #d4845a;
  --color-accent-dark:   #b5663e;
  --color-accent-light:  #f0c4a8;
  --color-bg:            #faf8f4;
  --color-surface:       #ffffff;
  --color-surface-2:     #f3f0ea;
  --color-text:          #2d2d2d;
  --color-text-muted:    #6b7280;
  --color-border:        #e5e0d8;
  --color-success:       #22c55e;
  --color-error:         #ef4444;
  --color-warning:       #f59e0b;
  --color-info:          #3b82f6;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.12);

  --nav-h: 68px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

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

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute; top: -40px; left: 8px; z-index: 9999;
  background: var(--color-primary); color: #fff; padding: 8px 16px;
  border-radius: var(--radius-sm); font-size: .85rem;
  transition: top var(--transition);
}
.skip-link:focus { top: 8px; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.sh-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.sh-nav.scrolled { box-shadow: var(--shadow-md); }
.sh-nav__inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  padding: 0 1.5rem; display: flex; align-items: center; gap: 1.5rem;
}
.sh-nav__brand {
  display: flex; align-items: center; gap: .6rem;
  color: var(--color-text); font-family: var(--font-head); font-weight: 700;
  font-size: 1.15rem; text-decoration: none; flex-shrink: 0;
}
.sh-nav__logo { height: 60px; max-height: 60px; width: auto; object-fit: contain; }
.sh-nav__links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none; margin: 0 auto; padding: 0;
}
.sh-nav__link {
  padding: .45rem .85rem; border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 500; color: var(--color-text-muted);
  transition: all var(--transition); white-space: nowrap;
}
.sh-nav__link:hover, .sh-nav__link--active {
  color: var(--color-primary); background: rgba(74,158,142,.1);
}
.sh-nav__auth { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.sh-nav__user {
  display: flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 500; color: var(--color-text);
}
.sh-nav__user i { font-size: 1.3rem; color: var(--color-primary); }
.sh-nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.sh-nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: all var(--transition);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
  padding: .6rem 1.4rem; border-radius: var(--radius-full);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary); color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; }

.btn-accent {
  background: var(--color-accent); color: #fff;
  border-color: var(--color-accent);
}
.btn-accent:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: #fff; }

.btn-outline-primary {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-primary:hover { background: var(--color-primary); color: #fff; }

.btn-ghost {
  background: transparent; color: var(--color-text-muted);
  border-color: var(--color-border);
}
.btn-ghost:hover { background: var(--color-surface-2); color: var(--color-text); }

.btn-sm { font-size: .82rem; padding: .4rem 1rem; }
.btn-lg { font-size: 1rem; padding: .85rem 2rem; }
.btn-xl { font-size: 1.1rem; padding: 1rem 2.4rem; }

/* ── CARDS ───────────────────────────────────────────────────── */
.sh-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.sh-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sh-card--glass {
  background: rgba(255,255,255,.7); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── HERO ────────────────────────────────────────────────────── */
.sh-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #e8f5f2 0%, #faf8f4 40%, #fdf0e8 100%);
}
.sh-hero__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
/* Floating peace circles */
.sh-hero__orb {
  position: absolute; border-radius: 50%;
  opacity: .15; animation: floatOrb 8s ease-in-out infinite;
}
.sh-hero__orb--1 {
  width: 420px; height: 420px; top: -100px; right: -80px;
  background: radial-gradient(circle, var(--color-primary), transparent);
  animation-delay: 0s;
}
.sh-hero__orb--2 {
  width: 280px; height: 280px; bottom: -60px; left: 5%;
  background: radial-gradient(circle, var(--color-accent), transparent);
  animation-delay: -3s;
}
.sh-hero__orb--3 {
  width: 180px; height: 180px; top: 30%; right: 20%;
  background: radial-gradient(circle, var(--color-primary-light), transparent);
  animation-delay: -6s;
}
@keyframes floatOrb {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}
.sh-hero__content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.sh-hero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(74,158,142,.12); color: var(--color-primary);
  border: 1px solid rgba(74,158,142,.25); border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 600; padding: .35rem .9rem;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.sh-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  color: var(--color-text); margin-bottom: 1.25rem;
}
.sh-hero__title span { color: var(--color-primary); }
.sh-hero__sub {
  font-size: 1.05rem; color: var(--color-text-muted);
  margin-bottom: 2rem; max-width: 480px;
}
.sh-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.sh-hero__visual {
  display: flex; justify-content: center; align-items: center;
}
/* Animated interlocking circles — peace imagery */
.sh-hero__circles {
  position: relative; width: 340px; height: 340px;
}
.sh-hero__circles svg { width: 100%; height: 100%; animation: rotateSlow 30s linear infinite; }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* ── SECTION ─────────────────────────────────────────────────── */
.sh-section { padding: 5rem 1.5rem; }
.sh-section--alt { background: var(--color-surface-2); }
.sh-section--dark {
  background: linear-gradient(135deg, #1a3a35 0%, #2d5a50 100%);
  color: #fff;
}
.sh-section--dark h2, .sh-section--dark p { color: #fff; }
.sh-section__inner { max-width: 1200px; margin: 0 auto; }
.sh-section__label {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: .6rem;
}
.sh-section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.sh-section__lead {
  font-size: 1.05rem; color: var(--color-text-muted);
  max-width: 600px; margin-bottom: 3rem;
}

/* ── FEATURE GRID ────────────────────────────────────────────── */
.sh-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.sh-feature {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  transition: all var(--transition);
}
.sh-feature:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--color-primary-light); }
.sh-feature__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(74,158,142,.15), rgba(74,158,142,.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--color-primary); margin-bottom: 1.2rem;
}
.sh-feature__title { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.sh-feature__text { font-size: .88rem; color: var(--color-text-muted); line-height: 1.6; }

/* ── VALUES CARDS ────────────────────────────────────────────── */
.sh-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.sh-value {
  text-align: center; padding: 2rem 1rem;
  background: var(--color-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--color-border); transition: all var(--transition);
}
.sh-value:hover { background: var(--color-primary); color: #fff; }
.sh-value:hover .sh-value__icon { color: #fff; background: rgba(255,255,255,.2); }
.sh-value:hover .sh-value__text { color: rgba(255,255,255,.85); }
.sh-value__icon {
  font-size: 2rem; color: var(--color-primary); margin: 0 auto 1rem;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(74,158,142,.1);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.sh-value__name { font-family: var(--font-head); font-weight: 600; font-size: .95rem; margin-bottom: .4rem; }
.sh-value__text { font-size: .82rem; color: var(--color-text-muted); transition: color var(--transition); }

/* ── UBUNTU SECTION ──────────────────────────────────────────── */
.sh-ubuntu {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl); padding: 4rem; text-align: center;
  color: #fff; position: relative; overflow: hidden;
}
.sh-ubuntu::before {
  content: '"'; position: absolute; top: -2rem; left: 2rem;
  font-size: 20rem; font-family: var(--font-head); opacity: .06; line-height: 1;
  pointer-events: none;
}
.sh-ubuntu__headline {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
  margin-bottom: 1.25rem; color: #fff;
}
.sh-ubuntu__body { font-size: 1.1rem; opacity: .9; max-width: 580px; margin: 0 auto; }

/* ── FLASH MESSAGES ──────────────────────────────────────────── */
.flash-container { max-width: 900px; margin: 1rem auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.flash {
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1.2rem; border-radius: var(--radius-md);
  border: 1px solid; font-size: .9rem; animation: slideDown .25s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.flash--success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.flash--error   { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.flash--warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.flash--info    { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.flash__icon { font-size: 1.3rem; flex-shrink: 0; }
.flash__msg { flex: 1; }
.flash__close { background: none; border: none; cursor: pointer; color: inherit; opacity: .6; padding: 2px; margin-left: auto; }
.flash__close:hover { opacity: 1; }

/* ── FORMS ───────────────────────────────────────────────────── */
.sh-form-wrap {
  max-width: 480px; margin: 3rem auto; padding: 2.5rem;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.sh-form-wrap--wide { max-width: 640px; }
.sh-form__title { font-size: 1.5rem; margin-bottom: .4rem; }
.sh-form__sub { font-size: .9rem; color: var(--color-text-muted); margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--color-text); }
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .9rem; color: var(--color-text);
  background: var(--color-surface); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(74,158,142,.15); }
.form-control.is-invalid { border-color: var(--color-error); }
.form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.12); }
.form-error { font-size: .8rem; color: var(--color-error); margin-top: .3rem; }
.form-hint { font-size: .8rem; color: var(--color-text-muted); margin-top: .3rem; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.sh-footer {
  background: #1a2e2a; color: rgba(255,255,255,.75);
  padding: 4rem 1.5rem 0;
}
.sh-footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.sh-footer__logo { width: 40px; height: 40px; border-radius: var(--radius-sm); margin-bottom: .75rem; }
.sh-footer__tagline { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.sh-footer__sdgs { font-size: .82rem; }
.sh-footer__sdgs span { color: var(--color-accent-light); font-weight: 600; }
.sh-footer__links h4 { color: #fff; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.sh-footer__links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.sh-footer__links a { color: rgba(255,255,255,.65); font-size: .88rem; display: flex; align-items: center; gap: .5rem; transition: color var(--transition); }
.sh-footer__links a:hover { color: var(--color-accent-light); }
.sh-footer__partners h4 { color: #fff; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.sh-footer__partner-logos { display: flex; flex-direction: column; gap: .6rem; }
/* PLACEHOLDER boxes for partner logos */
.sh-footer__partner-placeholder {
  background: rgba(255,255,255,.08); border: 1px dashed rgba(255,255,255,.2);
  border-radius: var(--radius-sm); padding: .5rem .75rem; font-size: .78rem; color: rgba(255,255,255,.5);
}
.sh-footer__bottom {
  max-width: 1200px; margin: 3rem auto 0; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .82rem;
}
.sh-footer__peace { display: flex; align-items: center; gap: .4rem; color: var(--color-primary-light); }

/* ── AUTH PAGES ──────────────────────────────────────────────── */
.sh-auth-page {
  min-height: calc(100vh - var(--nav-h));
  background: linear-gradient(135deg, #e8f5f2 0%, #faf8f4 60%, #fdf0e8 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem;
}
.sh-auth-logo { text-align: center; margin-bottom: 2rem; }
.sh-auth-logo i { font-size: 3rem; color: var(--color-primary); }
.sh-auth-switch { text-align: center; margin-top: 1.5rem; font-size: .88rem; color: var(--color-text-muted); }

/* ── LOADING STATES ──────────────────────────────────────────── */
.sh-spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  animation: spin .7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.loading { pointer-events: none; opacity: .8; }
.btn.loading .btn-text { display: none; }
.btn.loading .sh-spinner { display: inline-block; }
.btn:not(.loading) .sh-spinner { display: none; }

/* ── UTILITY CLASSES ─────────────────────────────────────────── */
.text-primary { color: var(--color-primary) !important; }
.text-accent  { color: var(--color-accent)  !important; }
.text-muted   { color: var(--color-text-muted) !important; }
.bg-primary   { background: var(--color-primary) !important; }
.bg-accent    { background: var(--color-accent) !important; }
.rounded-full { border-radius: var(--radius-full) !important; }
.shadow-md    { box-shadow: var(--shadow-md) !important; }
.container-sh { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── STATS BAR ───────────────────────────────────────────────── */
.sh-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }
.sh-stat { text-align: center; }
.sh-stat__number { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--color-accent); display: block; }
.sh-stat__label  { font-size: .85rem; color: var(--color-text-muted); }

/* ── BADGE CHIP ──────────────────────────────────────────────── */
.sh-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .25rem .7rem; border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 600;
  background: rgba(74,158,142,.12); color: var(--color-primary);
}

/* ── SH-INPUT (alias for form-control) ──────────────────────── */
.sh-input {
  width: auto; padding: .6rem .9rem;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .88rem; color: var(--color-text);
  background: var(--color-surface); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.sh-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(74,158,142,.15); }
select.sh-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.2rem; }
textarea.sh-input { resize: vertical; min-height: 60px; }

/* ── ALERTS ──────────────────────────────────────────────────── */
.sh-alert {
  padding: .8rem 1.2rem; border-radius: var(--radius-md);
  font-size: .88rem; border: 1px solid; line-height: 1.5;
  animation: slideDown .25s ease;
}
.sh-alert--success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.sh-alert--error   { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.sh-alert--warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.sh-alert--info    { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

/* ── EXTRA UTILITIES ────────────────────────────────────────── */
.w-100 { width: 100% !important; }
.mt-2  { margin-top: .5rem !important; }
.mt-3  { margin-top: 1rem !important; }
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.ms-2 { margin-inline-start: .5rem !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .sh-hero__content { grid-template-columns: 1fr; gap: 2rem; }
  .sh-hero__visual  { display: none; }
  .sh-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sh-nav__links { 
    display: none; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--color-surface); border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.5rem; gap: .25rem; box-shadow: var(--shadow-md);
  }
  .sh-nav__links.open { display: flex; }
  .sh-nav__toggle { display: flex; }
  .sh-nav__auth { display: none; }
  .sh-nav { position: relative; }
  .sh-ubuntu { padding: 2.5rem 1.5rem; }
  .sh-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .sh-form-wrap { padding: 1.75rem 1.25rem; }
}
@media (max-width: 480px) {
  .sh-section { padding: 3.5rem 1rem; }
  .sh-hero__ctas { flex-direction: column; }
  .btn-xl { width: 100%; justify-content: center; }
}
