/* =========================================
   SMART TALENT 24 — PREMIUM UI SYSTEM
========================================= */

/* =========================
   DESIGN TOKENS
========================= */

:root {

  --st-color-bg: #0b1117;
  --st-color-bg-alt: #111821;

  --st-color-surface: #151d27;
  --st-color-surface-light: #1b2531;

  --st-color-border:
    rgba(255,255,255,0.08);

  --st-color-text: #f4f7fb;

  --st-color-text-soft:
    rgba(255,255,255,0.72);

  --st-color-text-muted:
    rgba(255,255,255,0.52);

  --st-color-primary: #c6a46a;
  --st-color-primary-light: #dcc08d;
  --st-color-primary-dark: #967445;

  --st-gradient-primary:
    linear-gradient(
      135deg,
      #c6a46a,
      #dcc08d
    );

  --st-shadow-soft:
    0 10px 40px rgba(0,0,0,0.22);

  --st-shadow-hover:
    0 30px 80px rgba(0,0,0,0.36);

  --st-radius-sm: 14px;
  --st-radius-md: 22px;
  --st-radius-lg: 34px;
  --st-radius-pill: 999px;

  --st-container: 1240px;

  --st-transition:
    .35s cubic-bezier(.22,.61,.36,1);

  --st-font:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {

  font-family: var(--st-font);

  background:
    var(--st-color-bg);

  color:
    var(--st-color-text);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}

img {

  max-width: 100%;

  display: block;
}

a {

  text-decoration: none;

  color: inherit;
}

button,
input,
textarea {

  font: inherit;
}

/* =========================
   GLOBAL
========================= */

.st-container {

  width: 100%;
  max-width: var(--st-container);

  margin: 0 auto;

  padding:
    0 24px;
}

.st-section {

  position: relative;

  padding:
    120px 0;
}

.st-section--dark {

  background:
    linear-gradient(
      180deg,
      #101821,
      #0b1117
    );
}

.st-section-intro {

  max-width: 780px;

  margin-bottom: 70px;
}

.st-section-tag {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

  color:
    var(--st-color-primary);

  font-size: .78rem;

  letter-spacing: .22em;

  font-weight: 700;

  text-transform: uppercase;
}

.st-section-tag::before {

  content: "";

  width: 42px;
  height: 1px;

  background:
    rgba(198,164,106,.6);
}

.st-section__title {

  font-size:
    clamp(2.6rem, 5vw, 5rem);

  line-height: .98;

  letter-spacing: -0.04em;

  font-weight: 800;

  margin:
    0 0 24px;
}

.st-section__title--light {

  color:
    white;
}

.st-text {

  color:
    var(--st-color-text-soft);

  font-size: 1.08rem;

  line-height: 1.9;

  max-width: 760px;
}

.st-text--light {

  color:
    rgba(255,255,255,.74);
}

/* =========================
   HEADER
========================= */

.st-header {

  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  background:
    rgba(7,10,15,0.68);

  backdrop-filter: blur(18px);

  border-bottom:
    1px solid rgba(255,255,255,0.05);
}

.st-header__inner {

  display: flex;

  align-items: center;
  justify-content: space-between;

  min-height: 90px;
}

.st-header__logo img {

  width: 235px;
}

.st-nav {

  display: none;

  align-items: center;

  gap: 34px;
}

.st-nav a {

  position: relative;

  color:
    rgba(255,255,255,.82);

  font-size: .95rem;

  font-weight: 600;

  transition:
    color var(--st-transition);
}

.st-nav a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -10px;

  width: 0%;
  height: 1px;

  background:
    var(--st-color-primary);

  transition:
    width var(--st-transition);
}

.st-nav a:hover {

  color:
    white;
}

.st-nav a:hover::after {

  width: 100%;
}

.st-nav__btn {

  padding:
    14px 24px;

  border-radius:
    var(--st-radius-pill);

  background:
    var(--st-gradient-primary);

  color:
    #111;

  font-weight: 700;

  box-shadow:
    0 14px 34px rgba(198,164,106,.22);
}

