:root {
  --bg: #f4f6f1;
  --bg-soft: #e9efea;
  --surface: #ffffff;
  --surface-muted: #f7f8f4;
  --surface-strong: #17251d;
  --line: #d8e0d8;
  --line-strong: #b8c6bc;
  --text: #17211c;
  --text-inverse: #f8fbf6;
  --muted: #66736b;
  --muted-2: #87938a;
  --accent: #147a4a;
  --accent-hover: #0e623a;
  --accent-soft: #e2f3e8;
  --accent-contrast: #ffffff;
  --accent-2: #1c6f8f;
  --accent-3: #b86c00;
  --danger: #b73b48;
  --danger-soft: #fae7ea;
  --success: #147a4a;
  --success-soft: #e2f3e8;
  --warning: #a86800;
  --warning-soft: #fff2d8;
  --shadow: 0 14px 34px rgba(23, 33, 28, 0.08);
  --shadow-soft: 0 8px 22px rgba(23, 33, 28, 0.06);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --container: 1140px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(20, 122, 74, 0.08) 0 12px, transparent 12px),
    linear-gradient(180deg, #f9faf6 0%, var(--bg) 38%, #eef3ee 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(20, 122, 74, 0.35);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--surface-strong);
  color: var(--text-inverse);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, #17251d 0%, #147a4a 100%);
  color: #f8fbf6;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  color: var(--muted);
  padding: 10px 11px;
  border-radius: var(--radius-sm);
  font-weight: 750;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
  background: var(--surface-muted);
}

.main-nav .nav-cta {
  color: var(--accent-contrast);
  background: var(--accent);
  margin-left: 6px;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.is-active {
  color: var(--accent-contrast);
  background: var(--accent-hover);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 10px;
}

.section {
  padding: 56px 0;
}

.section-tight {
  padding: 34px 0;
}

.hero {
  padding: 58px 0 34px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  font-size: 4rem;
  max-width: 12ch;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  margin: 0;
}

.lead {
  font-size: 1.16rem;
  margin-top: 18px;
  max-width: 720px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn[disabled],
.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 10px 20px rgba(20, 122, 74, 0.17);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: var(--surface-muted);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(20, 122, 74, 0.26);
}

.btn-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.proof-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.metric {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-md);
  padding: 14px;
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0;
}

.metric span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.88rem;
}

.hero-panel,
.work-board {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.work-board {
  display: grid;
}

.work-board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: var(--surface-strong);
  color: var(--text-inverse);
}

.work-board-header strong,
.work-board-header small {
  display: block;
}

.work-board-header small {
  margin-top: 2px;
  color: rgba(248, 251, 246, 0.72);
}

.board-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ffd66b;
  color: #3b2600;
  font-size: 0.78rem;
  font-weight: 900;
}

.board-list {
  display: grid;
  gap: 0;
}

.board-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.board-row:last-child {
  border-bottom: 0;
}

.board-code {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 950;
}

.board-row strong {
  display: block;
  color: var(--text);
}

.board-row span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

.board-link {
  color: var(--accent);
  font-weight: 850;
  font-size: 0.9rem;
}

.hero-media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
}

