body {
  background: #f8f8f8;
}

/* ========================================
   Component Base
======================================== */
.component-body {
  --component-color: #2f9bc5;
  --component-color-soft: rgba(47, 155, 197, 0.08);
  --component-border: rgba(47, 155, 197, 0.35);
  --component-text: #333;
  --component-heading: #222;
  --component-border-light: #e1e8ec;
  --component-bg-light: #f7f7f7;
  --component-content-width: 1040px;
  --component-side-gutter: max(
    24px,
    calc((100vw - var(--component-content-width)) / 2)
  );

  color: var(--component-text);
  font-size: 16px;
  line-height: 1.9;
}

.component-body--software {
  --component-color: #2f9bc5;
  --component-color-soft: rgba(47, 155, 197, 0.08);
  --component-border: rgba(47, 155, 197, 0.35);
}

.component-body--service {
  --component-color: #4f7fcf;
  --component-color-soft: rgba(79, 127, 207, 0.08);
  --component-border: rgba(79, 127, 207, 0.35);
}

.component-body,
.works-shared-page__content,
.works-shared-page {
  padding-bottom: 0 !important;
}

/* ========================================
   Component Section
======================================== */

.component-body .component-section {
  margin: 72px 0;
}

.component-body .component-section:first-child {
  margin-top: 0;
}

.component-body .component-section:last-child {
  margin-bottom: 0;
}

/* ========================================
   Common: Headings
======================================== */

.component-body h2 {
  position: relative;
  margin: 0 0 24px;
  padding: 0 0 14px 20px;
  color: #333;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #e5e5e5;
}

.component-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 5px;
  height: 1.4em;
  background: var(--component-color);
}

.component-body h3 {
  margin: 30px 0 12px;
  padding-left: 14px;
  color: var(--component-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  border-left: 4px solid var(--component-color);
}

/* ========================================
   Common: Text
======================================== */

.component-body p {
  margin: 0 0 20px;
}

.component-body strong {
  color: var(--component-heading);
  font-weight: 700;
}

.component-body a {
  color: var(--component-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================================
   Common: Unordered List
======================================== */

.component-body ul {
  margin: 20px 0 32px;
  padding: 24px 28px;
  background: var(--component-bg-light);
  list-style: none;
}

.component-body li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 22px;
}

.component-body li:last-child {
  margin-bottom: 0;
}

.component-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  background: var(--component-color);
  border-radius: 50%;
}

/* ========================================
   Common: Ordered List
======================================== */

.component-body ol {
  margin: 20px 0 36px;
  padding: 26px 30px 26px 56px;
  background: var(--component-color-soft);
  border-left: 5px solid var(--component-color);
}

.component-body ol li {
  margin: 0 0 16px;
  padding-left: 6px;
}

.component-body ol li:last-child {
  margin-bottom: 0;
}

.component-body ol li::before {
  display: none;
}

/* ========================================
   Common: Definition List
======================================== */

.component-body dl {
  margin: 24px 0 36px;
  padding: 0;
  border-top: 1px solid #e5e5e5;
}

.component-body dt {
  padding: 18px 0 6px;
  color: var(--component-heading);
  font-weight: 700;
  border-top: 1px solid #e5e5e5;
}

.component-body dt:first-child {
  border-top: none;
}

.component-body dd {
  margin: 0;
  padding: 0 0 18px;
  color: var(--component-text);
}

/* ========================================
   Common: Figure
======================================== */

.component-body .component-figure {
  margin: 36px 0 52px;
}

.component-body .component-figure img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.component-body .component-figure figcaption {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* ========================================
   Common: Component Card List
======================================== */

.component-body .component-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 36px;
  padding: 0;
  background: transparent;
  list-style: none;
}

.component-body .component-card-list li {
  margin: 0;
  padding: 18px 18px 18px 20px;
  background: #fff;
  border: 1px solid var(--component-border-light);
  border-left: 4px solid var(--component-color);
  color: var(--component-text);
  font-size: 15px;
  line-height: 1.8;
}

.component-body .component-card-list li::before {
  display: none;
}

.component-body .component-card-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

/* ========================================
   Section: Intro
======================================== */

.component-body .component-section--intro p:last-child {
  margin-bottom: 0;
}

.component-body .component-intro-lead {
  max-width: 100%;
  margin: 0 0 34px;
}

.component-body .component-intro-lead p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.component-body .component-intro-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 36px;
}

.component-body .component-intro-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  margin: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.component-body .component-intro-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 155, 197, 0.24);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.085);
}