.st-header__menu-toggle {

  width: 48px;
  height: 48px;

  border-radius: 999px;

  border:
    1px solid rgba(255,255,255,.08);

  background:
    rgba(255,255,255,.04);

  display: inline-flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 5px;

  cursor: pointer;
}

.st-header__menu-toggle span {

  width: 18px;
  height: 2px;

  border-radius: 999px;

  background:
    white;

  transition:
    .25s ease;
}

.st-header__menu-toggle.active span:nth-child(1) {

  transform:
    translateY(7px)
    rotate(45deg);
}

.st-header__menu-toggle.active span:nth-child(2) {

  opacity: 0;
}

.st-header__menu-toggle.active span:nth-child(3) {

  transform:
    translateY(-7px)
    rotate(-45deg);
}

.st-nav.active {

  position: absolute;

  top: 92px;
  left: 20px;
  right: 20px;

  display: flex;

  flex-direction: column;

  gap: 22px;

  padding: 28px;

  border-radius:
    var(--st-radius-lg);

  background:
    rgba(16,24,33,.96);

  border:
    1px solid rgba(255,255,255,.06);

  box-shadow:
    var(--st-shadow-hover);
}

/* =========================
   HERO (STARTSEITE)
========================= */

.st-hero {

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;

  background-image:
    url("../images/hero.jpg");

  background-size: cover;
  background-position: center;
}

.st-hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(12,22,38,0.78),   /* dunkles Navy */
            rgba(10,18,30,0.94)    /* noch dunkleres Navy */
        ),
        radial-gradient(
            circle at top right,
            rgba(198,164,106,.16),
            transparent 38%
        );
}

.st-hero__grid {

  position: relative;
  z-index: 2;

  display: grid;

  gap: 60px;

  align-items: center;

  padding:
    180px 0 160px;
}

.st-eyebrow {

  display: inline-flex;

  margin-bottom: 24px;

  color:
    var(--st-color-primary);

  letter-spacing: .22em;

  font-size: .78rem;

  font-weight: 700;

  text-transform: uppercase;
}

.st-hero__title {

  font-size:
    clamp(3.5rem, 8vw, 7rem);

  line-height: .92;

  letter-spacing: -0.05em;

  font-weight: 800;

  max-width: 860px;

  margin:
    0 0 28px;
}

.st-hero__subtitle {

  max-width: 680px;

  color:
    rgba(255,255,255,.74);

  font-size: 1.16rem;

  line-height: 1.9;

  margin-bottom: 42px;
}

.st-hero__actions {

  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-bottom: 42px;
}

.st-hero__trust {

  display: flex;

  flex-wrap: wrap;

  gap: 18px;
}

.st-hero__trust-item {

  padding:
    12px 18px;

  border-radius:
    var(--st-radius-pill);

  background:
    rgba(255,255,255,.05);

  border:
    1px solid rgba(255,255,255,.06);

  color:
    rgba(255,255,255,.84);

  font-size: .92rem;

  backdrop-filter: blur(12px);
}

/* HERO CARD */

.st-hero-card {

  position: relative;

  padding: 40px;

  border-radius:
    var(--st-radius-lg);

  background:
    rgba(18,26,35,.82);

  border:
    1px solid rgba(255,255,255,.08);

  box-shadow:
    var(--st-shadow-hover);

  backdrop-filter: blur(18px);
}

.st-hero-card__label {

  color:
    var(--st-color-primary);

  font-size: .8rem;

  letter-spacing: .16em;

  text-transform: uppercase;

  font-weight: 700;
}

.st-hero-card h2 {

  font-size: 2rem;

  line-height: 1.15;

  margin:
    18px 0 36px;
}

.st-hero-card__items {

  display: flex;

  flex-direction: column;

  gap: 24px;
}

.st-hero-card__item {

  display: flex;

  gap: 18px;
}

.st-hero-card__item span {

  min-width: 46px;
  height: 46px;

  border-radius: 999px;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    rgba(198,164,106,.14);

  color:
    var(--st-color-primary);

  font-weight: 700;
}

.st-hero-card__item h3 {

  margin:
    0 0 6px;

  font-size: 1rem;
}

.st-hero-card__item p {

  margin: 0;

  color:
    var(--st-color-text-soft);

  line-height: 1.7;
}

