/* ===== CSS CUSTOM PROPERTIES ===== */
    :root {
      --apple-blue: #0071e3;
      --apple-blue-hover: #0077ed;
      --apple-dark: #1d1d1f;
      --apple-gray: #6e6e73;
      --apple-light: #f5f5f7;
      --apple-white: #ffffff;
      --apple-border: rgba(0,0,0,0.1);
      --nav-height: 52px;
      --section-padding: 120px;
      --border-radius: 20px;
      --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 17px; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
      color: var(--apple-dark);
      background: var(--apple-white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--apple-blue); text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { max-width: 100%; }
    ::selection { background: rgba(0,113,227,0.2); }

    /* ===== TYPOGRAPHY ===== */
    .headline-xl {
      font-size: clamp(40px, 6vw, 80px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }
    .headline-lg {
      font-size: clamp(28px, 4vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.025em;
    }
    .headline-md {
      font-size: clamp(22px, 3vw, 40px);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .body-lg { font-size: clamp(17px, 2vw, 21px); line-height: 1.6; color: var(--apple-gray); }
    .body-md { font-size: 17px; line-height: 1.65; color: var(--apple-gray); }
    .eyebrow {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--apple-blue);
      margin-bottom: 16px;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 980px;
      font-size: 17px;
      font-weight: 500;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-decoration: none;
    }
    .btn-primary {
      background: var(--apple-blue);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--apple-blue-hover);
      transform: scale(1.02);
      text-decoration: none;
    }
    .btn-secondary {
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(10px);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,0.25);
      transform: scale(1.02);
      text-decoration: none;
    }
    .btn-outline {
      background: transparent;
      color: var(--apple-blue);
      border: 1.5px solid var(--apple-blue);
    }
    .btn-outline:hover {
      background: var(--apple-blue);
      color: #fff;
      transform: scale(1.02);
      text-decoration: none;
    }
    .btn-dark {
      background: var(--apple-dark);
      color: #fff;
    }
    .btn-dark:hover {
      background: #2d2d2f;
      transform: scale(1.02);
      text-decoration: none;
    }

    /* ===== NAVIGATION ===== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      background: rgba(255,255,255,0.85);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid var(--apple-border);
      transition: var(--transition);
    }
    nav.dark {
      background: rgba(29,29,31,0.85);
      border-bottom-color: rgba(255,255,255,0.1);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-logo {
      font-size: 19px;
      font-weight: 700;
      color: var(--apple-dark);
      letter-spacing: -0.02em;
      flex-shrink: 0;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    nav.dark .nav-logo { color: #fff; }
    .nav-logo img {
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      transform: translateY(2px);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }
    .nav-links a {
      color: var(--apple-dark);
      font-size: 14px;
      font-weight: 400;
      padding: 6px 12px;
      border-radius: 8px;
      transition: var(--transition);
      white-space: nowrap;
    }
    nav.dark .nav-links a { color: rgba(255,255,255,0.85); }
    .nav-links a:hover {
      background: rgba(0,0,0,0.06);
      text-decoration: none;
    }
    nav.dark .nav-links a:hover { background: rgba(255,255,255,0.1); }
    .nav-login {
      background: var(--apple-blue);
      color: #fff !important;
      border-radius: 980px;
      padding: 7px 16px !important;
      font-weight: 500 !important;
    }
    .nav-login:hover {
      background: var(--apple-blue-hover) !important;
      background-color: var(--apple-blue-hover) !important;
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--apple-dark);
      border-radius: 2px;
      transition: var(--transition);
    }
    nav.dark .nav-hamburger span { background: #fff; }
    .nav-mobile {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--apple-border);
      padding: 16px 24px 24px;
      z-index: 999;
    }
    .nav-mobile.open { display: block; }
    .nav-mobile ul { list-style: none; }
    .nav-mobile ul li a {
      display: block;
      padding: 14px 0;
      font-size: 17px;
      color: var(--apple-dark);
      border-bottom: 1px solid var(--apple-border);
    }
    .nav-mobile ul li:last-child a { border-bottom: none; }

    /* ===== HERO ===== */
    #start {
      min-height: 100vh;
      background: radial-gradient(ellipse at 60% 40%, #0a1628 0%, #000814 60%, #0d0d0d 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: calc(var(--nav-height) + 60px) 24px 80px;
      position: relative;
      overflow: hidden;
    }
    #start::before {
      content: '';
      position: absolute;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(0,113,227,0.25) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      pointer-events: none;
    }
    #start::after {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(120,0,255,0.1) 0%, transparent 70%);
      bottom: -100px;
      right: -100px;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 860px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 980px;
      padding: 8px 18px;
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 32px;
      backdrop-filter: blur(10px);
    }
    .hero-badge-dot {
      width: 7px;
      height: 7px;
      background: #34c759;
      border-radius: 50%;
      box-shadow: 0 0 8px #34c759;
    }
    .hero-content .headline-xl {
      color: #fff;
      margin-bottom: 24px;
    }
    .hero-content .headline-xl span {
      background: linear-gradient(135deg, #0071e3, #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: clamp(18px, 2.5vw, 23px);
      line-height: 1.55;
      color: rgba(255,255,255,0.65);
      max-width: 620px;
      margin: 0 auto 48px;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero-badges {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 64px;
      padding-top: 48px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 14px;
    }
    .hero-trust-item svg { flex-shrink: 0; }

    /* ===== SECTION CONTAINER ===== */
    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    /* ===== FEATURES ===== */
    #vorteile {
      padding: var(--section-padding) 24px;
      background: var(--apple-light);
    }
    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .feature-card {
      background: var(--apple-white);
      border-radius: var(--border-radius);
      padding: 40px 36px;
      transition: var(--transition);
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 26px;
    }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 600;
      color: var(--apple-dark);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .feature-card p { font-size: 15px; color: var(--apple-gray); line-height: 1.6; }

    /* ===== DIE IDEE ===== */
    #idee {
      padding: var(--section-padding) 24px;
      background: var(--apple-dark);
      color: #fff;
    }
    #idee .section-header { margin-bottom: 72px; }
    #idee .section-header .eyebrow { color: #86a8e7; }
    #idee .headline-lg { color: #fff; }
    #idee .body-lg { color: rgba(255,255,255,0.6); }
    .idee-split {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .idee-text h3 {
      font-size: 28px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    .idee-text p {
      font-size: 17px;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .idee-visual {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--border-radius);
      padding: 40px;
      position: relative;
    }
    .chat-demo {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .chat-bubble {
      max-width: 80%;
      padding: 14px 18px;
      border-radius: 18px;
      font-size: 15px;
      line-height: 1.5;
    }
    .chat-bubble.bot {
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.9);
      align-self: flex-start;
      border-radius: 18px 18px 18px 4px;
    }
    .chat-bubble.user {
      background: var(--apple-blue);
      color: #fff;
      align-self: flex-end;
      border-radius: 18px 18px 4px 18px;
    }
    .chat-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 4px;
    }
    .chat-option {
      background: rgba(0,113,227,0.2);
      border: 1px solid rgba(0,113,227,0.4);
      color: #86b9ff;
      padding: 8px 14px;
      border-radius: 980px;
      font-size: 13px;
      cursor: pointer;
    }
    .vs-block {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 40px;
    }
    .vs-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
      background: rgba(255,255,255,0.03);
      border-radius: 12px;
      padding: 16px 20px;
    }
    .vs-label { font-size: 13px; font-weight: 600; text-align: center; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
    .vs-bad { color: #ff6b6b; font-size: 14px; text-align: right; }
    .vs-good { color: #34c759; font-size: 14px; }

    /* ===== ÜBER MICH ===== */
    #ueber-mich {
      padding: var(--section-padding) 24px;
      background: var(--apple-white);
    }
    .about-split {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      gap: 64px;
      align-items: flex-start;
    }
    .about-photo {
      border-radius: var(--border-radius);
      overflow: hidden;
      width: 220px;
      flex-shrink: 0;
    }
    .about-photo img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--border-radius);
    }
    .about-content h2 { margin-bottom: 8px; }
    .about-name-sub {
      font-size: 17px;
      color: var(--apple-blue);
      font-weight: 500;
      margin-bottom: 32px;
    }
    .about-content p {
      font-size: 17px;
      color: var(--apple-gray);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .cert-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }
    .cert-badge {
      background: var(--apple-light);
      border-radius: 10px;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--apple-dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* ===== PREISE ===== */
    #preise {
      padding: var(--section-padding) 24px;
      background: var(--apple-light);
    }
    .pricing-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }
    .pricing-card {
      background: var(--apple-white);
      border-radius: var(--border-radius);
      padding: 40px 36px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      transition: var(--transition);
      position: relative;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    }
    .pricing-card.featured {
      background: var(--apple-dark);
      color: #fff;
      transform: scale(1.03);
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }
    .pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
    .pricing-badge {
      display: inline-block;
      background: var(--apple-blue);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 980px;
      margin-bottom: 24px;
    }
    .pricing-card h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .pricing-card.featured h3 { color: #fff; }
    .pricing-desc {
      font-size: 14px;
      color: var(--apple-gray);
      margin-bottom: 32px;
      line-height: 1.5;
    }
    .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }
    .pricing-price {
      font-size: 42px;
      font-weight: 700;
      color: var(--apple-dark);
      letter-spacing: -0.03em;
      margin-bottom: 6px;
    }
    .pricing-card.featured .pricing-price { color: #fff; }
    .pricing-price-sub {
      font-size: 14px;
      color: var(--apple-gray);
      margin-bottom: 36px;
    }
    .pricing-card.featured .pricing-price-sub { color: rgba(255,255,255,0.5); }
    .pricing-features {
      list-style: none;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--apple-dark);
    }
    .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
    .pricing-features li::before {
      content: '✓';
      color: var(--apple-blue);
      font-weight: 700;
      flex-shrink: 0;
    }
    .pricing-trial-note {
      text-align: center;
      margin-top: 48px;
      font-size: 15px;
      color: var(--apple-gray);
    }
    .pricing-trial-note strong { color: var(--apple-dark); }

    /* ===== FAQ ===== */
    #faq {
      padding: var(--section-padding) 24px;
      background: var(--apple-white);
    }
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--apple-border);
    }
    .faq-item:first-child { border-top: 1px solid var(--apple-border); }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      cursor: pointer;
      text-align: left;
      font-size: 17px;
      font-weight: 500;
      color: var(--apple-dark);
      transition: var(--transition);
    }
    .faq-question:hover { color: var(--apple-blue); }
    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--apple-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
      font-size: 18px;
      color: var(--apple-gray);
    }
    .faq-item.open .faq-icon {
      background: var(--apple-blue);
      color: #fff;
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s;
    }
    .faq-item.open .faq-answer { max-height: 600px; }
    .faq-answer-inner {
      padding-bottom: 24px;
      font-size: 16px;
      color: var(--apple-gray);
      line-height: 1.7;
    }

    /* ===== KONTAKT ===== */
    #kontakt {
      padding: var(--section-padding) 24px;
      background: var(--apple-light);
    }
    .contact-wrapper {
      max-width: 680px;
      margin: 0 auto;
    }
    .contact-form {
      background: var(--apple-white);
      border-radius: var(--border-radius);
      padding: 52px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: var(--apple-dark);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid var(--apple-border);
      border-radius: 12px;
      font-size: 16px;
      font-family: inherit;
      color: var(--apple-dark);
      background: var(--apple-white);
      transition: var(--transition);
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--apple-blue);
      box-shadow: 0 0 0 4px rgba(0,113,227,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 140px; }
    .honeypot { display: none !important; visibility: hidden; position: absolute; left: -9999px; }
    .form-privacy {
      font-size: 13px;
      color: var(--apple-gray);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .form-privacy a { color: var(--apple-blue); }
    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
    .form-success .success-icon {
      font-size: 52px;
      margin-bottom: 16px;
    }
    .form-success h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .form-success p { color: var(--apple-gray); }
    .form-error-msg {
      display: none;
      background: #fff5f5;
      border: 1px solid #fca5a5;
      border-radius: 10px;
      padding: 14px 16px;
      font-size: 14px;
      color: #dc2626;
      margin-bottom: 16px;
    }

    /* ===== BILLING TOGGLE ===== */
    .billing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 56px;
    }
    .toggle-label {
      font-size: 15px;
      font-weight: 500;
      color: var(--apple-gray);
      transition: var(--transition);
    }
    .toggle-label.active { color: var(--apple-dark); }
    .toggle-switch {
      width: 52px;
      height: 30px;
      background: var(--apple-blue);
      border-radius: 980px;
      position: relative;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      flex-shrink: 0;
    }
    .toggle-switch::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 24px;
      background: #fff;
      border-radius: 50%;
      top: 3px;
      left: 3px;
      transition: var(--transition);
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
    .toggle-switch.annual::after { left: calc(100% - 27px); }
    .save-badge {
      background: #e8fdf0;
      color: #15803d;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 980px;
      border: 1px solid #bbf7d0;
    }
    .price-monthly { display: block; }
    .price-annual  { display: none; }
    .billing-toggle.show-annual .price-monthly { display: none; }
    .billing-toggle.show-annual ~ .pricing-grid .price-monthly { display: none; }
    .billing-toggle.show-annual ~ .pricing-grid .price-annual  { display: block; }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      background: linear-gradient(135deg, #000814 0%, #0a1628 100%);
      padding: 100px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0,113,227,0.2) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    .cta-banner-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
    .cta-banner .headline-lg { color: #fff; margin-bottom: 20px; }
    .cta-banner p { color: rgba(255,255,255,0.6); font-size: 18px; margin-bottom: 40px; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--apple-dark);
      padding: 52px 24px 32px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 200px 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 32px;
    }
    .footer-brand .nav-logo { display: inline-flex; align-items: center; margin-bottom: 12px; color: #fff; }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      transition: var(--transition);
    }
    .footer-col ul li a:hover { color: #fff; text-decoration: none; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: var(--transition);
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.8); text-decoration: none; }
    .footer-made {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: rgba(255,255,255,0.35);
    }

    /* ===== MODALS ===== */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(8px);
      z-index: 2000;
      align-items: flex-end;
      justify-content: center;
      padding: 24px;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: var(--apple-white);
      border-radius: 24px 24px 0 0;
      width: 100%;
      max-width: 800px;
      max-height: 85vh;
      overflow-y: auto;
      padding: 48px 52px;
      animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    @keyframes slideUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
    }
    .modal-header h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
    .modal-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--apple-light);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--apple-gray);
      flex-shrink: 0;
      transition: var(--transition);
    }
    .modal-close:hover { background: #e5e5ea; }
    .modal-body h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 28px 0 10px;
      color: var(--apple-dark);
    }
    .modal-body h3:first-child { margin-top: 0; }
    .modal-body p {
      font-size: 15px;
      color: var(--apple-gray);
      line-height: 1.7;
      margin-bottom: 12px;
    }
    .modal-body ul {
      margin: 8px 0 12px 20px;
    }
    .modal-body ul li {
      font-size: 15px;
      color: var(--apple-gray);
      line-height: 1.7;
      margin-bottom: 4px;
    }
    .modal-placeholder {
      background: #fff8e7;
      border: 1px solid #fcd34d;
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 13px;
      color: #92400e;
      margin-bottom: 16px;
    }

    /* ===== SCROLL TO TOP ===== */
    #scroll-top {
      position: fixed;
      bottom: 96px; /* Abstand nach oben, damit Chatbot-Widget darunter Platz hat */
      right: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(0,0,0,0.1);
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
      z-index: 900;
    }
    #scroll-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    #scroll-top:hover {
      background: rgba(255,255,255,1);
      box-shadow: 0 6px 24px rgba(0,0,0,0.16);
    }
    #scroll-top svg {
      width: 18px;
      height: 18px;
      color: var(--apple-dark);
    }

    /* ===== SCROLL ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      :root { --section-padding: 80px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .idee-split { grid-template-columns: 1fr; gap: 48px; }
      .about-split { flex-direction: column; gap: 40px; }
      .about-photo { width: 180px; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
      .pricing-card.featured { transform: none; }
      .pricing-card.featured:hover { transform: translateY(-4px); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 600px) {
      :root { --section-padding: 60px; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form { padding: 32px 24px; }
      .modal { padding: 32px 24px; border-radius: 20px 20px 0 0; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .hero-badges { gap: 16px; }
      .vs-block { display: none; }
    }


/* ===== BRANCHEN-KACHELN (Startseite) ===== */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.branchen-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-decoration: none;
  transition: var(--transition);
}
.branchen-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  text-decoration: none;
}
.branchen-card .branchen-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.branchen-card h3 { color: #fff; font-size: 21px; font-weight: 600; margin-bottom: 8px; }
.branchen-card p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.5; margin-bottom: 16px; }
.branchen-card .branchen-link { color: var(--apple-blue); font-size: 14px; font-weight: 600; }
@media (max-width: 900px) {
  .branchen-grid { grid-template-columns: 1fr; }
}

/* ===== BRANCHEN-LANDINGPAGES: Content-Bloecke ===== */
.content-section { padding: var(--section-padding) 24px; max-width: 800px; margin: 0 auto; }
.content-block { margin-bottom: 40px; }
.content-block h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.01em; }
.content-block p { font-size: 17px; line-height: 1.7; color: var(--apple-gray); }
.chat-hint {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  display: inline-block;
}
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 40px;
  background: var(--apple-dark);
  border-radius: var(--border-radius);
  text-align: center;
}
.cta-box h2 { color: #fff; margin-bottom: 28px; }
.cta-box .hero-actions { justify-content: center; }

.hero-visual {
  max-width: 900px;
  margin: 48px auto 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero-visual img { display: block; width: 100%; height: auto; }

.breadcrumb {
  margin-top: var(--nav-height);
  padding: 9px 24px;
  min-height: 34px;
  display: flex;
  align-items: center;
  background: var(--apple-light);
  font-size: 13px;
  color: var(--apple-gray);
}
.breadcrumb a { color: var(--apple-gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--apple-dark); text-decoration: none; }