.component-body .component-intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(47, 155, 197, 0.055),
    transparent 42%
  );
  pointer-events: none;
}

.component-body .component-intro-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f5f8fa;
}

.component-body .component-intro-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.35s ease;
}

.component-body .component-intro-card:hover .component-intro-card__image img {
  transform: scale(1.025);
}

.component-body .component-intro-card__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.component-body .component-intro-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 10px;
  color: var(--component-color);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.component-body .component-intro-card h3 {
  margin: 0 0 10px;
  padding: 0;
  border: none;
  color: var(--component-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.component-body .component-intro-card h3::before {
  display: none;
}

.component-body .component-intro-card p {
  margin: 0;
  color: var(--component-text);
  font-size: 15px;
  line-height: 1.8;
}

.component-body .component-intro-note {
  position: relative;
  margin: 0;
  padding: 24px 28px 24px 32px;
  overflow: hidden;
  border: 1px solid rgba(47, 155, 197, 0.16);
  border-left: 5px solid var(--component-color);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(47, 155, 197, 0.09),
    rgba(47, 155, 197, 0.035)
  );
}

.component-body .component-intro-note::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(47, 155, 197, 0.08);
  pointer-events: none;
}

.component-body .component-intro-note p {
  position: relative;
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
}

/* ========================================
   Section: Features
======================================== */

.component-body .component-feature-figure {
  margin: 32px 0 34px;
}

.component-body .component-feature-figure img {
  border-radius: 18px;
}

.component-body .component-feature-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  background: transparent;
  list-style: none;
}

.component-body .component-feature-card-list li {
  position: relative;
  min-height: 150px;
  margin: 0;
  padding: 20px 20px 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.045);
}

.component-body .component-feature-card-list li::before {
  content: "";
  position: static;
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--component-color);
}

.component-body .component-feature-card-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--component-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.component-body .component-feature-card-list span {
  display: block;
  color: var(--component-text);
  font-size: 14px;
  line-height: 1.75;
}

/* ========================================
   Section: Related Components
======================================== */

.component-body .component-related-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  background: transparent;
  list-style: none;
}

.component-body .component-related-card-list li {
  margin: 0;
  padding: 0;
}

.component-body .component-related-card-list li::before {
  display: none;
}

.component-body .component-related-card-list a {
  position: relative;
  display: block;
  min-height: 164px;
  padding: 22px 22px 54px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--component-text);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.045);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.component-body .component-related-card-list a::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--component-color-soft);
}

.component-body .component-related-card-list a::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--component-color);
  border-right: 2px solid var(--component-color);
  transform: rotate(45deg);
}

.component-body .component-related-card-list a:hover {
  transform: translateY(-3px);
  border-color: var(--component-border);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.075);
}

.component-body .component-related-card-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--component-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.component-body .component-related-card-list span {
  display: block;
  color: var(--component-text);
  font-size: 14px;
  line-height: 1.75;
}

/* ========================================
   Section: Usecase Slider
======================================== */

.component-body .component-section--usecase {
  overflow: visible;
}

.component-body .component-usecase-slider {
  position: relative;
  width: 100vw;
  margin-top: 36px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.component-body .component-usecase-card-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 30vw);
  gap: 22px;
  margin: 0;
  padding: 4px var(--component-side-gutter) 26px var(--component-side-gutter);
  overflow-x: auto;
  overflow-y: hidden;
  background: transparent;
  list-style: none;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--component-side-gutter);
  scroll-padding-right: var(--component-side-gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.component-body .component-usecase-card-list::-webkit-scrollbar {
  display: none;
}

.component-body .component-usecase-card-list li {
  position: relative;
  display: flex;
  min-height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  scroll-snap-align: start;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.component-body .component-usecase-card-list li::before,
.component-body .component-usecase-card-list li::after {
  display: none;
}

.component-body .component-usecase-card-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 155, 197, 0.24);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.11);
}

.component-body .component-usecase-card__image {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(56, 189, 248, 0.16),
      transparent 36%
    ),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.component-body .component-usecase-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.component-body
  .component-usecase-card-list
  li:hover
  .component-usecase-card__image
  img {
  transform: scale(1.035);
}

.component-body .component-usecase-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 24px 26px 30px;
}

