:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f9fbff;
  --line: #dbe2f1;
  --line-strong: #c7d2e7;
  --text: #111827;
  --muted: #64748b;
  --accent: #23358f;
  --accent-soft: #eef2ff;
  --accent-strong: #172554;
  --purple-soft: #6d5bd0;
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 22px 60px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 32px 90px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(219, 226, 241, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

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

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

.brand-wordmark strong {
  color: #8b84c9;
  font-size: 27px;
  font-weight: 600;
  line-height: 0.95;
}

.brand-wordmark strong span {
  color: #5f55c8;
}

.brand-wordmark small {
  color: #6d5bd0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 2px;
  padding-left: 54px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 70px 0 58px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--purple-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  color: var(--accent-strong);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

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

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof strong {
  color: var(--accent);
  font-size: 16px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-button {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(35, 53, 143, 0.22);
}

.secondary-button {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--accent-strong);
}

.primary-button:hover,
.secondary-button:hover,
.contact-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover,
.contact-button:hover {
  background: var(--accent-strong);
  box-shadow: 0 20px 48px rgba(23, 37, 84, 0.24);
}

.secondary-button:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f172a;
  box-shadow: var(--shadow-lg);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
}

.hero-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 100px rgba(15, 23, 42, 0.2);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section,
.impact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.intro-section > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.category-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px 0 76px;
}

.category-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 210px;
  padding: 24px;
  align-content: center;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: var(--surface);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: background 180ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: rgba(255, 255, 255, 0.72);
}

.category-card--products {
  background-image: url("assets/category-products.png");
}

.category-card--services {
  background-image: url("assets/category-services.png");
}

.category-card--value {
  background-image: url("assets/category-value.png");
}

.category-card:hover,
.category-card.active {
  transform: translateY(-6px);
  border-color: rgba(35, 53, 143, 0.45);
  box-shadow: var(--shadow-md);
}

.category-card:hover::before,
.category-card.active::before {
  background: rgba(255, 255, 255, 0.68);
}

.category-card.active {
  box-shadow: inset 0 0 0 2px rgba(35, 53, 143, 0.12), var(--shadow-md);
}

.category-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.category-card strong {
  position: relative;
  z-index: 1;
  font-size: 28px;
  line-height: 1.1;
}

.category-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.solutions-section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

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

.section-heading h2 {
  max-width: 720px;
}

