/* ============================================================
   CrisisConnect Network CIC — site.css
   Brand: warm mission-driven, community sector credibility
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:        #1a2035;
  --navy-dark:   #111827;
  --navy-light:  #252e48;
  --green:       #e07830;
  --green-light: #f09050;
  --green-pale:  #fdf0e6;
  --amber:       #e07830;
  --cream:       #faf8f4;
  --warm-grey:   #f0ece6;
  --mid-grey:    #8a8580;
  --text:        #1e1e1e;
  --text-light:  #5a5550;
  --white:       #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 16px rgba(26,32,53,0.1);
  --shadow-lg:   0 8px 40px rgba(26,32,53,0.16);

  --max-width:   1160px;
  --nav-height:  72px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; color: var(--text-light); line-height: 1.75; }
p + p { margin-top: 1rem; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.nav .container { height: 100%; display: flex; align-items: stretch; max-width: var(--max-width); width: 100%; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 112px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 500; font-family: var(--font-body); transition: all 0.2s ease; white-space: nowrap; }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,32,53,0.25); }
.btn--green { background: var(--green); color: var(--white); }
.btn--orange { background: #e07830; color: var(--white); }
.btn--orange:hover { background: #f09050; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,120,48,0.35); }
.btn--green:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,120,48,0.35); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn--sm { padding: 9px 20px; font-size: 0.88rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Navigation ─────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); z-index: 1000; transition: box-shadow 0.3s; }
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner { display: flex; align-items: center; height: 100%; gap: 32px; width: 100%; }
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo img, .nav__logo svg { display: block; height: 42px; width: auto; }
.nav__logo-label { font-family: var(--font-display); font-size: 0.8rem; color: var(--green); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; border-left: 2px solid var(--green); padding-left: 10px; line-height: 1.2; }
.nav__links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav__links a { padding: 8px 14px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; color: var(--text-light); transition: all 0.2s; }
.nav__links a:hover, .nav__links a.active { color: var(--navy); background: var(--warm-grey); }
.nav__cta { flex-shrink: 0; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav__mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); padding: 16px 24px 24px; box-shadow: var(--shadow-lg); flex-direction: column; gap: 4px; z-index: 999; }
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 12px 16px; border-radius: var(--radius); font-weight: 500; color: var(--text); border-bottom: 1px solid var(--warm-grey); }
.nav__mobile .btn { margin-top: 12px; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: calc(var(--nav-height) + 72px) 0 80px; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(224,120,48,0.15) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%); pointer-events: none; }
.hero--compact { padding: calc(var(--nav-height) + 48px) 0 56px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(224,120,48,0.25); color: rgba(255,255,255,0.9); padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px; border: 1px solid rgba(224,120,48,0.4); }
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { color: var(--white); max-width: 720px; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.75); }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 580px; margin-bottom: 36px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); padding: 7px 14px; border-radius: 50px; font-size: 0.82rem; border: 1px solid rgba(255,255,255,0.15); }
.hero__pill i { color: var(--green-light); font-size: 0.9rem; }

/* ── Section headings ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header__eyebrow { display: inline-block; color: var(--green); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Cards ───────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid rgba(26,32,53,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card__icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.3rem; color: var(--green); }
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

/* ── Grid ────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Two-col split ───────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__content h2 { color: var(--navy); margin-bottom: 20px; }
.split__content p { margin-bottom: 16px; }
.split__visual { background: var(--warm-grey); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.split__visual--tall { aspect-ratio: 3/4; }
.placeholder-img { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, var(--warm-grey), var(--green-pale)); color: var(--mid-grey); font-size: 0.85rem; font-weight: 500; }
.placeholder-img i { font-size: 2rem; opacity: 0.4; }

/* ── Stats band ──────────────────────────────────────────── */
.stats-band { background: var(--navy); color: var(--white); padding: 56px 0; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-band__item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.12); }
.stats-band__item:last-child { border-right: none; }
.stats-band__number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stats-band__number span { color: var(--green-light); }
.stats-band__label { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ── Quote band ──────────────────────────────────────────── */
.quote-band { background: var(--green); padding: 72px 0; }
.quote-band__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-band blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--white); line-height: 1.5; font-style: italic; font-weight: 300; margin-bottom: 24px; }
.quote-band cite { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-style: normal; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { background: var(--navy-dark); padding: 80px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ── Pathway cards ───────────────────────────────────────── */
.pathway { border-radius: var(--radius-lg); padding: 36px; border: 2px solid transparent; transition: all 0.2s; }
.pathway--navy { background: var(--navy); color: var(--white); }
.pathway--navy h3 { color: var(--white); }
.pathway--navy p { color: rgba(255,255,255,0.75); }
.pathway--orange { background: var(--green-pale); border-color: var(--green); }
.pathway--orange h3 { color: var(--navy); }
.pathway--warm { background: var(--warm-grey); }
.pathway--warm h3 { color: var(--navy); }
.pathway__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; opacity: 0.15; line-height: 1; margin-bottom: 16px; }
.pathway:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ── Feature list ────────────────────────────────────────── */
.feature-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-light); min-width: 0; }
.feature-list li a { color: inherit; text-decoration: underline; word-break: normal; }
.feature-list li > *:last-child { min-width: 0; flex: 1; }
.feature-list li::before { content: ''; width: 20px; height: 20px; min-width: 20px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23e07830' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 12px; }

/* ── Accordion / FAQ ─────────────────────────────────────── */
.accordion { border: 1px solid rgba(26,32,53,0.1); border-radius: var(--radius-lg); overflow: hidden; }
.accordion__item { border-bottom: 1px solid rgba(26,32,53,0.08); }
.accordion__item:last-child { border-bottom: none; }
.accordion__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-size: 1rem; font-weight: 500; color: var(--navy); background: var(--white); text-align: left; gap: 16px; transition: background 0.2s; }
.accordion__btn:hover { background: var(--cream); }
.accordion__btn i { font-size: 1rem; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.accordion__btn.open i { transform: rotate(45deg); }
.accordion__body { display: none; padding: 0 24px 20px; color: var(--text-light); font-size: 0.95rem; line-height: 1.75; }
.accordion__body.open { display: block; }

/* ── Form ────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label { font-size: 0.88rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form label .req { color: var(--green); margin-left: 2px; }
.form input, .form textarea, .form select { padding: 12px 16px; border: 1.5px solid rgba(26,32,53,0.15); border-radius: var(--radius); font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(224,120,48,0.15); }
.form textarea { resize: vertical; min-height: 120px; }
.form__checkgroup { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.form__check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form__check input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; accent-color: var(--green); margin-top: 2px; cursor: pointer; }
.form__check span { font-size: 0.92rem; color: var(--text-light); line-height: 1.5; }
.form__submit { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; flex-wrap: wrap; gap: 16px; }
.form__note { font-size: 0.82rem; color: var(--mid-grey); }
.form__success { display: none; background: var(--green-pale); border: 1.5px solid var(--green); border-radius: var(--radius); padding: 20px 24px; text-align: center; }
.form__success i { font-size: 2rem; color: var(--green); margin-bottom: 8px; }
.form__success h4 { color: var(--navy); margin-bottom: 6px; }
.form__success p { font-size: 0.92rem; margin: 0; }

/* ── Member orgs ─────────────────────────────────────────── */
.member-card { background: var(--cream); border-radius: var(--radius-lg); padding: 28px; border-left: 4px solid var(--green); }
.member-card h4 { color: var(--navy); margin-bottom: 6px; }
.member-card p { font-size: 0.9rem; margin: 0; }
.member-card__tag { display: inline-block; background: var(--green-pale); color: var(--green); padding: 3px 10px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; margin-bottom: 10px; }

/* ── Pilot data placeholder ──────────────────────────────── */
.data-panel { background: var(--cream); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(26,32,53,0.08); }
.data-panel__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 32px; }
.data-panel__stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(26,32,53,0.1); }
.data-panel__stat:last-child { border-right: none; }
.data-panel__number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 6px; }
.data-panel__label { font-size: 0.82rem; color: var(--mid-grey); }
.data-panel__note { text-align: center; font-size: 0.85rem; color: var(--mid-grey); font-style: italic; padding-top: 20px; border-top: 1px solid rgba(26,32,53,0.08); }

