/* =========================================================
   KENOGY TERRA
   PREMIUM EDITORIAL DESIGN
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;500;600;700&display=swap');


/* =========================================================
   ROOT
   ========================================================= */

.terra-page {
  --terra-ink: #111111;
  --terra-muted: #5f5f5f;
  --terra-line: #d8d8d8;
  --terra-paper: #ffffff;

  --terra-card: #f4f4f1;
  --terra-card-alt: #f0f2ef;

  --terra-accent: #a83c31;
  --terra-accent-soft: #faf0ed;

  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;

  background: var(--terra-paper);
  color: var(--terra-ink);

  font-family: "DM Sans", sans-serif;

  box-sizing: border-box;
}

.terra-page *,
.terra-page *::before,
.terra-page *::after {
  box-sizing: border-box;
}

.terra-page h1,
.terra-page h2,
.terra-page h3,
.terra-page p,
.terra-page span,
.terra-page strong,
.terra-page small,
.terra-page a,
.terra-page summary {
  font-family: "DM Sans", sans-serif;
}

.terra-page h1,
.terra-page h2,
.terra-page h3 {
  color: #111111;
  font-weight: 600;
}

.terra-page p {
  color: var(--terra-muted);
}


/* =========================================================
   OVERLINE
   ========================================================= */

.terra-overline {
  margin: 0 0 14px;
  padding: 0;

  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #6a6a6a;
}


/* =========================================================
   HERO
   ========================================================= */

.terra-hero {
  width: 100%;
  margin: 0;
  padding: 0;
}


/* ---------------------------------------------------------
   HERO TOP
   --------------------------------------------------------- */

.terra-hero__top {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;

  align-items: center;
  justify-content: space-between;

  width: 100%;

  gap: 20px;

  margin: 0;
  padding: 20px 0 16px;

  border-bottom: 1px solid var(--terra-line);

  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;

  letter-spacing: 0.09em;
  text-transform: uppercase;

  color: #6a6a6a;
}

.terra-hero__top > span {
  display: block !important;

  flex: 0 0 auto;

  width: auto !important;

  margin: 0;
  padding: 0;
}


/* ---------------------------------------------------------
   HERO MAIN
   --------------------------------------------------------- */

.terra-hero__main {
  display: grid;

  grid-template-columns: 80px minmax(0, 1fr);

  gap: 32px;

  margin: 0;
  padding: 80px 0 68px;
}

.terra-hero__number {
  padding-top: 10px;

  font-size: 13px;
  font-weight: 600;

  color: var(--terra-accent);
}

.terra-hero h2 {
  margin: 0 0 26px;
  padding: 0;

  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.02;

  letter-spacing: -0.045em;

  color: #111111;
}

.terra-hero h2 em {
  display: block;

  margin-top: 10px;

  font-style: normal;
  font-weight: 400;

  color: #111111;
}

.terra-hero__lead {
  max-width: 650px;

  margin: 0;
  padding: 0;

  font-size: 18px;
  line-height: 1.75;

  color: #5f5f5f;
}


/* =========================================================
   HERO FACTS
   ========================================================= */

.terra-hero__facts {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  width: 100%;
  margin: 0;
  padding: 0;

  border: 1px solid #d8d8d8;

  background: #ffffff;
}

.terra-hero__facts > div {
  min-height: 105px;

  margin: 0;
  padding: 22px 24px;

  border-right: 1px solid #d8d8d8;
}

.terra-hero__facts > div:last-child {
  border-right: 0;
}

.terra-hero__facts span {
  display: block;

  margin: 0 0 10px;
  padding: 0;

  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #6a6a6a;
}

.terra-hero__facts strong {
  display: block;

  margin: 0;
  padding: 0;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;

  color: #111111;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.terra-section {
  width: 100%;
  margin: 0;
  padding: 100px 0;
}

.terra-section__heading {
  max-width: 820px;

  margin: 0 0 58px;
  padding: 0;
}

