:root {
  --red: #d71920;
  --dark: #1d2329;
  --ink: #28323b;
  --muted: #68737c;
  --soft: #f4f5f5;
  --line: #dde1e3;
  --white: #fff;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  gap: 20px;
}
.toplinks {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.toplinks a:hover {
  color: #fff;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 26px;
}
.lion {
  width: 45px;
  height: 45px;
  border: 3px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 23px;
  font-weight: 900;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
}
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}
.menu a:hover,
.menu a.active {
  color: var(--red);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 13px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  filter: brightness(0.92);
}
.btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-phone {
  gap: 8px;
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  white-space: nowrap;
}
.btn-phone::before {
  content: "☎";
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.btn-phone:hover {
  background: #303942;
  border-color: #303942;
}
.hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(18, 23, 27, 0.88) 0%,
      rgba(18, 23, 27, 0.72) 45%,
      rgba(18, 23, 27, 0.18) 100%
    ),
    url("assets/banners/startseite.webp") center/cover no-repeat;
  color: #fff;
}
.hero .content {
  max-width: 770px;
  padding: 85px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
}
.hero .eyebrow {
  color: #fff;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  margin: 14px 0 22px;
  letter-spacing: -0.035em;
}
.hero p {
  font-size: 21px;
  max-width: 700px;
  color: #f0f0f0;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.trustbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trustgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trustitem {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}
.trustitem:last-child {
  border-right: 0;
}
.trustitem strong {
  display: block;
  font-size: 20px;
  color: var(--dark);
}
.trustitem span {
  font-size: 13px;
  color: var(--muted);
}
section {
  padding: 88px 0;
}
.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 8px 0 16px;
  color: var(--dark);
  letter-spacing: -0.025em;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.card .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.12em;
}
.card h3 {
  font-size: 26px;
  line-height: 1.15;
  margin: 12px 0;
}
.card p {
  color: var(--muted);
}
.card a.more {
  margin-top: auto;
  font-weight: 800;
  color: var(--red);
}
.soft {
  background: var(--soft);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.problem {
  background: #fff;
  padding: 28px;
  border-left: 4px solid var(--red);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.problem h3 {
  margin: 0 0 8px;
  font-size: 23px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.visual {
  min-height: 430px;
  background: linear-gradient(145deg, #eceff1, #cfd4d7);
  position: relative;
  overflow: hidden;
}
.visual:before {
  content: "HAIN";
  position: absolute;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.45);
  right: -10px;
  bottom: -35px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 28px;
}
.metric {
  padding: 22px;
  background: var(--soft);
}
.metric strong {
  display: block;
  font-size: 31px;
  color: var(--red);
}
.quote {
  background: var(--dark);
  color: #fff;
  padding: 56px;
}
.quote blockquote {
  font-size: 25px;
  line-height: 1.4;
  margin: 0 0 22px;
}
.quote cite {
  font-style: normal;
  color: #cfd4d7;
}
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.step {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}
.step:last-child {
  border-right: 0;
}
.step b {
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.cta {
  background: var(--red);
  color: #fff;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.cta h2 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 15px;
}
.form {
  background: #fff;
  padding: 28px;
  color: var(--ink);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #cfd5d8;
  font: inherit;
}
.form textarea {
  grid-column: 1/-1;
  min-height: 100px;
}
.form .full {
  grid-column: 1/-1;
}
.form small {
  display: block;
  color: var(--muted);
  margin: 10px 0;
}
.form-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.footer {
  background: #151a1e;
  color: #d8dde0;
  padding: 55px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer h4 {
  color: #fff;
}
.footer a {
  display: block;
  margin: 8px 0;
  color: #c1c7ca;
}
.footer a:hover {
  color: #fff;
}
.copyright {
  border-top: 1px solid #30363b;
  margin-top: 35px;
  padding-top: 20px;
  color: #899197;
  font-size: 13px;
}
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--dark);
  color: #fff;
  padding: 90px 0;
  overflow: hidden;
}
.page-hero.has-image {
  background-image:
    linear-gradient(
      90deg,
      rgba(18, 23, 27, 0.91) 0%,
      rgba(18, 23, 27, 0.76) 52%,
      rgba(18, 23, 27, 0.34) 100%
    ),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}
.page-hero p {
  font-size: 20px;
  color: #eef0f1;
  max-width: 760px;
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-box {
  padding: 28px;
  background: var(--soft);
  border-top: 4px solid var(--red);
}
.service-box h3 {
  margin-top: 0;
  font-size: 22px;
}
.bullets {
  padding: 0;
  list-style: none;
}
.bullets li {
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.bullets li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
}
.mobilebar {
  display: none;
}
.notice {
  background: #fff3cd;
  border: 1px solid #ffe69c;
  padding: 14px 16px;
  font-size: 14px;
  margin-top: 18px;
}
.legal {
  max-width: 850px;
}
.legal h2 {
  margin-top: 35px;
}
.tag {
  display: inline-block;
  padding: 6px 10px;
  background: #eef0f1;
  font-size: 12px;
  font-weight: 800;
  margin: 0 8px 8px 0;
}
.refs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ref {
  border: 1px solid var(--line);
  padding: 26px;
}
.ref strong {
  display: block;
  margin-top: 15px;
}
.ref p {
  color: var(--muted);
}
@media (max-width: 980px) {
  .menu {
    display: none;
  }
  .trustgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards,
  .service-grid,
  .refs {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .step:nth-child(3) {
    border-right: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobilebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
  }
  .mobilebar a {
    padding: 13px;
    text-align: center;
    font-weight: 800;
    color: #fff;
  }
  .mobilebar a:first-child {
    background: var(--dark);
  }
  .mobilebar a:last-child {
    background: var(--red);
  }
}
@media (max-width: 1180px) and (min-width: 981px) {
  .menu {
    gap: 12px;
    font-size: 12px;
  }
  .header-actions {
    gap: 7px;
  }
  .header-actions .btn {
    padding: 11px 12px;
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }
  .topbar {
    display: none;
  }
  .nav {
    min-height: 68px;
  }
  .brand {
    font-size: 22px;
  }
  .lion {
    width: 38px;
    height: 38px;
  }
  .header .btn {
    padding: 10px 12px;
    font-size: 13px;
  }
  .header-actions .btn-phone {
    display: none;
  }
  .hero {
    min-height: 570px;
  }
  .hero .content {
    padding: 70px 0;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero p {
    font-size: 18px;
  }
  .trustgrid,
  .cards,
  .problem-grid,
  .service-grid,
  .refs,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .trustitem {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  section {
    padding: 65px 0;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .step {
    border-bottom: 1px solid var(--line);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form textarea,
  .form .full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta h2 {
    font-size: 34px;
  }
}
/* V2: original HAIN branding and reference projects */
.brand-logo {
  display: flex;
  align-items: center;
  min-width: 118px;
}
.brand-logo img {
  display: block;
  width: 118px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}
.footer-logo img {
  width: 145px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.ref-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.ref-card {
  display: block;
  padding: 0 !important;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e8e8e8;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}
.ref-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.ref-card-body {
  padding: 24px;
}
.ref-card-body h3 {
  margin: 10px 0;
}
.ref-card-body strong {
  color: #d71920;
}
.reference-hero {
  position: relative;
  height: min(62vh, 620px);
  min-height: 420px;
  overflow: hidden;
  background: #222;
}
.reference-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reference-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.12));
}
.reference-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 70px 0;
  color: #fff;
}
.reference-overlay h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  max-width: 900px;
  margin: 12px 0;
}
.reference-overlay p {
  font-size: 22px;
  max-width: 700px;
}
.ref-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.7fr);
  gap: 70px;
  align-items: start;
}
.ref-detail-grid h2 {
  font-size: 44px;
  line-height: 1.08;
}
.lead-copy {
  font-size: 21px;
  line-height: 1.65;
}
.ref-aside {
  position: sticky;
  top: 120px;
  padding: 32px;
  background: #f3f3f1;
}
.ref-aside .btn {
  margin: 12px 0 18px;
}
.source-link {
  display: block;
  margin-top: 8px;
}
.ref-quote {
  margin-top: 36px;
}
.ref-quote blockquote {
  font-size: 28px;
}
.menu a {
  white-space: nowrap;
}
@media (max-width: 1080px) {
  .ref-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ref-detail-grid {
    grid-template-columns: 1fr;
  }
  .ref-aside {
    position: static;
  }
  .brand-logo img {
    width: 104px;
  }
}
@media (max-width: 720px) {
  .ref-cards {
    grid-template-columns: 1fr;
  }
  .ref-card img {
    height: 215px;
  }
  .reference-hero {
    height: 500px;
  }
  .reference-overlay {
    padding: 42px 0;
  }
  .reference-overlay p {
    font-size: 18px;
  }
  .ref-detail-grid h2 {
    font-size: 34px;
  }
  .footer-logo img {
    width: 125px;
  }
}

/* Team / Unsere Löwen */
.team-section {
  padding-top: 72px;
  padding-bottom: 88px;
}
.team-group {
  margin-top: 48px;
}
.team-group-title {
  font-size: 24px;
  margin: 0 0 20px;
  color: #222;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.team-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #eee;
}
.team-body {
  padding: 22px;
}
.team-body h4 {
  font-size: 25px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.team-role {
  font-weight: 600;
  min-height: 48px;
  margin: 0 0 16px;
  color: #555;
}
.team-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.team-contact a {
  color: #222;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.team-contact a:hover {
  color: #c50018;
}
.team-profile {
  padding-top: 18px;
  border-top: 1px solid #e8e8e8;
}
.team-profile-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #777;
  margin-bottom: 12px;
}
.team-profile img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #f4f4f4;
}
@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-group {
    margin-top: 36px;
  }
  .team-role {
    min-height: 0;
  }
}

.form-status {
  margin: 1.25rem 0;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
}
.form-status:empty {
  display: none;
}
.form-status.success {
  background: #edf7ee;
  border: 1px solid #b7ddb9;
}
.form-status.error {
  background: #fff0f0;
  border: 1px solid #e3b0b0;
}

body.popup-open {
  overflow: hidden;
}
.mail-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.mail-popup.is-visible {
  display: flex;
}
.mail-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
}
.mail-popup__box {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 34px 30px 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  text-align: center;
}
.mail-popup__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.mail-popup__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 34px;
  font-weight: 700;
  background: #eef6ef;
}
.mail-popup.is-error .mail-popup__icon {
  background: #fff1f1;
}
.mail-popup__box h2 {
  margin: 0 0 10px;
}
.mail-popup__box p {
  margin: 0 0 22px;
}

