:root {
  --ink: #101321;
  --muted: #5d6472;
  --line: #dfe3eb;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --cream: #f7f8fb;
  --brand: #002560;
  --brand-dark: #00153c;
  --accent: #cc001b;
  --accent-soft: #fff1f2;
  --shadow: 0 18px 45px rgba(20, 20, 20, 0.09);
  --logo-width: 180px;
  --logo-height: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 10px;
  left: 10px;
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid #d9dde5;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.06);
}

.header-utility {
  background: var(--brand-dark);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 700;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  transition: color 160ms ease;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  color: var(--paper);
}

.header-main {
  background: var(--paper);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: var(--logo-width);
  height: var(--logo-height);
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img,
.brand .lendium-logo,
.footer-logo,
.lendium-logo,
.thank-you-logo {
  width: var(--logo-width);
  height: var(--logo-height);
  max-width: none;
  flex-shrink: 0;
}

.nav-links,
.nav-actions,
.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  justify-content: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 160ms ease;
}

.nav-links a {
  position: relative;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  color: #363b45;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  justify-content: end;
  gap: 20px;
}

.nav-contact {
  color: #363b45;
  text-decoration: none;
  font-weight: 800;
  transition: color 160ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--brand);
}

.nav-cta {
  min-width: 116px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #cfd5df;
  background: #f8fafc;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.08);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button-primary {
  color: var(--paper);
  background: var(--brand);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-dark);
  box-shadow: 0 12px 24px rgba(0, 37, 96, 0.22);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 10px 20px rgba(20, 20, 20, 0.07);
  transform: translateY(-1px);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.button-large {
  min-height: 50px;
  padding-inline: 22px;
}

.section {
  padding: 92px 0;
}

.hero {
  padding-top: 78px;
  background:
    linear-gradient(160deg, rgba(0, 21, 60, 0.92) 0%, rgba(0, 37, 96, 0.85) 50%, rgba(0, 15, 50, 0.90) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
  color: var(--paper);
}

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

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 780px;
  margin-bottom: 18px;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.8rem, 6.2vw, 5rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

.hero .eyebrow {
  color: var(--accent);
  letter-spacing: 0.06em;
}

.hero h1 {
  color: var(--paper);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust svg {
  flex-shrink: 0;
}

.funding-form,
.steps-grid article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.funding-form {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(20, 20, 20, 0.1);
  padding: 34px 36px;
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.funding-form:hover {
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.12);
}

.hidden-field {
  display: none;
}

.form-header {
  margin-bottom: 24px;
}

.form-header h2 {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-family: inherit;
  font-weight: 800;
  line-height: 1.16;
}

.form-step-kicker {
  margin-bottom: 10px;
  color: #536174;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-progress {
  height: 6px;
  margin-bottom: 26px;
  overflow: hidden;
  background: #dfe5ee;
  border-radius: 999px;
}

.form-progress-bar {
  display: block;
  width: 14.28%;
  height: 100%;
  background: var(--brand);
  transition: width 180ms ease;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.required-note {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-actions,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

input:not([type="range"]):not([type="radio"]) {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #d8dfe9;
  border-radius: 8px;
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:not([type="range"]):not([type="radio"]):hover {
  border-color: #b0b8c9;
}

input:not([type="range"]):not([type="radio"]):focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 37, 96, 0.08);
}

input:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(204, 0, 27, 0.22);
  outline-offset: 3px;
}

select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #d8dfe9;
  border-radius: 8px;
  background: var(--paper);
  font-size: inherit;
  font-family: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

select:hover {
  border-color: #b0b8c9;
}

select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 37, 96, 0.08);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.optional-label {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85em;
}

.full-width {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--brand);
  text-align: center;
  border: 1px solid #d8dfe9;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.choice-grid label:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 10px 22px rgba(204, 0, 27, 0.08);
  transform: translateY(-1px);
}