.component-body .component-usecase-card-list strong {
  display: block;
  margin: 0;
  color: var(--component-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.component-body .component-usecase-card-list span {
  display: block;
  padding-right: 0;
  color: var(--component-text);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.component-body .component-usecase-slider__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  margin-top: 18px;
  padding-right: var(--component-side-gutter);
  padding-left: var(--component-side-gutter);
}

.component-body .component-usecase-slider__button {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #202124;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.component-body .component-usecase-slider__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.component-body .component-usecase-slider__button--prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.component-body .component-usecase-slider__button--next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.component-body .component-usecase-slider__button:hover {
  transform: translateY(-2px);
  background: var(--component-color);
}

.component-body .component-usecase-slider__button:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

/* ========================================
   Section: Points
======================================== */

.component-body .component-section--points dl {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  margin: 32px 0 0;
  padding: 0;
  border: 1px solid #d6e3e8;
  border-radius: 15px;
  overflow: hidden;
}

.component-body .component-section--points dt,
.component-body .component-section--points dd {
  margin: 0;
  border-right: 1px solid #d6e3e8;
  border-bottom: 1px solid #d6e3e8;
}

.component-body .component-section--points dt {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--component-color-soft);
  color: var(--component-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.component-body .component-section--points dd {
  padding: 8px 12px;
  background: #fff;
  color: var(--component-text);
  font-size: 15px;
  line-height: 1.85;
}

/* ========================================
   Section: ALNETZ Design Full Width
======================================== */

.component-body .component-section--alnetz-design {
  position: relative;
  width: 100vw;
  margin: 88px 0 88px calc(50% - 50vw);
  padding: 0;
  overflow: visible;
  color: #fff;
  background: transparent;
}

.component-body .component-section--alnetz-design .component-section__surface {
  position: relative;
  box-sizing: border-box;
  width: calc(100vw - 96px);
  padding: 64px 24px 64px var(--component-side-gutter);
  overflow: hidden;
  border-radius: 0 28px 28px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(119, 221, 255, 0.28),
      transparent 40%
    ),
    linear-gradient(135deg, #10212d 0%, #19425a 55%, #245d79 100%);
}

.component-body
  .component-section--alnetz-design
  .component-section__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.16),
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.16)
  );
  pointer-events: none;
}

.component-body
  .component-section--alnetz-design
  .component-section__surface::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(47, 155, 197, 0.14);
  filter: blur(44px);
  pointer-events: none;
}

.component-body .component-section--alnetz-design .component-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 1040px;
  min-width: 0;
  margin: 0;
}

.component-body .component-section--alnetz-design .component-section__content {
  min-width: 0;
}

.component-body .component-section--alnetz-design .component-section__label {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--component-color);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.component-body .component-section--alnetz-design h2 {
  margin: 0 0 18px;
  padding: 0;
  border: none;
  color: #fff;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.38;
}

.component-body .component-section--alnetz-design h2::before {
  display: none;
}

.component-body .component-section--alnetz-design p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.9;
}

.component-body .component-section--alnetz-design .component-design-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  list-style: none;
  counter-reset: design-counter;
}

.component-body .component-section--alnetz-design .component-design-list li {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 18px 18px 18px 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.052);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.7;
  counter-increment: design-counter;
  backdrop-filter: blur(10px);
}