.service-box-link {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.service-box-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.09);
  border-color: #9c1b2b;
}
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #9c1b2b;
}
.detail-hero {
  padding-bottom: 72px;
}
.lead-copy {
  font-size: 18px;
  line-height: 1.75;
}
.detail-panel {
  background: #f5f2ef;
  border-radius: 18px;
  padding: 32px;
  align-self: start;
}
.detail-panel h3 {
  font-size: 28px;
  line-height: 1.15;
  margin: 8px 0 14px;
}
.text-link {
  font-weight: 700;
  color: #9c1b2b;
}
body.popup-open {
  overflow: hidden;
}
.mail-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.mail-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.62);
}
.mail-popup__box {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 34px 30px 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  text-align: center;
}
.mail-popup__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.mail-popup__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 34px;
  font-weight: 700;
  background: #edf7ee;
}
.mail-popup.is-error .mail-popup__icon {
  background: #fff0f0;
}
.mail-popup__box h2 {
  margin: 0 0 10px;
}
.mail-popup__box p {
  margin: 0 0 22px;
}

.form button[type="submit"],
form button[type="submit"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 18px;
  padding: 14px 24px !important;
  border: 2px solid #8f1727 !important;
  border-radius: 8px !important;
  background: #9c1b2b !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  box-shadow: 0 7px 16px rgba(156, 27, 43, 0.2) !important;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease !important;
}
.form button[type="submit"]:hover,
form button[type="submit"]:hover {
  background: #7f1320 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(156, 27, 43, 0.28) !important;
}
.form button[type="submit"]:focus-visible,
form button[type="submit"]:focus-visible {
  outline: 3px solid rgba(156, 27, 43, 0.28) !important;
  outline-offset: 3px;
}
.mail-error-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #d39aa1;
  border-radius: 8px;
  background: #fff2f3;
  color: #67111d;
  font-weight: 600;
}
.mail-error-notice a {
  color: inherit;
  text-decoration: underline;
}

