/* =========================================================
   morecruit.de – Basis-Styles (Header, Footer, Komponenten)
   Breakpoints wie im Original (Elementor): ≤1024px Tablet, ≤767px Mobil
   Seitenspezifisches liegt in assets/css/pages/<seite>.css
   ========================================================= */

:root {
  /* Farben (Elementor-Kit) */
  --c-primary: #004A99;
  --c-secondary: #D52B1E;
  --c-white: #FFFFFF;
  --c-sky: #1896FE;
  --c-icon: #0088DF;
  --c-panel: #F8F8F8;
  --c-primary-dark: #003975;
  --c-overlay: #000000CC;

  /* Schriften
     Im WordPress-Original sind alle Webfont-Dateien defekt (OMGF erzeugt leere URLs).
     Sichtbar war dort: Montserrat (nur weil lokal installiert) + System-Sans für
     Poppins, Space Grotesk, IBM Plex Sans, Source Sans Pro und Open Sans.
     Montserrat ist hier selbst gehostet (assets/fonts). Wer die ursprünglich
     geplanten Schriften will, legt sie in assets/fonts ab und trägt sie hier ein. */
  --f-sys: Helvetica, Arial, sans-serif;   /* = generisches sans-serif des Originals (Mac: Helvetica, Windows: Arial) */
  --f-text: "Montserrat", var(--f-sys);
  --f-heading: var(--f-sys);   /* geplant: "Poppins" */
  --f-grotesk: var(--f-sys);   /* geplant: "Space Grotesk" */
  --f-plex: var(--f-sys);      /* geplant: "IBM Plex Sans" */

  --content-w: 1280px;
}

/* ---------- Reset (angelehnt an Hello Elementor) ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
picture { display: contents; }
picture > source { display: none; } /* sonst zählen <source> als Flex-Items und erzeugen zusätzliche gap-Abstände */
.icon { width: 1em; height: 1em; fill: currentColor; }

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 1000;
  padding: 10px 16px; background: var(--c-primary); color: #fff; border-radius: 5px;
  font-family: var(--f-text); font-weight: 600;
}
.skip-link:focus { top: 8px; }
:focus-visible { outline: 2px solid var(--c-sky); outline-offset: 2px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }
b, strong { font-weight: 700; } /* sonst „bolder“ → 900 bei variabler Montserrat */

.inner {
  width: 100%;
  max-width: min(100%, var(--content-w));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-family: var(--f-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}
.btn-icon { width: 1em; height: 1em; fill: currentColor; transition: fill .3s; }

.btn--pill {
  background: var(--c-sky);
  color: var(--c-white);
  border-radius: 50px;
  padding: 12px 24px;
}
.btn--pill:hover, .btn--pill:focus-visible { background: var(--c-secondary); }

.btn--hero-solid,
.btn--hero-outline {
  text-transform: uppercase;
  border: 2px solid var(--c-white);
  border-radius: 5px;
  padding: 15px 30px;
}
.btn--hero-solid { background: var(--c-white); color: var(--c-primary); }
.btn--hero-solid:hover, .btn--hero-solid:focus-visible {
  background: var(--c-secondary); border-color: var(--c-secondary); color: var(--c-white);
}
.btn--hero-outline { background: transparent; color: var(--c-white); }
.btn--hero-outline:hover, .btn--hero-outline:focus-visible {
  background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white);
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  text-transform: uppercase;
  border-radius: 5px;
  padding: 15px 30px;
}
.btn--primary:hover, .btn--primary:focus-visible { background: var(--c-primary-dark); }

