    /* ============================================================
       WEBDESIGN PAGE – CSS PREFIX: swweb-
       Color Scheme:
         --swweb-teal:   #0e8a82  (Technik / Digital)
         --swweb-blue:   #1a5fb4  (Strategie / Wirtschaft)
         --swweb-violet: #5b2d9e  (Recht / DSGVO)
         --swweb-dark:   #060c0f  (near-black cool)
         --swweb-surface:#0c1419  (card surface)
    ============================================================ */

:root {
      --swweb-teal:       #0e8a82;
      --swweb-teal-lt:    #13b0a6;
      --swweb-blue:       #1a5fb4;
      --swweb-blue-lt:    #2a7fd4;
      --swweb-violet:     #5b2d9e;
      --swweb-violet-lt:  #7c4dc4;
      --swweb-dark:       #060c0f;
      --swweb-surface:    #0c1419;
      --swweb-border:     rgba(14,138,130,0.18);
      --swweb-text:       rgba(255,255,255,0.88);
      --swweb-muted:      rgba(255,255,255,0.55);
    }

    /* ── Global ── */
    .swweb-page { font-family: 'Inter', sans-serif; }

    /* ── BREADCRUMB ── */
    .swweb-breadcrumb {
      background: #f0f4f8;
      padding: 10px 0;
      font-size: 0.8rem;
      color: #666;
      border-bottom: 1px solid #dce4ed;
    }
    .swweb-breadcrumb .container {
      display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    }
    .swweb-breadcrumb a { color: var(--swweb-teal); text-decoration: none; }
    .swweb-breadcrumb a:hover { text-decoration: underline; }
    .swweb-breadcrumb .sep { color: #bbb; }

    /* ── HERO ── */
    .swweb-hero {
      background: url('/images/webdesign-hero.jpg') center center / cover no-repeat,
                  var(--swweb-dark);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .swweb-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        rgba(6,12,15,0.92) 0%,
        rgba(6,12,15,0.80) 55%,
        rgba(6,12,15,0.60) 100%
      );
      pointer-events: none;
      z-index: 0;
    }
    .swweb-hero .container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 60px;
      align-items: center;
    }
    .swweb-hero__label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(14,138,130,0.15);
      border: 1px solid rgba(14,138,130,0.38);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--swweb-teal-lt);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .swweb-hero__title {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 800;
      color: #fff !important;
      line-height: 1.22;
      margin: 0 0 18px;
    }
    .swweb-hero__title span { color: var(--swweb-teal-lt); }
    .swweb-hero__sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.7) !important;
      line-height: 1.7;
      margin: 0 0 28px;
    }
    .swweb-hero__badges {
      display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
    }
    .swweb-hero__badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 6px;
      padding: 6px 14px;
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.85) !important;
    }
    .swweb-hero__badge--teal   { border-color: rgba(14,138,130,0.5);  color: var(--swweb-teal-lt)   !important; }
    .swweb-hero__badge--blue   { border-color: rgba(26,95,180,0.5);   color: #6fa8e8               !important; }
    .swweb-hero__badge--violet { border-color: rgba(91,45,158,0.5);   color: #b48ef5               !important; }
    .swweb-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
    .swweb-hero__cta-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--swweb-teal) !important;
      color: #fff !important;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none !important;
      transition: background 0.2s;
    }
    .swweb-hero__cta-primary:hover { background: #0b6e68 !important; color: #fff !important; }
    .swweb-hero__cta-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent !important;
      color: rgba(255,255,255,0.8) !important;
      border: 1px solid rgba(255,255,255,0.25);
      padding: 13px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none !important;
      transition: border-color 0.2s, color 0.2s;
    }
    .swweb-hero__cta-secondary:hover { border-color: rgba(14,138,130,0.6); color: var(--swweb-teal-lt) !important; }
    /* Hero right panel */
    .swweb-hero__panel {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(14,138,130,0.22);
      border-radius: 16px;
      padding: 32px 28px;
    }
    .swweb-hero__panel-title {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--swweb-teal-lt) !important;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin: 0 0 18px;
    }
    .swweb-hero__stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 22px;
    }
    .swweb-hero__stat {
      text-align: center;
      background: rgba(255,255,255,0.04);
      border-radius: 10px;
      padding: 14px 10px;
    }
    .swweb-hero__stat-num {
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--swweb-teal-lt) !important;
      line-height: 1;
    }
    .swweb-hero__stat-label {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.55) !important;
      margin-top: 4px;
    }
    .swweb-hero__persp {
      display: flex; flex-direction: column; gap: 8px;
    }
    .swweb-hero__persp-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.75) !important;
    }
    .swweb-hero__persp-item i { font-size: 0.8rem; width: 16px; text-align: center; }
    .swweb-hero__persp-item--teal   i { color: var(--swweb-teal-lt); }
    .swweb-hero__persp-item--blue   i { color: #6fa8e8; }
    .swweb-hero__persp-item--violet i { color: #b48ef5; }

    /* ── SECTION SHARED ── */
    .swweb-section { padding: 80px 0; }
    .swweb-section--dark    { background: var(--swweb-dark)    !important; }
    .swweb-section--surface { background: var(--swweb-surface) !important; }
    .swweb-section--light   { background: #f0f6f5             !important; }
    .swweb-section--white   { background: #fff                !important; }
    .swweb-label {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
    }
    .swweb-label--teal { color: var(--swweb-teal); }
    .swweb-label--dark { color: var(--swweb-teal); }
    .swweb-section-title {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      margin: 0 0 12px;
      line-height: 1.25;
    }
    .swweb-section-title--light { color: #0a1520 !important; }
    .swweb-section-title--dark  { color: #fff    !important; }
    .swweb-section-sub {
      font-size: 1rem; line-height: 1.7;
      max-width: 640px; margin: 0 auto 48px;
      text-align: center;
    }
    .swweb-section-sub--light { color: #555  !important; }
    .swweb-section-sub--dark  { color: rgba(255,255,255,0.6) !important; }
    .swweb-text-center { text-align: center; }

    /* ── PROBLEM SECTION ── */
    .swweb-problem { background: #f0f6f5 !important; }
    .swweb-problem__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }
    .swweb-problem__card {
      background: #fff;
      border-radius: 14px;
      padding: 28px 24px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }
    .swweb-problem__card-top {
      display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
    }
    .swweb-problem__card-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: #e6f4f3;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--swweb-teal); flex-shrink: 0;
    }
    .swweb-problem__card h3 {
      font-size: 0.95rem; font-weight: 700;
      color: #0a1520 !important; margin: 0; line-height: 1.3;
    }
    .swweb-problem__card p {
      font-size: 0.87rem; color: #555 !important;
      line-height: 1.65; margin: 0;
    }
    .swweb-problem__resolve {
      background: linear-gradient(135deg, #0b5c57 0%, #0e8a82 100%);
      border-radius: 14px;
      padding: 22px 28px;
      display: flex; align-items: center; gap: 16px;
    }
    .swweb-problem__resolve i { font-size: 1.4rem; color: #7ef5f0; flex-shrink: 0; }
    .swweb-problem__resolve p {
      font-size: 0.92rem; color: #d0faf8 !important;
      line-height: 1.6; margin: 0;
    }
    .swweb-problem__resolve strong { color: #fff !important; }

    /* ── PERSPEKTIVEN ── */
    .swweb-persp { background: #f0f6f5 !important; }
    .swweb-persp__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 32px rgba(0,0,0,0.09);
    }
    @media (max-width: 991px) and (min-width: 600px) {
      .swweb-persp__grid { grid-template-columns: repeat(2,1fr); }
      .swweb-persp__card--violet { grid-column: 1 / -1; }
    }
    @media (max-width: 599px) { .swweb-persp__grid { grid-template-columns: 1fr; } }
    .swweb-persp__card { padding: 30px 26px; position: relative; }
    .swweb-persp__card--teal   { background: linear-gradient(150deg, #063532, #0e8a82); }
    .swweb-persp__card--blue   { background: linear-gradient(150deg, #081c40, #1a5fb4); }
    .swweb-persp__card--violet { background: linear-gradient(150deg, #2a1050, #5b2d9e); }
    .swweb-persp__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .swweb-persp__icon {
      width: 42px; height: 42px; border-radius: 9px;
      background: rgba(255,255,255,0.14);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #fff; flex-shrink: 0;
    }
    .swweb-persp__card h3 {
      font-size: 1.05rem; font-weight: 800;
      color: #fff !important; margin: 0;
    }
    .swweb-persp__card p {
      font-size: 13px; color: rgba(255,255,255,0.72) !important;
      line-height: 1.65; margin-bottom: 14px;
    }
    .swweb-persp__tags { display: flex; flex-wrap: wrap; gap: 5px; }
    .swweb-persp__tag {
      background: rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.88) !important;
      font-size: 10px; font-weight: 600;
      padding: 3px 9px; border-radius: 10px; border: none;
    }

    /* ── LEISTUNGEN ── */
    .swweb-leist { background: #fff !important; }
    .swweb-leist__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    @media (max-width: 1024px) { .swweb-leist__grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 576px)  { .swweb-leist__grid { grid-template-columns: 1fr; } }
    .swweb-leist__card {
      background: #f2f8f7;
      border-radius: 14px;
      padding: 24px 20px;
      border: 1px solid #d8eeec;
      transition: box-shadow .2s, transform .2s;
    }
    .swweb-leist__card:hover {
      box-shadow: 0 6px 24px rgba(14,138,130,0.10);
      transform: translateY(-2px);
    }
    .swweb-leist__card-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; margin-bottom: 14px;
    }
    .swweb-leist__card-icon--teal   { background: rgba(14,138,130,0.14); color: var(--swweb-teal);   }
    .swweb-leist__card-icon--blue   { background: rgba(26,95,180,0.12);  color: var(--swweb-blue);   }
    .swweb-leist__card-icon--violet { background: rgba(91,45,158,0.12);  color: var(--swweb-violet); }
    .swweb-leist__card-icon--dark   { background: rgba(6,12,15,0.07);    color: #334455;             }
    .swweb-leist__card h3 {
      font-size: 0.9rem; font-weight: 700;
      color: #0a1520 !important; margin: 0 0 8px;
    }
    .swweb-leist__card p {
      font-size: 0.82rem; color: #555 !important;
      line-height: 1.6; margin: 0 0 12px;
    }
    .swweb-leist__list {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 6px;
    }
    .swweb-leist__list li {
      display: flex; align-items: flex-start; gap: 7px;
      font-size: 0.79rem; color: #444 !important; line-height: 1.5;
    }
    .swweb-leist__list li i { margin-top: 2px; flex-shrink: 0; font-size: 0.72rem; }
    .swweb-leist__list--teal   li i { color: var(--swweb-teal);   }
    .swweb-leist__list--blue   li i { color: var(--swweb-blue);   }
    .swweb-leist__list--violet li i { color: var(--swweb-violet); }
    .swweb-leist__list--dark   li i { color: #556677; }

    /* ── FUNNEL-HIGHLIGHT: "Wie eine Webseite zum Funnel wird" ── */
    .swweb-funnel {
      background: var(--swweb-surface) !important;
      padding: 80px 0;
    }
    .swweb-funnel__grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.3);
      margin-bottom: 40px;
    }
    @media (max-width: 900px)  { .swweb-funnel__grid { grid-template-columns: 1fr; } }
    .swweb-funnel__step {
      background: rgba(255,255,255,0.04);
      border-right: 1px solid rgba(255,255,255,0.07);
      padding: 28px 20px;
      text-align: center;
      position: relative;
      transition: background 0.2s;
    }
    .swweb-funnel__step:last-child { border-right: none; }
    .swweb-funnel__step:hover { background: rgba(14,138,130,0.1); }
    .swweb-funnel__step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 34px; height: 34px; border-radius: 50%;
      font-size: 13px; font-weight: 900;
      color: #fff !important;
      margin: 0 auto 12px;
    }
    .swweb-funnel__step:nth-child(1) .swweb-funnel__step-num { background: var(--swweb-teal); }
    .swweb-funnel__step:nth-child(2) .swweb-funnel__step-num { background: var(--swweb-teal-lt); }
    .swweb-funnel__step:nth-child(3) .swweb-funnel__step-num { background: var(--swweb-blue); }
    .swweb-funnel__step:nth-child(4) .swweb-funnel__step-num { background: var(--swweb-blue-lt); }
    .swweb-funnel__step:nth-child(5) .swweb-funnel__step-num { background: var(--swweb-violet); }
    .swweb-funnel__step-icon {
      font-size: 1.5rem; display: block; margin: 0 auto 10px;
      color: var(--swweb-teal-lt);
    }
    .swweb-funnel__step:nth-child(3) .swweb-funnel__step-icon,
    .swweb-funnel__step:nth-child(4) .swweb-funnel__step-icon { color: var(--swweb-blue-lt); }
    .swweb-funnel__step:nth-child(5) .swweb-funnel__step-icon { color: #b48ef5; }
    .swweb-funnel__step h4 {
      font-size: 0.85rem; font-weight: 800;
      color: #fff !important; margin: 0 0 6px;
    }
    .swweb-funnel__step p {
      font-size: 11px; color: rgba(255,255,255,0.60) !important;
      line-height: 1.6; margin: 0;
    }
    .swweb-funnel__note {
      background: rgba(14,138,130,0.1);
      border: 1px solid rgba(14,138,130,0.28);
      border-radius: 12px;
      padding: 20px 28px;
      display: flex; align-items: center; gap: 14px;
      max-width: 820px; margin: 0 auto;
    }
    .swweb-funnel__note i { font-size: 1.4rem; color: var(--swweb-teal-lt); flex-shrink: 0; }
    .swweb-funnel__note p {
      font-size: 0.87rem; color: rgba(255,255,255,0.75) !important;
      line-height: 1.65; margin: 0;
    }
    .swweb-funnel__note strong { color: #fff !important; }

    /* ── RECHT & DSGVO – Compliance-Sektion ── */
    .swweb-compliance { background: #f0f6f5 !important; }
    .swweb-compliance__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 32px;
    }
    @media (max-width: 768px) { .swweb-compliance__grid { grid-template-columns: 1fr; } }
    .swweb-compliance__card {
      background: #fff;
      border-radius: 14px;
      padding: 26px 22px;
      border: 1px solid #d0e8e6;
      box-shadow: 0 2px 14px rgba(0,0,0,0.05);
      display: flex; flex-direction: column; gap: 12px;
    }
    .swweb-compliance__card-icon {
      width: 42px; height: 42px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
    }
    .swweb-compliance__card-icon--violet { background: rgba(91,45,158,0.12); color: var(--swweb-violet); }
    .swweb-compliance__card-icon--teal   { background: rgba(14,138,130,0.12); color: var(--swweb-teal);   }
    .swweb-compliance__card-icon--blue   { background: rgba(26,95,180,0.12);  color: var(--swweb-blue);   }
    .swweb-compliance__card h3 {
      font-size: 0.92rem; font-weight: 700;
      color: #0a1520 !important; margin: 0;
    }
    .swweb-compliance__card p {
      font-size: 0.83rem; color: #555 !important;
      line-height: 1.65; margin: 0 0 8px;
    }
    .swweb-compliance__tags { display: flex; flex-wrap: wrap; gap: 5px; }
    .swweb-compliance__tag {
      font-size: 10px; font-weight: 600;
      padding: 3px 9px; border-radius: 8px;
      background: #e8f4f3; color: var(--swweb-teal) !important;
      border: 1px solid #c0e0dc;
    }
    .swweb-compliance__tag--violet {
      background: #ede8f8; color: var(--swweb-violet) !important;
      border-color: #d0bef5;
    }
    .swweb-compliance__tag--blue {
      background: #e4ecf8; color: var(--swweb-blue) !important;
      border-color: #bbd0ef;
    }
    .swweb-compliance__resolve {
      background: linear-gradient(135deg, #2a1050 0%, #5b2d9e 100%);
      border-radius: 14px;
      padding: 22px 28px;
      display: flex; align-items: center; gap: 16px;
    }
    .swweb-compliance__resolve i { font-size: 1.4rem; color: #d4b8ff; flex-shrink: 0; }
    .swweb-compliance__resolve p {
      font-size: 0.92rem; color: #e8d8ff !important;
      line-height: 1.6; margin: 0;
    }
    .swweb-compliance__resolve strong { color: #fff !important; }

    /* ── ABLAUF (3×2 GRID) ── */
    .swweb-process-section {
      background: #f4f7fc !important;
      padding: 80px 0;
    }
    .swweb-process-section .swweb-section-title { color: #0a1520 !important; }
    .swweb-process-section .swweb-section-sub   { color: #555 !important; }
    .swweb-process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 940px; margin: 0 auto;
    }
    @media (max-width: 767px) { .swweb-process-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 479px) { .swweb-process-grid { grid-template-columns: 1fr; } }
    .swweb-process-box {
      background: #fff;
      border: 1px solid #e4e8ef;
      border-radius: 10px;
      padding: 22px 20px;
    }
    .swweb-process-box__num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      font-size: 15px; font-weight: 900;
      color: #fff !important; margin-bottom: 12px; flex-shrink: 0;
    }
    .swweb-process-box:nth-child(1) .swweb-process-box__num { background: var(--swweb-teal); }
    .swweb-process-box:nth-child(2) .swweb-process-box__num { background: var(--swweb-teal); }
    .swweb-process-box:nth-child(3) .swweb-process-box__num { background: var(--swweb-blue); }
    .swweb-process-box:nth-child(4) .swweb-process-box__num { background: var(--swweb-blue); }
    .swweb-process-box:nth-child(5) .swweb-process-box__num { background: var(--swweb-violet); }
    .swweb-process-box:nth-child(6) .swweb-process-box__num { background: var(--swweb-violet); }
    .swweb-process-box h4 {
      color: #0a1520 !important; font-size: 0.9rem; font-weight: 800; margin-bottom: 6px;
    }
    .swweb-process-box p {
      color: #555 !important; font-size: 12px; line-height: 1.6; margin: 0;
    }

    /* ── ERGEBNISSE ── */
    .swweb-results { background: #f0f6f5 !important; }
    .swweb-results__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    @media (max-width: 768px) { .swweb-results__grid { grid-template-columns: 1fr; } }
    .swweb-results__item {
      background: #fff;
      border-radius: 14px;
      padding: 24px 22px;
      display: flex; gap: 14px;
      align-items: flex-start;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .swweb-results__icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(14,138,130,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; color: var(--swweb-teal); flex-shrink: 0;
    }
    .swweb-results__item h4 {
      font-size: 0.88rem; font-weight: 700;
      color: #0a1520 !important; margin: 0 0 5px;
    }
    .swweb-results__item p {
      font-size: 0.82rem; color: #666 !important;
      line-height: 1.55; margin: 0;
    }
    .swweb-results__readiness {
      margin-top: 28px;
      background: #e8f4f3;
      border: 1px solid #a8d8d4;
      border-radius: 10px;
      padding: 24px 30px;
      max-width: 820px;
      margin: 28px auto 0;
      display: flex; align-items: center; gap: 20px;
    }
    .swweb-results__readiness i { font-size: 2rem; color: var(--swweb-teal); flex-shrink: 0; }
    .swweb-results__readiness-text h4 {
      font-size: 1rem; font-weight: 800;
      color: #0a3530 !important; margin: 0 0 6px;
    }
    .swweb-results__readiness-text p {
      font-size: 0.88rem; color: #0a3530 !important;
      margin: 0; line-height: 1.6;
    }

    /* ── VORTEILE – 4 Karten ── */
    .swweb-vorteile { background: #fff !important; }
    .swweb-vorteile__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    @media (max-width: 992px) { .swweb-vorteile__grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 576px) { .swweb-vorteile__grid { grid-template-columns: 1fr; } }
    .swweb-vorteile__card {
      background: #f2f8f7;
      border: 1px solid #d0e8e6;
      border-radius: 12px;
      padding: 26px 22px;
      display: flex; flex-direction: column; gap: 12px;
      transition: box-shadow .2s, transform .2s;
    }
    .swweb-vorteile__card:hover {
      box-shadow: 0 6px 24px rgba(14,138,130,0.10);
      transform: translateY(-3px);
    }
    .swweb-vorteile__icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .swweb-vorteile__icon--teal   { background: rgba(14,138,130,0.14); color: var(--swweb-teal)   !important; }
    .swweb-vorteile__icon--blue   { background: rgba(26,95,180,0.12);  color: var(--swweb-blue)   !important; }
    .swweb-vorteile__icon--violet { background: rgba(91,45,158,0.12);  color: var(--swweb-violet) !important; }
    .swweb-vorteile__icon--dark   { background: rgba(6,12,15,0.07);    color: #334455             !important; }
    .swweb-vorteile__card h4 {
      color: #0a1520 !important; font-size: 15px; font-weight: 700; margin: 0; line-height: 1.3;
    }
    .swweb-vorteile__card p {
      color: #555 !important; font-size: 13px; line-height: 1.6; margin: 0;
    }

    /* ── WARUM SOURCEWEB ── */
    .swweb-why { background: #fff !important; }
    .swweb-why__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px; align-items: start;
    }
    @media (max-width: 767px) { .swweb-why__layout { grid-template-columns: 1fr; } }
    .swweb-why-main {
      background: var(--swweb-dark);
      border-radius: 12px;
      padding: 30px 28px;
      color: #fff;
    }
    .swweb-why-main h2 {
      font-size: 1.1rem; font-weight: 800; color: #fff !important; margin: 0 0 10px;
    }
    .swweb-why-main p {
      color: rgba(255,255,255,0.75) !important; font-size: 14px;
      line-height: 1.7; margin: 0 0 12px;
    }
    .swweb-why__points { display: flex; flex-direction: column; gap: 12px; }
    .swweb-why__point {
      background: #f2f8f7;
      border: 1px solid #d0e8e6;
      border-radius: 8px;
      padding: 16px 18px;
      display: flex; gap: 12px; align-items: flex-start;
    }
    .swweb-why__point-icon {
      font-size: 15px; color: var(--swweb-teal);
      margin-top: 2px; flex-shrink: 0;
    }
    .swweb-why__point h4 {
      font-size: 13px; font-weight: 700;
      color: #0a1520 !important; margin: 0 0 3px; display: block;
    }
    .swweb-why__point p {
      font-size: 12px; color: #555 !important; margin: 0; line-height: 1.55;
    }
    /* Wieland-Karte */
    .swweb-wieland-card {
      display: flex; align-items: flex-start; gap: 16px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      padding: 16px 18px; margin-top: 22px;
    }
    .swweb-wieland-card__photo {
      width: 64px; height: 64px; border-radius: 50%;
      overflow: hidden; flex-shrink: 0;
      border: 2px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
    }
    .swweb-wieland-card__photo img { width: 100%; height: 100%; object-fit: cover; }
    .swweb-wieland-card__info { flex: 1; }
    .swweb-wieland-card__name {
      font-size: 14px; font-weight: 800; color: #fff !important; margin-bottom: 3px;
    }
    .swweb-wieland-card__roles { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 7px; }
    .swweb-wieland-card__role {
      font-size: 10px; font-weight: 600;
      background: rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.80) !important;
      padding: 2px 8px; border-radius: 8px;
    }
    .swweb-wieland-card__text {
      font-size: 12px; color: rgba(255,255,255,0.65) !important;
      line-height: 1.55; margin: 0;
    }
    .swweb-wieland-card__cta {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--swweb-teal) !important;
      color: #fff !important;
      text-decoration: none !important;
      padding: 9px 18px; border-radius: 8px;
      font-size: 0.82rem; font-weight: 700;
      transition: background 0.2s; margin-top: 12px;
    }
    .swweb-wieland-card__cta:hover { background: #0b6e68 !important; color: #fff !important; }

    /* ── PAKETE ── */
    .swweb-pakete { background: #fff !important; }
    .swweb-pakete__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px; margin-bottom: 28px;
    }
    @media (max-width: 1024px) { .swweb-pakete__grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 576px)  { .swweb-pakete__grid { grid-template-columns: 1fr; } }
    .swweb-pakete__card {
      background: #f2f8f7;
      border-radius: 16px; overflow: hidden;
      position: relative; display: flex; flex-direction: column;
      border: 1px solid #c8e8e4;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .swweb-pakete__card:hover {
      box-shadow: 0 8px 32px rgba(14,138,130,0.12);
      transform: translateY(-3px);
    }
    .swweb-pakete__card--featured {
      background: var(--swweb-dark);
      border-color: rgba(14,138,130,0.45);
    }
    .swweb-pakete__featured-badge {
      position: absolute; top: 14px; right: 14px;
      background: var(--swweb-teal);
      color: #fff !important; font-size: 0.68rem; font-weight: 700;
      padding: 3px 10px; border-radius: 10px;
      text-transform: uppercase; letter-spacing: 0.06em;
    }
    .swweb-pakete__header {
      padding: 26px 22px 18px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .swweb-pakete__card--featured .swweb-pakete__header { border-bottom-color: rgba(255,255,255,0.1); }
    .swweb-pakete__icon {
      width: 42px; height: 42px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; margin-bottom: 12px;
    }
    .swweb-pakete__icon--teal   { background: rgba(14,138,130,0.15); color: var(--swweb-teal);   }
    .swweb-pakete__icon--white  { background: rgba(255,255,255,0.10); color: var(--swweb-teal-lt); }
    .swweb-pakete__icon--blue   { background: rgba(26,95,180,0.15);  color: var(--swweb-blue);   }
    .swweb-pakete__icon--violet { background: rgba(91,45,158,0.15);  color: var(--swweb-violet-lt); }
    .swweb-pakete__card h3 {
      font-size: 0.95rem; font-weight: 800;
      color: #0a1520 !important; margin: 0 0 5px;
    }
    .swweb-pakete__card--featured h3 { color: #fff !important; }
    .swweb-pakete__for {
      font-size: 0.75rem; color: #888 !important; line-height: 1.5; margin: 0 0 12px;
    }
    .swweb-pakete__card--featured .swweb-pakete__for { color: rgba(255,255,255,0.55) !important; }
    .swweb-pakete__price {
      font-size: 1.5rem; font-weight: 800; color: var(--swweb-teal) !important;
    }
    .swweb-pakete__card--featured .swweb-pakete__price { color: var(--swweb-teal-lt) !important; }
    .swweb-pakete__price-note {
      font-size: 0.75rem; font-weight: 400; color: #999 !important;
    }
    .swweb-pakete__card--featured .swweb-pakete__price-note { color: rgba(255,255,255,0.45) !important; }
    .swweb-pakete__body { padding: 18px 22px; flex: 1; }
    .swweb-pakete__features {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 9px;
    }
    .swweb-pakete__features li {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 0.82rem; color: #444 !important; line-height: 1.45;
    }
    .swweb-pakete__card--featured .swweb-pakete__features li { color: rgba(255,255,255,0.75) !important; }
    .swweb-pakete__features li i.fa-check       { color: var(--swweb-teal);    font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
    .swweb-pakete__features li i.fa-check-double{ color: var(--swweb-teal-lt); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
    .swweb-pakete__footer { padding: 0 22px 22px; }
    .swweb-pakete__cta {
      display: block; text-align: center;
      padding: 11px 16px; border-radius: 8px;
      font-size: 0.83rem; font-weight: 700;
      text-decoration: none !important;
      transition: background 0.2s, color 0.2s;
      background: #c8e8e4 !important; color: #0a3530 !important;
      border: 1px solid #a0d0cc;
    }
    .swweb-pakete__cta:hover { background: var(--swweb-teal) !important; color: #fff !important; border-color: var(--swweb-teal); }
    .swweb-pakete__card--featured .swweb-pakete__cta {
      background: var(--swweb-teal) !important; color: #fff !important; border-color: transparent;
    }
    .swweb-pakete__card--featured .swweb-pakete__cta:hover { background: #0b6e68 !important; }
    .swweb-pakete__custom {
      background: #f2f8f7; border-radius: 12px;
      padding: 18px 24px; font-size: 0.88rem; color: #555 !important;
      display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
      border: 1px dashed #a0d0cc;
    }
    .swweb-pakete__custom i { color: var(--swweb-teal); }
    .swweb-pakete__custom a { color: var(--swweb-teal) !important; font-weight: 600; }

    /* ── WEBCHECK FORMULAR ── */
    .swweb-check { background: #fff !important; }
    .swweb-check__layout {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 40px; align-items: start;
    }
    @media (max-width: 768px) { .swweb-check__layout { grid-template-columns: 1fr; } }
    .swweb-check__list {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 10px;
    }
    .swweb-check__list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.88rem; color: #334 !important; line-height: 1.5;
    }
    .swweb-check__list li i {
      color: var(--swweb-teal); margin-top: 2px; flex-shrink: 0;
    }
    .swweb-check__form-box {
      background: #f2f8f7;
      border: 1px solid #c8e4e2;
      border-radius: 16px; padding: 32px 28px;
    }
    .swweb-check__form-box h3 {
      font-size: 1rem; font-weight: 800; color: #0a1520 !important;
      margin: 0 0 6px;
    }
    .swweb-check__form-box p {
      font-size: 0.83rem; color: #666 !important; margin: 0 0 20px; line-height: 1.55;
    }
    .swweb-check__form-group { margin-bottom: 14px; }
    .swweb-check__form-group label {
      display: block; font-size: 0.8rem; font-weight: 600;
      color: #334 !important; margin-bottom: 5px;
    }
    .swweb-check__form-group input,
    .swweb-check__form-group select,
    .swweb-check__form-group textarea {
      width: 100%; padding: 10px 14px;
      border: 1px solid #c0d8d5; border-radius: 8px;
      font-family: 'Inter', sans-serif; font-size: 0.85rem;
      color: #334; background: #fff;
      transition: border-color 0.2s;
      box-sizing: border-box;
    }
    .swweb-check__form-group input:focus,
    .swweb-check__form-group select:focus,
    .swweb-check__form-group textarea:focus {
      outline: none; border-color: var(--swweb-teal);
    }
    .swweb-check__form-group textarea { resize: vertical; min-height: 90px; }
    .swweb-check__form-submit {
      width: 100%; padding: 13px 20px;
      background: var(--swweb-teal) !important;
      color: #fff !important; border: none; border-radius: 8px;
      font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 700;
      cursor: pointer; transition: background 0.2s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .swweb-check__form-submit:hover { background: #0b6e68 !important; }
    .swweb-check__success {
      display: none;
      background: #e8f4f3; border: 1px solid #a8d8d4;
      border-radius: 12px; padding: 28px 24px; text-align: center;
    }
    .swweb-check__success i { font-size: 2rem; color: var(--swweb-teal); margin-bottom: 12px; }
    .swweb-check__success h4 { font-size: 1rem; font-weight: 800; color: #0a3530 !important; margin: 0 0 6px; }
    .swweb-check__success p  { font-size: 0.85rem; color: #0a3530 !important; margin: 0; line-height: 1.6; }

    /* ── FAQ ── */
    .swweb-faq { background: #f0f6f5 !important; }
    .swweb-faq__list {
      max-width: 760px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 12px;
    }
    .swweb-faq__item {
      background: #fff; border-radius: 12px;
      overflow: hidden; border: 1px solid #c8e4e2;
    }
    .swweb-faq__question {
      width: 100%; display: flex; align-items: center;
      justify-content: space-between;
      padding: 18px 22px; background: transparent; border: none;
      cursor: pointer; font-family: 'Inter', sans-serif;
      font-size: 0.92rem; font-weight: 700; color: #0a1520; text-align: left; gap: 12px;
    }
    .swweb-faq__question:hover { background: #e8f4f3; }
    .swweb-faq__question i { color: var(--swweb-teal); transition: transform 0.25s; flex-shrink: 0; }
    .swweb-faq__question.open i { transform: rotate(180deg); }
    .swweb-faq__answer {
      display: none; padding: 0 22px 18px;
      font-size: 0.87rem; color: #555; line-height: 1.7;
      border-top: 1px solid #d0ece8;
    }
    .swweb-faq__answer.visible { display: block; }

    /* ── FINAL CTA ── */
    .swweb-cta-final {
      background: linear-gradient(135deg, var(--swweb-dark) 0%, #0c2020 50%, #080c18 100%) !important;
      padding: 80px 0; text-align: center;
    }
    .swweb-cta-final h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
      color: #fff !important; margin: 0 0 16px;
    }
    .swweb-cta-final p {
      font-size: 1rem; color: rgba(255,255,255,0.65) !important;
      max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
    }
    .swweb-cta-final__btns {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
    }
    .swweb-cta-final__btn-primary {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--swweb-teal) !important; color: #fff !important;
      padding: 15px 32px; border-radius: 8px;
      font-weight: 700; font-size: 0.97rem;
      text-decoration: none !important; transition: background 0.2s;
    }
    .swweb-cta-final__btn-primary:hover { background: #0b6e68 !important; color: #fff !important; }
    .swweb-cta-final__btn-secondary {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent !important; color: rgba(255,255,255,0.8) !important;
      border: 1px solid rgba(255,255,255,0.3);
      padding: 14px 28px; border-radius: 8px;
      font-weight: 600; font-size: 0.97rem;
      text-decoration: none !important; transition: border-color 0.2s, color 0.2s;
    }
    .swweb-cta-final__btn-secondary:hover { border-color: var(--swweb-teal-lt); color: var(--swweb-teal-lt) !important; }

    /* ── INTERSTITIAL CTA BAR ── */
    .swweb-interstitial {
      background: var(--swweb-teal) !important; padding: 18px 0;
    }
    .swweb-interstitial .container {
      display: flex; align-items: center;
      justify-content: space-between; gap: 16px; flex-wrap: wrap;
    }
    .swweb-interstitial span {
      font-size: 0.92rem; font-weight: 600; color: #fff !important;
    }
    .swweb-interstitial a {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(0,0,0,0.2) !important; color: #fff !important;
      text-decoration: none !important;
      padding: 9px 20px; border-radius: 6px;
      font-size: 0.85rem; font-weight: 700;
      white-space: nowrap; transition: background 0.2s;
    }
    .swweb-interstitial a:hover { background: rgba(0,0,0,0.35) !important; }

    /* ── TRUST TICKER ── */
    .swweb-trust {
      background: var(--swweb-dark) !important;
      padding: 22px 0;
      border-top: 1px solid rgba(14,138,130,0.15);
      border-bottom: 1px solid rgba(14,138,130,0.15);
      overflow: hidden;
    }
    .swweb-trust__inner {
      display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
      justify-content: center;
    }
    .swweb-trust__item {
      display: flex; align-items: center; gap: 9px;
      font-size: 0.82rem; font-weight: 600;
      color: rgba(255,255,255,0.65) !important;
      white-space: nowrap;
    }
    .swweb-trust__item i { color: var(--swweb-teal-lt); font-size: 0.9rem; }

    /* ── FOOTER ── */
    .swweb-footer {
      background: var(--swweb-dark) !important;
      padding: 40px 0 24px;
      border-top: 1px solid rgba(14,138,130,0.15);
    }
    .swweb-footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 32px; margin-bottom: 32px;
    }
    @media (max-width: 900px)  { .swweb-footer__grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 520px)  { .swweb-footer__grid { grid-template-columns: 1fr; } }
    .swweb-footer__brand p {
      font-size: 0.82rem; color: rgba(255,255,255,0.50) !important;
      line-height: 1.65; margin: 8px 0 0;
    }
    .swweb-footer__title {
      font-size: 0.78rem; font-weight: 700;
      color: var(--swweb-teal-lt) !important;
      letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
    }
    .swweb-footer__links {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 7px;
    }
    .swweb-footer__links a {
      font-size: 0.82rem; color: rgba(255,255,255,0.55) !important;
      text-decoration: none;
      transition: color 0.2s;
    }
    .swweb-footer__links a:hover { color: var(--swweb-teal-lt) !important; }
    .swweb-footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 20px;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
      font-size: 0.78rem; color: rgba(255,255,255,0.35) !important;
    }
    .swweb-footer__bottom a { color: rgba(255,255,255,0.45) !important; text-decoration: none; }
    .swweb-footer__bottom a:hover { color: var(--swweb-teal-lt) !important; }
    .swweb-footer__wieland {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(14,138,130,0.15);
      border-radius: 10px; padding: 12px 16px; margin-top: 16px;
    }
    .swweb-footer__wieland-photo {
      width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
      flex-shrink: 0; background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
    }
    .swweb-footer__wieland-photo img { width: 100%; height: 100%; object-fit: cover; }
    .swweb-footer__wieland-name {
      font-size: 12px; font-weight: 700; color: #fff !important;
    }
    .swweb-footer__wieland-role {
      font-size: 11px; color: rgba(255,255,255,0.50) !important;
    }

    /* ── RESPONSIVE GLOBAL ── */
    @media (max-width: 1024px) {
      .swweb-hero .container { grid-template-columns: 1fr; }
      .swweb-hero__panel { display: none; }
    }
    @media (max-width: 768px) {
      .swweb-problem__grid,
      .swweb-compliance__grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .swweb-hero { padding: 60px 0 50px; }
      .swweb-section { padding: 56px 0; }
    }
    @media (max-width: 680px) {
      #webcheck > .container > div { grid-template-columns: 1fr !important; }
    }

    /* ── ANIMATION ── */
    .wow { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .wow.animated { opacity: 1; transform: translateY(0); }