.section-note {
  max-width: 270px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.tab-panel {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 26px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.tab-button {
  min-height: 42px;
  padding: 0 18px;
  cursor: pointer;
  color: var(--muted);
  border-radius: 8px;
  background: transparent;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.tab-button.active {
  color: #ffffff;
  background: var(--accent);
}

.tab-button:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.tab-button.active:hover {
  color: #ffffff;
  background: var(--accent);
}

.cards-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cards-grid.active {
  display: grid;
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 252px;
  padding: 24px;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.solution-card::after {
  content: "View details";
  position: relative;
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease;
}

.solution-card:hover,
.solution-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 24px 62px rgba(35, 53, 143, 0.28);
}

.solution-card:focus-visible {
  outline: 4px solid rgba(35, 53, 143, 0.16);
  outline-offset: 4px;
}

.solution-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 32px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.solution-card p {
  color: var(--muted);
  line-height: 1.68;
  transition: color 180ms ease;
}

.solution-card:hover span,
.solution-card:focus-visible span {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.solution-card:hover p,
.solution-card:hover::after,
.solution-card:focus-visible p,
.solution-card:focus-visible::after {
  color: rgba(255, 255, 255, 0.88);
}

.solution-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.solution-modal[hidden] {
  display: none;
}

.solution-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(10px);
}

.solution-modal__panel {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  max-height: min(86vh, 720px);
  overflow-y: auto;
  padding: 0;
  border: 1px solid rgba(35, 53, 143, 0.2);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.solution-modal__panel::before {
  content: "";
  display: block;
  height: 8px;
  background: var(--accent);
}

.solution-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.solution-modal__close:hover {
  background: var(--accent);
  color: #ffffff;
  transform: rotate(90deg);
}

.solution-modal__category {
  display: inline-flex;
  margin: 30px 34px 16px;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solution-modal__panel h2 {
  max-width: 540px;
  margin: 0 34px 12px;
  padding-right: 34px;
  color: var(--accent-strong);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.solution-modal__panel p {
  max-width: 610px;
  margin: 0 34px 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.solution-modal__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 34px 28px;
  padding: 0;
  list-style: none;
}

.solution-modal__features li {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.solution-modal__features li::before {
  content: "";
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
}

.solution-modal__features li::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 25px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.solution-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 34px 30px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.solution-modal__actions .primary-button,
.solution-modal__actions .secondary-button {
  min-width: 126px;
  min-height: 52px;
}

.impact-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 420px;
  margin-top: 28px;
}

.impact-metrics span {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 18px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.impact-metrics span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.impact-metrics span:nth-child(1)::before {
  background: #dc2626;
}

.impact-metrics span:nth-child(3)::before {
  background: #16a34a;
}

.impact-metrics span:nth-child(1) strong {
  color: #dc2626;
}

.impact-metrics span:nth-child(2) strong {
  color: var(--accent);
}

.impact-metrics span:nth-child(3) strong {
  color: #16a34a;
}

.impact-metrics strong {
  font-size: 22px;
  line-height: 1;
}

.impact-metrics small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.impact-stack {
  display: grid;
}

.impact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.impact-list div {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.impact-list div::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--accent-soft);
}

.impact-list div::after {
  content: "";
  position: absolute;
  top: 36px;
  right: 41px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.impact-list strong {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.impact-list h3 {
  max-width: 520px;
  margin: 8px 68px 0 0;
  color: var(--accent-strong);
  font-size: 23px;
}

.impact-list p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.impact-list div:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 53, 143, 0.42);
  box-shadow: var(--shadow-md);
}

.impact-list div:hover::after {
  transform: rotate(45deg) translate(4px, -4px);
}

.contact-section {
  display: grid;
  justify-items: center;
  margin: 54px 0 0;
  padding: 76px 52px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.contact-section .section-kicker {
  margin-bottom: 18px;
}

.contact-section h2 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.contact-section p:not(.section-kicker) {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

.contact-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  cursor: pointer;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(35, 53, 143, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form {
  display: grid;
  width: min(100%, 820px);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  text-align: left;
}

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

.solution-choice[hidden] {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a95aa;
  font-size: 15px;
  font-weight: 600;
}

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

.contact-form textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(35, 53, 143, 0.1);
}

.contact-form .contact-button {
  justify-self: center;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  text-align: center;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  justify-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 50px 40px 58px;
  text-align: center;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: var(--surface);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.site-footer .section-kicker {
  margin-bottom: 18px;
  color: #34425e;
}

.site-footer h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.08;
}

.site-footer p:not(.section-kicker) {
  max-width: 700px;
  margin-bottom: 28px;
  color: #34425e;
  font-size: 16px;
  line-height: 1.65;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: #172554;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 53, 143, 0.34);
  box-shadow: var(--shadow-sm);
}

.footer-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-icon--instagram svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-icon--instagram {
  background: #d9468f;
}

.footer-icon--phone {
  background: #16a34a;
}

.footer-icon--office {
  background: #2563eb;
}

.footer-icon--email {
  background: #dc2626;
}

@media (max-width: 980px) {
  .hero-section,
  .intro-section,
  .impact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

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

  .impact-copy {
    position: static;
  }

  .impact-metrics {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 0;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-wordmark strong {
    font-size: 24px;
  }

  .brand-wordmark small {
    font-size: 13px;
    padding-left: 48px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    overflow-x: auto;
  }

  .nav-links a {
    padding: 9px 8px;
  }

  .hero-section {
    padding-top: 48px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy,
  .intro-section > p {
    font-size: 17px;
  }

  .hero-actions,
  .solution-modal__actions {
    display: grid;
  }

  .hero-visual {
    aspect-ratio: 4 / 5;
  }

  .category-overview,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .solution-card {
    min-height: auto;
  }

  .section-heading {
    display: block;
  }

  .section-note {
    margin-top: 14px;
  }

  .tab-panel {
    display: grid;
  }

  .contact-section {
    margin-bottom: 0;
    padding: 54px 20px;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .impact-metrics span {
    min-height: auto;
  }

  .impact-list h3 {
    margin-right: 68px;
    font-size: 23px;
  }

  .contact-section h2 {
    font-size: 30px;
  }

  .contact-section p:not(.section-kicker) {
    font-size: 18px;
  }

  .site-footer {
    padding: 44px 20px 50px;
  }

  .site-footer h2 {
    font-size: 34px;
  }

  .site-footer p:not(.section-kicker) {
    font-size: 16px;
  }

  .footer-contact {
    display: grid;
    width: 100%;
  }

  .footer-contact a {
    justify-content: center;
  }

  .contact-form {
    padding: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .solution-modal {
    padding: 16px;
  }

  .solution-modal__panel {
    padding: 0;
  }

  .solution-modal__close {
    top: 18px;
    right: 18px;
  }

  .solution-modal__category {
    margin: 28px 20px 16px;
  }

  .solution-modal__panel h2 {
    margin-right: 20px;
    margin-left: 20px;
    padding-right: 44px;
    font-size: 30px;
  }

  .solution-modal__panel p,
  .solution-modal__features {
    margin-right: 20px;
    margin-left: 20px;
  }

  .solution-modal__panel p {
    font-size: 16px;
  }

  .solution-modal__features {
    grid-template-columns: 1fr;
  }

  .solution-modal__features li {
    min-height: auto;
  }

  .solution-modal__actions {
    padding: 20px;
  }
}