/* =========================
   SUB-HERO (UNTERSEITEN)
========================= */

.st-sub-hero {

  position: relative;

  width: 100%;
  min-height: 55vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #fff;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.st-sub-hero__overlay {

  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.st-sub-hero .st-container {

  position: relative;
  z-index: 2;
  padding: 80px 20px;
}

.st-sub-hero__title {

  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.st-sub-hero__subtitle {

  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.7;
}

/* SUB-HERO VARIANTEN (BILDER) */

.st-sub-hero--leistungen {
  background-image: url("../images/hero/leistungen.jpg");
}

.st-sub-hero--maler {
  background-image: url("../images/hero/maler.jpg");
}

.st-sub-hero--boden {
  background-image: url("../images/hero/boden.jpg");
}

.st-sub-hero--silikonfugen {
  background-image: url("../images/hero/silikonfugen.jpg");
}

.st-sub-hero--reinigung {
  background-image: url("../images/hero/reinigung.jpg");
}

.st-sub-hero--pakete {
  background-image: url("../images/hero/pakete.jpg");
}

.st-sub-hero--ausbesserungen {
  background-image: url("../images/hero/ausbesserungen.jpg");
}

.st-sub-hero--rueckbau {
  background-image: url("../images/hero/rueckbau.jpg");
}

.st-sub-hero--kontakt {
  background-image: url("../images/hero/kontakt.jpg");
}

.st-sub-hero--ueber {
  background-image: url("../images/hero/ueber-uns.jpg");
}

.st-sub-hero--legal {
  background-image: url("../images/hero/legal.jpg");
}

/* =========================
   TRUSTBAR
========================= */

.st-trustbar {

  border-top:
    1px solid rgba(255,255,255,.04);

  border-bottom:
    1px solid rgba(255,255,255,.04);

  background:
    #0f151c;
}

.st-trustbar__inner {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 36px;

  padding:
    24px 0;

  color:
    rgba(255,255,255,.64);

  font-size: .9rem;

  font-weight: 600;
}

/* =========================
   FEATURE SERVICE
========================= */

.st-feature-service {

  display: grid;

  gap: 60px;

  align-items: center;
}

.st-feature-service__list {

  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 18px;

  margin-top: 40px;
}

.st-feature-service__list div {

  padding:
    18px 20px;

  border-radius:
    var(--st-radius-md);

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.06);

  color:
    rgba(255,255,255,.84);
}

.st-feature-service__image {

  overflow: hidden;

  border-radius:
    var(--st-radius-lg);

  box-shadow:
    var(--st-shadow-hover);
}

.st-feature-service__image img {

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================
   SERVICES
========================= */

.st-services-grid {

  display: grid;

  gap: 32px;
}

.st-service-card {

  position: relative;

  overflow: hidden;

  border-radius:
    var(--st-radius-lg);

  background:
    var(--st-color-surface);

  border:
    1px solid rgba(255,255,255,.06);

  transition:
    transform var(--st-transition),
    border-color var(--st-transition),
    box-shadow var(--st-transition);

  box-shadow:
    var(--st-shadow-soft);
}

.st-service-card:hover {

  transform:
    translateY(-8px);

  border-color:
    rgba(198,164,106,.28);

  box-shadow:
    var(--st-shadow-hover);
}

.st-service-card__image {

  overflow: hidden;
}

.st-service-card__image img {

  width: 100%;

  height: 280px;

  object-fit: cover;

  transition:
    transform 1s ease;
}

.st-service-card:hover
.st-service-card__image img {

  transform:
    scale(1.08);
}

.st-service-card__content {

  padding: 32px;
}

.st-service-card__eyebrow {

  display: inline-block;

  margin-bottom: 14px;

  color:
    var(--st-color-primary);

  font-size: .76rem;

  letter-spacing: .18em;

  text-transform: uppercase;

  font-weight: 700;
}

.st-service-card h3 {

  font-size: 1.6rem;

  line-height: 1.2;

  margin:
    0 0 16px;
}

.st-service-card p {

  color:
    var(--st-color-text-soft);

  line-height: 1.85;
}

/* =========================
   PROCESS
========================= */

.st-process-grid {

  display: grid;

  gap: 28px;
}

.st-process-card {

  padding: 40px;

  border-radius:
    var(--st-radius-lg);

  background:
    rgba(255,255,255,.03);

  border:
    1px solid rgba(255,255,255,.06);

  transition:
    transform var(--st-transition),
    border-color var(--st-transition);
}

.st-process-card:hover {

  transform:
    translateY(-6px);

  border-color:
    rgba(198,164,106,.24);
}

.st-process-number {

  display: inline-flex;

  margin-bottom: 28px;

  color:
    var(--st-color-primary);

  font-size: 1.4rem;

  font-weight: 700;
}

.st-process-card h3 {

  font-size: 1.3rem;

  margin:
    0 0 14px;
}

.st-process-card p {

  color:
    var(--st-color-text-soft);

  line-height: 1.8;
}

/* =========================
   CTA
========================= */

.st-cta-section {

  padding:
    120px 0;
}

.st-cta-box {

  display: grid;

  gap: 40px;

  padding:
    70px;

  border-radius:
    var(--st-radius-lg);

  background:

    linear-gradient(
      135deg,
      #151d27,
      #1d2835
    );

  border:
    1px solid rgba(255,255,255,.06);

  box-shadow:
    var(--st-shadow-hover);
}

.st-cta-box h2 {

  font-size:
    clamp(2.4rem,5vw,4.6rem);

  line-height: 1;

  letter-spacing: -0.04em;

  margin:
    0 0 24px;
}

.st-cta-box p {

  color:
    var(--st-color-text-soft);

  line-height: 1.9;

  max-width: 620px;
}

.st-cta-box__actions {

  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  align-items: center;
}

/* =========================
   BUTTONS
========================= */

.st-btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 58px;

  padding:
    0 28px;

  border-radius:
    var(--st-radius-pill);

  border:
    1px solid transparent;

  font-size: .96rem;

  font-weight: 700;

  transition:
    transform var(--st-transition),
    box-shadow var(--st-transition),
    background var(--st-transition);

  cursor: pointer;
}

.st-btn:hover {

  transform:
    translateY(-3px);
}

.st-btn--primary {

  background:
    var(--st-gradient-primary);

  color:
    #111;

  box-shadow:
    0 14px 36px rgba(198,164,106,.24);
}

.st-btn--primary:hover {

  box-shadow:
    0 20px 46px rgba(198,164,106,.34);
}

.st-btn--ghost {

  background:
    rgba(255,255,255,.06);

  border:
    1px solid rgba(255,255,255,.08);

  color:
    white;

  backdrop-filter: blur(10px);
}

.st-btn--ghost:hover {

  background:
    rgba(255,255,255,.1);
}

.st-btn--secondary {

  background:
    transparent;

  border:
    1px solid rgba(255,255,255,.12);

  color:
    white;
}

/* =========================
   FOOTER
========================= */

.st-footer {

  border-top:
    1px solid rgba(255,255,255,.05);

  background:
    #0a1016;

  padding:
    90px 0 40px;
}

.st-footer__top {

  display: grid;

  gap: 50px;

  margin-bottom: 50px;
}

.st-footer__brand img {

  width: 240px;

  margin-bottom: 24px;
}

.st-footer__brand p {

  color:
    var(--st-color-text-soft);

  line-height: 1.9;

  max-width: 420px;
}

.st-footer__nav {

  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.st-footer__nav a {

  color:
    rgba(255,255,255,.72);

  transition:
    color var(--st-transition);
}

.st-footer__nav a:hover {

  color:
    white;
}

.st-footer__bottom {

  padding-top: 28px;

  border-top:
    1px solid rgba(255,255,255,.05);
}

.st-footer__bottom p {

  color:
    rgba(255,255,255,.44);

  font-size: .92rem;
}

/* =========================
   WHATSAPP
========================= */

.st-whatsapp {

  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 999;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding:
    14px 18px;

  border-radius:
    var(--st-radius-pill);

  background:
    rgba(16,24,33,.92);

  border:
    1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(16px);

  color:
    white;

  box-shadow:
    var(--st-shadow-hover);

  transition:
    transform var(--st-transition);
}

.st-whatsapp:hover {

  transform:
    translateY(-4px);
}

.st-whatsapp__icon {

  width: 24px;
  height: 24px;
}

.st-whatsapp__text {

  font-size: .9rem;

  font-weight: 600;
}

/* =========================
   ANIMATIONS
========================= */

.fade-in {

  opacity: 0;

  transform:
    translateY(30px);

  animation:
    stFade .8s ease forwards;
}

@keyframes stFade {

  to {

    opacity: 1;

    transform:
      translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {

  .st-nav {

    display: flex;
  }

  .st-header__menu-toggle {

    display: none;
  }

  .st-services-grid {

    grid-template-columns:
      repeat(2,1fr);
  }

  .st-process-grid {

    grid-template-columns:
      repeat(2,1fr);
  }

  .st-footer__top {

    grid-template-columns:
      1.2fr .8fr;
  }

  .st-cta-box {

    grid-template-columns:
      1.4fr .6fr;

    align-items: center;
  }
}

@media (min-width: 1024px) {

  .st-hero__grid {

    grid-template-columns:
      1.1fr .7fr;
  }

  .st-feature-service {

    grid-template-columns:
      1fr 1fr;
  }

  .st-services-grid {

    grid-template-columns:
      repeat(3,1fr);
  }

  .st-process-grid {

    grid-template-columns:
      repeat(4,1fr);
  }
}

@media (max-width: 768px) {

  .st-section {

    padding:
      90px 0;
  }

  .st-hero {

    min-height: auto;
  }

  .st-hero__grid {

    padding:
      140px 0 90px;
  }

  .st-hero__title {

    line-height: .98;
  }

  .st-hero-card {

    padding: 30px;
  }

  .st-feature-service__list {

    grid-template-columns: 1fr;
  }

  .st-cta-box {

    padding: 40px 30px;
  }

  .st-cta-box h2 {

    line-height: 1.05;
  }

  .st-whatsapp {

    padding: 16px;
  }

  .st-whatsapp__text {

    display: none;
  }
}

/* =========================================
   LEGAL PAGES (DARK + GOLD)
========================================= */

.st-legal-wrapper {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 28px;

  margin-top: 20px;
}

.st-legal-card {

  background:
    rgba(16,24,33,0.96);

  backdrop-filter: blur(18px);

  border:
    1px solid var(--st-color-border);

  border-radius: 24px;

  padding: 34px;

  box-shadow:
    var(--st-shadow-soft);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.st-legal-card:hover {

  transform:
    translateY(-6px);

  box-shadow:
    var(--st-shadow-hover);

  border-color:
    rgba(198,164,106,0.35);
}

.st-legal-card h2 {

  font-size: 1.35rem;

  margin-bottom: 18px;

  font-weight: 800;
}

.st-legal-card p {

  color: var(--st-color-text-soft);

  line-height: 1.9;
}

.st-legal-card a {

  color:
    var(--st-color-primary-light);

  font-weight: 700;
}

/* =========================================
   PACKAGE CARDS (DARK + GOLD)
========================================= */

.st-packages-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 34px;

  align-items: stretch;
}

.st-package-card {

  position: relative;

  background:
    rgba(16,24,33,0.96);

  backdrop-filter: blur(18px);

  border:
    1px solid var(--st-color-border);

  border-radius: 30px;

  overflow: hidden;

  padding: 40px 34px;

  box-shadow:
    var(--st-shadow-soft);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.st-package-card:hover {

  transform:
    translateY(-10px);

  box-shadow:
    var(--st-shadow-hover);

  border-color:
    rgba(198,164,106,0.35);
}

.st-package-card--featured {

  transform:
    scale(1.03);

  border:
    2px solid rgba(198,164,106,0.5);
}

.st-package-top {

  position: absolute;

  top: 18px;
  right: 18px;

  background:
    linear-gradient(
      135deg,
      var(--st-color-primary),
      var(--st-color-primary-light)
    );

  color: #1f2933;

  font-size: .75rem;

  font-weight: 800;

  padding:
    8px 14px;

  border-radius: 999px;
}

.st-package-badge {

  display: inline-flex;

  padding:
    8px 16px;

  border-radius: 999px;

  background:
    rgba(198,164,106,0.16);

  color:
    var(--st-color-primary-dark);

  font-size: .8rem;

  font-weight: 800;

  margin-bottom: 20px;
}

.st-package-card h3 {

  font-size: 2rem;

  margin-bottom: 16px;

  font-weight: 900;
}

.st-package-card p {

  color:
    var(--st-color-text-muted);

  line-height: 1.8;
}

.st-package-features {

  list-style: none;

  padding: 0;

  margin:
    32px 0;
}

.st-package-features li {

  position: relative;

  padding-left: 34px;

  margin-bottom: 18px;

  line-height: 1.6;

  color: var(--st-color-text-soft);
}

.st-package-features li::before {

  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color:
    var(--st-color-primary-dark);

  font-weight: 900;
}

.st-package-footer {

  margin-top: auto;
}

@media (max-width: 992px) {

  .st-package-card--featured {

    transform: none;
  }
}
/* =========================
   HOME HERO DARK NAVY FIX
========================= */

/* Stärkeres dunkles Overlay */
.st-hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(8,16,28,0.88),   /* sehr dunkles Navy oben */
            rgba(6,12,22,0.96)    /* noch dunkler unten */
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.45)
        ),
        radial-gradient(
            circle at top right,
            rgba(198,164,106,.16),
            transparent 38%
        ) !important;
}

/* Hero-Bild zusätzlich abdunkeln */
.st-hero {
    position: relative;
}

.st-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* zusätzliche Abdunklung */
    z-index: 1;
}

.st-hero__grid {
    position: relative;
    z-index: 2;
}
/* =========================================
   HOME HERO FIX — Abstand + Dunkel + Mobile
========================================= */

/* 1. Mehr Abstand zwischen Titel und Kachel */
.st-hero__grid {
    padding: 200px 0 220px !important; /* vorher 150 / 100 */
}

/* 2. Hero deutlich dunkler machen */
.st-hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(6,12,22,0.92),   /* sehr dunkles Navy */
            rgba(4,10,18,0.97)    /* noch dunkler */
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        radial-gradient(
            circle at top right,
            rgba(198,164,106,.12),
            transparent 40%
        ) !important;
}