.terra-section h2 {
  margin: 0 0 22px;
  padding: 0;

  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.04;

  letter-spacing: -0.04em;

  color: #111111;
}

.terra-section__heading > p:last-child {
  max-width: 650px;

  margin: 0;
  padding: 0;

  font-size: 16px;
  line-height: 1.75;

  color: #5f5f5f;
}


/* =========================================================
   DOCUMENTS — 3 × 2
   ========================================================= */

.terra-documents__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 14px;

  width: 100%;
  margin: 0;
  padding: 0;
}

.terra-document {
  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 250px;

  margin: 0;
  padding: 26px;

  border-radius: 45px;

  background: #f7f7f7;
}

.terra-document:nth-child(2),
.terra-document:nth-child(5) {
  background: #f0f0f0;
}

.terra-document__top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 15px;

  margin: 0 0 52px;
  padding: 0;
}

.terra-document__top span {
  margin: 0;
  padding: 0;

  font-size: 13px;
  font-weight: 600;
  line-height: 1;

  color: #6a6a6a;

  transition: color 0.2s ease;
}

.terra-document:hover .terra-document__top > span {
  color: var(--terra-accent);
}

.terra-document__top small {
  display: inline-block;

  margin: 0;
  padding: 5px 8px;

  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 5px;

  font-size: 8px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: 0.11em;
  text-transform: uppercase;

  color: #6a6a6a;

  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.terra-document:hover .terra-document__top small {
  border-color: #111111;
  background: #111111;
  color: #d8d8d8;
}

.terra-document h3 {
  margin: 0 0 10px;
  padding: 0;

  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;

  letter-spacing: -0.025em;

  color: #111111;
}

.terra-document p {
  margin: 0;
  padding: 0;

  font-size: 14px;
  line-height: 1.7;

  color: #5f5f5f;
}


/* =========================================================
   DOCUMENTS — odstep miedzy podsekcjami TEIL X VON 3 (MERIDA)
   ========================================================= */

.terra-documents__grid + .terra-overline {
  margin-top: 58px;
}


/* =========================================================
   DIN 5008
   ========================================================= */

.terra-section--technical {
  padding-top: 0;
  padding-bottom: 30px;
}

.terra-technical {
  display: grid;

  grid-template-columns: 120px minmax(0, 1fr);

  gap: 38px;

  margin: 0;
  padding: 34px;

  border: 1px solid var(--terra-line);
  border-radius: 45px;
}

.terra-technical__mark {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;

  color: var(--terra-accent);
}

.terra-technical h2 {
  max-width: 650px;

  margin: 0 0 16px;
  padding: 0;

  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;

  color: #111111;
}

.terra-technical p {
  max-width: 680px;

  margin: 0;
  padding: 0;

  font-size: 14px;
  line-height: 1.75;

  color: #5f5f5f;
}


/* =========================================================
   DOWNLOAD FILES
   ========================================================= */

.terra-downloads {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 16px;

  width: 100%;

  margin: 48px 0 65px;
  padding: 0;
}

.terra-download__badge {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 31px;
  height: 31px;

  border-radius: 50%;

  background: #f7f7f7;

  display: flex;
  align-items: center;
  justify-content: center;
}

.terra-download__badge img {
  width: 13px;
  height: 13px;
}

.terra-download {
  position: relative;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;

  min-width: 0;

  margin: 0;
  padding: 28px 26px 30px;

  border-radius: 45px;

  background: #f7f7f7;
}

.terra-download > span {
  display: block;

  margin: 0 0 8px;
  padding: 0;

  font-size: 11px;
  font-weight: 600;

  color: var(--terra-accent);
}

.terra-download h3 {
  margin: 0 0 6px;
  padding: 0;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;

  color: #111111;
}

.terra-download p {
  margin: 0;
  padding: 0;

  font-size: 13px;
  line-height: 1.45;

  color: #5f5f5f;
}


/* =========================================================
   PROCESS TIMELINE
   ========================================================= */

.terra-process__timeline {
  position: relative;

  max-width: 850px;

  margin: 0 0 0 28px;
  padding: 0;
}

.terra-process__timeline::before {
  content: "";

  position: absolute;

  top: 27px;
  bottom: 27px;

  left: 23px;

  width: 1px;

  background: var(--terra-line);
}

.terra-process__step {
  position: relative;

  display: grid;

  grid-template-columns: 48px minmax(0, 1fr);

  gap: 25px;

  margin: 0;
  padding: 0 0 46px;
}

.terra-process__step:last-child {
  padding-bottom: 0;
}

.terra-process__marker {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border: 1px solid var(--terra-line);
  border-radius: 50%;

  background: var(--terra-paper);
}

.terra-process__marker span {
  font-size: 12px;
  font-weight: 600;

  color: #5f5f5f;
}

.terra-process__content > span {
  display: block;

  margin: 3px 0 9px;
  padding: 0;

  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;

  letter-spacing: 0.13em;
  text-transform: uppercase;

  color: #6a6a6a;
}

.terra-process__content h3 {
  margin: 0 0 10px;
  padding: 0;

  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;

  letter-spacing: -0.025em;

  color: #111111;
}

.terra-process__content p {
  max-width: 650px;

  margin: 0;
  padding: 0;

  font-size: 14px;
  line-height: 1.75;

  color: #5f5f5f;
}

.terra-process__note {
  max-width: 650px;

  margin: 15px 0 0;
  padding: 15px 17px;

  border-radius: 45px;

  background: #f7f7f7;

  font-size: 13px;
  line-height: 1.65;

  color: #5f5f5f;
}

.terra-process__note strong {
  color: #111111;
  font-weight: 600;
}


/* =========================================================
   COMPATIBILITY
   ========================================================= */

.terra-compatibility {
  display: grid;

  grid-template-columns: 31px minmax(0, 1fr);

  gap: 17px;

  align-items: center;

  width: 80%;
  max-width: 80%;

  margin: 45px 0 0;
  padding: 20px;

  border: 1px solid var(--terra-line);
  border-radius: 45px;

  background: #ffffff;
}

.terra-compatibility__icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 31px;
  height: 31px;

  border-radius: 50%;

  background: #111111;
}

