:root {
  --ink: #16201d;
  --muted: #596761;
  --line: #d8e0dc;
  --paper: #f7f6f1;
  --surface: #ffffff;
  --forest: #1f5a43;
  --forest-dark: #143b2d;
  --copper: #b5653c;
  --mint: #dcebe3;
  --blue: #2d5f86;
  --plum: #57415f;
  --cream: #fffdf7;
  --shadow: 0 22px 60px rgba(22, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 246, 241, 0.92);
  border-bottom: 1px solid rgba(216, 224, 220, 0.8);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand img {
  width: 210px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand-with-logo {
  min-width: 190px;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--forest-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.mobile-language-button {
  display: none;
}

.menu-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-icon span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--forest-dark);
  border-radius: 999px;
}

.menu-toggle strong {
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover {
  color: var(--forest-dark);
}

.nav-cta {
  padding: 10px 14px;
  color: #fff !important;
  background: var(--forest);
  border-radius: 8px;
}

.language-link {
  padding: 9px 12px;
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  overflow: hidden;
  min-height: clamp(560px, 68vh, 720px);
  padding: clamp(14px, 2.4vw, 34px) clamp(20px, 5vw, 72px) clamp(48px, 6vw, 76px);
  background:
    linear-gradient(110deg, rgba(220, 235, 227, 0.74), rgba(247, 246, 241, 0.7) 48%, rgba(181, 101, 60, 0.16)),
    var(--paper);
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 760px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-logo-title {
  max-width: 760px;
  margin-bottom: 24px;
  line-height: 0;
}

.hero-logo-title img {
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 8px 11px;
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(216, 224, 220, 0.9);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-badges .hero-badge-highlight {
  color: #fff;
  background: #d96f1f;
  border-color: rgba(217, 111, 31, 0.32);
  box-shadow: 0 10px 22px rgba(217, 111, 31, 0.2);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--forest);
}

.button.primary:hover {
  background: var(--forest-dark);
}

.button.secondary {
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.hero-panel {
  display: grid;
  min-width: 0;
  place-items: center;
  min-height: 520px;
}

.document-preview {
  width: min(100%, 460px);
  max-width: 100%;
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(216, 224, 220, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.doc-toolbar {
  display: flex;
  gap: 7px;
  margin-bottom: 32px;
}

.doc-toolbar span {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 999px;
}

.doc-line {
  width: 78%;
  height: 12px;
  margin-bottom: 15px;
  background: #e7ece9;
  border-radius: 999px;
}

.doc-line.wide {
  width: 100%;
}

.doc-line.short {
  width: 48%;
}

.review-note {
  margin: 26px 0;
  padding: 18px;
  color: var(--forest-dark);
  background: var(--mint);
  border-left: 4px solid var(--forest);
  border-radius: 8px;
}

.review-note strong,
.review-note span {
  display: block;
}

.section,
.roadmap,
.expertise,
.principles,
.quote-band,
.contact {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intake-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intake-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px clamp(18px, 4vw, 44px);
  background: var(--cream);
}

.intake-strip span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 800;
}

.intake-strip strong {
  color: var(--forest-dark);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

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

.card {
  min-height: 238px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card p,
.catalog-group li,
.feature-grid p,
.pricing-grid p,
.pricing-note,
.trust-grid p,
.guide-list p,
.faq-list p,
.section-heading > p:last-child,
.roadmap-intro p,
.roadmap-step p,
.quote-checklist li,
.deliverable-grid p,
.steps p,
.contact p,
.principle-list {
  color: var(--muted);
}

.catalog-section {
  background: #fbfaf5;
}

.service-level-section {
  background: #f6f8fb;
}

.service-level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-level-grid article {
  min-height: 300px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-level-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-weight: 800;
}

.service-level-grid p {
  color: var(--muted);
}

.service-level-grid strong {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  color: var(--forest-dark);
  border-top: 1px solid var(--line);
}

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

.catalog-group {
  min-height: 320px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-group ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-group li {
  position: relative;
  padding-left: 18px;
}

.catalog-group li::before {
  position: absolute;
  left: 0;
  content: "•";
  color: var(--copper);
  font-weight: 800;
}

.roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(45, 95, 134, 0.08), rgba(255, 253, 247, 0.72) 42%, rgba(181, 101, 60, 0.12)),
    var(--cream);
}

.roadmap-intro {
  align-self: start;
  position: sticky;
  top: 112px;
}

.roadmap-flow {
  display: grid;
  gap: 14px;
}

.roadmap-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 224, 220, 0.9);
  border-radius: 8px;
}

.roadmap-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
  font-weight: 800;
}

.roadmap-step h3 {
  margin-bottom: 0;
}

.quote-checklist {
  grid-column: 2;
  padding: 24px;
  color: #fff;
  background: var(--plum);
  border-radius: 8px;
}

.quote-checklist h3 {
  margin-bottom: 18px;
}

.quote-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-checklist li {
  color: #f2ecf4;
  padding-left: 22px;
  position: relative;
}

.quote-checklist li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #e7b184;
  font-weight: 800;
}

.pricing-section {
  background: var(--surface);
}

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

.pricing-grid article {
  min-height: 240px;
  padding: 24px;
  background: #fbfaf5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-grid span,
.guide-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-weight: 800;
}

.pricing-note {
  max-width: 920px;
  margin: 24px 0 0;
  padding: 18px 20px;
  background: var(--mint);
  border: 1px solid rgba(31, 90, 67, 0.18);
  border-radius: 8px;
}

.estimator-section {
  background:
    linear-gradient(120deg, rgba(220, 235, 227, 0.62), rgba(255, 253, 247, 0.8)),
    var(--cream);
}

.estimator-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.estimator-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.estimator-result {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  color: #fff;
  background: var(--forest-dark);
  border-radius: 8px;
}

.estimator-result span {
  color: #e7b184;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.estimator-result strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.estimator-result p {
  color: #dcebe3;
}

.estimator-result .button.primary {
  width: fit-content;
  color: var(--forest-dark);
  background: #fff;
}

.deliverables {
  background: #f5f7f4;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.deliverable-grid article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--copper);
  font-weight: 800;
}

.expertise {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--surface);
}

.expertise > div:first-child {
  max-width: 720px;
}

.expertise > div:first-child p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.expertise-list {
  display: grid;
  gap: 14px;
}

.expertise-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: #f7f6f1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.expertise-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest-dark);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 800;
}

