:root {
  --ink: #15212a;
  --muted: #52616d;
  --line: #d9e0e5;
  --paper: #f7f8f6;
  --white: #ffffff;
  --green: #0d766e;
  --green-dark: #07534e;
  --blue: #1d4f78;
  --brick: #a6422d;
  --gold: #c08a2b;
  --shadow: 0 20px 60px rgba(21, 33, 42, 0.14);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.62;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 224, 229, 0.9);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(21, 33, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  font-weight: 800;
}

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

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

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

.main-nav a {
  padding: 9px 11px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .main-nav a:hover {
  background: #edf3f1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 64px) 54px;
  overflow: hidden;
  color: var(--ink);
}

.hero-picture,
.hero-bg,
.hero-shade,
.hero-tree {
  position: absolute;
  inset: 0;
}

.hero-picture {
  display: block;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(249, 249, 245, 0.97) 0%, rgba(249, 249, 245, 0.9) 42%, rgba(249, 249, 245, 0.28) 100%),
    linear-gradient(0deg, rgba(249, 249, 245, 0.62) 0%, rgba(249, 249, 245, 0.08) 48%);
}

.hero-tree {
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-tree-line {
  fill: none;
  stroke: rgba(95, 63, 29, 0.42);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-tree-node {
  fill: rgba(255, 248, 229, 0.68);
  stroke: rgba(105, 72, 34, 0.5);
  stroke-width: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 11vw, 130px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.34;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.btn.primary {
  color: var(--white);
  background: var(--brick);
}

.btn.primary:hover {
  background: #8f3524;
}

.btn.primary.mac {
  background: var(--green);
}

.btn.primary.mac:hover {
  background: var(--green-dark);
}

.btn.secondary {
  color: var(--ink);
  border-color: rgba(21, 33, 42, 0.36);
  background: rgba(255, 255, 255, 0.56);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.86);
}

.btn.dark {
  color: var(--ink);
  border-color: #9fb0ba;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin: 42px 0 0;
  background: rgba(21, 33, 42, 0.12);
  border: 1px solid rgba(21, 33, 42, 0.16);
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.hero-facts dt {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero-facts dd {
  margin: 2px 0 0;
  font-weight: 800;
}

section {
  scroll-margin-top: 84px;
}

.intro-section,
.curiosity-section,
.band,
.screenshot-section,
.workflow-section,
.proof-section,
.compare-section,
.pricing-section,
.download-section,
.legal-section,
.support-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.intro-section,
.curiosity-section,
.screenshot-section,
.workflow-section,
.proof-section,
.compare-section,
.pricing-section,
.download-section,
.legal-section,
.support-section {
  max-width: calc(var(--content) + 128px);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

p {
  margin: 0;
}

.section-grid > p,
.section-heading > p,
.proof-copy > p,
.download-section p,
.contact-block p {
  color: var(--muted);
  font-size: 20px;
}

.band {
  max-width: none;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band.light {
  background: #eef4f2;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:last-child {
  margin-top: 18px;
}

.curiosity-section {
  padding-top: clamp(36px, 6vw, 76px);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content);
  margin: 0 auto;
}

.story-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(21, 33, 42, 0.07);
}

.story-grid strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.story-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.feature-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content);
  margin: 0 auto;
}

.feature-card,
.audience-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card {
  min-height: 230px;
  padding: 28px;
}

.feature-card p,
.audience-grid p,
.price-card p:not(.price):not(.price-label),
.workflow li {
  color: var(--muted);
  font-size: 18px;
}

.feature-card h3 {
  margin-top: 18px;
}

.feature-card p {
  margin-top: 12px;
}

.icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  color: var(--green);
  border-radius: 6px;
  position: relative;
}

.person-icon::before,
.place-icon::before,
.book-icon::before,
.exchange-icon::before,
.chart-icon::before,
.shield-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
}

.person-icon::before { border-radius: 50%; inset: 7px 10px 13px; }
.place-icon::before { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.book-icon::before { border-left: 0; border-radius: 2px; }
.exchange-icon::before { border-top: 0; border-left: 0; transform: rotate(-45deg); }
.chart-icon::before { inset: 11px 7px 7px; border-top: 0; border-right: 0; }
.shield-icon::before { border-radius: 8px 8px 14px 14px; }

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.showcase-media {
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dce7e4;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-media img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 16px 38px rgba(21, 33, 42, 0.18);
}

.showcase-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-left: 4px solid var(--green);
  background: var(--white);
}

.shot-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.shot-tab {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.shot-tab.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.showcase-panel p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.insight-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.insight-summary article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.insight-summary h3 {
  color: var(--green-dark);
  font-size: 18px;
}

.insight-summary p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.audience-grid article {
  padding: 30px;
}

.audience-grid h3 {
  color: var(--green-dark);
}

.audience-grid p {
  margin-top: 12px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.workflow li {
  min-height: 238px;
  padding: 26px;
  background: var(--white);
}

.workflow span {
  display: block;
  margin-bottom: 42px;
  color: var(--brick);
  font-weight: 900;
}

.workflow strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.proof-section img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(21, 33, 42, 0.08);
}

.table-hint {
  display: none;
  padding: 14px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: #f7fbfa;
  font-size: 16px;
}

.compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--white);
  background: var(--green-dark);
  font-size: 16px;
}