.terra-compatibility__icon img {
  width: 14px;
  height: 14px;

  filter: brightness(0) invert(1);
}

.terra-compatibility p {
  margin: 0;
  padding: 0;

  font-size: 13.5px;
  line-height: 1.7;

  color: #5f5f5f;
}

.terra-compatibility strong {
  color: #111111;
  font-weight: 600;
}


/* =========================================================
   PRACTICAL
   ========================================================= */

.terra-document__list--practical {
  max-width: 900px;

  margin: 55px 0 0;
  padding: 0;

  border-top: 1px solid #111111;
}

.terra-document__practical-item {
  display: grid;

  grid-template-columns: 80px minmax(0, 1fr);

  gap: 24px;

  margin: 0;
  padding: 28px 0;

  border-bottom: 1px solid var(--terra-line);
}

.terra-document__practical-item .terra-document__top {
  margin: 0;
  padding: 0;
}

.terra-document__practical-item .terra-document__top span {
  color: var(--terra-accent);
}

.terra-document__practical-content {
  max-width: 650px;

  margin: 0;
  padding: 0;
}

.terra-document__practical-content h3 {
  margin: 0 0 8px;
  padding: 0;

  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;

  color: #111111;
}

.terra-document__practical-content p {
  margin: 0;
  padding: 0;

  font-size: 14.5px;
  line-height: 1.7;

  color: #5f5f5f;
}


/* =========================================================
   PRACTICAL — POWIAZANE PRODUKTY (internal links)
   ========================================================= */