.component-body
  .component-section--alnetz-design
  .component-design-list
  li::before {
  content: counter(design-counter, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--component-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.component-body
  .component-section--alnetz-design
  .component-design-list
  strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.component-body .component-section--alnetz-design .component-design-list span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

/* Tablet */
@media (max-width: 1024px) {
  .component-body .component-section--alnetz-design {
    width: 100vw;
    margin: 72px 0 72px calc(50% - 50vw);
  }

  .component-body
    .component-section--alnetz-design
    .component-section__surface {
    width: 100vw;
    padding: 56px 24px;
    border-radius: 0;
  }

  .component-body .component-section--alnetz-design .component-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    width: min(720px, calc(100vw - 48px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .component-body .component-section--alnetz-design .component-design-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 767px) {
  .component-body .component-section--alnetz-design {
    width: 100vw;
    margin: 72px 0 72px calc(50% - 50vw);
  }

  .component-body
    .component-section--alnetz-design
    .component-section__surface {
    width: 100vw;
    padding: 56px 20px;
    border-radius: 0;
  }

  .component-body
    .component-section--alnetz-design
    .component-section__surface::before {
    background-size: 48px 48px;
  }

  .component-body
    .component-section--alnetz-design
    .component-section__surface::after {
    top: -180px;
    right: -180px;
    width: 340px;
    height: 340px;
  }

  .component-body .component-section--alnetz-design .component-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .component-body .component-section--alnetz-design .component-section__label {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .component-body .component-section--alnetz-design h2 {
    font-size: 25px;
    line-height: 1.42;
  }

  .component-body .component-section--alnetz-design p {
    font-size: 14px;
    line-height: 1.85;
  }

  .component-body .component-section--alnetz-design .component-design-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .component-body .component-section--alnetz-design .component-design-list li {
    min-height: auto;
    padding: 17px 17px 17px 54px;
  }

  .component-body
    .component-section--alnetz-design
    .component-design-list
    li::before {
    top: 17px;
    left: 17px;
  }

  .component-body
    .component-section--alnetz-design
    .component-design-list
    strong {
    font-size: 15px;
  }
}

/* ========================================
   Section: FAQ
======================================== */

.component-body .component-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.component-body .component-faq-item {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.component-body .component-faq-item summary {
  position: relative;
  display: block;
  padding: 22px 58px 22px 24px;
  color: var(--component-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.component-body .component-faq-item summary:hover {
  background: var(--component-color-soft);
}

.component-body .component-faq-item summary::-webkit-details-marker {
  display: none;
}

.component-body .component-faq-item summary::before {
  display: none;
}

.component-body .component-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--component-color-soft);
  color: var(--component-color);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.component-body .component-faq-item[open] {
  border-color: var(--component-border);
}

.component-body .component-faq-item[open] summary {
  background: var(--component-color-soft);
}

.component-body .component-faq-item[open] summary::after {
  content: "−";
}

.component-body .component-faq-item p {
  margin: 0;
  padding: 12px 24px 24px;
  color: var(--component-text);
  font-size: 15px;
  line-height: 1.9;
}

/* ========================================
   Section: CTA Full Width
======================================== */

.component-body .component-section--cta {
  position: relative;
  width: 100vw;
  margin: 96px 0 0 calc(50% - 50vw);
  padding: 88px 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at top left,
      rgba(119, 221, 255, 0.28),
      transparent 40%
    ),
    linear-gradient(135deg, #10212d 0%, #19425a 55%, #245d79 100%);
}

.component-body .component-section--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.component-body .component-section--cta::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(47, 155, 197, 0.16);
  filter: blur(44px);
  pointer-events: none;
}

.component-body .component-section--cta .component-cta {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-left: none;
  color: #fff;
}

.component-body .component-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}

.component-body .component-cta__label {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--component-color);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.component-body .component-section--cta .component-cta h2 {
  margin: 0 0 22px;
  padding: 0;
  border: none;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.35;
}

.component-body .component-section--cta .component-cta h2::before {
  display: none;
}

.component-body .component-section--cta .component-cta p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.95;
}

.component-body .component-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid rgba(47, 155, 197, 0.55);
  border-radius: 999px;
  background: var(--component-color);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(47, 155, 197, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.component-body .component-cta__button::after {
  content: "→";
  margin-left: 10px;
  font-weight: 800;
}

.component-body .component-cta__button:hover {
  transform: translateY(-2px);
  background: #36abd9;
  box-shadow: 0 18px 42px rgba(47, 155, 197, 0.36);
}

.component-body .component-cta__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  background: transparent;
  list-style: none;
}

.component-body .component-cta__list li {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  color: var(--component-text);
  font-size: 14px;
  line-height: 1.75;
}

.component-body .component-cta__list li::before {
  display: none;
}

.component-body .component-cta__list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--component-heading);
  font-size: 16px;
  font-weight: 800;
}

.component-body .component-cta__list span {
  display: block;
  color: var(--component-text);
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 1024px) {
  .component-body .component-intro-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .component-body .component-feature-card-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .component-body .component-related-card-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .component-body .component-usecase-card-list {
    grid-auto-columns: minmax(300px, 42vw);
    gap: 18px;
  }

  .component-body .component-section--alnetz-design .component-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .component-body .component-section--alnetz-design .component-design-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 767px) {
  .component-body {
    --component-side-gutter: 20px;

    font-size: 15px;
    line-height: 1.85;
  }

  .component-body .component-section {
    margin: 56px 0;
  }

  .component-body h2 {
    margin: 0 0 20px;
    padding-left: 16px;
    font-size: 22px;
  }

  .component-body h3 {
    margin: 26px 0 10px;
    font-size: 18px;
  }

  .component-body ul {
    padding: 20px;
  }

  .component-body ol {
    padding: 22px 22px 22px 44px;
  }

  .component-body .component-figure {
    margin: 28px 0 42px;
  }

  .component-body .component-card-list {
    grid-template-columns: 1fr;
  }

  .component-body .component-intro-lead {
    margin-bottom: 28px;
  }

  .component-body .component-intro-lead p {
    font-size: 15px;
    line-height: 1.9;
  }

  .component-body .component-intro-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 0 30px;
  }

  .component-body .component-intro-card {
    border-radius: 18px;
  }

  .component-body .component-intro-card__body {
    padding: 20px;
  }

  .component-body .component-intro-card__label {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .component-body .component-intro-card h3 {
    font-size: 18px;
  }

  .component-body .component-intro-card p {
    font-size: 14px;
  }

  .component-body .component-intro-note {
    padding: 20px 20px 20px 22px;
    border-radius: 16px;
  }

  .component-body .component-intro-note::before {
    top: 14px;
    right: 16px;
    width: 46px;
    height: 46px;
  }

  .component-body .component-intro-note p {
    font-size: 14px;
    line-height: 1.85;
  }

  .component-body .component-usecase-slider {
    margin-top: 28px;
  }

  .component-body .component-usecase-card-list {
    grid-auto-columns: minmax(280px, 82vw);
    gap: 16px;
    padding: 4px var(--component-side-gutter) 22px var(--component-side-gutter);
  }

  .component-body .component-usecase-card-list li {
    padding: 0;
    border-radius: 20px;
  }

  .component-body .component-usecase-card__body {
    padding: 20px 20px 24px;
  }

  .component-body .component-usecase-card-list strong {
    font-size: 18px;
  }

  .component-body .component-usecase-card-list span {
    font-size: 14px;
    line-height: 1.8;
  }

  .component-body .component-usecase-slider__nav {
    margin-top: 14px;
    padding-right: var(--component-side-gutter);
    padding-left: var(--component-side-gutter);
  }

  .component-body .component-usecase-slider__button {
    width: 44px;
    height: 44px;
  }

  .component-body .component-feature-figure {
    margin: 28px 0 28px;
  }

  .component-body .component-feature-figure img {
    border-radius: 14px;
  }

  .component-body .component-feature-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .component-body .component-feature-card-list li {
    min-height: auto;
    padding: 18px;
  }

  .component-body .component-feature-card-list strong {
    font-size: 15px;
  }

  .component-body .component-feature-card-list span {
    font-size: 14px;
  }

  .component-body .component-related-card-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .component-body .component-related-card-list a {
    min-height: auto;
    padding: 18px 58px 18px 18px;
    border-radius: 16px;
  }

  .component-body .component-related-card-list a::before {
    right: 18px;
    bottom: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(50%);
  }

  .component-body .component-related-card-list a::after {
    right: 29px;
    bottom: 50%;
    width: 9px;
    height: 9px;
    transform: translateY(50%) rotate(45deg);
  }

  .component-body .component-related-card-list strong {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .component-body .component-related-card-list span {
    font-size: 14px;
  }

  .component-body .component-section--points dl {
    grid-template-columns: 1fr;
    border-top: 1px solid #d6e3e8;
    border-left: 1px solid #d6e3e8;
  }

  .component-body .component-section--points dt {
    padding: 16px 18px 8px;
    border-right: 1px solid #d6e3e8;
    border-bottom: none;
    background: var(--component-color-soft);
    font-size: 15px;
  }

  .component-body .component-section--points dd {
    padding: 0 18px 18px;
    border-right: 1px solid #d6e3e8;
    background: var(--component-color-soft);
    font-size: 14px;
    line-height: 1.8;
  }

  .component-body .component-section--points dd + dt {
    border-top: 1px solid #d6e3e8;
  }

  .component-body .component-section--alnetz-design {
    margin: 72px 0 72px calc(50% - 50vw);
  }

  .component-body .component-section--alnetz-design::before {
    background-size: 48px 48px;
  }

  .component-body .component-section--alnetz-design::after {
    top: -180px;
    right: -180px;
    width: 340px;
    height: 340px;
  }

  .component-body .component-section--alnetz-design .component-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .component-body .component-section--alnetz-design .component-section__label {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .component-body .component-section--alnetz-design h2 {
    font-size: 25px;
    line-height: 1.42;
  }

  .component-body .component-section--alnetz-design p {
    font-size: 14px;
    line-height: 1.85;
  }

  .component-body .component-section--alnetz-design .component-design-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .component-body .component-section--alnetz-design .component-design-list li {
    min-height: auto;
    padding: 17px 17px 17px 54px;
  }

  .component-body
    .component-section--alnetz-design
    .component-design-list
    li::before {
    top: 17px;
    left: 17px;
  }

  .component-body
    .component-section--alnetz-design
    .component-design-list
    strong {
    font-size: 15px;
  }

  .component-body .component-faq-list {
    gap: 10px;
    margin-top: 28px;
  }

  .component-body .component-faq-item {
    border-radius: 14px;
  }

  .component-body .component-faq-item summary {
    padding: 18px 52px 18px 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .component-body .component-faq-item summary::after {
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .component-body .component-faq-item p {
    padding: 0 18px 20px;
    font-size: 14px;
    line-height: 1.85;
  }

  .component-body .component-section--cta {
    margin: 72px 0 0 calc(50% - 50vw);
    padding: 64px 20px;
  }

  .component-body .component-section--cta::before {
    background-size: 48px 48px;
  }

  .component-body .component-section--cta::after {
    top: -180px;
    right: -180px;
    width: 360px;
    height: 360px;
  }

  .component-body .component-cta__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .component-body .component-cta__label {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .component-body .component-section--cta .component-cta h2 {
    font-size: 26px;
  }

  .component-body .component-section--cta .component-cta p {
    font-size: 15px;
    line-height: 1.85;
  }

  .component-body .component-cta__button {
    display: flex;
    width: 100%;
    text-align: center;
  }

  .component-body .component-cta__list li {
    padding: 18px;
  }
}

/* ========================================
   Fix: horizontal overflow under 614px
======================================== */

@media (max-width: 614px) {
  html,
  body {
    overflow-x: hidden;
  }

  .component-body {
    max-width: 100%;
  }

  .component-body .component-section--alnetz-design,
  .component-body .component-section--cta {
    width: auto;
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    box-sizing: border-box;
  }

  .component-body
    .component-section--alnetz-design
    .component-section__surface {
    width: auto;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
    box-sizing: border-box;
  }

  .component-body .component-usecase-slider {
    width: auto;
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    box-sizing: border-box;
  }

  .component-body .component-usecase-card-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .component-body .component-usecase-slider__nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ========================================
   Section: Intro Slider Override
======================================== */

.component-body .component-intro-slider {
  position: relative;
  width: 100vw;
  margin-top: 36px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.component-body .component-intro-slider .component-intro-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(520px, 46vw);
  grid-template-columns: none;
  gap: 24px;
  margin: 0;
  padding: 4px var(--component-side-gutter) 26px var(--component-side-gutter);
  overflow-x: auto;
  overflow-y: hidden;
  background: transparent;
  list-style: none;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--component-side-gutter);
  scroll-padding-right: var(--component-side-gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.component-body
  .component-intro-slider
  .component-intro-cards::-webkit-scrollbar {
  display: none;
}

.component-body .component-intro-slider .component-intro-card {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.component-body .component-intro-slider__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  margin-top: 18px;
  padding-right: var(--component-side-gutter);
  padding-left: var(--component-side-gutter);
}

.component-body .component-intro-slider__button {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #202124;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.component-body .component-intro-slider__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.component-body .component-intro-slider__button--prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.component-body .component-intro-slider__button--next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.component-body .component-intro-slider__button:hover {
  transform: translateY(-2px);
  background: var(--component-color);
}

.component-body .component-intro-slider__button:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .component-body .component-intro-slider .component-intro-cards {
    grid-auto-columns: minmax(420px, 66vw);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .component-body .component-intro-slider {
    margin-top: 28px;
  }

  .component-body .component-intro-slider .component-intro-cards {
    grid-auto-columns: minmax(280px, 82vw);
    gap: 16px;
    padding: 4px var(--component-side-gutter) 22px var(--component-side-gutter);
  }

  .component-body .component-intro-slider .component-intro-card {
    border-radius: 20px;
  }

  .component-body .component-intro-slider__nav {
    margin-top: 14px;
    padding-right: var(--component-side-gutter);
    padding-left: var(--component-side-gutter);
  }

  .component-body .component-intro-slider__button {
    width: 44px;
    height: 44px;
  }
}

/* Fix: horizontal overflow under 614px */
@media (max-width: 614px) {
  .component-body .component-intro-slider {
    width: auto;
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    box-sizing: border-box;
  }

  .component-body .component-intro-slider .component-intro-cards {
    padding-left: 20px;
    padding-right: 20px;
  }

  .component-body .component-intro-slider__nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
