
:root {
      --purple:       #5B2D9E;
      --purple-dark:  #3E1B72;
      --purple-light: #EDE8F8;
      --purple-mid:   #7B4BC4;
      --gold:         #F5A623;
      --text:         #1A1028;
      --muted:        #6B6480;
      --white:        #FFFFFF;
      --bg:           #F9F7FD;
      --card-bg:      #FFFFFF;
      --border:       #E8E2F5;
      --radius-sm:    8px;
      --radius-md:    16px;
      --radius-lg:    24px;
      --shadow-sm:    0 2px 12px rgba(91,45,158,.08);
      --shadow-md:    0 8px 32px rgba(91,45,158,.14);
      --shadow-lg:    0 20px 60px rgba(91,45,158,.18);
    }

    /* ── Reset & Base ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ── Utilities ─────────────────────────────────────────── */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-label {
      font-size: 11px;
      font-weight: bold;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--purple-mid);
      margin-bottom: 12px;
    }
    .section-heading {
      font-family: 'DM Sans', serif;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      color: var(--text);
      line-height: 1.2;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: var(--purple);
      color: var(--white);
      box-shadow: 0 6px 20px rgba(91,45,158,.35);
    }
    .btn-primary:hover {
      background: var(--purple-dark);
      box-shadow: 0 10px 28px rgba(91,45,158,.45);
    }
    .btn-outline {
      background: transparent;
      color: var(--purple);
      border: 2px solid var(--purple);
    }
    .btn-outline:hover {
      background: var(--purple-light);
    }
    .btn-white {
      background: var(--white);
      color: var(--purple);
      box-shadow: var(--shadow-md);
    }
    .btn-white:hover {
      box-shadow: var(--shadow-lg);
    }

    /* ── Animations ────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes floatBadge {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }
    .fade-up { animation: fadeUp .7s ease both; }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .22s; }
    .delay-3 { animation-delay: .34s; }
    .delay-4 { animation-delay: .46s; }

    /* ── Navigation ────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(249,247,253,.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--purple);
    }
    .logo-icon {
      width: 32px;
      height: 32px;
      background: var(--purple);
      border-radius: 50%;
      display: grid;
      place-items: center;
    }
    .logo-icon svg { width: 18px; height: 18px; fill: white; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav-links a:not(.btn) {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      transition: color .2s;
    }
    .nav-links a:not(.btn):hover,
    .nav-links a:not(.btn).active { color: var(--purple); }
    .nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 14px; }

    /* ── Hero ──────────────────────────────────────────────── */
    .hero {
      padding: 96px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -200px;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(91,45,158,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--purple-light);
      color: var(--purple);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .06em;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 24px;
    }
    .hero-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }
    .hero h1 {
      font-family: 'DM Sans', serif;
      font-size: clamp(36px, 5.2vw, 54px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--purple);
    }
    .hero-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 420px;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-trust {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .hero-avatars {
      display: flex;
    }
    .hero-avatars .av {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 3px solid var(--bg);
      background: var(--purple-light);
      margin-left: -10px;
      display: grid;
      place-items: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--purple);
    }
    .hero-avatars .av:first-child { margin-left: 0; }
    .hero-trust-text { font-size: 13px; color: var(--muted); }
    .hero-trust-text strong { color: var(--text); }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .hero-card {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 4/3.5;
      background: linear-gradient(135deg, #EDE8F8 0%, #D9CFF5 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-lg);
    }
    /* SVG illustration placeholder */
    .hero-illustration {
      width: 85%;
      position: absolute;
      bottom: 0;
    }
    .hero-badge {
      position: absolute;
      top: 24px;
      left: -20px;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      box-shadow: var(--shadow-md);
      animation: floatBadge 3.5s ease-in-out infinite;
    }
    .hero-badge .badge-num {
      font-family: 'DM Sans', serif;
      font-size: 28px;
      font-weight: 900;
      color: var(--purple);
      line-height: 1;
    }
    .hero-badge .badge-label {
      font-size: 11px;
      color: var(--muted);
      font-weight: 500;
      white-space: nowrap;
    }
    .hero-badge-2 {
      position: absolute;
      bottom: 28px;
      right: -18px;
      background: var(--purple);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      box-shadow: var(--shadow-md);
      font-size: 13px;
      font-weight: 600;
      animation: floatBadge 3.5s ease-in-out infinite;
      animation-delay: 1.2s;
    }
    .hero-badge-2 .star { color: var(--gold); font-size: 11px; }

    /* ── Values ────────────────────────────────────────────── */
    .values {
      padding: 100px 0;
      background: var(--white);
    }
    .values-header {
      margin-bottom: 56px;
      max-width: 540px;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .value-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(91,45,158,.2);
    }
    .value-icon {
      width: 52px; height: 52px;
      background: var(--purple-light);
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      margin-bottom: 24px;
    }
    .value-icon svg { width: 24px; height: 24px; stroke: var(--purple); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .value-card h3 {
      font-family: 'DM Sans', serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .value-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── Testimonials ──────────────────────────────────────── */
    .testimonials {
      padding: 100px 0;
      background: var(--bg);
    }
    .testimonials-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 52px;
      gap: 20px;
      flex-wrap: wrap;
    }
    .testi-nav {
      display: flex;
      gap: 10px;
    }
    .testi-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--white);
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: background .2s, border-color .2s;
    }
    @media (hover: hover) {
      .testi-btn:hover {
        background: var(--purple);
        border-color: var(--purple);
      }
      .testi-btn:hover svg { stroke: white; }
    }
    .testi-btn svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .testi-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .testi-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      transition: box-shadow .25s ease;
    }

    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 18px;
    }
    .stars span { color: var(--gold); font-size: 16px; }
    .testi-text {
      font-size: 15px;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .author-av {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--purple-light);
      display: grid;
      place-items: center;
      font-weight: 700;
      color: var(--purple);
      font-size: 14px;
      flex-shrink: 0;
    }
    .author-name { font-size: 14px; font-weight: 600; }
    .author-role { font-size: 12px; color: var(--muted); }

    /* ── About ─────────────────────────────────────────────── */
    .about {
      padding: 100px 0;
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 80px;
    }
    .about-visual {
      position: relative;
    }
    .about-img-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(135deg, #1A1028, #3E1B72);
      aspect-ratio: 4/3.2;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
    }
    /* People illustration */
    .about-people {
      display: flex;
      gap: -8px;
    }
    .person-fig {
      width: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .person-head {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--purple-light);
    }
    .person-body {
      width: 52px; height: 72px;
      border-radius: 12px 12px 4px 4px;
    }
    .exp-badge {
      position: absolute;
      bottom: -18px;
      left: 36px;
      background: var(--purple);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      box-shadow: var(--shadow-md);
    }
    .exp-badge .exp-num {
      font-family: 'DM Sans', serif;
      font-size: 32px;
      font-weight: 900;
      line-height: 1;
    }
    .exp-badge .exp-label {
      font-size: 11px;
      opacity: .8;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .about-content .about-paragraph {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      margin: 20px 0 32px;
    }
    .about-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 40px;
    }
    .about-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 500;
    }
    .check-icon {
      width: 22px; height: 22px;
      background: var(--purple);
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .check-icon svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* ── CTA Banner ────────────────────────────────────────── */
    .cta-banner {
      margin: 0;
      background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-mid) 100%);
      padding: 96px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
    }
    .cta-banner h2 {
      font-family: 'DM Sans', serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
      position: relative;
    }
    .cta-banner p {
      font-size: 16px;
      color: rgba(255,255,255,.75);
      margin-bottom: 40px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .cta-banner .btn { position: relative; }

    /* ── Footer ────────────────────────────────────────────── */
    footer {
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }
    .footer-about .logo { margin-bottom: 16px; }
    .footer-about p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: var(--muted);
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--purple); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: var(--muted); }
    .social-links { display: flex; gap: 12px; }
    .social-links a {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: grid;
      place-items: center;
      transition: background .2s, border-color .2s;
    }
    .social-links a:hover {
      background: var(--purple-light);
      border-color: var(--purple);
    }
    .social-links a svg { width: 15px; height: 15px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ── Responsive ────────────────────────────────────────── */

        /* Mobile Hamburger */
    .hamburger {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }
    .mobile-cta {
  display: none;
  margin-top: 20px;
}
.hamburger .line {
  transition: all 0.3s ease;
  transform-box: fill-box;
  transform-origin: center;
}

/* Animation zu X */
.hamburger.open .top {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.open .middle {
  opacity: 0;
}

.hamburger.open .bottom {
  transform: translateY(-5px) rotate(-45deg);
}

    .hamburger svg {
      width: 20px;
      height: 20px;
      stroke: var(--muted);
      fill: none;
      stroke-width: 2;
      overflow: visible;
    }


    @media (max-width: 900px) {
      .hero-grid,
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { order: -1; }
      .values-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .nav-links {
        position: fixed;
        top: 68px;
        right: 0;
        left: auto;
        width: 100%;
        height: calc(100vh - 68px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
        gap: 24px;
        transform: translateX(100%);
        pointer-events: none;
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 400;
      }
      .nav-links.open {
        transform: translateX(0);
        pointer-events: auto;
      }
      .nav-links a:not(.btn) {
        font-size: 18px;
      }
      .nav-cta {
        display: none;
      }
      .hamburger {
        display: flex;
        position: fixed;
        right: 24px;
        top: 13px;
        z-index: 500;
      }
      .mobile-cta {
        display: block;
      }
    }


    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; }
      .hero-badge, .hero-badge-2 { display: none; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .footer-bottom { flex-direction: column; }
    }

    .testi-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
    .testi-grid::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
}

    @media (max-width: 600px) {
      .testi-card { flex: 0 0 100%; }
    }

    @media (max-width: 900px) {
      .nav-inner {
        justify-content: space-between;
      }
    }

    /* ── Kontakt ───────────────────────────────────────────── */
    .kontakt-hero {
      padding: 80px 0 60px;
      text-align: center;
    }
    .kontakt-hero .section-label { margin-bottom: 14px; }
    .kontakt-hero .section-heading { margin-bottom: 18px; }
    .kontakt-hero .hero-sub {
      max-width: 520px;
      margin: 0 auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 760px;
      margin: 0 auto;
      padding-bottom: 80px;
    }

    .contact-tile {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .contact-tile:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--purple);
    }
    .contact-tile .value-icon { margin-bottom: 22px; }
    .contact-tile h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .tile-value {
      font-size: 15px;
      font-weight: 500;
      color: var(--purple);
      margin: 0 0 6px;
      word-break: break-all;
      text-decoration: none;
    }
    .tile-value:hover { text-decoration: underline; }
    .tile-hint {
      font-size: 13px;
      color: var(--muted);
      margin: 0;
    }

    @media (max-width: 600px) {
      .contact-grid { grid-template-columns: 1fr; }
    }