.btn-wrap--center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--c-white);
  padding: 15px;
}
.header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header-logo { display: block; flex: 0 0 auto; }
.header-logo img {
  width: auto;
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}
.main-nav .menu { display: flex; flex-wrap: wrap; align-items: center; }
.main-nav .menu li { margin-inline: 12.5px; }
.main-nav .menu li:first-child { margin-inline-start: 0; }
.main-nav .menu li:last-child { margin-inline-end: 0; }
.menu-item {
  display: flex;
  font-family: var(--f-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-primary);
  transition: color .4s;
}
.menu-item:hover, .menu-item:focus-visible { color: var(--c-secondary); }
.menu-item.is-active { color: var(--c-secondary); }
.header-cta { display: flex; align-items: center; gap: 14px; margin-inline-start: 10px; }

.lang-switch { display: flex; align-items: center; gap: 2px; border: 1px solid var(--c-border, #d8dde3); border-radius: 999px; padding: 3px; }
.lang-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 4px 8px;
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 999px;
  color: var(--c-primary);
  transition: background-color .3s, color .3s;
}
.lang-switch__item:hover, .lang-switch__item:focus-visible { background: rgba(0, 74, 153, .08); }
.lang-switch__item.is-active { background: var(--c-primary); color: #fff; }
.mobile-menu .lang-switch { width: fit-content; margin: 16px auto 4px; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  font-size: 24px;
  padding: .25em;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--c-primary);
  cursor: pointer;
}
.menu-toggle .icon { width: 1em; height: 1em; }
.menu-toggle:hover { color: var(--c-secondary); }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 9997;
  background: var(--c-white);
  overflow: hidden;
  max-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: max-height .3s, transform .3s;
}
.mobile-menu.is-open { max-height: 100vh; transform: scaleY(1); }
.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  line-height: 20px;
  border-inline-start: 8px solid transparent;
  font-family: var(--f-heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #33373d;
  transition: color .3s;
}
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--c-secondary); }

/* ---------- Scroll-Animationen (wie Elementor Entrance) ---------- */
.anim { visibility: hidden; }
.anim.is-animated { visibility: visible; animation-duration: 1.25s; animation-fill-mode: both; }
.anim--slow.is-animated { animation-duration: 2s; }
.anim.is-animated[data-anim="fadeInUp"] { animation-name: fadeInUp; }
.anim.is-animated[data-anim="fadeIn"] { animation-name: fadeIn; }
@keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 100%, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .anim { visibility: visible; }
  .anim.is-animated { animation: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  min-height: 95vh;
  overflow: hidden;
}
/* Hintergrundbild als <picture> (responsive + LCP-optimiert) statt CSS-background */
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--c-overlay);
  opacity: .6;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-title {
  max-width: 713px;
  font-family: var(--f-text);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
  color: var(--c-white);
}
.hero-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.hero-buttons .btn { margin-top: 20px; flex: 0 0 auto; }

/* ---------- Sektionen allgemein ---------- */
.sec { padding-inline: 15px; }
.panel { background: var(--c-panel); border-radius: 20px; }

.split { display: flex; flex-direction: row; gap: 20px; }
.split-col { display: flex; flex-direction: column; gap: 20px; width: 50%; min-width: 0; }
.split--gap50 { gap: 50px; }
.gap-30 { gap: 30px; }
.panel.split { padding: 50px 30px; }

.rounded-img { width: 100%; border-radius: 10px; }

.title-40, .title-30 {
  align-self: flex-start;
  max-width: 713px;
  font-family: var(--f-text);
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
  color: #000;
  background-color: #B3B3B305;
}
.title-40 { font-size: 40px; }
.title-30 { font-size: 30px; }