.terra-practical__lead {
  max-width: 900px;

  margin: 45px 0 24px;
  padding: 0;

  font-size: 14.5px;
  line-height: 1.75;

  color: #5f5f5f;
}

.terra-practical__related {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 14px;

  width: 100%;
  margin: 0;
  padding: 0;
}

.terra-practical__related-item {
  position: relative;
  box-sizing: border-box;

  display: flex;

  align-items: center;

  gap: 16px;

  min-height: 195px;

  margin: 0;
  padding: 7px;

  border-radius: 45px;

  background: #f7f7f7;
  --terra-badge-bg: #f7f7f7;

  text-decoration: none !important;

  transition: background 0.2s ease;
}

.terra-practical__related-thumb {
  display: block !important;

  flex: 0 0 190px;
  align-self: flex-start;

  width: 190px !important;
  height: 204px !important;
  min-width: 0 !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  border-radius: 38px !important;

  object-fit: cover;
}

.terra-practical__related-badge {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 31px;
  height: 31px;

  border-radius: 50%;

  background: var(--terra-badge-bg);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s ease;
}

.terra-practical__related-badge img {
  width: 13px;
  height: 13px;

  transition: filter 0.2s ease;
}

.terra-practical__related-item:hover .terra-practical__related-badge {
  background: #111111;
}

.terra-practical__related-item:hover .terra-practical__related-badge img {
  filter: brightness(0) invert(0.85);
}

.terra-practical__related-text {
  min-width: 0;

  padding-right: 40px;
}

.terra-practical__related-item:nth-child(2) {
  background: #f0f0f0;
  --terra-badge-bg: #f0f0f0;
}

.terra-practical__related-item:hover {
  background: #f0f0f0;
}

.terra-practical__related-item h3 {
  display: flex;
  flex-direction: column;

  margin: 0 0 6px;
  padding: 0;

  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: -0.01em;

  color: #111111;
  text-decoration: none;

  overflow-wrap: normal;
  word-break: keep-all;
}

.terra-practical__related-brand {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;

  letter-spacing: -0.01em;

  color: #6b6b6b;
  text-decoration: none;
}

.terra-practical__related-item p {
  margin: 0;
  padding: 0;

  font-size: 11px;
  line-height: 1.5;

  color: #5f5f5f;
  text-decoration: none;
}


/* =========================================================
   AUTHOR
   ========================================================= */

.terra-author {
  display: grid;
  box-sizing: border-box;

  grid-template-columns: 340px minmax(0, 1fr);

  column-gap: 40px;

  align-items: stretch;

  padding: 7px;

  border-radius: 45px;

  background: #f7f7f7;
}

.terra-author__card {
  display: contents;
}


/* ---------------------------------------------------------
   AUTHOR PHOTO — rounded card + circular stat badge
   --------------------------------------------------------- */

.terra-author__photo {
  position: relative;

  width: 100%;
  min-height: 100%;

  border-radius: 38px;
  overflow: hidden;

  background: var(--terra-card);
}

.terra-author__photo img {
  display: block;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  object-fit: cover;
  object-position: center top;
}

