:root {
  --navy: #0E2A47;
  --navy-deep: #081A2D;
  --navy-soft: #12395F;
  --ink: #172033;
  --muted: #5F6B7A;
  --soft: #F4F7FA;
  --soft-2: #F8FAFC;
  --line: #DDE5EE;
  --card: #FFFFFF;
  --accent: #8FB3D9;
  --gold: #D4A017;
  --orange: #F15A24;
  --green: #2F7B58;
  --red: #A84538;
  --shadow: 0 18px 42px rgba(14,42,71,0.10);
  --shadow-soft: 0 10px 28px rgba(14,42,71,0.07);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.sfc-wrap { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }

.sfc-provider-bar {
  background: var(--navy-deep);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.sfc-provider-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
}
.sfc-provider-inner strong { font-weight: 850; letter-spacing: .01em; }
.sfc-provider-inner span { color: rgba(255,255,255,.68); }
.sfc-provider-link { white-space: nowrap; font-weight: 800; }

.sfc-site-header {
  position: relative;
  z-index: 40;
  width: min(1180px, calc(100% - 2rem));
  margin: .9rem auto 0;
  padding: .72rem;
  border: 1px solid rgba(221,229,238,.94);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.sfc-nav {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.sfc-brand { display: inline-flex; align-items: center; gap: .72rem; min-width: max-content; }
.sfc-brand-mark { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 14px; box-shadow: 0 10px 22px rgba(14,42,71,.14); }
.sfc-brand-copy { display: grid; gap: .13rem; line-height: 1.05; }
.sfc-brand-copy strong { color: var(--navy); font-size: 1.02rem; letter-spacing: -.025em; }
.sfc-brand-copy span { color: var(--muted); font-size: .68rem; font-weight: 700; }
.sfc-nav-links { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: .1rem; }
.sfc-nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: .45rem .58rem;
  border-radius: 999px;
  color: #405067;
  font-size: .79rem;
  font-weight: 780;
  white-space: nowrap;
}
.sfc-nav-links a:hover, .sfc-nav-links a[aria-current="page"] { color: var(--navy); background: rgba(143,179,217,.18); }
.sfc-nav-actions { display: flex; align-items: center; gap: .7rem; }
.sfc-login-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .45rem .25rem;
  color: var(--navy);
  font-size: .81rem;
  font-weight: 850;
  white-space: nowrap;
}
.sfc-login-link:hover { color: var(--orange); }

.sfc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .76rem 1.06rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 850;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.sfc-btn:hover { transform: translateY(-1px); }
.sfc-btn-primary { color: #fff; background: linear-gradient(135deg, var(--orange), #cf3e0e); box-shadow: 0 12px 26px rgba(241,90,36,.20); }
.sfc-btn-secondary { color: var(--navy); border-color: var(--line); background: #fff; box-shadow: var(--shadow-soft); }
.sfc-btn-dark { color: #fff; background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep)); box-shadow: var(--shadow-soft); }
.sfc-btn-small { min-height: 38px; padding: .62rem .84rem; font-size: .8rem; }

.sfc-hero {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 3.1rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(143,179,217,.24), transparent 30rem),
    radial-gradient(circle at 92% 8%, rgba(212,160,23,.10), transparent 26rem),
    linear-gradient(180deg, #fff 0%, var(--soft-2) 68%, var(--soft) 100%);
}
.sfc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14,42,71,.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(14,42,71,.025) 1px, transparent 1px) 0 0 / 44px 44px;
  mask-image: linear-gradient(180deg,#000,transparent 85%);
}
.sfc-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,1.02fr) minmax(420px,.98fr); gap: 2rem; align-items: center; }
.sfc-logo-lockup { width: min(560px, 100%); margin: 0 0 1rem; }
.sfc-logo-lockup img { display: block; width: 100%; height: auto; }
.sfc-kicker { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 .9rem; padding: .42rem .72rem; border: 1px solid rgba(14,42,71,.12); border-radius: 999px; background: rgba(255,255,255,.84); color: var(--navy-soft); font-size: .72rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.sfc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(241,90,36,.12); }
.sfc-hero h1 { margin: 0 0 1rem; max-width: 790px; color: var(--navy); font-size: clamp(2.25rem, 4.8vw, 4.6rem); line-height: 1.01; letter-spacing: -.055em; }
.sfc-hero-subtitle { margin: 0 0 1rem; max-width: 760px; color: #2c3d52; font-size: clamp(1.2rem, 2.1vw, 1.8rem); line-height: 1.18; font-weight: 820; letter-spacing: -.03em; }
.sfc-lede { margin: 0; max-width: 760px; color: var(--muted); font-size: 1.03rem; line-height: 1.66; }
.sfc-lede + .sfc-lede { margin-top: .78rem; }
.sfc-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.35rem; }
.sfc-hero-chips { display: flex; flex-wrap: wrap; gap: .48rem; margin-top: 1rem; }
.sfc-hero-chips span { padding: .42rem .66rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.82); color: #44546a; font-size: .78rem; font-weight: 780; }
.sfc-availability { margin-top: 1rem; padding: .9rem 1rem; border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: 16px; background: rgba(255,255,255,.78); color: var(--muted); font-size: .9rem; line-height: 1.5; }
.sfc-availability strong { color: var(--navy); }

.sfc-console { overflow: hidden; border: 1px solid rgba(255,255,255,.72); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.sfc-console-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem; color: #fff; background: radial-gradient(circle at top right, rgba(241,90,36,.22), transparent 15rem), linear-gradient(135deg, var(--navy-deep), var(--navy-soft)); }
.sfc-console-head span, .sfc-console-head strong { display: block; }
.sfc-console-head span { color: rgba(255,255,255,.64); font-size: .7rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.sfc-console-head strong { margin-top: .2rem; font-size: .92rem; }
.sfc-live { padding: .34rem .58rem; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(47,123,88,.34); color: #e8fff3 !important; font-size: .7rem !important; font-weight: 900 !important; }
.sfc-console-summary { display: grid; grid-template-columns: repeat(2,1fr); gap: .65rem; padding: .85rem; }
.sfc-console-summary div { padding: .72rem; border: 1px solid var(--line); border-radius: 14px; background: var(--soft-2); }
.sfc-console-summary span, .sfc-console-summary strong { display: block; }
.sfc-console-summary span { color: var(--muted); font-size: .66rem; font-weight: 820; text-transform: uppercase; letter-spacing: .04em; }
.sfc-console-summary strong { margin-top: .24rem; color: var(--navy); font-size: .82rem; }
.sfc-risk-text { color: var(--red) !important; }
.sfc-route { display: grid; gap: .5rem; padding: 0 .85rem .85rem; }
.sfc-route-step { display: grid; grid-template-columns: 34px 1fr; gap: .65rem; align-items: center; padding: .68rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.sfc-route-step > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: #eef3f8; color: var(--muted); font-size: .68rem; font-weight: 900; }
.sfc-route-step strong, .sfc-route-step small { display: block; }
.sfc-route-step strong { color: var(--navy); font-size: .83rem; }
.sfc-route-step small { margin-top: .13rem; color: var(--muted); font-size: .70rem; }
.sfc-route-step.done > span { color: #fff; background: var(--green); }
.sfc-route-step.current { border-color: rgba(143,179,217,.78); background: linear-gradient(90deg, rgba(143,179,217,.16), #fff); }
.sfc-route-step.current > span { color: #fff; background: var(--navy-soft); }
.sfc-console-foot { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; padding: .85rem; border-top: 1px solid var(--line); background: var(--soft); }
.sfc-console-foot div { padding: .72rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.sfc-console-foot span, .sfc-console-foot strong, .sfc-console-foot small { display: block; }
.sfc-console-foot span { color: var(--muted); font-size: .65rem; font-weight: 820; text-transform: uppercase; }
.sfc-console-foot strong { margin-top: .22rem; color: var(--navy); font-size: .8rem; }
.sfc-console-foot small { margin-top: .22rem; color: var(--muted); font-size: .68rem; line-height: 1.35; }

.sfc-outcomes { display: grid; grid-template-columns: repeat(3,1fr); gap: .72rem; padding: 1.3rem 0 2rem; }
.sfc-outcomes div { padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.sfc-outcomes strong, .sfc-outcomes span { display: block; }
.sfc-outcomes strong { color: var(--navy); font-size: .9rem; }
.sfc-outcomes span { margin-top: .32rem; color: var(--muted); font-size: .8rem; line-height: 1.45; }

.sfc-section { padding: 4.4rem 0; }
.sfc-section-muted { background: var(--soft); }
.sfc-section-dark { color: #fff; background: radial-gradient(circle at 90% 8%, rgba(143,179,217,.24), transparent 28rem), linear-gradient(135deg, var(--navy-deep), #0d3150 68%, var(--navy-soft)); }
.sfc-section-head { max-width: 860px; margin: 0 auto 1.6rem; text-align: center; }
.sfc-section-head.left { margin-left: 0; text-align: left; }
.sfc-section-head.left .sfc-kicker { margin-left: 0; }
.sfc-section h2, .sfc-final-cta h2 { margin: 0; color: var(--navy); font-size: clamp(1.9rem,3.5vw,3.35rem); line-height: 1.05; letter-spacing: -.045em; }
.sfc-section-dark h2, .sfc-final-cta h2 { color: #fff; }
.sfc-section p { color: var(--muted); line-height: 1.65; }
.sfc-section-dark p, .sfc-final-cta p { color: rgba(255,255,255,.74); }
.sfc-section-head p { margin: .9rem 0 0; font-size: 1rem; }

.sfc-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .9rem; }
.sfc-card { padding: 1.15rem; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.sfc-card-index { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: .85rem; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep)); font-size: .78rem; font-weight: 900; }
.sfc-card h3 { margin: 0; color: var(--navy); font-size: 1.08rem; letter-spacing: -.02em; }
.sfc-card p { margin: .48rem 0 0; font-size: .9rem; }

.sfc-loop { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; }
.sfc-loop article { padding: 1rem; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.07); }
.sfc-loop article > span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: .75rem; border-radius: 12px; background: var(--gold); color: var(--navy-deep); font-weight: 900; }
.sfc-loop strong { display: block; color: #fff; }
.sfc-loop p { margin: .4rem 0 0; font-size: .84rem; line-height: 1.48; }

.sfc-split { display: grid; grid-template-columns: minmax(0,.94fr) minmax(420px,1.06fr); gap: 1.5rem; align-items: center; }
.sfc-feature p { margin: .82rem 0 0; }
.sfc-inline-points { display: flex; flex-wrap: wrap; gap: .48rem; margin-top: 1rem; }
.sfc-inline-points span { padding: .4rem .62rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #435268; font-size: .77rem; font-weight: 760; }
.sfc-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-soft); }
.sfc-panel-head { padding: 1rem; color: #fff; background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft)); }
.sfc-panel-head span, .sfc-panel-head strong { display: block; }
.sfc-panel-head span { color: var(--accent); font-size: .69rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.sfc-panel-head strong { margin-top: .28rem; font-size: 1.02rem; }
.sfc-list { margin: 0; padding: .85rem 1rem 1rem; list-style: none; display: grid; gap: .5rem; }
.sfc-list li { display: grid; grid-template-columns: 24px 1fr; gap: .6rem; align-items: start; color: var(--muted); font-size: .85rem; line-height: 1.45; }
.sfc-check { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 999px; background: var(--green); color: #fff; font-size: .72rem; font-weight: 900; }
.sfc-note { margin-top: 1rem; padding: .86rem .95rem; border: 1px solid rgba(212,160,23,.28); border-radius: 15px; background: rgba(212,160,23,.08); color: var(--muted); font-size: .84rem; line-height: 1.5; }
.sfc-note strong { color: var(--navy); }

.sfc-metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .72rem; }
.sfc-metric-grid div { padding: .95rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.sfc-metric-grid strong, .sfc-metric-grid span { display: block; }
.sfc-metric-grid strong { color: var(--navy); font-size: .94rem; }
.sfc-metric-grid span { margin-top: .32rem; color: var(--muted); font-size: .79rem; line-height: 1.45; }

.sfc-support { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); gap: 1.25rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg,#fff,var(--soft)); box-shadow: var(--shadow-soft); }
.sfc-support-grid { display: grid; gap: .6rem; }
.sfc-support-grid article { display: grid; grid-template-columns: 40px 1fr; gap: .72rem; padding: .82rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.sfc-support-grid article > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: #fff; background: linear-gradient(135deg,var(--navy-soft),var(--navy-deep)); font-size: .72rem; font-weight: 900; }
.sfc-support-grid strong { display: block; color: var(--navy); font-size: .9rem; }
.sfc-support-grid p { margin: .22rem 0 0; font-size: .79rem; line-height: 1.42; }

.sfc-final-cta { padding: 4.1rem 0; color: #fff; background: radial-gradient(circle at 10% 0%, rgba(241,90,36,.18), transparent 23rem), linear-gradient(135deg, var(--navy-deep), var(--navy-soft)); }
.sfc-final-grid { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 1.5rem; align-items: center; }
.sfc-final-cta p { max-width: 780px; line-height: 1.62; }
.sfc-final-actions { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: flex-end; }

.sfc-footer { padding: 2rem 0; border-top: 1px solid var(--line); background: #fff; }
.sfc-footer-grid { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 1.3rem; }
.sfc-footer-product strong, .sfc-footer-product span, .sfc-footer-product > a { display: block; }
.sfc-footer-product strong { color: var(--navy); font-size: 1.05rem; }
.sfc-footer-product span { margin-top: .28rem; max-width: 660px; color: var(--muted); font-size: .87rem; line-height: 1.5; }
.sfc-footer-product > a { margin-top: .62rem; color: var(--navy-soft); font-weight: 800; font-size: .84rem; }
.sfc-footer-provider { text-align: center; }
.sfc-footer-provider-label { display: block; margin-bottom: .42rem; color: var(--navy); font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.sfc-pf-logo { width: 180px; height: auto; }
.sfc-footer-provider > span:last-child { display: block; margin-top: .4rem; color: var(--muted); font-size: .75rem; }
.sfc-footer-links { grid-column: 1/-1; display: flex; flex-wrap: wrap; gap: .6rem .85rem; padding-top: .95rem; border-top: 1px solid var(--line); }
.sfc-footer-links a { color: #526078; font-size: .82rem; font-weight: 720; }
.sfc-footer-meta { grid-column: 1/-1; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: .95rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

/* Best-practices page */
.sfc-bp-hero { padding: 3rem 0; background: radial-gradient(circle at 8% 0%, rgba(143,179,217,.22), transparent 30rem), linear-gradient(180deg,#fff,var(--soft)); }
.sfc-bp-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,.9fr); gap: 1.6rem; align-items: center; }
.sfc-bp-hero h1 { margin: 0; color: var(--navy); font-size: clamp(2.25rem,4.9vw,4.65rem); line-height: 1.01; letter-spacing: -.055em; }
.sfc-bp-hero .sfc-lede { margin-top: .9rem; }
.sfc-principles { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.sfc-principles .sfc-panel-head { background: linear-gradient(135deg,var(--navy-deep),var(--navy-soft)); }
.sfc-principle-list { display: grid; gap: .52rem; padding: .8rem; }
.sfc-principle-list div { display: grid; grid-template-columns: 36px 1fr; gap: .65rem; padding: .7rem; border: 1px solid var(--line); border-radius: 14px; background: var(--soft-2); }
.sfc-principle-list span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; color: #fff; background: var(--navy-soft); font-size: .68rem; font-weight: 900; }
.sfc-principle-list strong, .sfc-principle-list small { display: block; }
.sfc-principle-list strong { color: var(--navy); font-size: .84rem; }
.sfc-principle-list small { margin-top: .16rem; color: var(--muted); font-size: .74rem; line-height: 1.38; }
.sfc-bp-grid-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: .85rem; }
.sfc-bp-practice { padding: 1.05rem; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.sfc-bp-number { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: .75rem; border-radius: 12px; color: #fff; background: linear-gradient(135deg,var(--navy-soft),var(--navy-deep)); font-size: .74rem; font-weight: 900; }
.sfc-bp-practice h3 { margin: 0; color: var(--navy); font-size: 1.02rem; }
.sfc-bp-practice p { margin: .45rem 0 0; font-size: .86rem; }
.sfc-bp-practice > strong { display: block; margin-top: .72rem; padding-top: .68rem; border-top: 1px solid var(--line); color: var(--navy-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; }
.sfc-bp-practice > small { display: block; margin-top: .28rem; color: var(--muted); font-size: .79rem; line-height: 1.45; }

@media (max-width: 1120px) {
  .sfc-site-header { padding: .68rem; }
  .sfc-nav { grid-template-columns: auto auto; gap: .72rem; }
  .sfc-nav-links { grid-column: 1/-1; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: .05rem 0 .25rem; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
  .sfc-nav-actions { justify-content: flex-end; }
  .sfc-hero-grid, .sfc-split, .sfc-support, .sfc-bp-grid { grid-template-columns: 1fr; }
  .sfc-console, .sfc-panel { max-width: 820px; }
  .sfc-loop { grid-template-columns: repeat(2,1fr); }
  .sfc-final-grid { grid-template-columns: 1fr; }
  .sfc-final-actions { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .sfc-card-grid, .sfc-bp-grid-cards { grid-template-columns: repeat(2,1fr); }
  .sfc-outcomes, .sfc-metric-grid { grid-template-columns: repeat(2,1fr); }
  .sfc-footer-grid { grid-template-columns: 1fr; }
  .sfc-footer-provider { text-align: left; }
}

@media (max-width: 680px) {
  .sfc-wrap { width: min(100% - 1rem, 1180px); }
  .sfc-provider-inner { min-height: 34px; }
  .sfc-provider-inner span { display: none; }
  .sfc-site-header { width: min(100% - 1rem, 1180px); margin-top: .5rem; padding: .58rem; border-radius: 18px; }
  .sfc-nav { min-height: 0; gap: .55rem; }
  .sfc-brand-mark { width: 42px; height: 42px; border-radius: 12px; }
  .sfc-brand-copy span { display: none; }
  .sfc-login-link { display: none; }
  .sfc-nav-actions .sfc-btn { min-height: 35px; padding: .54rem .68rem; font-size: .76rem; }
  .sfc-hero { padding: 1.8rem 0 2.35rem; }
  .sfc-logo-lockup { width: min(500px, 95%); }
  .sfc-hero h1 { font-size: clamp(2.05rem,11vw,3rem); }
  .sfc-hero-subtitle { font-size: 1.15rem; }
  .sfc-hero-actions .sfc-btn, .sfc-final-actions .sfc-btn { flex: 1 1 180px; }
  .sfc-console-summary, .sfc-console-foot, .sfc-outcomes, .sfc-card-grid, .sfc-loop, .sfc-metric-grid, .sfc-bp-grid-cards { grid-template-columns: 1fr; }
  .sfc-section { padding: 3.2rem 0; }
  .sfc-section-head { text-align: left; }
  .sfc-support { padding: .9rem; }
  .sfc-footer-provider { text-align: center; }
  .sfc-footer-meta { flex-direction: column; }
  .sfc-bp-hero { padding: 2rem 0 2.3rem; }
}