.text-block {
  max-width: 520px;
  font-family: var(--f-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}
.text-block p { margin-block-end: .9rem; }

/* ---------- Intro ---------- */
.sec--intro { padding-block: 80px; }

/* ---------- Vier Stärken ---------- */
.sec--features { padding-block: 80px; }
.sec--features .inner { display: flex; flex-direction: column; gap: 10px; }
.title-65 {
  font-family: var(--f-heading);
  font-size: 65px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--c-primary);
  text-align: center;
  border-radius: 4px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px 0 20px;
}
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px dashed var(--c-primary);
  border-radius: 15px;
  padding: 3em 1em 1em;
  text-align: center;
}
.feature-icon {
  position: absolute;
  top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: var(--c-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.feature-icon img { width: 40px; height: 40px; }
.feature-title {
  height: 65px;
  margin-block: .5rem 1rem;   /* h4 im Icon-Box-Widget: Theme-Reset .5rem oben, 1rem unten */
  font-family: var(--f-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--c-primary);
}
.feature-text {
  margin-top: -20px;   /* Titel und Text sind im Original ein Widget – kein Container-gap dazwischen */
  font-family: var(--f-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}

/* ---------- Leistungen ---------- */
.sec--services-head { padding: 50px 0 0; }
.sec--services-head .inner { display: flex; flex-direction: column; }
.title-48 {
  align-self: center;
  max-width: 740px;
  font-family: var(--f-heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  color: var(--c-primary);
}
.sec--service-panel, .sec--service-plain { padding-block: 50px; }
.sec--service-plain { background: var(--c-white); }

/* ---------- Ablauf / Zeitstrahl ---------- */
.sec--process { padding-block: 50px; }
.panel--process {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0;
}
.title-grotesk {
  font-family: var(--f-grotesk);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #000;
}
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem 11rem;
}
.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2px;
  height: 100%;
  border-right: 1px solid var(--c-primary);
}
.tl-item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.tl-item--left { align-items: center; padding-right: 50%; }
.tl-item--right { align-items: flex-start; padding-left: 50%; }

.tl-num {
  position: absolute;
  top: 50%;
  font-family: var(--f-grotesk);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-secondary);
}
.tl-item--left .tl-num { left: 48%; margin-left: 2.5rem; }
.tl-item--right .tl-num { right: 50%; margin-right: 2.5rem; }
.tl-item:first-child .tl-num { font-weight: 900; }

.tl-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.tl-item--left .tl-col { padding-right: 40px; }
.tl-item--right .tl-col { padding-left: 40px; }
.tl-col::before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: var(--c-secondary);
}
.tl-item--left .tl-col::before { right: -9.8px; }
.tl-item--right .tl-col::before { left: -9.8px; }

