body.wel-sub {
  background: #000;
  color: var(--text);
}

.wel-sub *,
.wel-sub *::before,
.wel-sub *::after {
  box-sizing: border-box;
}

.wel-sub main {
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow-x: hidden;
}

.wel-sub main > section {
  width: 100%;
  max-width: min(1600px, 100%);
}

.wel-sub main > section.section-panel {
  width: auto;
}

.wel-sub .section-intro-stack {
  max-width: 100%;
  min-width: 0;
}

.wel-hero {
  min-height: auto;
}

.wel-hero .section-kicker {
  display: none !important;
}

.wel-sub h1.wel-hero-title {
  font-size: clamp(1.65rem, 0.85rem + 4.2vw, 5.375rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  max-width: 100%;
  margin: 0;
  text-transform: none;
}

.wel-title-line {
  display: inline;
}

.wel-lead {
  max-width: 74rem;
  font-size: clamp(1.35rem, 1.05rem + 1.45vw, 1.6rem);
}

.wel-text {
  max-width: 78rem;
}

.wel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: clamp(2rem, 1.5rem + 1.6vw, 3rem);
}

.wel-actions .hero-ai-cta {
  margin-top: 0;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  text-decoration: none;
}

.wel-hero-media {
  width: 100%;
  max-width: min(74rem, 100%);
  margin: clamp(2.2rem, 1.5rem + 3vw, 4.75rem) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.wel-hero-media-top {
  width: 85vw;
  max-width: none;
  margin: 0 calc(50% - 42.5vw) clamp(2rem, 1.35rem + 2.4vw, 3.75rem);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.wel-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  overflow: clip;
  clip-path: inset(0);
  isolation: isolate;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  transform: translateZ(0);
  touch-action: pan-y;
  user-select: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
  backface-visibility: hidden;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  contain: paint;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wel-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: clamp(0.62rem, 0.55rem + 0.24vw, 0.78rem);
  font-weight: 700;
  letter-spacing: clamp(0.13em, 0.08em + 0.16vw, 0.2em);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.78;
  padding: clamp(0.9rem, 0.66rem + 0.86vw, 1.25rem) 0;
  transition: opacity 0.25s ease, transform 0.18s ease;
}

.wel-link-cta:hover {
  opacity: 1;
  transform: translateY(-0.08rem);
}

.wel-card-grid,
.wel-price-grid,
.wel-process-grid,
.wel-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.9rem, 0.7rem + 0.8vw, 1.35rem);
  margin-top: clamp(2rem, 1.5rem + 1.8vw, 3rem);
}

@media (min-width: 768px) {
  .wel-card-grid,
  .wel-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wel-process-grid,
  .wel-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .wel-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wel-price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.wel-card,
.wel-step,
.wel-price,
.wel-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(1.1rem, 0.9rem + 0.8vw, 1.65rem);
  min-width: 0;
}

.wel-card h3,
.wel-step h3,
.wel-price h3,
.wel-faq-item h3 {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 0.86rem + 0.35vw, 1.15rem);
  line-height: 1.22;
  margin: 0;
  color: var(--text);
}

.wel-card p,
.wel-step p,
.wel-price p,
.wel-faq-item p {
  margin: 0.85rem 0 0;
  color: color-mix(in srgb, var(--text) 78%, transparent);
  line-height: 1.62;
}

.wel-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem) 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .wel-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.wel-list li {
  position: relative;
  padding-left: 1.2rem;
  color: color-mix(in srgb, var(--text) 82%, transparent);
  line-height: 1.55;
}

.wel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: var(--btn-border);
}

.wel-step-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--btn-border);
  margin-bottom: 1rem;
}

.wel-price strong {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.9rem);
  line-height: 1;
  margin-top: 1.1rem;
  color: var(--text);
}

.wel-inline-links a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.wel-final-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: clamp(2.4rem, 1.9rem + 2vw, 4rem);
}

@media (max-width: 767px) {
  .wel-hero .section-intro-stack,
  .wel-sub .section-panel > .section-intro-stack {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .wel-sub main > section {
    width: auto !important;
    max-width: none !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .wel-hero-media-top {
    position: relative;
    width: calc(100vw - 12px);
    max-width: none;
    margin: -4.5rem auto 4.75rem;
    border-radius: 8px;
    overflow: hidden;
  }

  .wel-hero-media-top .hero-slider {
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: 0;
    background: #000;
  }

  .wel-hero-media-top .hero-slide img {
    object-fit: cover;
    object-position: center center;
  }

  .wel-hero-media-top .hero-slide-bruno-one img {
    transform: scale(0.7);
  }

  .wel-hero-media-top .hero-slide-dental-two img {
    transform: scale(0.65);
  }

  .wel-hero-media-top .hero-slide-seka-one img {
    transform: scale(0.7);
  }

  .wel-hero-media-top .hero-slide-silent-one img {
    transform: scale(0.7);
  }

  .wel-hero-media-top .hero-slide-vision-one img {
    transform: scale(0.65);
  }

  .wel-hero-media-top .hero-slide-orson-one img {
    transform: translateX(-20px) scale(1.05);
  }

  .wel-card-grid,
  .wel-price-grid,
  .wel-process-grid,
  .wel-faq-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .wel-actions {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .wel-actions .hero-ai-cta,
  .wel-link-cta {
    width: 100%;
    text-align: center;
  }

  .wel-actions .hero-ai-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .wel-hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: break-word;
  }

  .wel-sub h1.wel-hero-title {
    line-height: 1.1;
    letter-spacing: -0.035em;
    text-wrap: initial;
  }

  .wel-title-line {
    display: block;
  }

  .wel-title-separator {
    display: none;
  }

  .wel-sub p,
  .wel-sub li,
  .wel-sub h2,
  .wel-sub h3 {
    max-width: 100% !important;
    overflow-wrap: break-word;
  }

  body.wel-sub .cookie-banner {
    left: 1rem !important;
    right: 1rem !important;
    width: auto !important;
    max-width: 21rem !important;
  }

  body.wel-sub .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  body.wel-sub .cookie-btn {
    width: 100%;
  }
}