.terra-author__badge {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 62px;
  height: 62px;

  border-radius: 50%;

  border: 1px solid #111111;
  background: transparent;
  color: #111111;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   AUTHOR TEXT
   --------------------------------------------------------- */

.terra-author__content {
  margin: 0;
  padding: 24px 28px 24px 0;
}

.terra-author__stat {
  margin: 0 0 18px;
  padding: 0;

  font-size: 17px;
  font-weight: 600;

  color: #111111;
}

.terra-author__content > p:not(.terra-overline):not(.terra-author__stat) {
  max-width: 650px;

  margin: 0 0 16px;
  padding: 0;

  font-size: 15px;
  line-height: 1.75;

  color: #5f5f5f;
}

.terra-author__links {
  display: flex;

  gap: 20px;

  margin: 8px 0 0;
  padding: 0;
}

.terra-author__links a {
  font-size: 13px;
  font-weight: 600;

  color: #111111;

  text-decoration: underline;
  text-underline-offset: 3px;
}

.terra-author__links a:hover {
  color: var(--terra-accent);
}


/* =========================================================
   FAQ — PREVIOUS STABLE VERSION
   ========================================================= */

.terra-faq {
  width: 100% !important;
  max-width: none !important;

  padding: 140px 0 !important;
}

.terra-faq__list {
  display: block !important;

  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  border-top: 1px solid #111111;
}

.terra-faq details {
  display: block !important;

  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  border-bottom: 1px solid var(--terra-line);
}


/* ---------------------------------------------------------
   FAQ SUMMARY
   --------------------------------------------------------- */

.terra-faq summary {
  display: grid !important;

  grid-template-columns: 42px minmax(0, 1fr) 20px !important;

  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 22px 0 !important;

  gap: 18px;

  align-items: center;

  box-sizing: border-box;

  cursor: pointer;

  list-style: none !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;

  color: #111111 !important;
}

.terra-faq summary::-webkit-details-marker {
  display: none !important;
}

.terra-faq summary::marker {
  display: none !important;
  content: "";
}


/* ---------------------------------------------------------
   FAQ INDEX
   --------------------------------------------------------- */

.terra-faq__index {
  display: block !important;

  width: auto !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;

  color: #5f5f5f !important;
}


/* ---------------------------------------------------------
   FAQ QUESTION
   --------------------------------------------------------- */

.terra-faq__question {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;

  color: #111111 !important;
}


/* ---------------------------------------------------------
   FAQ ICON
   --------------------------------------------------------- */

.terra-faq summary i {
  position: relative;

  display: block;

  width: 16px;
  height: 16px;

  margin: 0;
  padding: 0;
}

.terra-faq summary i::before,
.terra-faq summary i::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  background: #111111;

  transform: translate(-50%, -50%);
}

.terra-faq summary i::before {
  width: 12px;
  height: 1px;
}

.terra-faq summary i::after {
  width: 1px;
  height: 12px;

  transition: opacity 0.2s ease;
}

.terra-faq details[open] summary i::after {
  opacity: 0;
}


/* ---------------------------------------------------------
   FAQ ANSWER
   --------------------------------------------------------- */

.terra-faq details > div {
  display: block !important;

  width: 100% !important;
  max-width: 760px !important;

  margin: 0 !important;
  padding: 0 0 24px 60px !important;

  box-sizing: border-box;
}

.terra-faq details p {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.75 !important;

  color: #5f5f5f !important;
}


/* =========================================================
   PRODUCT SLIDER
   ========================================================= */

.terra-slider {
  position: relative;

  width: 80%;
  max-width: 80%;

  margin: 0;
  padding: 0;

  overflow: hidden;
}

.terra-slider__viewport {
  position: relative;

  width: 100%;

  overflow: hidden;
}

.terra-slider__track {
  display: flex;

  width: 400%;

  margin: 0;
  padding: 0;

  transform: translate3d(0, 0, 0);

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform;

  animation: terra-slide 16s infinite;
}

.terra-slider:hover .terra-slider__track {
  animation-play-state: paused;
}

@keyframes terra-slide {
  0%, 25% {
    transform: translate3d(0%, 0, 0);
  }
  33%, 58% {
    transform: translate3d(-25%, 0, 0);
  }
  66%, 91% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(-75%, 0, 0);
  }
}

.terra-slider__slide {
  position: relative;

  flex: 0 0 25%;

  width: 25%;

  min-width: 0;

  margin: 0;
  padding: 0;
}

.terra-slider__image {
  display: block !important;

  width: 100% !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: cover;

  vertical-align: middle;
}


/* ---------------------------------------------------------
   Slider — zachowuje zaokrąglenie,
   usuwa globalny odstęp obrazów
   --------------------------------------------------------- */

.terra-slider .canva-image-spacing {
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  border-radius: 50px !important;
}