/* 3. Zusätzliche Abdunklung über dem Bild */
.st-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* stärker als vorher */
    z-index: 1;
}

.st-hero__grid {
    position: relative;
    z-index: 3; /* Text + Kachel über Overlay */
}

/* 4. Mobile Fix: Kachel rutscht nicht mehr in den Titel */
@media (max-width: 768px) {

    .st-hero__grid {
        padding: 180px 0 260px !important; /* mehr Abstand unten */
    }

    .st-hero-card {
        margin-top: 40px !important; /* Kachel weiter runter */
    }

    .st-hero__title {
        font-size: 2.4rem !important;
        line-height: 1.1 !important;
    }
}
/* =========================================
   FIX 1 — HOME HERO SPACING (PC + MOBILE)
========================================= */

/* Mehr Abstand zwischen Titel und Kachel */
.st-hero__grid {
    padding-top: 220px !important;   /* vorher 150–180 */
    padding-bottom: 260px !important; /* vorher 100–160 */
}

/* Kachel weiter nach unten schieben */
.st-hero-card {
    margin-top: 40px !important;
}

@media (min-width: 1024px) {
    .st-hero-card {
        margin-top: 80px !important; /* PC extra Abstand */
    }
}
/* =========================================
   FIX 2 — SUB-HERO TOP SPACING (UNTERSEITEN)
========================================= */

