/* Start custom CSS for html, class: .elementor-element-93c6a2e */:root {
  --aesch-background: #ffffff;
  --aesch-foreground: #020617;
  --aesch-primary: #0ea5e9;
  --aesch-primary-foreground: #f9fafb;
  --aesch-muted: #64748b;
  --aesch-border: #e5e7eb;
  --aesch-gray-soft: #f3f4f6;
  --aesch-gray-dark: #111827;
}

/* Basis */

.aesch-landing,
.aesch-landing * {
  box-sizing: border-box;
}

.aesch-landing {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--aesch-background);
  color: var(--aesch-foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.aesch-main {
  flex: 1;
}

.aesch-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.aesch-landing h1,
.aesch-landing h2,
.aesch-landing h3 {
  margin: 0;
  font-weight: 700;
  color: var(--aesch-foreground);
}

.aesch-landing p {
  margin: 0;
}

.aesch-landing a {
  text-decoration: none;
  color: inherit;
}

.aesch-landing a:hover {
  color: var(--aesch-primary);
}

/* Header */

.aesch-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--aesch-border);
}

.aesch-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.aesch-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.aesch-logo {
  height: 40px;
  width: auto;
}

.aesch-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.aesch-nav a {
  position: relative;
}

.aesch-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--aesch-primary);
  transition: width 0.15s ease-in-out;
}

.aesch-nav a:hover::after {
  width: 100%;
}

/* Hero */

.aesch-hero {
  background-color: var(--aesch-primary);
  color: var(--aesch-primary-foreground);
  padding: 5rem 0;
}

.aesch-hero-inner {
  max-width: 48rem;
  text-align: center;
  margin: 0 auto;
}

.aesch-hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--aesch-primary-foreground);
}

.aesch-hero-text {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.aesch-hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* Buttons */

.aesch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background-color 0.15s ease-in-out,
    color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    transform 0.1s ease-in-out;
}

.aesch-btn-primary {
  background-color: var(--aesch-primary-foreground);
  color: var(--aesch-primary);
}

.aesch-btn-primary:hover {
  background-color: #e5f4fb;
  transform: translateY(-1px);
}

.aesch-btn-outline-light {
  background-color: transparent;
  color: var(--aesch-primary-foreground);
  border-color: rgba(249, 250, 251, 0.6);
}

.aesch-btn-outline-light:hover {
  background-color: rgba(249, 250, 251, 0.1);
}

/* Sections */

.aesch-section {
  padding: 4rem 0;
}

.aesch-section-light {
  background-color: #ffffff;
}

.aesch-section-gray {
  background-color: var(--aesch-gray-soft);
}

.aesch-section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Cards */

.aesch-cards-grid {
  display: grid;
  gap: 2.5rem;
}

.aesch-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.aesch-icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--aesch-primary);
  color: var(--aesch-primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.aesch-icon-circle-secondary {
  background-color: var(--aesch-primary);
}

.aesch-card-title {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.aesch-card-text {
  font-size: 0.95rem;
  color: var(--aesch-muted);
  line-height: 1.6;
}

/* SEO-Note */

.aesch-seo-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--aesch-muted);
  text-align: center;
}

.aesch-seo-note a {
  font-weight: 500;
}

/* CTA */

.aesch-cta {
  background-color: var(--aesch-primary);
  color: var(--aesch-primary-foreground);
  text-align: center;
}

.aesch-cta-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.aesch-cta-inner h2 {
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
  color: var(--aesch-primary-foreground);
}

.aesch-cta-inner p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* Footer */

.aesch-footer {
  background-color: var(--aesch-gray-dark);
  color: #d1d5db;
  padding: 3rem 0 2rem;
}

.aesch-footer-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.aesch-footer-links h3 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f9fafb;
}

.aesch-footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 2rem;
}

.aesch-footer-links li + li {
  margin-top: 0.5rem;
}

.aesch-footer-links a {
  color: #9ca3af;
  font-size: 0.9rem;
}

.aesch-footer-links a:hover {
  color: #f9fafb;
}

.aesch-footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */

@media (min-width: 768px) {
  .aesch-hero {
    padding: 6rem 0;
  }

  .aesch-hero h1 {
    font-size: 3rem;
  }

  .aesch-hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .aesch-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aesch-section {
    padding: 5rem 0;
  }
}
/* Theme-Logo im Header verkleinern */
#Header img,
#Top_bar .logo img {
  max-height: 60px !important;
  height: auto !important;
}

body.page-id-7967 #Header,
body.page-id-7967 #Top_bar {
  display: none !important;
}
.aesch-hero .aesch-btn-primary {
  color: var(--aesch-primary) !important;
}

/* Sicherstellen, dass der zweite Button weiss umrandet bleibt */
.aesch-hero .aesch-btn-outline-light {
  color: #ffffff !important;
  border-color: rgba(249,250,251,0.6) !important;
}
/* Footer-Links ohne Bullets, ohne Theme-Punkte */
.aesch-footer-links ul,
.aesch-footer-links li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.aesch-footer-links ul li::before {
  display: none !important;
}

/* Links im Footer etwas ruhiger */
.aesch-footer-links a {
  color: #9ca3af !important;
  text-decoration: none;
}

.aesch-footer-links a:hover {
  color: #f9fafb !important;
}
/* Primärer Button: Text sichtbar machen (Hero + CTA) */
.aesch-btn-primary {
  background-color: var(--aesch-primary-foreground) !important;
  color: var(--aesch-primary) !important;
}

/* Optional: Hover-Zustand etwas dunkler */
.aesch-cta .aesch-btn-primary:hover {
  background-color: #e5f4fb !important;
}
/* Alle Landing-Sektionen über die ganze Breite ziehen (Landing: ID 7967) */
body.page-id-7967 .aesch-hero,
body.page-id-7967 .aesch-section,
body.page-id-7967 .aesch-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}/* End custom CSS */