@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-v24-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-v24-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins-v24-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root{
  --vulcura-red: #e41d37;
  --vulcura-red-dark: #b61428;
  --text-dark: #353535;
  --text-mid: #505050;
  --text-soft: #727272;
  --surface: #ffffff;
  --surface-soft: #f4f4f4;
  --border: #d9d9d9;

  --topbar-bg: #2f2f31;
  --hero-overlay: rgba(20, 16, 14, 0.42);

  --shadow-lg: 0 20px 45px rgba(0,0,0,.16);
  --shadow-md: 0 10px 25px rgba(0,0,0,.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --container: 1280px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: #f1f1f1;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

button,
input,
select{
  font: inherit;
}

.container{
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* Header */
.topbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--topbar-bg);
  color: #fff;
  overflow: visible;
  transition: box-shadow .25s ease;
}

.topbar--scrolled{
  box-shadow: 0 3px 20px rgba(0,0,0,.28);
}

.topbar-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-height: 72px;
  padding: 14px 16px 14px 110px;
}

.brand-badge{
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 40;
  width: 78px;
  height: 110px;
  background: var(--vulcura-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 10px 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: height .28s ease, padding-top .28s ease, padding-bottom .28s ease;
}

.topbar--scrolled .brand-badge{
  height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-badge img{
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.brand-badge-text{
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity .15s ease;
}

.topbar--scrolled .brand-badge-text{
  opacity: 0;
}

.nav-toggle{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  align-self: flex-end;
}

.nav-toggle span{
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
}

.main-nav{
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 10px 0 0;
}

.main-nav.is-open{
  display: flex;
}

.main-nav a{
  color: rgba(255,255,255,.96);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: opacity .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible{
  opacity: .78;
}

.main-nav a:last-child{
  border-bottom: 0;
}

/* Hero */
.hero{
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(135deg, #5b5b5d 0%, #444446 45%, #2f2f31 100%);
}

.hero-bg-image{
  position: absolute;
  inset: 0;
  background: url("/img/hero-banner.webp") center center / cover no-repeat;
  opacity: 0.14;
  z-index: 0;
  transform: scale(1.02);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.04) 0%,
      rgba(0,0,0,.10) 22%,
      rgba(20,16,14,.42) 100%
    );
}

.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 96px 0 128px;
  color: #fff;
}

.hero-kicker{
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .01em;
}

.hero-title{
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: clamp(2rem, 10vw, 5rem);
  max-width: 11ch;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  text-transform: uppercase;
}

.hero-title span{
  display: block;
}

.hero-subline{
  margin: 14px 0 0;
  font-size: clamp(1rem, 4.4vw, 2rem);
  line-height: 1.25;
  font-style: italic;
  max-width: 24ch;
}

.hero-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .btn{
  width: 100%;
}

.hero-mark{
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 2;
  pointer-events: none;
}

.hero-mark img{
  width: clamp(110px, 20vw, 180px);
  height: auto;
  max-height: 120px;
  object-fit: contain;
  opacity: .96;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible{
  transform: translateY(-1px);
}

.btn-primary{
  background: var(--vulcura-red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible{
  background: var(--vulcura-red-dark);
}

.btn-secondary{
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible{
  background: rgba(255,255,255,.22);
}

/* Quick Panel */
.quick-panel{
  position: relative;
  z-index: 5;
  width: min(100% - 40px, var(--container));
  margin: -40px auto 0;
  padding-bottom: 56px;
}

.quick-tabs{
  display: grid;
  grid-template-columns: 1fr;
  background: #f2f2f2;
  border: 1px solid #d5d5d5;
  box-shadow: var(--shadow-lg);
}

.quick-tab{
  min-height: 62px;
  border: 0;
  background: #f2f2f2;
  color: var(--text-mid);
  font-weight: 500;
  font-size: .96rem;
  padding: 16px 18px;
  cursor: pointer;
  border-bottom: 1px solid #d7d7d7;
  transition: background .18s ease, color .18s ease;
}

.quick-tab:last-child{
  border-bottom: 0;
}

.quick-tab.active{
  background: #fff;
  color: var(--text-dark);
  box-shadow: inset 0 -3px 0 var(--vulcura-red);
  font-weight: 600;
}

.quick-content{
  background: #fff;
  border: 1px solid #d7d7d7;
  border-top: 0;
  box-shadow: var(--shadow-lg);
  padding: 18px;
}

.tab-panel{
  display: none;
}

.tab-panel.active{
  display: block;
}

.quick-form{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label{
  font-size: .92rem;
  color: var(--text-mid);
  font-weight: 500;
}

.form-group input,
.form-group select{
  min-height: 48px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: var(--text-dark);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus{
  outline: 2px solid rgba(228,29,55,.22);
  border-color: var(--vulcura-red);
}

.btn-submit{
  width: 100%;
}

.info-box{
  padding: 10px 4px 4px;
}

.info-box h2{
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.info-box p{
  margin: 0 0 20px;
  color: var(--text-mid);
  max-width: 780px;
  line-height: 1.7;
}

/* Sections */
.content-strip{
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
  padding: 24px 16px 80px;
}

.content-strip-white{
  background: #ffffff;
}

.two-col{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.section-label{
  margin: 0 0 8px;
  color: var(--vulcura-red);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .85rem;
}

.content-strip h2{
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.05;
}

.content-strip p{
  margin: 0;
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 1rem;
}

.lead{
  margin-bottom: 14px !important;
  color: var(--text-dark) !important;
}

.feature-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-md);
}

.feature-card h3{
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card ul{
  margin: 0;
  padding-left: 18px;
  color: var(--text-mid);
  line-height: 1.9;
}

.feature-btn{
  margin-top: 18px;
  width: 100%;
}

.contact-box{
  margin-top: 20px;
}

.about-network-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.about-network-card .mini-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e41d37;
}

.about-network-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.network-points {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.network-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: #f7f7f7;
}

.network-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.network-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.network-point p {
  margin: 0;
  color: #505050;
  line-height: 1.55;
}

.about-highlights {
  margin: 0;
  padding-left: 18px;
  color: #353535;
}

.about-highlights li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .about-network-card {
    margin-top: 24px;
    padding: 22px;
  }

  .network-point {
    grid-template-columns: 48px 1fr;
  }

  .network-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.15rem;
  }
}



/* Tablet */
@media (min-width: 700px){
  .topbar-inner{
    padding: 14px 24px 16px 126px;
  }

  .brand-badge{
    left: 24px;
    width: 88px;
    height: 122px;
    padding: 16px 11px;
  }

  .topbar--scrolled .brand-badge{
    height: 72px;
  }

  .brand-badge img{
    max-height: 70px;
  }

  .main-nav{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    padding-top: 12px;
  }

  .main-nav a{
    border-bottom: 0;
    padding: 8px 0;
    font-size: .8rem;
  }

  .nav-toggle{
    display: none;
  }

  .hero{
    min-height: 700px;
  }

  .hero-content{
    padding: 100px 24px 140px;
  }

  .hero-actions{
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn{
    width: auto;
  }

  .quick-tabs{
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-tab{
    border-bottom: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
  }

  .quick-tab:nth-child(2n){
    border-right: 0;
  }

  .quick-form{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1100px){
  .topbar{
    position: sticky;
    overflow: visible;
  }

  .topbar--scrolled .brand-badge{
    height: 84px;
  }

  .topbar-inner{
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 84px;
    display: block;
    padding: 0 40px 0 300px;
    overflow: visible;
  }

  .nav-toggle{
    display: none;
  }

  .main-nav{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 84px;
    gap: clamp(26px, 2vw, 52px);
    flex-wrap: nowrap;
    padding-top: 0;
  }

  .main-nav a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-align: center;
    white-space: nowrap;
    padding: 0;
  }

  .brand-badge{
    position: absolute;
    left: 128px;
    top: 0;
    z-index: 40;
    width: 136px;
    height: 156px;
    padding: 18px 16px 14px;
    background: var(--vulcura-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    overflow: hidden;
    transition: height .28s ease, padding-top .28s ease, padding-bottom .28s ease;
  }

  .topbar--scrolled .brand-badge{
    height: 84px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-badge img{
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 78px;
    object-fit: contain;
    margin-top: 0;
  }

  .brand-badge-text{
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1;
  }

  .hero{
    min-height: calc(100svh - 84px);
    align-items: center;
  }

  .hero-content{
    max-width: var(--container);
    margin: 0 auto;
    padding: 128px 24px 160px;
  }

  .hero-title{
    max-width: 780px;
  }

  .hero-subline{
    max-width: 760px;
  }

  .hero-mark{
    right: 6%;
    top: 108px;
  }

  .hero-mark img{
    width: 220px;
    max-height: 140px;
  }

  .quick-panel{
    margin-top: -48px;
    padding: 0 24px 70px;
  }

  .quick-tabs{
    grid-template-columns: repeat(4, 1fr);
  }

  .quick-tab{
    min-height: 72px;
    border-bottom: 0;
  }

  .quick-tab:nth-child(2n){
    border-right: 1px solid #d7d7d7;
  }

  .quick-tab:last-child{
    border-right: 0;
  }

  .quick-form{
    grid-template-columns: repeat(5, 1fr);
  }

  .two-col{
    grid-template-columns: 1.3fr .9fr;
    gap: 28px;
  }

  .content-strip{
    padding: 24px 24px 90px;
  }
}

@media (max-width: 480px){
  .container{
    width: min(100% - 44px, var(--container));
  }

  .quick-panel{
    width: min(100% - 44px, var(--container));
  }

  .hero-subline{
    max-width: 24ch;
  }

  .btn{
    min-height: 52px;
  }

  .feature-card{
    padding: 24px 20px;
  }
}

.impact-section{
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
  padding: 28px 16px 84px;
}

.impact-intro{
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--text-mid);
  line-height: 1.8;
}

.impact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.gear-panel,
.chart-panel{
  min-width: 0;
}

.gear-stage{
  position: relative;
  min-height: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.gear{
  position: absolute;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.gear:hover,
.gear:focus-visible{
  transform: scale(1.03);
  outline: none;
}

.gear::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--vulcura-red);
  clip-path: polygon(
    43% 0%, 57% 0%, 61% 8%, 70% 5%, 78% 12%, 86% 9%, 91% 17%, 88% 26%,
    95% 34%, 100% 43%, 100% 57%, 92% 61%, 95% 70%, 88% 78%, 91% 86%, 83% 91%,
    74% 88%, 66% 95%, 57% 100%, 43% 100%, 39% 92%, 30% 95%, 22% 88%, 14% 91%,
    9% 83%, 12% 74%, 5% 66%, 0% 57%, 0% 43%, 8% 39%, 5% 30%, 12% 22%, 9% 14%,
    17% 9%, 26% 12%, 34% 5%, 43% 8%
  );
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.12);
}

.gear.is-active::before{
  filter: brightness(1.02);
}

.gear-large{
  width: 190px;
  height: 190px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gear-small{
  width: 128px;
  height: 128px;
}

.gear-top{
  left: 16%;
  top: 18%;
}

.gear-bottom{
  right: 14%;
  bottom: 14%;
}

.gear-core{
  position: absolute;
  inset: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  line-height: 1.1;
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.impact-copy-card{
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.impact-copy-label{
  margin: 0 0 6px;
  color: var(--vulcura-red);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.impact-copy-card h3{
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.impact-copy-card p{
  margin: 0;
  color: var(--text-mid);
  line-height: 1.75;
}

.chart-card-simple{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px 18px;
  box-shadow: var(--shadow-md);
}

.chart-head h3{
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.chart-head p{
  margin: 0 0 18px;
  color: var(--text-mid);
  line-height: 1.7;
}

.simple-chart-wrap{
  width: 100%;
  overflow-x: auto;
}

.simple-chart{
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
}

.grid-line{
  stroke: #e8e8e8;
  stroke-width: 1;
}

.axis-line{
  stroke: #8b8b8b;
  stroke-width: 1.5;
}

.axis-label{
  fill: #666;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.axis-title{
  fill: #444;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.area-light{
  fill: rgba(217,217,217,.28);
}

.curve-red{
  fill: none;
  stroke: var(--vulcura-red);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.curve-light{
  fill: none;
  stroke: #d7d7d7;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dot-red{
  fill: var(--vulcura-red);
}

.dot-light{
  fill: #d7d7d7;
}

.chart-callout{
  opacity: 1;
}

.callout-anchor{
  fill: #d7d7d7;
}

.callout-anchor-red{
  fill: var(--vulcura-red);
}

.callout-box{
  fill: #f5f5f5;
  stroke: #e3e3e3;
  stroke-width: 1;
}

.callout-box-red{
  fill: rgba(228,29,55,.07);
  stroke: rgba(228,29,55,.18);
}

.callout-text{
  fill: #555;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.callout-text-red{
  fill: #9a1a2d;
}

.chart-legend-simple{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.legend-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.legend-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot-red{
  background: var(--vulcura-red);
}

.legend-dot-light{
  background: #d9d9d9;
}

.chart-note{
  margin: 16px 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-soft);
}

@media (min-width: 900px){
  .impact-grid{
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
  }

  .gear-stage{
    min-height: 420px;
  }

  .gear-large{
    width: 240px;
    height: 240px;
  }

  .gear-small{
    width: 156px;
    height: 156px;
  }

  .gear-top{
    left: 12%;
    top: 12%;
  }

  .gear-bottom{
    right: 11%;
    bottom: 11%;
  }

  .gear-core{
    font-size: 1rem;
  }

  .chart-card-simple{
    padding: 26px 24px 20px;
  }
}

/* ===== Subpage Hero | Option A ===== */
body.subpage{
  background: #f1f1f1;
}

body.subpage .page-hero{
  padding-top: 90px;
}

body.subpage .brand-badge{
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

.page-hero{
  position: relative;
  overflow: hidden;
  padding: 42px 0 52px;
}

.page-hero-light{
  background:
    radial-gradient(circle at top right, rgba(228,29,55,.08), transparent 28%),
    linear-gradient(180deg, #f7f7f8 0%, #f2f2f3 100%);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.16) 0,
      rgba(255,255,255,.16) 1px,
      transparent 1px,
      transparent 18px
    );
  opacity: .35;
  pointer-events: none;
}

.page-hero-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.page-hero-copy{
  max-width: 760px;
}

.page-hero-kicker{
  margin: 0 0 14px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vulcura-red);
}

.page-hero h1{
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: .98;
  letter-spacing: -0.03em;
}

.page-hero-text{
  margin: 20px 0 0;
  max-width: 860px;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.65;
  color: var(--text-mid);
}

.page-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-hero-actions .btn{
  min-width: 220px;
}

.page-hero-btn-secondary{
  background: rgba(53,53,53,.06);
  color: var(--text-dark);
  border-color: rgba(53,53,53,.12);
  backdrop-filter: none;
}

.page-hero-btn-secondary:hover,
.page-hero-btn-secondary:focus-visible{
  background: rgba(53,53,53,.11);
}

.page-hero-media{
  display: flex;
}

.page-hero-visual{
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(18,24,33,.08);
}

.page-hero-img,
.image-placeholder-hero{
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  display: block;
}

.page-hero-img{
  object-fit: cover;
}

.image-placeholder-hero{
  min-height: 0;
  border: 1px dashed rgba(228,29,55,.35);
  background:
    linear-gradient(135deg, rgba(228,29,55,.07), rgba(255,255,255,.96)),
    linear-gradient(180deg, #fafafb 0%, #f0f1f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.image-placeholder-hero span{
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.6;
}

.page-intro-grid,
.page-split-highlight{
  align-items: center;
}

.section-head-narrow{
  max-width: 860px;
  margin-bottom: 30px;
}

.service-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

.service-grid .feature-card p{
  margin: 0;
  line-height: 1.8;
  color: var(--text-mid);
}

.steps-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.step-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
}

.step-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: rgba(228,29,55,.08);
  color: var(--vulcura-red);
  font-weight: 700;
}

.step-card h3{
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.step-card p{
  margin: 0;
  color: var(--text-mid);
  line-height: 1.75;
}

.cost-calculator{
  padding: 24px 20px;
}

.cost-calculator h3{
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.cost-calculator-intro{
  margin: 0 0 20px !important;
  color: var(--text-mid) !important;
}

.cost-calculator-controls{
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.cost-control-label{
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cost-range{
  width: 100%;
  accent-color: var(--vulcura-red);
}

.cost-range-out{
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(228,29,55,.25);
  background: rgba(228,29,55,.08);
  color: var(--vulcura-red) !important;
  font-weight: 700;
  width: fit-content;
}

.cost-manual-toggle{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cost-manual-toggle label{
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.cost-manual-toggle input{
  width: 18px;
  height: 18px;
  accent-color: var(--vulcura-red);
}

.cost-manual-inputs{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.cost-manual-inputs.is-hidden{
  display: none;
}

.cost-input-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.cost-input-card h4{
  margin: 0 0 10px;
}

.cost-input-card label{
  display: block;
  margin: 0 0 6px;
  font-size: .82rem;
  color: var(--text-mid);
}

.cost-input-card input{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font: inherit;
}

.cost-results{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cost-result-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

.cost-result-card h4{
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.cost-result-meta{
  margin: 0 0 12px !important;
  color: var(--text-soft) !important;
  font-size: .92rem !important;
}

.cost-kpis{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cost-kpi{
  border: 1px dashed rgba(228,29,55,.25);
  border-radius: 12px;
  padding: 10px;
  background: rgba(228,29,55,.03);
}

.cost-kpi-label{
  margin: 0 0 4px !important;
  font-size: .8rem !important;
  color: var(--text-soft) !important;
}

.cost-kpi-value{
  margin: 0 !important;
  color: var(--text-dark) !important;
  font-weight: 700;
  font-size: 1.2rem !important;
}

.cost-calculator-note,
.cost-noscript{
  margin-top: 14px !important;
  font-size: .9rem !important;
  color: var(--text-soft) !important;
}

.media-card{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-placeholder{
  border: 1px dashed rgba(228,29,55,.38);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(228,29,55,.07), rgba(255,255,255,.95));
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.image-placeholder span{
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.6;
}

.image-placeholder-tall{
  min-height: 420px;
}

.media-caption{
  margin: 0;
  font-size: .92rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.cta-panel{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}

.cta-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-secondary-dark{
  background: #353535;
  border-color: #353535;
  color: #fff;
}

.btn-secondary-dark:hover,
.btn-secondary-dark:focus-visible{
  background: #2a2a2a;
}

.site-footer{
  background: #2f2f31;
  color: #fff;
  padding: 52px 0 40px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer-brand,
.footer-title{
  margin: 0 0 10px;
  font-weight: 700;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li{
  margin-top: 8px;
}

.site-footer a{
  color: rgba(255,255,255,.92);
}

.site-footer a:hover,
.site-footer a:focus-visible{
  color: #fff;
}

@media (min-width: 700px){
  .service-grid,
  .steps-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions{
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 701px) and (max-width: 1099px){
  .page-intro-grid,
  .page-split-highlight{
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: 24px;
    align-items: start;
  }

  .feature-card,
  .step-card{
    padding: 24px 20px;
  }

  .cost-calculator{
    padding: 28px 24px;
  }

  .cost-calculator-controls{
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "label output"
      "range range"
      "toggle toggle";
    column-gap: 18px;
    row-gap: 12px;
    align-items: center;
  }

  .cost-control-label{
    grid-area: label;
  }

  .cost-range{
    grid-area: range;
  }

  .cost-range-out{
    grid-area: output;
  }

  .cost-range-out{
    justify-self: end;
  }

  .cost-manual-toggle{
    grid-area: toggle;
  }

  .cost-manual-inputs,
  .cost-results{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cost-manual-inputs .cost-input-card:last-child,
  .cost-results .cost-result-card:last-child{
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) and (max-width: 1099px){
  .page-hero-inner{
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 32px;
    align-items: center;
  }

  .page-hero-actions .btn{
    min-width: 0;
    flex: 1 1 220px;
  }

  .cta-panel{
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
    padding: 32px 28px;
  }

  .cta-actions .btn{
    flex: 1 1 220px;
  }
}

@media (min-width: 980px){
  .page-hero{
    padding: 58px 0 64px;
  }

  .page-hero-inner{
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    gap: 40px;
  }
}

@media (min-width: 1100px){
  body.subpage .brand-badge{
    left: 112px;
    width: 128px;
    height: 148px;
    padding: 16px 14px 12px;
  }

  body.subpage .brand-badge img{
    max-height: 72px;
  }

  body.subpage .brand-badge-text{
    font-size: 0.88rem;
  }

  .service-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .cost-calculator{
    padding: 30px 28px;
  }

  .cost-manual-inputs{
    grid-template-columns: repeat(3, 1fr);
  }

  .cost-results{
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid{
    grid-template-columns: 1.2fr .9fr .8fr;
  }

  .cta-panel{
    grid-template-columns: 1.3fr .8fr;
    padding: 34px 32px;
  }
}

@media (max-width: 700px){
  .page-hero{
    padding: 34px 0 42px;
  }

  .page-hero h1{
    max-width: 100%;
  }

  .page-hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-actions .btn{
    width: 100%;
    min-width: 0;
  }

  .page-hero-visual{
    max-width: none;
    padding: 10px;
    border-radius: 20px;
  }

  .page-hero-img,
  .image-placeholder-hero{
    border-radius: 16px;
  }
}

/* ===== Karriere ===== */
.jobs-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:28px;
}

.job-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px 22px;
  box-shadow:var(--shadow-md);
  display:flex;
  flex-direction:column;
  height:100%;
}

.job-card-head{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:14px;
}

.job-card-meta,
.job-meta{
  margin:0;
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--vulcura-red);
}

.job-card h3{
  margin:0;
  font-size:1.28rem;
  line-height:1.25;
}

.job-card-head p,
.job-intro{
  margin:0;
  color:var(--text-mid);
  line-height:1.75;
}

.job-card-list,
.job-list{
  margin:0;
  padding-left:20px;
  color:var(--text-mid);
  line-height:1.7;
}

.job-card-list li + li,
.job-list li + li{
  margin-top:8px;
}

.job-card-actions,
.job-actions{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.job-card-actions .btn,
.job-actions .btn{
  width:100%;
}

.application-box{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  align-items:center;
  background:linear-gradient(135deg, #353535 0%, #2a2a2a 100%);
  color:#fff;
  border-radius:24px;
  padding:32px 24px;
  box-shadow:var(--shadow-md);
}

.application-box .section-label{
  color:rgba(255,255,255,.72);
}

.application-box h2{
  color:#fff;
}

.application-box p{
  color:rgba(255,255,255,.88);
}

.application-box-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.application-box-actions .btn-secondary{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.16);
  color:#fff;
}

.application-box-actions .btn-secondary:hover,
.application-box-actions .btn-secondary:focus-visible{
  background:rgba(255,255,255,.14);
}

@media (min-width:700px){
  .jobs-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .job-card-actions,
  .job-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .job-card-actions .btn,
  .job-actions .btn{
    width:auto;
  }

  .application-box-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }
}

@media (min-width:1100px){
  .jobs-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .application-box{
    grid-template-columns:1.2fr .8fr;
    padding:38px 34px;
  }
}

/* ===== Job Modal ===== */
body.modal-open{
  overflow:hidden;
}

.job-modal{
  position:fixed;
  inset:0;
  z-index:3000;
  display:none;
}

.job-modal.is-open{
  display:block;
}

.job-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(17,18,20,.62);
  backdrop-filter:blur(4px);
}

.job-modal-dialog{
  position:relative;
  z-index:1;
  width:min(1120px, calc(100% - 32px));
  max-height:calc(100vh - 32px);
  margin:16px auto;
  overflow:auto;
  background:#fff;
  border-radius:24px;
  box-shadow:0 24px 80px rgba(0,0,0,.22);
}

.job-modal-close{
  position:sticky;
  top:14px;
  left:calc(100% - 58px);
  z-index:3;
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:rgba(53,53,53,.92);
  color:#fff;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  margin:14px 14px 0 auto;
  display:grid;
  place-items:center;
}

.job-modal-body{
  padding:8px 20px 28px;
}

.job-modal-content{
  display:grid;
  gap:18px;
}

.job-modal-hero{
  margin-bottom:6px;
}

.job-modal-hero-image,
.job-modal-hero-img{
  width:100%;
  aspect-ratio:3 / 2;
  object-fit:cover;
  border-radius:20px;
  display:block;
}

.job-modal-section{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px 20px;
  box-shadow:var(--shadow-md);
}

.job-modal-section h2{
  margin:8px 0 12px;
  font-size:clamp(1.9rem, 4vw, 3rem);
  line-height:1.02;
  letter-spacing:-0.03em;
}

.job-modal-section h3{
  margin:0 0 12px;
  font-size:1.15rem;
}

.job-modal-section p{
  margin:0;
  line-height:1.8;
  color:var(--text-mid);
}

.job-modal-section p + p{
  margin-top:12px;
}

.job-modal-section ul,
.job-detail-list{
  margin:0;
  padding-left:20px;
  color:var(--text-mid);
  line-height:1.75;
}

.job-modal-section li + li,
.job-detail-list li + li{
  margin-top:8px;
}

.job-modal-gallery{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:6px;
}

.job-modal-gallery-image,
.job-modal-gallery-img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  border-radius:18px;
  display:block;
  border:1px solid rgba(0,0,0,.05);
}

.job-card-actions,
.job-modal-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.job-card-actions .btn,
.job-modal-actions .btn{
  width:100%;
}

@media (min-width:900px){
  .job-modal-body{
    padding:8px 28px 34px;
  }

  .job-modal-gallery{
    grid-template-columns:repeat(2, 1fr);
  }

  .job-card-actions,
  .job-modal-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .job-card-actions .btn,
  .job-modal-actions .btn{
    width:auto;
  }
}

.legal-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.legal-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
}

.legal-card h2{
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li{
  color: var(--text-mid);
  line-height: 1.8;
}

.legal-card ul{
  margin: 0;
  padding-left: 20px;
}

.legal-card-wide{
  grid-column: 1 / -1;
}

@media (min-width: 900px){
  .legal-layout{
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-link-button{
  appearance:none;
  background:none;
  border:0;
  padding:0;
  color:inherit;
  font:inherit;
  cursor:pointer;
  text-decoration:underline;
}

.footer-link-button:hover,
.footer-link-button:focus-visible{
  opacity:.8;
}

.cookie-banner[hidden],
.cookie-modal[hidden]{
  display:none !important;
}

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  padding:14px;
  background:rgba(20,20,20,.96);
  color:#fff;
  box-shadow:0 -10px 30px rgba(0,0,0,.18);
}

.cookie-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  gap:16px;
  align-items:start;
}

.cookie-copy{
  min-width:0;
}

.cookie-copy p{
  margin:0;
}

.cookie-title{
  font-weight:700;
  margin:0 0 8px !important;
}

.cookie-banner a{
  color:inherit;
  text-decoration:underline;
}

.cookie-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.cookie-actions .btn{
  width:100%;
  justify-content:center;
}

.cookie-modal{
  position:fixed;
  inset:0;
  z-index:10000;
}

.cookie-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.cookie-modal-dialog{
  position:relative;
  width:min(100% - 24px, 760px);
  max-height:calc(100dvh - 24px);
  margin:12px auto;
  background:#fff;
  color:#111;
  border-radius:18px;
  padding:18px;
  z-index:2;
  box-shadow:0 18px 60px rgba(0,0,0,.2);
  overflow:auto;
}

.cookie-modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.cookie-modal-head h2{
  margin:0;
  font-size:clamp(1.25rem, 2vw, 1.6rem);
  line-height:1.2;
}

.cookie-modal-close{
  appearance:none;
  border:0;
  background:none;
  font-size:32px;
  line-height:1;
  cursor:pointer;
  padding:0;
  flex:0 0 auto;
}

.cookie-modal-body{
  display:grid;
  gap:14px;
}

.cookie-option{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  padding:14px 0;
  border-top:1px solid rgba(0,0,0,.08);
}

.cookie-option:first-child{
  border-top:0;
}

.cookie-option-title{
  margin:0 0 6px;
  font-weight:700;
}

.cookie-option-text{
  margin:0;
}

.cookie-option input[type="checkbox"]{
  width:20px;
  height:20px;
}

.cookie-modal-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:22px;
}

.cookie-modal-actions .btn{
  width:100%;
  justify-content:center;
}

.consent-modal-open{
  overflow:hidden;
}

.embed-consent-card{
  padding:24px;
  border:1px solid rgba(0,0,0,.1);
  border-radius:18px;
  background:#f7f7f7;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

@media (min-width: 700px){
  .cookie-banner{
    padding:18px;
  }

  .cookie-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .cookie-actions .btn{
    width:auto;
  }

  .cookie-modal-dialog{
    padding:24px;
    margin:5vh auto;
    max-height:90vh;
  }

  .cookie-option{
    grid-template-columns:1fr auto;
    align-items:start;
    gap:18px;
  }

  .cookie-modal-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .cookie-modal-actions .btn{
    width:auto;
  }
}

@media (min-width: 960px){
  .cookie-inner{
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
  }

  .cookie-actions{
    justify-content:flex-end;
  }
}
.contact-form-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
}

.contact-form-card .form-group + .form-group{
  margin-top: 16px;
}

.contact-form-card label{
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

.contact-form-card textarea{
  resize: vertical;
}

.form-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input{
  width: auto;
  margin-top: 4px;
}

.form-check label{
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}

.footer-link-button{
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.footer-link-button:hover,
.footer-link-button:focus-visible{
  opacity: .8;
}

.quick-request-intro {
  margin-bottom: 20px;
}

.quick-request-intro h2 {
  margin-bottom: 10px;
}

.quick-form-note {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-errors ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
}

.contact-summary {
  margin: 0;
  padding-left: 18px;
}

.contact-summary li + li {
  margin-top: 8px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border: 2px solid #c62828;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08);
  background: #fff8f8;
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
  border-color: #b71c1c;
  box-shadow: 0 0 0 4px rgba(183, 28, 28, 0.14);
  outline: none;
}

.checkbox-group.has-error {
  border: 2px solid #c62828;
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff8f8;
}

.field-error {
  margin: 8px 0 0;
  color: #b71c1c;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
}

.form-errors {
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 2px solid #c62828;
  border-radius: 16px;
  background: #fff5f5;
  color: #7f1d1d;
}

.form-errors p {
  margin: 0 0 8px;
}

.form-errors ul {
  margin: 0;
  padding-left: 18px;
}

.form-check.has-error {
  border: 2px solid #c62828;
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff8f8;
}

.form-success {
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 2px solid #2e7d32;
  border-radius: 16px;
  background: #f4fbf4;
  color: #1b5e20;
}

.form-success p {
  margin: 0;
}

.video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #d9d9d9;
}

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #353535;
}

/* ===== Netzwerk Flow Section ===== */

.network-flow {
  position: relative;
  margin-top: 40px;
}

/* Linie */
.flow-lines {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}

.flow-lines path {
  stroke: var(--vulcura-red);
  stroke-width: 3;
  fill: none;
  opacity: 0.25;
}

/* Cards darüber legen */
.flow-grid {
  position: relative;
  z-index: 1;
}

/* Icon Styling */
.role-card {
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.role-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(228,29,55,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

@media (max-width: 768px){
  .flow-lines {
    display: none;
  }
}

.highlight-checklist {
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.highlight-checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 500;
}

.highlight-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(228,29,55,0.12);
  color: var(--vulcura-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ===== Verlauf der Versorgung ===== */

.impact-grid-single {
  display: grid;
  grid-template-columns: 1fr;
}

.chart-card-simple {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.chart-head h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.chart-head p {
  margin: 0 0 16px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 760px;
}

.impact-chart-lead {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.6;
}

.impact-visual-switch {
  margin-top: 8px;
}

.impact-desktop-chart {
  display: block;
}

.impact-mobile-compare {
  display: none;
}

.simple-chart-wrap {
  width: 100%;
  overflow: hidden;
}

.chart-healing {
  display: block;
  width: 100%;
  height: auto;
}

/* Chart elements */
.grid-line {
  stroke: #e8e8e8;
  stroke-width: 1;
}

.axis-line {
  stroke: #8b8b8b;
  stroke-width: 1.5;
}

.axis-label {
  fill: #666;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}

.axis-title {
  fill: #444;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.area-light {
  fill: rgba(217, 217, 217, 0.25);
}

.curve-red {
  fill: none;
  stroke: var(--vulcura-red);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.curve-light {
  fill: none;
  stroke: #cfcfcf;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dot-red {
  fill: var(--vulcura-red);
}

.dot-light {
  fill: #cfcfcf;
}

.chart-callout {
  opacity: 1;
}

.callout-anchor {
  fill: #cfcfcf;
}

.callout-anchor-red {
  fill: var(--vulcura-red);
}

.callout-box {
  fill: #f5f5f5;
  stroke: #e3e3e3;
  stroke-width: 1;
}

.callout-box-red {
  fill: rgba(228, 29, 55, 0.08);
  stroke: rgba(228, 29, 55, 0.25);
}

.callout-text {
  fill: #555;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.callout-text-red {
  fill: #9a1a2d;
}

/* Legend */
.chart-legend-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.legend-dot-red {
  background: var(--vulcura-red);
}

.legend-dot-light {
  background: #d9d9d9;
}

/* Mobile compare */
.mobile-compare-card {
  background: #f7f7f7;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 16px;
}

.mobile-compare-card + .mobile-compare-card {
  margin-top: 14px;
}

.mobile-compare-card-red {
  background: linear-gradient(180deg, rgba(228,29,55,.04) 0%, #ffffff 100%);
}

.mobile-compare-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-compare-head h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
}

.mobile-compare-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.mobile-compare-dot-red {
  background: var(--vulcura-red);
}

.mobile-compare-dot-grey {
  background: #cfcfcf;
}

.mobile-compare-track {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
}

.mobile-compare-stage {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-dark);
}

.mobile-compare-stage-top,
.mobile-compare-stage-bottom {
  font-weight: 600;
}

.mobile-compare-line {
  position: relative;
  width: 4px;
  border-radius: 999px;
  margin: 10px 0;
}

.mobile-compare-line::before,
.mobile-compare-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.mobile-compare-line::before {
  top: -2px;
}

.mobile-compare-line::after {
  bottom: -2px;
}

.mobile-compare-line-red {
  height: 84px;
  background: linear-gradient(180deg, rgba(228,29,55,.25) 0%, var(--vulcura-red) 100%);
}

.mobile-compare-line-red::before,
.mobile-compare-line-red::after {
  background: var(--vulcura-red);
}

.mobile-compare-line-grey {
  height: 48px;
  background: linear-gradient(180deg, #d9d9d9 0%, #bfbfbf 100%);
}

.mobile-compare-line-grey::before,
.mobile-compare-line-grey::after {
  background: #cfcfcf;
}

.mobile-compare-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-mid);
  line-height: 1.65;
}

.mobile-compare-list li + li {
  margin-top: 6px;
}

/* Note */
.chart-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 900px;
}

/* Responsive */
@media (max-width: 760px) {
  .impact-desktop-chart {
    display: none;
  }

  .impact-mobile-compare {
    display: block;
  }

  .chart-legend-simple {
    display: none;
  }

  .chart-card-simple {
    padding: 22px 18px 18px;
  }

  .chart-head h3 {
    font-size: 1.15rem;
  }
}

/* Floating Phone Button */
.phone-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vulcura-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.phone-fab:hover,
.phone-fab:focus-visible {
  background: var(--vulcura-red-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0,0,0,0.28);
  outline: 3px solid var(--vulcura-red-dark);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .phone-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ===== Neuaufnahme-Formular ===== */

.neuaufnahme-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nf-section {
  padding: 24px 0;
}

.nf-section:first-child {
  padding-top: 0;
}

.nf-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nf-section-note {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0 0 16px;
  line-height: 1.5;
}

.nf-section .form-group + .form-group {
  margin-top: 14px;
}

.nf-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.badge-optional {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface-soft);
  color: var(--text-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  line-height: 1.6;
}

.badge-intern {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff8e1;
  color: #7a5a00;
  border: 1px solid #f0d070;
  border-radius: 6px;
  padding: 2px 8px;
  line-height: 1.6;
}

/* Radio-Karten */
.radio-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.radio-card {
  position: relative;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.radio-card label {
  display: block;
  padding: 11px 22px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  margin: 0;
  user-select: none;
}

.radio-card label:hover {
  border-color: #aaa;
}

.radio-card input[type="radio"]:checked + label {
  border-color: var(--vulcura-red);
  background: #fff5f6;
  color: var(--vulcura-red-dark);
}

.radio-card input[type="radio"]:focus-visible + label {
  outline: 2px solid var(--vulcura-red);
  outline-offset: 2px;
}

.radio-card-group.has-error .radio-card label {
  border-color: #c62828;
  background: #fff8f8;
}

/* Checkbox-Karten (Warnzeichen) */
.check-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.check-card {
  position: relative;
}

.check-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.check-card label {
  display: block;
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.92rem;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
  margin: 0;
  user-select: none;
}

.check-card label:hover {
  border-color: #aaa;
}

.check-card input[type="checkbox"]:checked + label {
  border-color: var(--vulcura-red);
  background: #fff5f6;
  color: var(--vulcura-red-dark);
  font-weight: 600;
}

.check-card input[type="checkbox"]:focus-visible + label {
  outline: 2px solid var(--vulcura-red);
  outline-offset: 2px;
}

/* Bedingte Gruppe */
.conditional-group {
  margin-top: 16px;
  padding: 18px;
  background: var(--surface-soft);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.conditional-group .form-group + .form-group {
  margin-top: 14px;
}

.nf-field-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 6px;
  line-height: 1.5;
}

.nf-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff8e1;
  border: 1px solid #f0d070;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5a4000;
}

.nf-warning-box strong {
  display: block;
  margin-bottom: 2px;
}

.nf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 540px) {
  .nf-two-col {
    grid-template-columns: 1fr;
  }

  .radio-card-group,
  .check-card-group {
    gap: 8px;
  }
}

/* ===========================================
   SCROLL & ENTRY ANIMATIONS
=========================================== */

/* Hero: Elemente fliegen beim Laden ein */
@keyframes _heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes _heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Index Hero */
.hero-kicker {
  animation: _heroUp .55s ease both;
  animation-delay: .1s;
}
.hero-title span:nth-child(1) {
  animation: _heroUp .55s ease both;
  animation-delay: .25s;
}
.hero-title span:nth-child(2) {
  animation: _heroUp .55s ease both;
  animation-delay: .40s;
}
.hero-subline {
  animation: _heroUp .55s ease both;
  animation-delay: .55s;
}
.hero-actions {
  animation: _heroUp .55s ease both;
  animation-delay: .70s;
}
.hero-mark img {
  animation: _heroFade .9s ease both;
  animation-delay: .35s;
}

/* Page Hero (Unterseiten) */
.page-hero-kicker {
  animation: _heroUp .5s ease both;
  animation-delay: .1s;
}
.page-hero h1 {
  animation: _heroUp .5s ease both;
  animation-delay: .24s;
}
.page-hero-text {
  animation: _heroUp .5s ease both;
  animation-delay: .38s;
}
.page-hero-actions {
  animation: _heroUp .5s ease both;
  animation-delay: .52s;
}
.page-hero-visual {
  animation: _heroFade .8s ease both;
  animation-delay: .3s;
}

/* Scroll-Reveal Basis */
.sr        { opacity: 0; transform: translateY(26px); }
.sr-left   { opacity: 0; transform: translateX(-32px); }
.sr-right  { opacity: 0; transform: translateX(32px); }
.sr-scale  { opacity: 0; transform: scale(0.93); }

.sr,
.sr-left,
.sr-right,
.sr-scale {
  will-change: opacity, transform;
  transition:
    opacity  .65s cubic-bezier(.22,.61,.36,1),
    transform .65s cubic-bezier(.22,.61,.36,1);
}

.sr-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger-Delays */
.sr-d1 { transition-delay: .08s; }
.sr-d2 { transition-delay: .16s; }
.sr-d3 { transition-delay: .24s; }
.sr-d4 { transition-delay: .32s; }

/* ===========================
   BLOG
   =========================== */

/* Blog Index */
.blog-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

@media (min-width: 640px){
  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px){
  .blog-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.blog-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-card-img-placeholder{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(228,29,55,.08), rgba(228,29,55,.03));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img-placeholder svg{
  opacity: .25;
  color: var(--vulcura-red);
}

.blog-card-body{
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .82rem;
  color: var(--text-soft);
}

.blog-card-tag{
  background: rgba(228,29,55,.08);
  color: var(--vulcura-red);
  font-weight: 600;
  font-size: .78rem;
  padding: 3px 10px;
  border-radius: 999px;
}

.blog-card-title{
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-dark);
}

.blog-card-excerpt{
  margin: 0 0 20px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}

.blog-card-link{
  align-self: flex-start;
  font-size: .9rem;
  font-weight: 600;
  color: var(--vulcura-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.blog-card-link:hover{
  gap: 10px;
}

/* Article Page */
.article-wrap{
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 0 72px;
}

.article-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 32px;
  transition: color .18s;
}

.article-back:hover{
  color: var(--vulcura-red);
}

.article-hero-img{
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 7;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.article-meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  font-size: .85rem;
  color: var(--text-soft);
}

.article-tag{
  background: rgba(228,29,55,.08);
  color: var(--vulcura-red);
  font-weight: 600;
  font-size: .8rem;
  padding: 4px 12px;
  border-radius: 999px;
}

.article-content{
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-content h2{
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 2em 0 .65em;
  color: var(--text-dark);
}

.article-content h2:first-child{
  margin-top: 0;
}

.article-content h3{
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 1.8em 0 .55em;
  color: var(--text-dark);
}

.article-content p{
  margin: 0 0 1.25em;
}

.article-content ul,
.article-content ol{
  margin: 0 0 1.25em 0;
  padding-left: 1.5em;
}

.article-content li{
  margin-bottom: .5em;
  line-height: 1.75;
}

.article-content strong{
  font-weight: 700;
}

.article-content em{
  font-style: italic;
}

.article-content a{
  color: var(--vulcura-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:hover{
  color: var(--vulcura-red-dark);
}

.article-content img{
  border-radius: var(--radius-md);
  margin: 1.5em auto;
  box-shadow: var(--shadow-md);
}

.article-content figure{
  margin: 2em 0;
  text-align: center;
}

.article-content figcaption{
  font-size: .85rem;
  color: var(--text-soft);
  margin-top: 8px;
}

.article-content .highlight-box{
  background: rgba(228,29,55,.05);
  border-left: 4px solid var(--vulcura-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px;
  margin: 1.5em 0;
}

/* Article Author Box */
.article-author{
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 52px;
  box-shadow: var(--shadow-md);
}

.article-author-img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.article-author-name{
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.article-author-role{
  margin: 0;
  font-size: .85rem;
  color: var(--text-soft);
}

/* Article CTA */
.article-cta{
  background: linear-gradient(135deg, var(--vulcura-red), var(--vulcura-red-dark));
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin-top: 52px;
  color: #fff;
}

.article-cta h3{
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #fff;
}

.article-cta p{
  margin: 0 0 22px;
  opacity: .9;
  font-size: .95rem;
}

.article-cta .btn{
  background: #fff;
  color: var(--vulcura-red);
  border-color: #fff;
}

.article-cta .btn:hover{
  background: rgba(255,255,255,.9);
}

/* Reduzierten Bewegungsanforderungen respektieren */
@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .hero-title span,
  .hero-subline,
  .hero-actions,
  .hero-mark img,
  .page-hero-kicker,
  .page-hero h1,
  .page-hero-text,
  .page-hero-actions,
  .page-hero-visual {
    animation: none;
  }
  .sr, .sr-left, .sr-right, .sr-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