.st-sub-hero {
    padding-top: 160px !important; /* Abstand unter dem Header */
}

@media (max-width: 768px) {
    .st-sub-hero {
        padding-top: 140px !important; /* Mobile etwas weniger */
    }
}
/* =========================================
   PERFECT HOME HERO LAYOUT
========================================= */

/* Hero-Grid: Titel oben, Kachel unten */
.st-hero__grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 60px !important;

    padding-top: 200px !important;
    padding-bottom: 260px !important;
}

/* Kachel sauber nach unten */
.st-hero-card {
    width: 100%;
    max-width: 520px;
    margin-top: 20px !important;
    z-index: 3;
}

/* Hero dunkler */
.st-hero__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(6,12,22,0.92),
            rgba(4,10,18,0.97)
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        radial-gradient(
            circle at top right,
            rgba(198,164,106,.12),
            transparent 40%
        ) !important;
}

/* Extra Abdunklung */
.st-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.st-hero__grid {
    position: relative;
    z-index: 3;
}

/* =========================================
   DATENSCHUTZ – KLEINERE ABSATZ-SCHRIFTEN
========================================= */

.datenschutz-text p,
.datenschutz-text li {
    font-size: 0.92rem !important;   /* kleiner */
    line-height: 1.65 !important;    /* angenehmer Abstand */
    color: var(--st-color-text-soft) !important;
}