.compare-table tbody th {
  width: 150px;
  color: var(--green-dark);
  font-size: 20px;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table td {
  color: var(--muted);
}

.compare-table .highlight-row th,
.compare-table .highlight-row td {
  background: #f1f7f5;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.price-layout {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  padding: 28px;
}

.main-price {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.main-price p:not(.price):not(.price-label) {
  color: #d7e9e6;
}

.price-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.price {
  margin: 10px 0 12px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  max-width: none;
}

.download-section > div:first-child {
  max-width: 760px;
  margin-left: max(0px, calc((100vw - var(--content)) / 2));
}

.download-section p {
  color: #d3dde2;
  margin-top: 14px;
}

.download-actions {
  margin: 0 max(0px, calc((100vw - var(--content)) / 2)) 0 0;
  max-width: 760px;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 32px;
  align-items: start;
}

.contact-data {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-left: 4px solid var(--brick);
  background: var(--white);
  font-style: normal;
}

.contact-data a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal-section {
  border-top: 1px solid var(--line);
}

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

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  min-width: 0;
}

.legal-card h2,
.legal-card h3 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.2;
}

.legal-card address {
  display: grid;
  gap: 7px;
  font-style: normal;
}

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

.legal-card p + p,
.legal-card p + .text-link {
  margin-top: 14px;
}

.legal-card a,
.text-link {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  display: inline-flex;
}

.source-note {
  font-size: 15px;
}

.subpage {
  padding: 132px clamp(18px, 5vw, 64px) 64px;
  max-width: calc(var(--content) + 128px);
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.subpage .legal-section,
.subpage .comparison-section {
  padding: 0;
  border-top: 0;
}

.legal-document {
  max-width: 980px;
}

.legal-document h1 {
  margin-bottom: 26px;
}

.legal-document h2 {
  margin: 38px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.legal-document h3 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-document p,
.legal-document ul {
  margin: 0 0 16px;
}

.legal-document ul {
  padding-left: 24px;
}

.legal-document .index,
.legal-document .m-elements,
.legal-document .glossary {
  display: grid;
  gap: 8px;
}

.legal-document a {
  color: var(--green-dark);
  font-weight: 800;
}

.legal-document .seal {
  margin-top: 42px;
  padding: 20px;
  border-left: 4px solid var(--green);
  background: var(--white);
}

.dsg-license-content-blurred {
  color: #8b4a39;
  background: #fff2ec;
}

.comparison-page {
  max-width: 1240px;
}

.comparison-intro {
  max-width: 920px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 20px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}

.dot.yes { background: #13795b; }
.dot.partial { background: #b7791f; }
.dot.no { background: #9b1c1c; }

.table-card {
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: visible;
  box-shadow: 0 18px 45px rgba(31, 41, 51, 0.08);
}

.category-header {
  padding: 18px 22px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.table-scroll {
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
}

.matrix-table th:first-child,
.matrix-table td:first-child {
  width: 31%;
  text-align: left;
  font-weight: 800;
}

.matrix-table thead th {
  color: #344054;
  background: #f1f5f9;
  font-weight: 900;
}

.matrix-table thead th.ges-col,
.matrix-table tbody td.ges-col {
  color: var(--green-dark);
  background: #e8f3ef;
  font-weight: 900;
}

.matrix-table tbody tr:last-child td {
  border-bottom: 0;
}

.mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  font-weight: 900;
}

.mark.yes {
  color: #13795b;
  background: #e7f6ef;
}

.mark.partial {
  color: #9a620f;
  background: #fff4dd;
}

.mark.no {
  color: #9b1c1c;
  background: #fdecec;
}

.has-tip {
  cursor: help;
}

.has-tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: min(280px, 70vw);
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.has-tip:hover::after,
.has-tip:focus::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.comparison-note {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
}

.comparison-note strong {
  color: var(--ink);
}

.source-list {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.source-list h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.source-list ul {
  margin: 0;
  padding-left: 22px;
}

.source-list a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 64px);
  color: #d3dde2;
  background: #10191f;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .section-grid,
  .showcase,
  .proof-section,
  .download-section,
  .legal-grid,
  .support-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .story-grid,
  .audience-grid,
  .insight-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .download-section > div:first-child,
  .download-actions {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 18px 34px;
  }

  .hero-bg {
    transform: none;
  }

  .hero-tree {
    display: none;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-facts,
  .feature-grid,
  .story-grid,
  .audience-grid,
  .insight-summary,
  .workflow,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 13px;
  }

  .showcase-media {
    min-height: 260px;
    padding: 10px;
  }

  .showcase-panel {
    padding: 22px;
  }

  .workflow li {
    min-height: 0;
  }

  .workflow span {
    margin-bottom: 20px;
  }

  .site-footer {
    flex-direction: column;
  }

  .table-hint {
    display: none;
  }

  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .compare-table {
    min-width: 0;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    border-bottom: 1px solid var(--line);
  }

  .compare-table tbody tr:last-child {
    border-bottom: 0;
  }

  .compare-table th,
  .compare-table td {
    border-bottom: 0;
    padding: 14px 18px;
  }

  .compare-table tbody th {
    width: 100%;
    padding-top: 20px;
  }

  .compare-table td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .compare-table td:nth-child(2)::before {
    content: "Passt besonders für";
  }

  .compare-table td:nth-child(3)::before {
    content: "Stärken";
  }

  .compare-table td:nth-child(4)::before {
    content: "Zu beachten";
  }

  .subpage {
    padding-top: 104px;
  }

  .matrix-table {
    min-width: 760px;
  }

  .matrix-table th,
  .matrix-table td {
    padding: 12px;
    font-size: 15px;
  }
}