/* Printing lead magnets */
.print-download-banner {
  padding: 46px 0;
  background: #1d2329;
  color: #fff;
}
.print-download-banner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 48px;
  align-items: center;
}
.print-download-banner h2 {
  max-width: 820px;
  margin: 6px 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}
.print-download-banner p {
  max-width: 760px;
  margin: 0;
  color: #d9dfe2;
  font-size: 18px;
  line-height: 1.65;
}
.print-download-banner__actions {
  display: grid;
  gap: 12px;
}
.print-download-banner__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.download-intro {
  max-width: 820px;
  margin-bottom: 36px;
  font-size: 19px;
  line-height: 1.7;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}
.download-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(19, 28, 35, 0.1);
}
.download-card__visual {
  aspect-ratio: 3 / 2;
  min-height: 230px;
  overflow: hidden;
  background: #eef1f2;
}
.download-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.download-card__content {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.download-card__content h2 {
  margin: 5px 0 12px;
  font-size: 30px;
  line-height: 1.12;
}
.download-card__content p {
  line-height: 1.65;
}
.download-benefits {
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
}
.download-benefits li {
  position: relative;
  margin: 8px 0;
  padding-left: 24px;
}
.download-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.download-form {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.download-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 750;
}
.download-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.download-form input[type="email"] {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #bbc4c9;
  border-radius: 7px;
  font: inherit;
}
.download-form button[type="submit"] {
  margin-top: 0 !important;
  width: 100%;
  white-space: normal;
}
.download-form__privacy {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.download-form__privacy a {
  color: inherit;
  text-decoration: underline;
}
.download-form__consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400 !important;
  line-height: 1.45;
}
.download-form__consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}
.download-form .form-status {
  margin-bottom: 0;
}
.download-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.download-assurance > div {
  padding: 22px;
  border-radius: 12px;
  background: var(--soft);
}
.download-assurance strong {
  display: block;
  margin-bottom: 6px;
}
.download-manual-link {
  display: inline-block;
  margin-top: 2px;
  color: var(--red);
  font-weight: 750;
}
.mail-popup[aria-hidden="true"] {
  display: none;
}
.mail-popup[aria-hidden="false"] {
  display: flex;
}
@media (max-width: 1050px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .print-download-banner__grid,
  .download-card,
  .download-assurance {
    grid-template-columns: 1fr;
  }
  .print-download-banner__actions {
    width: 100%;
  }
  .download-card__visual {
    aspect-ratio: 3 / 2;
    min-height: 0;
  }
  .download-form__row {
    grid-template-columns: 1fr;
  }
  .download-form button[type="submit"] {
    width: 100%;
  }
}
.confirmation-hero {
  padding: 90px 0 82px;
  background: linear-gradient(180deg, #f6f8f5 0%, #fff 100%);
  text-align: center;
}
.confirmation-inner {
  max-width: 850px;
}
.confirmation-check {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7f4e9;
  color: #26723b;
  font-size: 46px;
  font-weight: 800;
  border: 2px solid #b7d9be;
}
.confirmation-hero h1 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.confirmation-lead {
  max-width: 760px;
  margin: 18px auto 28px;
  font-size: 20px;
  line-height: 1.65;
}
.confirmation-hero .actions {
  justify-content: center;
}
.confirmation-team-section {
  padding: 80px 0;
}
.confirm-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.confirm-team-card {
  background: #fff;
  border: 1px solid #e8e2df;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}
.confirm-team-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  background: #f2efed;
}
.confirm-team-card__body {
  padding: 20px;
}
.confirm-team-card__body h3 {
  margin: 0 0 6px;
  font-size: 22px;
}
.confirm-team-card__role {
  min-height: 48px;
  margin: 0 0 15px;
  color: #5f5a57;
  line-height: 1.45;
}
.confirm-team-card__contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.confirm-team-card__contact a {
  color: #8f1727;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.confirm-team-card__contact a:hover {
  text-decoration: underline;
}
@media (max-width: 950px) {
  .confirm-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .confirm-team-grid {
    grid-template-columns: 1fr;
  }
  .confirmation-hero {
    padding: 64px 0;
  }
}
