:root {
  --black: #050608;
  --ink: #0b0c0f;
  --charcoal: #17191f;
  --dark-gray: #2a2d35;
  --mid-gray: #6d737d;
  --soft-gray: #eef0f4;
  --line: rgba(12, 14, 18, 0.12);
  --white: #ffffff;
  --red: #d61f26;
  --red-dark: #a80f15;
  --steel: #b8c0cc;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(5, 6, 8, 0.16);
  --container: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid rgba(214, 31, 38, 0.86);
  outline-offset: 4px;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  background: rgba(5, 6, 8, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  min-width: max-content;
}

.brand img {
  width: 150px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 76px 16px auto;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(8, 9, 12, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-menu.is-open-static {
  position: static;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.nav-menu.is-open-static a:not(.btn) {
  display: none;
}

.nav-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(214, 31, 38, 0.32);
}

.btn-primary:hover {
  background: #e22a31;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.section {
  padding: 86px 0;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-muted {
  background: #f5f6f8;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 116px 0 54px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(rgba(5, 6, 8, 0.24), rgba(5, 6, 8, 0.52)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 22%, rgba(214, 31, 38, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.7) 44%, rgba(5, 6, 8, 0.2) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 2.55rem;
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
  max-width: 900px;
}

h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  width: 100%;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.hero-panel {
  padding: 20px;
  border-radius: var(--radius);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.panel-top span,
.hero-panel span,
.quote-stats p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-row div,
.lane-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  padding: 16px;
}

.stat-row strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
}

.lane-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.lane-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(214, 31, 38, 0.84);
  letter-spacing: 0;
}

.lane-card i {
  flex: 1;
  min-width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.trust-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.trust-item:last-child {
  border-bottom: 0;
}

.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--red);
  background: rgba(214, 31, 38, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
}

.split,
.quote-layout,
.carrier-content {
  display: grid;
  gap: 28px;
}

.rich-copy {
  color: var(--dark-gray);
  font-size: 1.05rem;
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--mid-gray);
  font-size: 1.05rem;
}

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

.service-card,
.choice-card {
  position: relative;
  min-height: 248px;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card {
  border: 1px solid rgba(12, 14, 18, 0.1);
  background: var(--white);
}

.service-card::before,
.industry-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 31, 38, 0.12), transparent 46%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.choice-card:hover,
.industry-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before,
.industry-tile:hover::before {
  opacity: 1;
}

.service-card p,
.choice-card p {
  position: relative;
  color: var(--mid-gray);
  margin-bottom: 0;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 14px;
  color: var(--white);
  background: var(--black);
  font-size: 0.85rem;
  font-weight: 900;
}

.badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(214, 31, 38, 0.09);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.industry-grid {
  display: grid;
  gap: 12px;
}

.industry-tile {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfbfc;
  font-weight: 900;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.choice {
  position: relative;
  overflow: hidden;
}

.choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(214, 31, 38, 0.18), transparent 42%),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1700&q=80") center / cover;
  opacity: 0.32;
}

.choice .container {
  position: relative;
  z-index: 1;
}

.choice .section-heading p:not(.eyebrow),
.choice-card p {
  color: rgba(255, 255, 255, 0.72);
}

.choice-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--white);
  background: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 90px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.process-step:not(:last-child)::after {
  content: "v";
  position: absolute;
  left: 30px;
  bottom: -24px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.process-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
}

.carrier-band {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.75)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.carrier-content {
  align-items: center;
}

.carrier-content p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.quote-section {
  background:
    linear-gradient(180deg, #f5f6f8 0%, #ffffff 100%);
}

.carrier-application {
  background: #f5f6f8;
}

.quote-intro p:not(.eyebrow) {
  color: var(--mid-gray);
}

.quote-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.quote-stats div {
  padding: 18px;
  border-radius: 18px;
  color: var(--white);
  background: var(--black);
}

.quote-stats strong,
.quote-stats span {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
}

.quote-stats p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.quote-form {
  padding: 20px;
  border-color: rgba(12, 14, 18, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--dark-gray);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(12, 14, 18, 0.14);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 126px;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(214, 31, 38, 0.78);
  box-shadow: 0 0 0 4px rgba(214, 31, 38, 0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  min-height: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-submit .spinner {
  width: 18px;
  height: 18px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.quote-form.is-loading {
  pointer-events: none;
}

.quote-form.is-loading .form-submit .spinner {
  display: inline-block;
}

.quote-form.is-loading .form-submit {
  opacity: 0.88;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  padding: 58px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.legal-main {
  padding: 132px 0 84px;
  background: linear-gradient(180deg, #f5f6f8 0%, #ffffff 45%);
}

.legal-shell {
  max-width: 880px;
}

.legal-shell .eyebrow {
  margin-bottom: 12px;
}

.legal-shell h1 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: 2.65rem;
  line-height: 1;
}

.legal-shell h2 {
  margin: 34px 0 10px;
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1.15;
}

.legal-shell p,
.legal-shell li {
  color: var(--dark-gray);
  font-size: 1rem;
}

.legal-shell ul {
  padding-left: 1.2rem;
}

.legal-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 110px 0 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.72)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=76") center / cover;
}

.error-page h1 {
  font-size: 4rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: var(--white);
  background: rgba(5, 6, 8, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand img {
  width: 210px;
  height: 86px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 560px) {
  .lane-card span {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1.16rem;
  }

  .hero-actions .btn {
    width: auto;
  }

  .trust-grid,
  .industry-grid,
  .quote-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-right: 1px solid var(--line);
    padding-right: 20px;
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }

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

  .form-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .hero-copy {
    font-size: 1.22rem;
  }

  .section {
    padding: 108px 0;
  }

  .hero {
    align-items: center;
    padding: 130px 0 72px;
  }

  .hero-grid,
  .split,
  .quote-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: center;
  }

  .hero-panel {
    align-self: end;
  }

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

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

  .process-step {
    grid-template-columns: 1fr;
    align-content: space-between;
    min-height: 180px;
  }

.process-step:not(:last-child)::after {
    content: ">";
    left: auto;
    right: -22px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .carrier-content {
    grid-template-columns: 1fr auto;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner.is-visible {
    display: flex;
  }
}

@media (min-width: 980px) {
  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  .hero-copy {
    font-size: 1.32rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding-inline: 10px;
  }

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

  .trust-item {
    border-bottom: 0;
  }

  .trust-item:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-right: 0;
  }

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

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