.tl-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-right: 1rem;
  background: var(--c-white);
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
}
.tl-strip {
  flex: 0 1 3rem;   /* schrumpft wie im Original (≈37 px Desktop, 42 px Tablet, 38 px Mobil) */
  align-self: center;
  min-height: 8.5rem;
  margin-right: 2rem;
  background: var(--c-primary);
  border-radius: 0 50% 50% 0;
}
.tl-content { flex: 0 1 100%; min-width: 0; }
.tl-title {
  margin-top: .5rem;
  margin-bottom: 4px;
  font-family: var(--f-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1em;
  text-transform: capitalize;
  color: #000;
}
.tl-text {
  font-family: var(--f-text);
  font-size: 16.1px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}

/* ---------- Vorteile ---------- */
.sec--benefits { padding-block: 50px; }
.benefits-inner { display: flex; flex-direction: column; justify-content: center; gap: 30px; }
.title-48--black { color: #000; line-height: 1.2em; max-width: none; }
.benefit-grid { display: grid; gap: 30px; }
.benefit-grid--2 { grid-template-columns: repeat(2, 1fr); }
.benefit-grid--3 { grid-template-columns: repeat(3, 1fr); }
.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
  background: var(--c-panel);
}
.benefit-title {
  max-width: 362px;
  font-family: var(--f-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  color: #000;
}
.benefit-icon { width: 20%; max-width: 100%; height: auto; }

/* ---------- CTA ---------- */
.sec--cta { margin-bottom: 80px; }
.cta-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 0;
  border-radius: 20px;
  background: var(--c-panel);
}
.cta-title {
  font-family: var(--f-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  color: #000;
}
.cta-text {
  align-self: center;
  margin-bottom: .9rem;
  max-width: 638px;
  font-family: var(--f-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #000;
}

/* ---------- Kontakt ---------- */
.sec--contact { padding-block: 80px; background: var(--c-panel); }
.contact-inner { display: flex; flex-direction: row; gap: 50px; }
.contact-col { display: flex; flex-direction: column; gap: 20px; width: 50%; }
.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  background: var(--c-white);
}
.contact-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  font-size: 24px;
  border-radius: 50%;
  background: var(--c-primary);
  transition: all .3s;
}
.contact-icon .icon { fill: #fff; }
.contact-content { display: flex; flex-direction: column; }
.contact-title {
  margin-block: .5rem 10px;
  font-family: var(--f-plex);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--c-primary);
}
.contact-text {
  font-family: var(--f-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--c-white); padding: 5em 0 3em; }
.footer-inner { display: flex; flex-direction: row; align-items: stretch; gap: 10px; }
.footer-col { display: flex; flex-direction: column; gap: 20px; padding: 1em; }
.footer-col--brand { width: 35%; }
.footer-col--links, .footer-col--spacer { width: 20%; }
.footer-col--contact { width: 25%; }
.footer-logo-link { display: block; }
.footer-logo { width: auto; height: 120px; max-width: 100%; }
.footer-claim {
  font-family: var(--f-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-primary);
}
.social { display: flex; gap: 10px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-primary);
  transition: background-color .3s;
}
.social-icon .icon { width: 16px; height: 16px; fill: #fff; }
.social-icon:hover { background: var(--c-secondary); }
.footer-heading {
  font-family: var(--f-heading);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1em;
  text-transform: capitalize;
  color: var(--c-primary);
}
.icon-list li + li { margin-block-start: 9.5px; }
.icon-list li:not(:last-child) { padding-block-end: 9.5px; }
.footer-legal-note { margin-block-start: 8px; font-size: 12px; line-height: 1.4; opacity: .65; }
.icon-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--f-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-primary);
}
.icon-list .icon { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; fill: var(--c-primary); }

/* =========================================================
   TABLET ≤ 1024px
   ========================================================= */