/* ── Contact cards ───────────────────────────────────────── */
.contact-card { background: var(--cream); border-radius: var(--radius-lg); padding: 28px 32px; display: flex; align-items: flex-start; gap: 20px; }
.contact-card__icon { width: 44px; height: 44px; min-width: 44px; background: var(--green); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
.contact-card h4 { color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; margin-bottom: 10px; }
.contact-card a { color: var(--green); font-weight: 500; font-size: 0.9rem; }
.contact-card a:hover { text-decoration: underline; }

/* ── Entity badge ────────────────────────────────────────── */
.entity-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--radius); font-size: 0.82rem; font-weight: 600; }
.entity-badge--cic { background: var(--green-pale); color: var(--green); border: 1px solid rgba(224,120,48,0.3); }
.entity-badge--ltd { background: rgba(26,32,53,0.08); color: var(--navy); border: 1px solid rgba(26,32,53,0.15); }

/* ── Page header (inner pages) ───────────────────────────── */
.page-header { padding: calc(var(--nav-height) + 48px) 0 48px; background: var(--cream); border-bottom: 1px solid rgba(26,32,53,0.08); }
.page-header__eyebrow { color: var(--green); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.page-header h1 { color: var(--navy); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-header p { max-width: 560px; font-size: 1.05rem; }

/* ── Prose (privacy, terms) ──────────────────────────────── */
.prose { max-width: 720px; }
.prose h2 { color: var(--navy); font-size: 1.4rem; margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--green-pale); }
.prose h3 { color: var(--navy); font-size: 1.1rem; margin: 24px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 12px 0 16px 20px; list-style: disc; }
.prose ul li { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 6px; }
.prose a { color: var(--green); text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand img { height: 32px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; opacity: 0.9; }
.footer__brand p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; }
.footer__cic-note { display: inline-flex; align-items: center; gap: 6px; background: rgba(224,120,48,0.2); color: var(--green-light); padding: 5px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; border: 1px solid rgba(224,120,48,0.3); }
.footer__col h5 { color: var(--white); font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer__bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--white); }

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-green { color: var(--green); }
.text-orange { color: var(--green); }
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm-grey); }
.bg-navy { background: var(--navy); }
.bg-green-pale { background: var(--green-pale); }
.bg-orange-pale { background: var(--green-pale); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-12 { gap: 12px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-band__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 24px; }
  .stats-band__item:nth-child(even) { border-bottom: none; }
  .data-panel__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .data-panel__stat { border-right: none; border-bottom: 1px solid rgba(26,32,53,0.1); padding-bottom: 20px; }
  .data-panel__stat:nth-child(even) { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}