/* Optional: Zwischenüberschriften etwas kleiner */
.datenschutz-text h2,
.datenschutz-text h3 {
    font-size: 1.35rem !important;
    margin-bottom: 12px !important;
}
/* =========================================
   DATENSCHUTZ – KLEINERE SCHRIFTEN
========================================= */

.st-legal-text p,
.st-legal-text li {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    color: var(--st-color-text-soft) !important;
}

/* H2 kleiner */
.st-legal-text h2 {
    font-size: 1.6rem !important;
    margin-bottom: 14px !important;
}

/* H3 noch kleiner */
.st-legal-text h3 {
    font-size: 1.25rem !important;
    margin-bottom: 10px !important;
}
.st-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.st-package-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 24px;
}

.st-package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.st-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.st-package-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 24px;
}

.st-package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =========================================
   KONTAKT – FORMULAR FIX
========================================= */

.st-contact-form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.st-contact-form label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.st-contact-form input,
.st-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d4d4d4;
    font-size: 1rem;
    margin-bottom: 18px;
}

.st-contact-form textarea {
    min-height: 160px;
    resize: vertical;
}
/* =========================================
   KONTAKT – INFO SPALTEN FIX
========================================= */

.st-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.st-contact-info-item {
    background: #f7f7f7;
    padding: 24px;
    border-radius: 14px;
}