@media (max-width: 1024px) {
  :root { --content-w: 1024px; }

  .btn, .menu-item { font-size: 16px; line-height: 1.5; }

  .header-logo img { height: 52px; object-fit: contain; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; order: 99999; }
  .mobile-menu { display: block; top: 100%; }

  .hero { min-height: 523px; padding-inline: 5%; }
  .hero-title { line-height: 1.5; }

  .title-40, .title-30 { font-size: 24px; line-height: 1.5; }
  .text-block { line-height: 1.5; }

  .sec--features { padding: 1em; }
  .title-65 { font-size: 45px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .feature-card { padding: 2em; }
  .feature-title { height: 90px; line-height: 1.5; }

  .title-48 { font-size: 45px; }

  .timeline { padding: 0; }
  .timeline::after, .tl-col::before { display: none; }
  .tl-item--left, .tl-item--right { align-items: flex-start; padding: 0; }
  .tl-item:nth-child(3) { gap: 10px; }
  .tl-item:nth-child(5) { gap: 20px; }   /* Schritt 5 ohne eigenen gap → Elementor-Standard */
  .tl-num { position: static; margin: 0 !important; }
  .tl-col { padding: 0 !important; }
  .tl-title { font-size: 25px; }
  .tl-text { font-size: 16px; line-height: 1.5; }

  .benefits-inner { gap: 20px; }
  .benefit-grid { gap: 20px; }
  .benefit-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid--2 .benefit-title { font-size: 20px; }
  .benefit-grid--3 .benefit-title { font-size: 18px; }
  .benefit-grid--3 .benefit-card { padding: 15px; }

  .cta-title { font-size: 24px; }
  .cta-text { font-size: 16px; line-height: 1.5; }

  .contact-inner { gap: 20px; }
  .contact-icon { font-size: 20px; }
  .contact-text { line-height: 1.5; }

  .site-footer { padding: 20px 15px; }
  .footer-inner { flex-wrap: wrap; align-items: flex-start; }
  .footer-col { padding: 0; }
  .footer-col--brand { width: 100%; margin-bottom: 20px; align-items: center; text-align: center; }
  .footer-logo { margin-inline: auto; }
  .footer-claim { max-width: 570px; line-height: 1.5; }
  .social { justify-content: center; }
  .footer-col--links { width: 32%; }
  .footer-col--spacer { width: 28%; }
  .footer-col--contact { width: 36%; }
  .icon-list a { font-size: 15px; }
}

/* =========================================================
   MOBIL ≤ 767px
   ========================================================= */
@media (max-width: 767px) {
  :root { --content-w: 767px; }

  .header-inner { flex-wrap: wrap; }
  .header-logo img { height: 50px; }
  .header-cta { display: none; }
  .btn, .menu-item { line-height: 1.4; }

  .hero { min-height: 71vh; }
  .hero-title { max-width: 100%; font-size: 22px; line-height: 1.4; text-align: center; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 15px; }
  .hero-buttons .btn { width: 100%; }
  .hero-buttons .btn--hero-outline { margin-top: 0; }

  .split, .panel.split { flex-direction: column; }
  .sec--intro { padding-block: 50px; }
  .split-col { width: 100%; }
  .split--gap50 { flex-direction: column; gap: 30px; }
  .title-40, .title-30 { max-width: 100%; font-size: 18px; line-height: 1.4; }
  .text-block { line-height: 1.4; }

  .sec--features { padding: 60px 15px; }
  .title-65 { font-size: 24px; line-height: 1.3em; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 2.5em 1.5em 1.5em; }
  .feature-title { height: auto; font-size: 20px; line-height: 1.1em; }

  .title-48 { font-size: 24px; line-height: 1.3em; }

  .title-grotesk { font-size: 24px; }
  .tl-item:nth-child(5) { gap: 0; }
  .tl-item:nth-child(2) .tl-strip,
  .tl-item:nth-child(5) .tl-strip { min-height: 9rem; }
  .tl-item:nth-child(2) .tl-card { padding-right: 0; }
  .tl-card { flex-wrap: nowrap; gap: 0; }
  .tl-title { font-size: 18px; }
  .tl-text { line-height: 1.4; }

  .sec--benefits { padding-block: 30px; }
  .title-48--black { max-width: 240px; font-size: 24px; line-height: 1.1em; }
  .benefit-grid--2, .benefit-grid--3 { grid-template-columns: 1fr; }
  .benefit-grid--2 .benefit-card { flex-direction: column; }
  .benefit-title, .benefit-grid--2 .benefit-title, .benefit-grid--3 .benefit-title { font-size: 18px; line-height: 1.1em; }
  .benefit-icon { width: auto; height: 80px; }

  .btn--primary { display: flex; width: 100%; font-size: 18px; line-height: 1.4; }

  .cta-title { line-height: 1.1em; }
  .cta-text { line-height: 1.4; }

  .sec--contact { padding-block: 50px; }
  .contact-inner { flex-direction: row-reverse; flex-wrap: wrap-reverse; }
  .contact-col { width: 100%; }
  .contact-content { gap: 0; }
  .contact-box { gap: 10px; }
  .contact-text { line-height: 1.4; }
  .footer-claim { line-height: 1.4; }

  .site-footer { padding: 30px 15px; }
  .footer-inner { gap: 20px; }
  .footer-col--links, .footer-col--spacer, .footer-col--contact { width: 100%; }
  .footer-heading { font-size: 20px; }
  .icon-list a { font-size: 16px; }
  .icon-list .icon { margin-top: 4px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .feature-card { width: 100%; }
}
