

/* ================================= Hero Section ================================================ */

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 2rem;
      }

      .hero-text p {
        font-size: 1.1rem;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .placeholder-image {
        height: 400px;
      }

      .placeholder-icon {
        font-size: 80px;
      }

      .placeholder-text {
        font-size: 1.2rem;
      }

      .business-icons {
        flex-wrap: wrap;
        gap: 20px;
      }
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
    }

    .hero-section {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    /* Animierte Hintergrund-Elemente */
    .hero-section::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, #00d4ff40, #00a6ff40);
      border-radius: 50%;
      top: -200px;
      right: -200px;
      animation: float 8s ease-in-out infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, #ff6b3540, #ffa50040);
      border-radius: 50%;
      bottom: -150px;
      left: -150px;
      animation: float 10s ease-in-out infinite reverse;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-40px) rotate(10deg); }
    }

    .hero-container {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* Linke Seite - Text */
    .hero-text {
      color: white;
      animation: slideInLeft 1s ease-out;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-badge {
      display: inline-block;
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    }

    .hero-text h1 {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #ffffff, #00d4ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-text p {
      font-size: 1.25rem;
      line-height: 1.8;
      margin-bottom: 32px;
      color: #e0e0e0;
      max-width: 580px;
    }

    /* Feature Liste */
    .hero-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 40px;
    }


    .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #e0e0e0;
      font-size: 1.1rem;
    }

    .feature-icon {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
    }

    /* CTA Buttons */
    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #00d4ff, #0099cc);
      color: white;
      box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
    }

    /* Rechte Seite - Bild */
    .hero-image {
      position: relative;
      animation: slideInRight 1s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .image-wrapper {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .image-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 166, 255, 0.1));
      z-index: 1;
    }

    .hero-image img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      display: block;
      border-radius: 30px;
    }

    /* Platzhalter-Bild */
    .placeholder-image {
      width: 100%;
      height: 600px;
      background: linear-gradient(135deg, #1a3a52 0%, #2c5364 50%, #0f2027 100%);
      border-radius: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      position: relative;
      overflow: hidden;
    }

    .placeholder-image::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
      border-radius: 50%;
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 0.8; }
    }

    .placeholder-icon {
      font-size: 120px;
      position: relative;
      z-index: 2;
      animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .placeholder-text {
      color: white;
      font-size: 1.5rem;
      font-weight: 600;
      text-align: center;
      position: relative;
      z-index: 2;
      max-width: 400px;
      padding: 0 20px;
    }

    .business-icons {
      display: flex;
      gap: 40px;
      position: relative;
      z-index: 2;
      margin-top: 20px;
    }

    .business-icon-item {
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
    }

    .business-icon-item .icon {
      font-size: 50px;
      margin-bottom: 10px;
      display: block;
    }

    .business-icon-item .label {
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 30px;
      }

      .hero-text h1 {
        font-size: 2.5rem;
      }

      .stats-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 40px;
      }
    }

    @media (max-width: 480px) {
      .hero-container {
        padding: 30px 20px;
      }

      .hero-text h1 {
        font-size: 1.75rem;
      }

      .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
      }
    }







