﻿/* Page: Homepage erstellen lassen
   Loaded after site.css. Keep only styles used by this page here. */

/* Homepage erstellen lassen: Hero-Buttons */
.smenthp-hero-actions {
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.smenthp-hero-actions .btn {
  width: auto;
  min-height: 52px;
  margin-top: 0;

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

  padding: 0.85rem 1.15rem;
  border-radius: 13px;

  font-size: 1rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.smenthp-hero-primary {
  min-width: 180px;
  box-shadow: 0 12px 26px rgba(247, 148, 30, 0.24);
}

.smenthp-hero-secondary {
  min-width: 165px;
  background: #ffffff;
  color: #123f46;
  border: 1px solid rgba(62, 166, 161, 0.28);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.smenthp-hero-secondary:hover,
.smenthp-hero-secondary:focus {
  color: var(--brand-dark);
  background: rgba(62, 166, 161, 0.07);
  border-color: rgba(62, 166, 161, 0.45);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
}

@media (max-width: 640px) {
  .smenthp-hero-actions {
    align-items: stretch;
  }

  .smenthp-hero-actions .btn {
    width: 100%;
  }
}

/* Homepage erstellen lassen: Hero verfeinern */
.smenthp-hero {
  padding-top: 2.8rem;
  padding-bottom: 2.4rem;
}

.smenthp-hero .hero-title {
  max-width: 900px;
  margin-bottom: 1.4rem;
}

.smenthp-hero .hero-content {
  align-items: center;
  gap: 3rem;
}

.smenthp-hero .hero-text {
  max-width: 680px;
}

.smenthp-hero .lead {
  font-size: 1.12rem;
  line-height: 1.75;
}

.smenthp-hero .hero-media {
  flex: 0 0 400px;
}

.smenthp-hero .hero-image {
  max-width: 400px;
  border-radius: 22px;
  border: 1px solid rgba(62, 166, 161, 0.16);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  background: #ffffff;
  padding: 0.35rem;
}

@media (max-width: 900px) {
  .smenthp-hero .hero-content {
    align-items: flex-start;
    gap: 1.5rem;
  }

  .smenthp-hero .hero-media {
    flex: none;
  }

  .smenthp-hero .hero-image {
    max-width: 360px;
  }
}

/* Homepage erstellen lassen: Für-wen-Intro */
.smenthp-for-section {
  margin-top: 1.8rem;
}

.smenthp-intro-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.7rem;
  align-items: start;

  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background:
    radial-gradient(circle at top right, rgba(62, 166, 161, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.smenthp-intro-text h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: #111827;
}

.smenthp-intro-text p {
  margin: 0 0 0.9rem;
  color: #5f6f80;
  font-size: 1.05rem;
  line-height: 1.7;
}

.smenthp-intro-text p:last-child {
  margin-bottom: 0;
}

.smenthp-check-list {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;

  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(62, 166, 161, 0.16);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.smenthp-check-list li {
  position: relative;
  margin: 0;
  padding-left: 2rem;

  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
}

.smenthp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;

  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(62, 166, 161, 0.14);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

@media (max-width: 820px) {
  .smenthp-intro-box {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}

/* Homepage erstellen lassen: typische Ausgangssituationen */
.smenthp-typ-section {
  margin-top: 3rem;
}

.smenthp-section-head {
  max-width: 820px;
  margin-bottom: 1.4rem;
}

.smenthp-section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: #111827;
}

.smenthp-section-head p {
  margin: 0;
  color: #5f6f80;
  font-size: 1.05rem;
  line-height: 1.7;
}

.smenthp-situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.smenthp-situation-card {
  padding: 1.3rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.smenthp-situation-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.smenthp-situation-card li {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.5;
}

.smenthp-situation-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.08rem;

  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(247, 148, 30, 0.12);
  color: #c85a00;
  font-size: 1.05rem;
  font-weight: 900;
}

@media (max-width: 760px) {
  .smenthp-situation-grid {
    grid-template-columns: 1fr;
  }

  .smenthp-situation-card {
    padding: 1.15rem;
  }
}

/* Homepage erstellen lassen: sinnvoller Website-Aufbau */
.smenthp-content-section {
  margin-top: 3.2rem;
}

.smenthp-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.smenthp-content-card {
  position: relative;
  padding: 1.3rem 1.35rem 1.25rem 4.1rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.smenthp-content-card::before {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;

  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(62, 166, 161, 0.12);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.smenthp-content-card:nth-child(1)::before {
  content: "01";
}

.smenthp-content-card:nth-child(2)::before {
  content: "02";
}

.smenthp-content-card:nth-child(3)::before {
  content: "03";
}

.smenthp-content-card:nth-child(4)::before {
  content: "04";
}

.smenthp-content-card:nth-child(5)::before {
  content: "05";
}

.smenthp-content-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
  color: #123f46;
}

.smenthp-content-card p {
  margin: 0;
  color: #5f6f80;
  font-size: 1rem;
  line-height: 1.6;
}

.smenthp-content-card-wide {
  grid-column: 1 / -1;
}

.smenthp-content-note {
  margin: 1.1rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 15px;
  border: 1px solid rgba(247, 148, 30, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  color: #4b5f70;
  font-size: 1.02rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .smenthp-content-grid {
    grid-template-columns: 1fr;
  }

  .smenthp-content-card,
  .smenthp-content-card-wide {
    grid-column: auto;
  }

  .smenthp-content-card {
    padding: 1.2rem 1.2rem 1.2rem 3.8rem;
  }

  .smenthp-content-card::before {
    left: 1.1rem;
    top: 1.15rem;
  }
}

/* Homepage erstellen lassen: keine technischen Vorkenntnisse nötig */
.smenthp-tech-section {
  margin-top: 3.2rem;
}

.smenthp-tech-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.7rem;
  align-items: start;

  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(247, 148, 30, 0.22);
  background:
    radial-gradient(circle at top right, rgba(247, 148, 30, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.smenthp-tech-text h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: #111827;
}

.smenthp-tech-text p {
  margin: 0 0 0.9rem;
  color: #5f6f80;
  font-size: 1.05rem;
  line-height: 1.7;
}

.smenthp-tech-text p:last-child {
  margin-bottom: 0;
}

.smenthp-tech-end {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(247, 148, 30, 0.18);
  font-weight: 500;
  color: #123f46 !important;
}

.smenthp-tech-list {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;

  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(247, 148, 30, 0.18);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.smenthp-tech-list li {
  position: relative;
  margin: 0;
  padding-left: 2rem;

  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
}

.smenthp-tech-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;

  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(247, 148, 30, 0.14);
  color: #c85a00;
  font-size: 0.8rem;
  font-weight: 900;
}

@media (max-width: 820px) {
  .smenthp-tech-box {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}

/* Homepage erstellen lassen: schlanke Umsetzung */
.smenthp-real-section {
  margin-top: 3.2rem;
}

.smenthp-real-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.7rem;
  align-items: start;

  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background:
    radial-gradient(circle at top right, rgba(62, 166, 161, 0.11), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.smenthp-real-text h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: #111827;
}

.smenthp-real-text p {
  margin: 0 0 0.9rem;
  color: #5f6f80;
  font-size: 1.05rem;
  line-height: 1.7;
}

.smenthp-real-text p:last-child {
  margin-bottom: 0;
}

.smenthp-real-list-wrap {
  padding: 1rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(62, 166, 161, 0.16);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.smenthp-real-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.smenthp-real-list li {
  position: relative;
  margin: 0;
  padding: 0.8rem 0.85rem 0.8rem 2.55rem;

  border-radius: 13px;
  background: rgba(62, 166, 161, 0.065);
  color: #4b5f70;
  font-size: 0.98rem;
  line-height: 1.45;
}

.smenthp-real-list li::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 0.78rem;

  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(62, 166, 161, 0.16);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.smenthp-real-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 15px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: rgba(62, 166, 161, 0.065);
  color: #123f46;
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 500;
}

@media (max-width: 900px) {
  .smenthp-real-box {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .smenthp-real-note {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .smenthp-real-list {
    grid-template-columns: 1fr;
  }
}

/* Homepage erstellen lassen: später erweiterbar */
.smenthp-ext-section {
  margin-top: 3.2rem;
}

.smenthp-ext-box {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background:
    radial-gradient(circle at top right, rgba(62, 166, 161, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.smenthp-ext-head {
  max-width: 820px;
  margin-bottom: 1.3rem;
}

.smenthp-ext-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: #111827;
}

.smenthp-ext-head p {
  margin: 0;
  color: #5f6f80;
  font-size: 1.05rem;
  line-height: 1.7;
}

.smenthp-ext-grid {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.smenthp-ext-grid li {
  position: relative;
  margin: 0;
  padding: 0.85rem 0.95rem 0.85rem 2.65rem;

  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(62, 166, 161, 0.16);
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.035);
}

.smenthp-ext-grid li::before {
  content: "+";
  position: absolute;
  left: 0.9rem;
  top: 0.82rem;

  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(62, 166, 161, 0.14);
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 900;
}

.smenthp-ext-note {
  margin: 1.1rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 15px;
  border: 1px solid rgba(247, 148, 30, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  color: #123f46;
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 500;
}

@media (max-width: 720px) {
  .smenthp-ext-box {
    padding: 1.25rem;
  }

  .smenthp-ext-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage erstellen lassen: Baukasten-Vergleich */
.smenthp-kit-section {
  margin-top: 3.2rem;
}

.smenthp-kit-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.7rem;
  align-items: start;

  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(247, 148, 30, 0.22);
  background:
    radial-gradient(circle at top right, rgba(247, 148, 30, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.smenthp-kit-text h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: #111827;
}

.smenthp-kit-text p {
  margin: 0 0 0.9rem;
  color: #5f6f80;
  font-size: 1.05rem;
  line-height: 1.7;
}

.smenthp-kit-note {
  margin-top: 1rem !important;
  padding: 1rem 1.15rem;
  border-radius: 15px;
  border: 1px solid rgba(247, 148, 30, 0.22);
  background: #ffffff;
  color: #123f46 !important;
  font-weight: 500;
}

.smenthp-kit-list {
  list-style: none;
  margin: 0;
  padding: 1rem;

  display: grid;
  gap: 0.75rem;

  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(247, 148, 30, 0.18);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.smenthp-kit-list li {
  position: relative;
  margin: 0;
  padding: 0.85rem 0.9rem 0.85rem 2.65rem;

  border-radius: 13px;
  background: rgba(247, 148, 30, 0.065);
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
}

.smenthp-kit-list li::before {
  content: "!";
  position: absolute;
  left: 0.9rem;
  top: 0.82rem;

  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(247, 148, 30, 0.16);
  color: #c85a00;
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .smenthp-kit-box {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}

/* Homepage erstellen lassen: Verbindung zu Software und Digitalisierung */
.smenthp-conn-section {
  margin-top: 3.2rem;
}

.smenthp-conn-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.7rem;
  align-items: start;

  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(62, 166, 161, 0.22);
  background:
    radial-gradient(circle at top right, rgba(62, 166, 161, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.smenthp-conn-text h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: #111827;
}

.smenthp-conn-text p {
  margin: 0 0 0.9rem;
  color: #5f6f80;
  font-size: 1.05rem;
  line-height: 1.7;
}

.smenthp-conn-note {
  margin-top: 1rem !important;
  padding: 1rem 1.15rem;
  border-radius: 15px;
  border: 1px solid rgba(62, 166, 161, 0.22);
  background: #ffffff;
  color: #123f46 !important;
  font-weight: 500;
}

.smenthp-conn-list {
  list-style: none;
  margin: 0;
  padding: 1rem;

  display: grid;
  gap: 0.75rem;

  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(62, 166, 161, 0.18);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.smenthp-conn-list li {
  position: relative;
  margin: 0;
  padding: 0.85rem 0.9rem 0.85rem 2.65rem;

  border-radius: 13px;
  background: rgba(62, 166, 161, 0.065);
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
}

.smenthp-conn-list li::before {
  content: "↗";
  position: absolute;
  left: 0.9rem;
  top: 0.82rem;

  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(62, 166, 161, 0.16);
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .smenthp-conn-box {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}

/* Homepage erstellen lassen: Ablauf */
.smenthp-how-section {
  margin-top: 3.4rem;
}

.smenthp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.smenthp-how-card {
  position: relative;
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.smenthp-how-card:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 166, 161, 0.34);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.085);
}

.smenthp-how-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  margin-bottom: 1rem;

  border-radius: 14px;
  background: rgba(247, 148, 30, 0.14);
  color: #c85a00;

  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
}

.smenthp-how-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  line-height: 1.3;
  color: #123f46;
}

.smenthp-how-card p {
  margin: 0;
  color: #5f6f80;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .smenthp-how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .smenthp-how-grid {
    grid-template-columns: 1fr;
  }

  .smenthp-how-card {
    padding: 1.2rem;
  }
}

.smenthp-note-link-section {
  margin-top: 2.2rem;
  margin-bottom: 2.4rem;
}

.smenthp-note-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.smenthp-note-link:hover,
.smenthp-note-link:focus {
  border-color: rgba(62, 166, 161, 0.36);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  text-decoration: none;
  transform: translateY(-1px);
}

.smenthp-note-label {
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: rgba(247, 148, 30, 0.12);
  color: #9a4b00;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.smenthp-note-content {
  display: grid;
  gap: 0.18rem;
}

.smenthp-note-content strong {
  color: #123f46;
  font-size: 1.02rem;
  line-height: 1.35;
}

.smenthp-note-content span {
  color: #5f6f80;
  font-size: 0.98rem;
  line-height: 1.5;
}

.smenthp-note-action {
  color: var(--brand-dark);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .smenthp-note-link {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .smenthp-note-action {
    white-space: normal;
  }
}

/* Homepage erstellen lassen: Abschluss-CTA */
.smenthp-final-cta-section {
  padding-top: 3.6rem;
  padding-bottom: 3.8rem;
}

.smenthp-final-cta {
  margin-top: 0;
}