.media-tile {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.media-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-tile span {
  display: block;
  min-height: 46px;
  padding: 9px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.fake-phone {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 14px;
  max-width: 330px;
  margin-inline: auto;
  box-shadow: var(--shadow);
}

.fake-screen {
  border-radius: var(--radius-md);
  min-height: 420px;
  background: var(--surface-muted);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-pill {
  width: 74px;
  height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
}

.phone-card {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.phone-card strong {
  display: block;
}

.phone-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-cta {
  margin-top: auto;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--accent-contrast);
  text-align: center;
  font-weight: 950;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 680px;
  margin-top: 10px;
}

.card .section-head {
  display: block;
  margin-bottom: 16px;
}

.card .section-head h2 {
  font-size: 1.32rem;
}

.card .section-head p {
  margin-top: 8px;
}

.card .section-head .eyebrow {
  margin-bottom: 8px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid > *,
.detail-grid > *,
.hero-grid > * {
  min-width: 0;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 20px;
  min-width: 0;
  box-shadow: var(--shadow-soft);
}

.card:hover {
  border-color: var(--line-strong);
}

.service-card {
  border-top: 4px solid var(--accent);
}

.provider-card {
  border-top: 4px solid var(--accent-2);
}

.job-card {
  border-top: 4px solid var(--accent-3);
}

.company-card {
  border-top: 4px solid #596d5e;
}

.listing-card {
  display: flex;
  flex-direction: column;
}

.listing-card .card-actions {
  margin-top: auto;
  padding-top: 18px;
}

.card-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.card h3 {
  margin-bottom: 9px;
}

.card p + p {
  margin-top: 8px;
}

.card-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 16px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.price {
  color: var(--accent-3);
  font-weight: 950;
  font-size: 1.05rem;
  margin-top: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef5f6;
  color: var(--accent-2);
  border: 1px solid #cfe1e5;
  font-weight: 850;
  font-size: 0.78rem;
}

.tag-success {
  background: var(--success-soft);
  color: var(--success);
  border-color: #b9dfc6;
}

.tag-warning {
  background: var(--warning-soft);
  color: var(--warning);
  border-color: #f0d6a4;
}

.tag-danger {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: #edbdc4;
}

.info-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.info-list li {
  color: var(--muted);
  padding-left: 26px;
  position: relative;
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.detail-hero {
  padding: 50px 0 28px;
  border-bottom: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: 96px;
}

.profile-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--surface-strong);
  color: var(--text-inverse);
  font-weight: 950;
  font-size: 1.7rem;
  flex: 0 0 auto;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  margin-top: 12px;
}

.meta span {
  display: inline-flex;
  gap: 6px;
}

.meta strong {
  color: var(--text);
  font-weight: 850;
}

.kv-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.kv {
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.kv small {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.kv strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.filter-panel,
.filters {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.filter-field,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
  min-width: 0;
}

.field-label {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
}

.field-hint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.input,
.select {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0 12px;
  outline: none;
}

.input::placeholder,
.textarea::placeholder {
  color: #8d988f;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 122, 74, 0.12);
}

.select {
  cursor: pointer;
}

.select option {
  color: var(--text);
}

.result-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
}

.result-bar strong {
  color: var(--text);
}

.state-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.state-card h2,
.state-card h3 {
  max-width: none;
  margin-bottom: 8px;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 14px;
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.notice {
  width: 100%;
  max-width: calc(100vw - 24px);
  border: 1px solid #f0d6a4;
  background: var(--warning-soft);
  color: #684100;
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 18px;
  overflow-wrap: break-word;
  word-break: normal;
}

.cta-band {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface-strong);
  color: var(--text-inverse);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--text-inverse);
}

.cta-band .eyebrow::before {
  background: #ffd66b;
}

.cta-band p {
  color: rgba(248, 251, 246, 0.78);
  margin-top: 10px;
}

.cta-band .btn-primary {
  background: #ffd66b;
  color: #332100;
  box-shadow: none;
}

.cta-band .btn-primary:hover {
  background: #ffe08d;
}

.trust-band {
  border: 1px solid #bddfc8;
  border-left: 6px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--accent-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.trust-band p {
  margin-top: 10px;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  color: var(--text-inverse);
  font-weight: 950;
  margin-bottom: 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.textarea {
  min-height: 130px;
  padding-top: 13px;
  resize: vertical;
}

.legal-content {
  max-width: 860px;
}

.legal-content .section-head {
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-content .section-head:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 1.04rem;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.timeline-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.timeline-item p {
  margin-top: 6px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 42px 0 22px;
  margin-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.9fr;
  gap: 24px;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.site-footer a:not(.brand):not(.btn) {
  display: block;
  color: var(--muted);
  margin: 7px 0;
}

.site-footer a:not(.brand):not(.btn):hover {
  color: var(--accent);
}

.site-footer p {
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 18px;
  color: var(--muted-2);
}

.hidden {
  display: none !important;
}

@media (max-width: 920px) {
  h1 {
    font-size: 3rem;
    max-width: 14ch;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-grid,
  .detail-grid,
  .cta-band,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters,
  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    border-radius: var(--radius-md);
    padding: 14px;
  }

  .main-nav .nav-cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 12px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.12;
    max-width: none;
  }

  h2 {
    font-size: 1.72rem;
  }

  .lead {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    padding: 40px 0 24px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero-actions,
  .actions,
  .card-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-head {
    display: block;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .filters,
  .filter-panel,
  .footer-grid,
  .hero-media-strip {
    grid-template-columns: 1fr;
  }

  .work-board-header,
  .board-row {
    grid-template-columns: 1fr;
  }

  .board-row {
    align-items: start;
  }

  .board-link {
    justify-self: start;
  }

  .profile-head {
    align-items: flex-start;
  }

  .card {
    padding: 18px;
  }

  .cta-band,
  .trust-band {
    padding: 22px;
  }
}