/* ================================================ Dienstleistungen SECTION ============================================== */





    .dienstleistungen-section {
      max-width: 1400px;
      margin: 0 auto;
    }

    .dienstleistungen-container h2 {
      font-size: 3rem;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .dienstleistungen-container > p {
      text-align: center;
      color: #7f8c8d;
      font-size: 1.3rem;
      margin-bottom: 60px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .services-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 100px;
    }

    .arrow-connector {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .arrow-line {
      animation: dash 3s linear infinite;
    }

    @keyframes dash {
      to {
        stroke-dashoffset: -20;
      }
    }

    .arrow-head {
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(1.2); }
    }

    .service-item {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    }

    .service-item:nth-child(even) {
      grid-template-columns: 1fr 1fr;
    }

    .service-item:nth-child(even) .service-image {
      order: 2;
    }

    .service-item:nth-child(even) .service-content {
      order: 1;
    }

    .service-image {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .placeholder {
      width: 100%;
      height: 350px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #0077ff 0%, #0055cc 100%);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .service-item:hover .placeholder {
      transform: scale(1.05);
    }

    .placeholder-content {
      text-align: center;
      color: white;
    }

    .placeholder-icon {
      font-size: 80px;
      display: block;
      margin-bottom: 15px;
      filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    }

    .placeholder-text {
      font-size: 1.5rem;
      font-weight: 600;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }

    .service-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .badge {
      display: inline-block;
      padding: 8px 20px;
      background: linear-gradient(135deg, #0077ff, #0055cc);
      color: white;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 15px;
      width: fit-content;
    }

    .service-content h3 {
      font-size: 2rem;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .service-content > p {
      color: #7f8c8d;
      font-size: 1.1rem;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .service-features {
      list-style: none;
      margin-bottom: 30px;
    }

    .service-features li {
      padding: 12px 0;
      color: #34495e;
      font-size: 1rem;
      border-bottom: 1px solid #ecf0f1;
      position: relative;
      padding-left: 30px;
    }

    .service-features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #27ae60;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .cta-button {
      padding: 15px 35px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: fit-content;
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content {
      background-color: white;
      margin: 5% auto;
      padding: 0;
      border-radius: 20px;
      width: 90%;
      max-width: 800px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-header {
      padding: 30px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border-radius: 20px 20px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-header h2 {
      margin: 0;
      font-size: 2rem;
    }

    .close-btn {
      background: none;
      border: none;
      color: white;
      font-size: 2.5rem;
      cursor: pointer;
      line-height: 1;
      transition: transform 0.2s ease;
    }

    .close-btn:hover {
      transform: scale(1.2);
    }

    .modal-body {
      padding: 40px;
      color: #2c3e50;
      font-size: 1.1rem;
      line-height: 1.8;
      max-height: 60vh;
      overflow-y: auto;
    }

    .modal-body h3 {
      color: #667eea;
      margin-top: 25px;
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .modal-body ul {
      margin: 15px 0;
      padding-left: 25px;
    }

    .modal-body li {
      margin: 10px 0;
      color: #34495e;
    }

    @media (max-width: 968px) {
      .service-item,
      .service-item:nth-child(even) {
        grid-template-columns: 1fr;
      }

      .service-item:nth-child(even) .service-image,
      .service-item:nth-child(even) .service-content {
        order: unset;
      }

      .arrow-connector {
        display: none;
      }

      .services-wrapper {
        gap: 40px;
      }

      .dienstleistungen-container h2 {
        font-size: 2rem;
      }
    }






    
/* ================================================ Vorteil SECTION ============================================== */






    .vorteile-section {
      max-width: 1400px;
      margin: 0 auto;
    }

    .container {
      width: 100%;
    }

    .vorteile-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .vorteile-header h2 {
      font-size: 3rem;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .vorteile-header p {
      font-size: 1.3rem;
      color: #7f8c8d;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .vorteile-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .vorteil-card {
      background: white;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border: 2px solid #f0f0f0;
    }

    .vorteil-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
      border-color: #667eea;
    }

    .vorteil-icon-container {
      position: absolute;
      top: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.1;
      transition: all 0.3s ease;
    }

    .vorteil-card:hover .vorteil-icon-container {
      opacity: 0.15;
      transform: scale(1.1);
    }

    .vorteil-icon-container i {
      font-size: 50px;
      color: white;
    }

    .vorteil-image {
      width: 100%;
      height: 220px;
      border-radius: 15px;
      overflow: hidden;
      margin-bottom: 25px;
      position: relative;
    }

    .vorteil-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .vorteil-card:hover .vorteil-image img {
      transform: scale(1.05);
    }

    .vorteil-badge {
      display: inline-block;
      padding: 8px 18px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .vorteil-title {
      font-size: 1.6rem;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: 700;
      line-height: 1.3;
    }

    .vorteil-description {
      color: #7f8c8d;
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .vorteil-features {
      list-style: none;
      padding: 0;
    }

    .vorteil-features li {
      color: #34495e;
      font-size: 1rem;
      padding: 10px 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .vorteil-features li i {
      color: #27ae60;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .vorteil-card:nth-child(1) .vorteil-badge {
      background: linear-gradient(135deg, #0077ff, #0055cc);
    }

    .vorteil-card:nth-child(2) .vorteil-badge {
      background: linear-gradient(135deg, #00d084, #00b86f);
    }

    .vorteil-card:nth-child(3) .vorteil-badge {
      background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    }

    .vorteil-card:nth-child(4) .vorteil-badge {
      background: linear-gradient(135deg, #ffa500, #ff8c42);
    }

    .vorteil-card:nth-child(5) .vorteil-badge {
      background: linear-gradient(135deg, #9b59b6, #8e44ad);
    }

    .vorteil-card:nth-child(1):hover .vorteil-icon-container {
      background: linear-gradient(135deg, #0077ff, #0055cc);
    }

    .vorteil-card:nth-child(2):hover .vorteil-icon-container {
      background: linear-gradient(135deg, #00d084, #00b86f);
    }

    .vorteil-card:nth-child(3):hover .vorteil-icon-container {
      background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    }

    .vorteil-card:nth-child(4):hover .vorteil-icon-container {
      background: linear-gradient(135deg, #ffa500, #ff8c42);
    }

    .vorteil-card:nth-child(5):hover .vorteil-icon-container {
      background: linear-gradient(135deg, #9b59b6, #8e44ad);
    }

    .stat-highlight {
      background: linear-gradient(135deg, #667eea15, #764ba215);
      padding: 20px;
      border-radius: 15px;
      margin-top: 20px;
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #667eea;
      display: block;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 0.95rem;
      color: #7f8c8d;
    }

    .more-btn {
      margin-top: 20px;
      padding: 12px 30px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 25px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .more-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .vorteile-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      animation: vorteileModalFadeIn 0.3s ease;
    }

    @keyframes vorteileModalFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .vorteile-modal-content {
      background-color: white;
      margin: 3% auto;
      padding: 0;
      border-radius: 20px;
      width: 90%;
      max-width: 900px;
      max-height: 85vh;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      animation: vorteileModalSlideIn 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    @keyframes vorteileModalSlideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .vorteile-modal-header {
      padding: 30px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border-radius: 20px 20px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
    }

    .vorteile-modal-header h2 {
      margin: 0;
      font-size: 2rem;
    }

    .vorteile-close-btn {
      background: none;
      border: none;
      color: white;
      font-size: 2.5rem;
      cursor: pointer;
      line-height: 1;
      transition: transform 0.2s ease;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vorteile-close-btn:hover {
      transform: scale(1.2) rotate(90deg);
    }

    .vorteile-modal-body {
      padding: 40px;
      color: #2c3e50;
      font-size: 1.05rem;
      line-height: 1.8;
      overflow-y: auto;
      flex: 1;
    }

    .vorteile-modal-body h3 {
      color: #667eea;
      margin-top: 30px;
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .vorteile-modal-body h3:first-child {
      margin-top: 0;
    }

    .vorteile-modal-body ul {
      margin: 15px 0;
      padding-left: 25px;
    }

    .vorteile-modal-body li {
      margin: 10px 0;
      color: #34495e;
    }

    .vorteile-modal-body strong {
      color: #2c3e50;
      font-weight: 600;
    }

    .vorteile-modal-body p {
      margin: 15px 0;
    }

    @media (max-width: 768px) {
      .vorteile-header h2 {
        font-size: 2rem;
      }

      .vorteile-header p {
        font-size: 1.1rem;
      }

      .vorteile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .vorteil-title {
        font-size: 1.4rem;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .vorteil-card {
      animation: fadeInUp 0.6s ease-out;
      animation-fill-mode: both;
    }

    .vorteil-card:nth-child(1) { animation-delay: 0.1s; }
    .vorteil-card:nth-child(2) { animation-delay: 0.2s; }
    .vorteil-card:nth-child(3) { animation-delay: 0.3s; }
    .vorteil-card:nth-child(4) { animation-delay: 0.4s; }
    .vorteil-card:nth-child(5) { animation-delay: 0.5s; }























/* =============================== ABLAUF SECTION====================================================== */

  
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: white;
    }

    /* Model Section */
    .model-section {
      background: white;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    /* Subtle Background Decoration */
    .model-section::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      top: -200px;
      right: -200px;
      animation: floatSlow 8s ease-in-out infinite;
    }

    .model-section::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      bottom: -150px;
      left: -150px;
      animation: floatSlow 10s ease-in-out infinite reverse;
    }

    @keyframes floatSlow {
      0%, 100% {
        transform: translateY(0) scale(1);
      }
      50% {
        transform: translateY(-20px) scale(1.05);
      }
    }

    .model-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    /* Image Section */
    .model-image {
      animation: slideInLeft 1s ease-out;
      position: relative;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .model-image::before {
      content: '';
      position: absolute;
      top: -15px;
      left: -15px;
      right: 15px;
      bottom: 15px;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
      border-radius: 20px;
      z-index: -1;
    }

    .model-image img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .model-image:hover img {
      transform: scale(1.03);
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    }

    /* Text Section */
    .model-text {
      color: #2c3e50;
      animation: slideInRight 1s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .model-text h2 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 25px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      display: inline-block;
      font-family: 'Playfair Display', serif;
      letter-spacing: -1px;
    }

    .model-text h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 5px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      border-radius: 3px;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    .model-text p {
      font-size: 1.2rem;
      line-height: 1.9;
      margin-bottom: 20px;
      color: #555;
      animation: fadeIn 1.5s ease-out 0.3s both;
      font-weight: 400;
      letter-spacing: 0.3px;
    }

    .model-text p:first-of-type {
      color: #2c3e50;
      font-size: 1.25rem;
      font-weight: 500;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Key Features List */
    .key-features {
      list-style: none;
      margin: 35px 0;
      animation: fadeIn 1.8s ease-out 0.6s both;
    }

    .key-features li {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 0;
      font-size: 1.15rem;
      color: #2c3e50;
      transition: all 0.3s ease;
      border-radius: 10px;
      margin-bottom: 5px;
      font-weight: 500;
      letter-spacing: 0.2px;
    }

    .key-features li span {
      background: linear-gradient(135deg, #2c3e50 0%, #667eea 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    .key-features li:hover {
      transform: translateX(10px);
      background: rgba(102, 126, 234, 0.05);
      padding-left: 15px;
    }

    .key-features i {
      font-size: 1.4rem;
      color: white;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 12px;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .key-features li:hover i {
      transform: scale(1.1) rotate(5deg);
    }

    /* Individual Colors for Icons */
    .key-features li:nth-child(1) i {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .key-features li:nth-child(2) i {
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .key-features li:nth-child(3) i {
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .key-features li:nth-child(4) i {
      background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    }

    /* Button */
    .btn-weiterlesen {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      color: white;
      padding: 20px 50px;
      font-size: 1.15rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 35px rgba(102, 126, 234, 0.4);
      position: relative;
      overflow: hidden;
      animation: fadeIn 2s ease-out 0.9s both;
      margin-top: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .btn-weiterlesen::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .btn-weiterlesen:hover::before {
      left: 100%;
    }

    .btn-weiterlesen:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
      background: linear-gradient(135deg, #764ba2 0%, #f093fb 50%, #667eea 100%);
    }

    .btn-weiterlesen i {
      transition: transform 0.3s ease;
      font-size: 1rem;
    }

    .btn-weiterlesen:hover i {
      transform: translateX(5px);
    }

    /* Stats Badge */
    .stats-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
      padding: 14px 28px;
      border-radius: 50px;
      margin-bottom: 25px;
      border: 2px solid rgba(102, 126, 234, 0.3);
      animation: fadeIn 1.2s ease-out 0.2s both;
      box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
    }

    .stats-badge i {
      background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 1.4rem;
    }

    .stats-badge span {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.3px;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .model-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .model-text {
        text-align: center;
      }

      .model-text h2::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .key-features {
        text-align: left;
      }

      .model-text h2 {
        font-size: 2.5rem;
      }

      .model-text p {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 768px) {
      .model-section {
        padding: 60px 20px;
      }

      .model-text h2 {
        font-size: 2rem;
      }

      .model-text p {
        font-size: 1rem;
      }

      .btn-weiterlesen {
        padding: 14px 35px;
        font-size: 1rem;
      }

      .key-features li {
        font-size: 1rem;
      }

      .key-features i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .model-text h2 {
        font-size: 1.75rem;
      }

      .model-text p {
        font-size: 0.95rem;
      }

      .btn-weiterlesen {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
      }

      .key-features li {
        font-size: 0.95rem;
      }

      .key-features i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }

      .stats-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
      }
    }















/*==========================================================Footer===========================================  */

 
.site-footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
  pointer-events: none;
}

@keyframes moveBackground {
  0% { transform: translate(0,0); }
  100% { transform: translate(50px,50px); }
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-main-nav ul,
.footer-nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-main-nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.footer-main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: white;
  transition: width 0.3s ease;
}

.footer-main-nav a:hover::after {
  width: 100%;
}

.footer-logo-text {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.25);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  margin: 0 auto;
  width: 80%;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main-nav ul,
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }
}