.st-contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.st-contact-info-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}
/* =========================================
   KONTAKT – WHATSAPP BUTTON FIX
========================================= */

.st-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.st-whatsapp-btn img {
    width: 22px;
    height: 22px;
}
/* =========================================
   KONTAKT – MAP FIX
========================================= */

.st-map iframe {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 14px;
}
/* =========================================
   WHATSAPP BUTTON FIX – KLEINER & SAUBER
========================================= */

.st-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 16px; /* kleiner */
    border-radius: 10px;
    font-size: 0.95rem; /* kleiner */
    font-weight: 600;
}

.st-whatsapp-btn img {
    width: 18px;   /* kleiner */
    height: 18px;  /* kleiner */
    object-fit: contain;
}

/* =========================================
   SIZE FIXES (KONTAKT + HERO + WHATSAPP)
========================================= */

/* HERO TITLE / SUBTITLE (zu groß angepasst) */
.st-sub-hero__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.st-sub-hero__subtitle {
    font-size: 1.05rem;
    max-width: 720px;
}

/* EINHEITLICHE CARD HÖHEN / BILDGRÖSSEN */
.st-service-card__image-wrapper {
    height: 200px; /* vorher oft zu groß */
}

.st-service-card h3 {
    font-size: 18px;
}

.st-service-card p {
    font-size: 14px;
}

/* CONTACT CARDS (zu groß / uneinheitlich) */
.st-contact-card {
    padding: 22px;
}

.st-contact-card h3 {
    font-size: 18px;
}

.st-contact-card p {
    font-size: 14px;
    line-height: 1.6;
}

.st-contact-card__link {
    font-size: 14px;
}

/* WHATSAPP BUTTON FIX (zu groß + icon falsch skaliert) */
.st-whatsapp {
    padding: 10px 14px;
    gap: 10px;
    font-size: 14px;
}

.st-whatsapp__icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* MOBILE KORREKTUR */
@media (max-width: 768px) {

    .st-sub-hero__title {
        font-size: 1.9rem;
    }

    .st-service-card__image-wrapper {
        height: 180px;
    }

    .st-contact-card {
        padding: 18px;
    }

    .st-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 10px;
    }
}