.terra-slider__slide .canva-image-spacing {
  max-width: 100% !important;
}


/* =========================================================
   FINAL / CTA
   ========================================================= */

.terra-final {
  padding: 90px 0 85px;
}

.terra-final h2 {
  margin: 0;
  padding: 0;

  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.04;

  letter-spacing: -0.04em;

  color: #111111;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

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

  .terra-author {
    grid-template-columns: 260px minmax(0, 1fr);

    column-gap: 36px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  /* Hero top */

  .terra-hero__top {
    flex-wrap: wrap !important;

    gap: 8px 20px;
  }


  /* Hero main */

  .terra-hero__main {
    grid-template-columns: 1fr;

    gap: 18px;

    padding: 55px 0 50px;
  }

  .terra-hero__number {
    padding-top: 0;
  }

  .terra-hero h2 {
    font-size: 43px;
  }

  .terra-hero__lead {
    font-size: 16px;
  }


  /* Hero facts — 2 × 2 */

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

  .terra-hero__facts > div {
    min-height: 100px;

    padding: 19px;
  }

  .terra-hero__facts > div:nth-child(2) {
    border-right: 0;
  }

  .terra-hero__facts > div:nth-child(3),
  .terra-hero__facts > div:nth-child(4) {
    border-top: 1px solid #d8d8d8;
  }

  .terra-hero__facts > div:nth-child(3) {
    border-right: 1px solid #d8d8d8;
  }

  .terra-hero__facts > div:nth-child(4) {
    border-right: 0;
  }


  /* Sections */

  .terra-section {
    padding: 70px 0;
  }

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


  /* Documents */

  .terra-documents__grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .terra-document {
    min-height: 220px;

    padding: 24px;
  }


  /* DIN */

  .terra-technical {
    grid-template-columns: 1fr;

    gap: 24px;

    padding: 24px;
  }

  .terra-technical h2 {
    font-size: 30px;
  }


  /* Downloads */

  .terra-downloads {
    grid-template-columns: 1fr;
  }


  /* Process */

  .terra-process__timeline {
    margin-left: 0;
  }

  .terra-process__timeline::before {
    left: 20px;
  }

  .terra-process__step {
    grid-template-columns: 42px minmax(0, 1fr);

    gap: 18px;
  }

  .terra-process__marker {
    width: 42px;
    height: 42px;
  }

  .terra-process__content h3 {
    font-size: 25px;
  }


  /* Practical */

  .terra-document__list--practical {
    margin-top: 40px;
  }

  .terra-document__practical-item {
    grid-template-columns: 45px minmax(0, 1fr);

    gap: 16px;

    padding: 24px 0;
  }

  .terra-practical__related {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  /* Author */

  .terra-author {
    grid-template-columns: 1fr;

    row-gap: 20px;

    padding: 0 0 7px;
  }

  .terra-author__photo {
    width: 100%;
    max-width: none;
    min-height: 0;

    aspect-ratio: 4 / 5;
  }

  .terra-author__content {
    padding: 26px;
  }


  /* FAQ */

  .terra-faq h2 {
    font-size: 38px;
  }

  .terra-faq summary {
    grid-template-columns: 30px minmax(0, 1fr) 16px !important;

    gap: 12px;

    padding: 20px 0 !important;
  }

  .terra-faq__question {
    font-size: 14px !important;
  }

  .terra-faq details > div {
    padding-left: 42px !important;
  }


  /* Slider — 100% width on mobile */

  .terra-slider {
    width: 100%;
    max-width: 100%;
  }

  .terra-compatibility {
    width: 100%;
    max-width: 100%;
  }


  /* Final */

  .terra-final {
    padding: 70px 0 130px;
  }

  .terra-final h2 {
    font-size: 48px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .terra-page * {
    transition: none !important;
  }

  .terra-slider__track {
    transition: none !important;
    animation: none !important;
  }

}