.expertise-list h3 {
  margin-bottom: 0;
}

.expertise-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-section {
  background: #f6f8fb;
}

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

.feature-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid p {
  margin-bottom: 0;
}

.trust-section {
  background: #fbfaf5;
}

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

.trust-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.principles {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  color: #fff;
  background: var(--forest-dark);
}

.principles .eyebrow,
.principles .principle-list {
  color: #dcebe3;
}

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

.principle-list li {
  padding: 18px 0 18px 22px;
  border-bottom: 1px solid rgba(220, 235, 227, 0.24);
  position: relative;
}

.principle-list li::before {
  position: absolute;
  left: 0;
  content: "•";
  color: var(--copper);
  font-weight: 800;
}

.muted {
  background: #eef2ed;
}

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

.steps div {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
}

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

.guide-section {
  background: #f6f8fb;
}

.guide-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.guide-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-list span {
  margin-bottom: 0;
}

.guide-list p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--forest-dark);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.quote-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(20, 59, 45, 0.98), rgba(45, 95, 134, 0.94)),
    var(--forest-dark);
}

.quote-band div {
  max-width: 820px;
}

.quote-band h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.quote-band p {
  margin-bottom: 0;
  color: #dcebe3;
  font-size: 1.08rem;
}

.quote-band .button.primary {
  flex: 0 0 auto;
  color: var(--forest-dark);
  background: #fff;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--surface);
}

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

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

label {
  display: grid;
  gap: 8px;
  color: var(--forest-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(31, 90, 67, 0.16);
}

input[type="file"] {
  padding: 11px;
}

.field-help {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.checkbox-label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.captcha-box {
  padding: 14px;
  background: #fbfaf5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.captcha-box .field-help {
  font-size: 1rem;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alerts {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.alert {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.alert.success {
  color: var(--forest-dark);
  background: var(--mint);
  border: 1px solid rgba(31, 90, 67, 0.22);
}

.alert.error {
  color: #7a2e1b;
  background: #f8e6de;
  border: 1px solid rgba(181, 101, 60, 0.34);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand img {
    width: 172px;
    max-height: 48px;
  }

  .brand-with-logo {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-language-button {
    display: inline-grid;
    min-width: 42px;
    min-height: 42px;
    place-items: center;
    color: #fff;
    background: #8f1f2d;
    border: 1px solid rgba(143, 31, 45, 0.22);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(143, 31, 45, 0.18);
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-language-button:hover {
    background: #751927;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(22, 32, 29, 0.12);
  }

  .nav.open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 12px;
    white-space: normal;
    border-radius: 8px;
  }

  .nav a:not(.nav-cta):hover {
    background: #f3f6f2;
  }

  .language-link,
  .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .nav .language-link {
    display: none;
  }

  .hero,
  .roadmap,
  .expertise,
  .principles,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    width: calc(100vw - 40px);
    max-width: 620px;
  }

  .hero-panel {
    justify-items: start;
  }

  .hero-logo-title img {
    width: 100%;
    max-width: 340px;
  }

  .document-preview {
    width: 100%;
    max-width: 340px;
  }

  .roadmap-intro {
    position: static;
  }

  .quote-checklist {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

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

  .service-grid,
  .catalog-grid,
  .deliverable-grid,
  .feature-grid,
  .pricing-grid,
  .service-level-grid,
  .trust-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimator-panel,
  .estimator-form {
    grid-template-columns: 1fr;
  }

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

  .quote-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 150px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-copy,
  .hero-panel {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: 3.6rem;
  }

  .hero-logo-title img {
    width: 100%;
    max-width: 340px;
  }

  .service-grid,
  .catalog-grid,
  .deliverable-grid,
  .feature-grid,
  .pricing-grid,
  .service-level-grid,
  .trust-grid,
  .steps,
  .form-row,
  .intake-strip {
    grid-template-columns: 1fr;
  }

  .roadmap-step {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .guide-list article {
    grid-template-columns: 1fr;
  }

  .roadmap-step p,
  .expertise-list p {
    grid-column: 2;
  }

  .expertise-list article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .document-preview {
    transform: none;
  }

  .footer {
    flex-direction: column;
  }
}