.choice-grid label:has(input:checked) {
  border-color: var(--accent);
  color: var(--brand);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(204, 0, 27, 0.18);
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-actions {
  margin-top: 24px;
}

.form-actions .button {
  min-height: 52px;
  padding-inline: 24px;
}

.form-actions .button-primary {
  flex: 1;
  background: var(--brand);
}

.form-actions [hidden],
.button[hidden] {
  display: none !important;
}

.feature-grid,
.steps-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.feature-grid,
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.feature {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 10px;
  background: linear-gradient(160deg, #f0f4fc, var(--paper));
  box-shadow: 0 2px 16px rgba(0, 37, 96, 0.08);
  transition:
    box-shadow 300ms ease,
    transform 300ms ease;
}

.feature-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  flex-shrink: 0;
}

.feature-body {
  padding: 28px 28px 24px;
  flex: 1;
}

.feature:hover {
  box-shadow: 0 24px 52px rgba(0, 37, 96, 0.14), 0 6px 16px rgba(0, 37, 96, 0.06);
  transform: translateY(-6px);
}

.steps-grid article {
  padding: 26px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.steps-grid article:hover {
  border-color: rgba(0, 37, 96, 0.32);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.08);
  transform: translateY(-4px);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--brand), #003d8f);
  border-radius: 12px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(0, 37, 96, 0.22);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.steps-grid span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand);
  background: #eef1f8;
  border-radius: 8px;
  font-weight: 900;
  transition: background-color 180ms ease, color 180ms ease;
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 22px rgba(0, 37, 96, 0.3);
}

.steps-grid article:hover span {
  color: var(--paper);
  background: var(--brand);
}

.feature-stat {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
  line-height: 1;
  opacity: 0.08;
  transition: opacity 300ms ease;
}

.feature:hover .feature-stat {
  opacity: 0.18;
}

.feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.feature p,
.steps-grid p,
.split p,
details p,
.footer-grid p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.section-tint {
  background: var(--soft);
}

.section-soft {
  background: var(--cream);
}

.split-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.split-grid.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.section-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 37, 96, 0.12);
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.section-image:hover {
  box-shadow: 0 28px 60px rgba(0, 37, 96, 0.18);
  transform: translateY(-4px);
}

.location-band {
  width: min(100%, 420px);
  margin-top: 20px;
  border-radius: 8px;
}

.address-line {
  margin-top: 10px;
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 120px;
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.faq-subtext {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-subtext a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

details {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
  transition: border-color 200ms ease;
}

details:first-child {
  border-top: 1px solid var(--line);
}

details:hover {
  border-color: rgba(0, 37, 96, 0.3);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  transition: color 200ms ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
  content: "";
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease;
}

details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

details[open] summary {
  color: var(--brand);
}

details p {
  margin: 0;
  padding: 0 0 22px;
  animation: faq-open 300ms cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 580px;
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

summary:hover {
  color: var(--brand);
}

summary:hover .faq-chevron {
  color: var(--brand);
}

.cta {
  background: linear-gradient(170deg, var(--brand-dark), var(--brand));
  color: var(--paper);
  text-align: center;
}

.cta-inner {
  max-width: 720px;
}

.cta p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.site-footer {
  padding: 56px 0 0;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin-top: 16px;
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-logo {
  background: white;
  border-radius: 6px;
  padding: 6px 10px;
}

.footer-nav h3,
.footer-contact h3 {
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 24px;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.legal-page {
  padding: 40px 0 80px;
  background: var(--cream);
}

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

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: var(--brand);
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.legal-content a {
  color: var(--brand);
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
  background: var(--cream);
}

.thank-you-panel {
  width: min(680px, calc(100% - 40px));
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .header-utility {
    display: none;
  }

  .nav {
    grid-template-columns: auto auto;
    min-height: 70px;
    gap: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    padding: 10px 0 18px;
    border-top: 1px solid var(--line);
  }

  .nav.is-open .nav-links,
  .nav.is-open .nav-actions {
    display: grid;
  }

  .nav-links a {
    min-height: 46px;
    padding: 0;
  }

  .nav-links a::after {
    right: auto;
    bottom: 8px;
    width: 34px;
    transform-origin: left;
  }

  .nav-actions {
    padding-top: 0;
    border-top: 0;
  }

  .nav-contact {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-header {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .funding-form {
    padding: 20px;
  }

  .form-grid,
  .choice-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom a {
    margin-left: 0;
    margin: 0 12px;
  }

  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
