		/* -------------------------------------------------
		   Lokale Einbindung von Arimo (Regular & Bold)
		   ------------------------------------------------- */
		@font-face {
			font-family: 'Arimo';
			font-style: normal;
			font-weight: 400;
			src: url('fonts/arimo/arimo-v35-latin-regular.woff2') format('woff2');
			font-display: swap;               /* Schnellere Anzeige, verbessert UX */
		}
		@font-face {
			font-family: 'Arimo';
			font-style: normal;
			font-weight: 700;
			src: url('fonts/arimo/arimo-v35-latin-700.woff2') format('woff2');
			font-display: swap;
		}

		/* -------------------------------------------------
		   Lokale Einbindung von Alegreya (SemiBold & Bold)
		   ------------------------------------------------- */
		@font-face {
			font-family: 'Alegreya';
			font-style: normal;
			font-weight: 600;
			src: url('fonts/alegreya/alegreya-v39-latin-600.woff2') format('woff2');
			font-display: swap;
		}
		@font-face {
			font-family: 'Alegreya';
			font-style: normal;
			font-weight: 700;
			src: url('fonts/alegreya/alegreya-v39-latin-700.woff2') format('woff2');
			font-display: swap;
		}
    :root {
      --paper-white: #ffffff;
      --deep-earth-grey: #4a555c;
      --empathy-rose: #E66086;
      --growth-green: #448451;
      --clarity-blue: #7CE0E6;
      --solar-gold: #F5B041;

      --text-color: #4A555C;
      --muted-text: #6f787f;
      --soft-bg: #f7fbf8;
      --rose-light: rgba(230, 96, 134, 0.08);
      --green-light: rgba(68, 132, 81, 0.10);
      --border-soft: rgba(74, 85, 92, 0.12);
      --shadow-soft: 0 14px 45px rgba(74, 85, 92, 0.08);

      --font-headline: 'Alegreya', serif;
      --font-body: 'Arimo', sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--paper-white);
      color: var(--text-color);
      line-height: 1.7;
      font-size: 18px;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
    }

    h1,
    h2,
    h3 {
      font-family: var(--font-headline);
      font-weight: 600;
      color: var(--deep-earth-grey);
      line-height: 1.18;
    }

    h1 {
      font-size: clamp(1.9rem, 4.2vw, 3rem);
      margin-bottom: 1.4rem;
    }

    h2 {
      font-size: clamp(1.7rem, 4vw, 2.45rem);
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.25rem;
      margin-bottom: 0.4rem;
    }

    p {
      margin-bottom: 1rem;
    }

    strong {
      color: var(--empathy-rose);
      font-weight: 700;
    }

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .narrow {
      width: min(820px, calc(100% - 40px));
      margin: 0 auto;
    }

    .text-center {
      text-align: center;
    }

    .section-label,
    .booking-intro .section-label,
    .clarity-copy .section-label,
    .hero-content .section-label {
      display: inline-block;
      margin-bottom: 0.8rem;
      color: #E66086 !important;
      font-size: 0.86rem;
      font-weight: 700;
      letter-spacing: 1.7px;
      text-transform: uppercase;
    }

    .clarity-copy .section-label {
      display: block;
      width: 100%;
      text-align: center;
    }

    .clarity-copy h2 {
      text-align: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 32px;
      border-radius: 999px;
      background: linear-gradient(135deg, #E66086 0%, #D86D82 100%);
      color: #ffffff;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      box-shadow: 0 10px 24px rgba(230, 96, 134, 0.28);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(230, 96, 134, 0.36);
    }

    .btn:focus-visible {
      outline: 3px solid rgba(230, 96, 134, 0.35);
      outline-offset: 4px;
    }

    .btn-secondary {
      background: transparent;
      color: var(--empathy-rose);
      box-shadow: none;
      border: 1px solid rgba(230, 96, 134, 0.35);
    }

    .btn-secondary:hover {
      box-shadow: 0 10px 22px rgba(230, 96, 134, 0.10);
    }

    .hero {
      position: relative;
      padding: 54px 0 34px;
      overflow: hidden;
      background: #ffffff;
    }

    .hero-logo {
      width: 92px;
      margin: 0 auto 28px;
    }

    .hero-content {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-subline {
      max-width: 720px;
      margin: 0 auto 1.3rem;
      font-size: clamp(1.05rem, 2vw, 1.22rem);
      color: var(--deep-earth-grey);
    }

    .hero-note {
      max-width: 700px;
      margin: 1.35rem auto 0;
      color: var(--muted-text);
      font-size: 0.98rem;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 2rem;
    }

    .booking-section {
      /* padding: 36px 0 78px; */
	  padding: unset;	
      background: linear-gradient(180deg, #ffffff 0%, var(--soft-bg) 100%);
    }

    .booking-intro {
      max-width: 720px;
      margin: 0 auto 28px;
      text-align: center;
    }

    .booking-intro p {
      color: var(--muted-text);
    }

    .calendar-card {
      max-width: 768px;
      margin: 0 auto;
      /* background: #ffffff;
      border: 1px solid var(--border-soft);
      border-radius: 24px;
      box-shadow: var(--shadow-soft);*/
      overflow: hidden;
    }

    .calendly-inline-widget {
      min-width: 320px;
      height: 760px;
    }

    .clarity-section {
      padding: 78px 0;
      background: #ffffff;
    }

    .clarity-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 54px;
      align-items: start;
    }

    .clarity-copy p {
      color: var(--muted-text);
    }

    .point-list {
      display: grid;
      gap: 18px;
    }

    .point {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 14px;
      padding: 22px;
      border-radius: 18px;
      background: var(--soft-bg);
      border: 1px solid rgba(68, 132, 81, 0.10);
    }

    .point-icon {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--growth-green);
      font-weight: 700;
      flex-shrink: 0;
    }

    .point p {
      margin: 0;
      color: var(--muted-text);
      font-size: 1rem;
    }

    .trust-section {
      padding: 72px 0;
      background:
        linear-gradient(180deg, var(--soft-bg) 0%, #ffffff 100%);
    }

    .trust-card {
      max-width: 880px;
      margin: 0 auto;
      padding: 42px;
      border-radius: 26px;
      background: #ffffff;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-soft);
      text-align: center;
    }

    .trust-card p {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      color: var(--muted-text);
    }

    .trust-card .final-line {
      margin-top: 1.3rem;
      margin-bottom: 0;
      font-size: 1.15rem;
      color: var(--deep-earth-grey);
    }

    footer {
      padding: 38px 20px;
      background: #fafafa;
      border-top: 1px solid #eeeeee;
      text-align: center;
      color: #888888;
      font-size: 0.92rem;
    }

    footer a {
      color: #888888;
      text-decoration: none;
      margin: 0 8px;
    }

    footer a:hover {
      color: var(--empathy-rose);
    }

    @media (max-width: 860px) {
      body {
        font-size: 16px;
      }

      .hero {
        padding-top: 34px;
      }

      .hero-logo {
        width: 70px;
        margin-bottom: 22px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
        padding: 16px 22px;
      }

      .booking-section {
        padding-top: 28px;
      }

      .calendar-card {
   		max-width: 760px!important;
      }

      .calendly-inline-widget {
        height: 700px;
	    margin: 0 auto;
      }
		
	  .clarity-section {
   		 padding: 30px 0;
	  }
		
	  .clarity-copy{
        padding: 0 15px;
		margin: 0 auto;
      }
      .clarity-grid {
        grid-template-columns: 1fr;
        gap: 34px;
		width: 98%;
		margin: 0 auto;
      }
	.container {
        width: 98%;
		margin: 0 auto;
      }
      .trust-card {
        padding: 30px 22px;
      }
    }


    @media (max-width: 420px) {

      .container,
      .narrow {
        width: 100%;
      }
		
      .point {
        grid-template-columns: 32px 1fr;
        padding: 18px;
      }

      .point-icon {
        width: 32px;
        height: 32px;
      }

      footer a {
        display: inline-block;
        margin-top: 6px;
      }
    }