/* Local Inter Font */
    @font-face {
      font-family: 'Inter';
      src: url('/fonts/inter-regular.woff2') format('woff2'),
      url('/fonts/inter-regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Inter';
      src: url('/fonts/inter-medium.woff2') format('woff2'),
      url('/fonts/inter-medium.ttf') format('truetype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }
    :root {
      --text-primary: #09090b;
      --text-secondary: #71717a;
      --text-muted: #a1a1aa;
      --bg-white: #ffffff;
      --bg-gray: #fafafa;
      --bg-dark: #09090b;
      --border: #e4e4e7;
      --border-light: #f4f4f5;
      --accent-purple: #7c3aed;
    }

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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 500;
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
      background: var(--bg-white);
    }

    img, video, svg {
      max-width: 100%;
      height: auto;
    }

    /* Global overflow protection - only on main content, not header */
    main, section, footer {
      max-width: 100vw;
      overflow-x: hidden;
    }

    h2 {
      line-height: 1.2;
    }

    /* Gradient Button Animation */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    /* Dynamic Background Animations */
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }

    @keyframes floatReverse {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(20px) rotate(-5deg); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.4; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.05); }
    }

    @keyframes drift {
      0% { transform: translateX(0) translateY(0); }
      25% { transform: translateX(10px) translateY(-15px); }
      50% { transform: translateX(20px) translateY(0); }
      75% { transform: translateX(10px) translateY(15px); }
      100% { transform: translateX(0) translateY(0); }
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .hero-bg-shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.35;
    }

    .hero-bg-shape-1 {
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, #5b3aac 0%, #926abf 100%);
      top: -150px;
      right: -100px;
      animation: float 8s ease-in-out infinite;
    }

    .hero-bg-shape-2 {
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, #c192d0 0%, #926abf 100%);
      bottom: -100px;
      left: -150px;
      animation: floatReverse 10s ease-in-out infinite;
    }

    .hero-bg-shape-3 {
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, #5b3aac 0%, #c192d0 100%);
      top: 40%;
      left: 30%;
      animation: pulse 6s ease-in-out infinite;
    }

    .hero-bg-grid {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image:
        linear-gradient(rgba(9, 9, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 9, 11, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: 0.8;
    }

    .hero-bg-dots {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: radial-gradient(rgba(91, 58, 172, 0.15) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    /* Floating Elements */
    .floating-element {
      position: absolute;
      opacity: 0.12;
      color: var(--text-primary);
      font-size: 2rem;
      animation: drift 12s ease-in-out infinite;
      z-index: 1;
    }

    .floating-element:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
    .floating-element:nth-child(2) { top: 25%; right: 12%; animation-delay: -3s; }
    .floating-element:nth-child(3) { bottom: 30%; left: 5%; animation-delay: -6s; }
    .floating-element:nth-child(4) { bottom: 20%; right: 8%; animation-delay: -9s; }
    .floating-element:nth-child(5) { top: 50%; left: 15%; animation-delay: -4s; font-size: 1.5rem; }
    .floating-element:nth-child(6) { top: 60%; right: 18%; animation-delay: -7s; font-size: 1.5rem; }

    /* Primary Button with Gradient Underline */
    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--bg-dark);
      color: var(--bg-white);
    }

    .btn-primary::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0px;
      width: 100%;
      height: 8px;
      border-bottom-left-radius: 9px;
      border-bottom-right-radius: 9px;
      background: linear-gradient(90deg, #5b3aac, #926abf, #c192d0);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-primary);
    }

    .btn-outline:hover {
      background: var(--bg-gray);
      border-color: var(--text-muted);
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: var(--bg-white);
      z-index: 1000;
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--text-primary);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-item {
      position: relative;
      padding: 10px 16px;
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      border-radius: 8px;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .nav-item:hover {
      color: var(--text-primary);
      background: var(--bg-gray);
    }

    /* Mega Menu */
    .mega-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: var(--bg-white);
      border-radius: 12px;
      border: 1px solid var(--border);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      padding: 16px;
      min-width: 780px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }

    .nav-item:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .mega-menu-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px;
      border-radius: 8px;
      text-decoration: none;
      color: var(--text-primary);
      transition: all 0.2s ease;
    }

    .mega-menu-item:hover {
      background: var(--bg-gray);
    }

    .mega-menu-item i {
      width: 36px;
      height: 36px;
      background: var(--bg-gray);
      color: var(--text-secondary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .mega-menu-item:hover i {
      background: var(--bg-dark);
      color: var(--bg-white);
    }

    .mega-menu-item h4 {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 2px;
      white-space: nowrap;
    }

    .mega-menu-item p {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 400;
    }

    /* Mobile Menu */
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.25rem;
      cursor: pointer;
      color: var(--text-primary);
    }

    /* Page Container */
    /* Multi-page: content offset for fixed header */
    main {
      padding-top: 72px;
    }

    /* Hero Section */
    .hero {
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      background: var(--bg-white);
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-gray);
      color: var(--text-secondary);
      padding: 8px 14px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 24px;
      border: 1px solid var(--border);
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #22c55e;
      border-radius: 50%;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 500;
      line-height: 1.4;
      margin-bottom: 24px;
      color: var(--text-primary);
      letter-spacing: -0.03em;
    }

    .hero p {
      font-size: 1.15rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
      max-width: 480px;
      font-weight: 400;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
    }

    .hero-image {
      width: 100%;
      height: 480px;
      background: var(--bg-dark);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 4rem;
    }

    .hero-stats {
      position: absolute;
      bottom: -24px;
      left: -24px;
      background: var(--bg-white);
      border-radius: 12px;
      padding: 20px 28px;
      border: 1px solid var(--border);
      display: flex;
      gap: 32px;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 1.75rem;
      font-weight: 500;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* Trust Bar */
    .trust-bar {
      background: var(--bg-white);
      padding: 48px 0;
      border-top: 1px solid var(--border);
    }

    .trust-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-bar-label {
      color: var(--text-primary);
      font-weight: 500;
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .trust-bar-label span {
      font-style: italic;
      color: var(--text-muted);
    }

    .tech-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .tech-logo {
      height: 28px;
      width: auto;
      transition: all 0.3s ease;
      opacity: 0.85;
    }

    .tech-logo:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    /* Section Styles */
    .section {
      padding: 100px 0;
    }

    .section-dark {
      background: var(--bg-gray);
      color: var(--text-primary);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .section-gray {
      background: var(--bg-gray);
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-gray);
      color: var(--text-secondary);
      padding: 6px 12px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 16px;
      border: 1px solid var(--border);
    }

    .section-dark .section-badge {
      background: var(--bg-white);
      border-color: var(--border);
      color: var(--text-secondary);
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 500;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .section-header p {
      font-size: 1.05rem;
      color: var(--text-secondary);
      font-weight: 400;
      line-height: 1.7;
    }

    .section-dark .section-header p {
      color: var(--text-secondary);
    }

    /* Services Grid - New Style */
    @keyframes smoothPulse {
      0%, 100% {
        opacity: 1;
        filter: brightness(1);
      }
      50% {
        opacity: 0.85;
        filter: brightness(1.15);
      }
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--bg-white);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      cursor: pointer;
      border: 1px solid var(--border);
    }

    .service-card:hover {
      border-color: var(--text-muted);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }

    .service-card-image {
      height: 120px;
      border-radius: 12px;
      margin: 12px 12px 0 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    /* Farben: #7c61d0, #5a3aac, #37216d */
    .service-card:nth-child(1) .service-card-image {
      background: linear-gradient(135deg, #7c61d0 0%, #5a3aac 100%);
    }
    .service-card:nth-child(2) .service-card-image {
      background: linear-gradient(135deg, #5a3aac 0%, #37216d 100%);
    }
    .service-card:nth-child(3) .service-card-image {
      background: linear-gradient(135deg, #37216d 0%, #5a3aac 100%);
    }
    .service-card:nth-child(4) .service-card-image {
      background: linear-gradient(135deg, #6b4fc0 0%, #47299a 100%);
    }
    .service-card:nth-child(5) .service-card-image {
      background: linear-gradient(135deg, #47299a 0%, #37216d 100%);
    }
    .service-card:nth-child(6) .service-card-image {
      background: linear-gradient(135deg, #37216d 0%, #2a1854 100%);
    }

    .service-card:hover .service-card-image {
      animation: smoothPulse 2s ease-in-out infinite;
    }

    .service-card-content {
      padding: 20px 20px 24px;
    }

    .service-card h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
      color: var(--text-primary);
    }

    .service-card p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 0;
      font-weight: 400;
      line-height: 1.6;
    }

    /* Specialized Services Card */
    .specialized-card {
      grid-column: 1 / -1;
      background: var(--bg-white);
      border-radius: 16px;
      padding: 32px 40px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 40px;
      align-items: center;
      border: 1px solid var(--border);
      margin-top: 8px;
    }

    .specialized-card h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 12px;
      color: var(--text-primary);
    }

    .specialized-card > div:first-child p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    .tech-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tech-pill {
      background: var(--bg-gray);
      border: 1px solid var(--border);
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-primary);
      transition: all 0.2s ease;
    }

    .tech-pill:hover {
      border-color: var(--text-muted);
      background: var(--bg-white);
    }

    /* Products Showcase */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .product-card {
      background: var(--bg-white);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .product-card:hover {
      border-color: var(--text-muted);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }

    .product-image {
      height: 180px;
      background: var(--bg-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 2.5rem;
    }

    .product-content {
      padding: 24px;
    }

    .product-badge {
      display: inline-block;
      background: linear-gradient(135deg, #7c61d0 0%, #5a3aac 100%);
      color: white;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .product-badge.project-badge {
      background: var(--bg-dark);
    }

    .product-content h3 {
      font-size: 1.15rem;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .product-content p {
      color: var(--text-secondary);
      margin-bottom: 16px;
      font-size: 0.9rem;
      font-weight: 400;
    }

    .product-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .product-tag {
      background: var(--bg-gray);
      color: var(--text-secondary);
      padding: 5px 10px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testimonial-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
    }

    .testimonial-card p {
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 24px;
      color: var(--text-secondary);
      font-weight: 400;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      background: var(--bg-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--text-primary);
    }

    .testimonial-info h4 {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 2px;
      color: var(--text-primary);
    }

    .testimonial-info span {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .stats-row {
      display: flex;
      justify-content: center;
      gap: 80px;
      margin-top: 60px;
      padding-top: 60px;
      border-top: 1px solid var(--border);
    }

    .stats-row .stat-number {
      color: var(--text-primary);
      font-size: 2.5rem;
    }

    .stats-row .stat-label {
      color: var(--text-muted);
    }

    /* Team Section */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

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

    .team-photo {
      width: 140px;
      height: 140px;
      background: var(--bg-dark);
      border-radius: 50%;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 2rem;
      font-weight: 500;
    }

    .team-card h4 {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .team-card span {
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    /* CTA Section */
    .cta-section {
      background: var(--bg-gray);
      padding: 80px 0;
      text-align: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .cta-section h2 {
      color: var(--text-primary);
      font-size: 2.25rem;
      margin-bottom: 16px;
      font-weight: 500;
      letter-spacing: -0.02em;
    }

    .cta-section p {
      color: var(--text-secondary);
      font-size: 1.05rem;
      margin-bottom: 32px;
      font-weight: 400;
    }

    .cta-section .btn-primary {
      background: var(--bg-dark);
      color: var(--bg-white);
    }

    .cta-section .btn-primary::after {
      background: linear-gradient(90deg, #5b3aac, #926abf, #c192d0);
    }

    /* CTA Section - Alternative */
    .cta {
      padding: 80px 0;
      text-align: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .cta-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-content h2 {
      color: var(--text-primary);
      font-size: 2rem;
      margin-bottom: 16px;
      font-weight: 500;
      letter-spacing: -0.02em;
    }

    .cta-content p {
      color: var(--text-secondary);
      font-size: 1.05rem;
      margin-bottom: 32px;
      font-weight: 400;
    }

    /* Footer */
    .footer {
      background: var(--bg-dark);
      color: var(--bg-white);
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.5);
      margin: 16px 0;
      max-width: 280px;
      font-size: 0.9rem;
      font-weight: 400;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .footer-social a:hover {
      background: rgba(255,255,255,0.2);
      color: var(--bg-white);
    }

    .footer h4 {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--bg-white);
    }

    .footer ul {
      list-style: none;
    }

    .footer li {
      margin-bottom: 10px;
    }

    .footer a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.9rem;
      font-weight: 400;
    }

    .footer a:hover {
      color: rgba(255,255,255,0.8);
    }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      color: rgba(255,255,255,0.4);
      font-size: 0.85rem;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.4);
      margin-left: 24px;
    }

    /* Page Headers */
    .page-header {
      background: var(--bg-gray);
      padding: 100px 0 60px;
      text-align: center;
      color: var(--text-primary);
      border-bottom: 1px solid var(--border);
    }

    .page-header h1 {
      font-size: 2.75rem;
      margin-bottom: 16px;
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--text-primary);
    }

    .page-header p {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 540px;
      margin: 0 auto;
      font-weight: 400;
    }

    .breadcrumbs {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 20px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .breadcrumbs a {
      color: var(--text-secondary);
      text-decoration: none;
    }

    .breadcrumbs a:hover {
      color: var(--text-primary);
    }

    /* Product Detail Page - SaaS */
    .product-hero {
      padding: 60px 0;
      background: var(--bg-white);
    }

    .product-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .product-hero-badge {
      display: inline-block;
      background: linear-gradient(135deg, #7c61d0 0%, #5a3aac 100%);
      color: white;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }

    .product-hero-badge.project {
      background: var(--bg-dark);
    }

    .product-hero h1 {
      font-size: 2.5rem;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .product-hero-description {
      font-size: 1.1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .product-hero-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .product-hero-tag {
      background: var(--bg-gray);
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 500;
    }

    .product-hero-image {
      height: 360px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      color: white;
    }

    .product-features {
      padding: 80px 0;
      background: var(--bg-gray);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .feature-card {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 28px;
      border: 1px solid var(--border);
    }

    .feature-card i {
      font-size: 1.5rem;
      color: #5a3aac;
      margin-bottom: 16px;
    }

    .feature-card h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .feature-card p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .product-details {
      padding: 80px 0;
    }

    .details-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
    }

    .detail-section {
      margin-bottom: 40px;
    }

    .detail-section h2 {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .detail-section p {
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .detail-section ul {
      list-style: none;
      margin-top: 16px;
    }

    .detail-section ul li {
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-secondary);
    }

    .detail-section ul li i {
      color: #5a3aac;
    }

    .info-card {
      background: var(--bg-gray);
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border);
      margin-bottom: 20px;
    }

    .info-card h3 {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .info-row {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.9rem;
    }

    .info-row:last-child {
      border-bottom: none;
    }

    .info-row span:first-child {
      color: var(--text-muted);
    }

    .info-row span:last-child {
      color: var(--text-primary);
      font-weight: 500;
    }

    /* Service Detail Page */
    .service-detail {
      padding: 64px 0;
    }

    .service-detail-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 48px;
    }

    .service-detail h2 {
      font-size: 1.75rem;
      margin-bottom: 20px;
      color: var(--text-primary);
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    .service-detail p {
      color: var(--text-secondary);
      margin-bottom: 16px;
      font-size: 1rem;
      line-height: 1.8;
      font-weight: 400;
    }

    .benefits-list {
      list-style: none;
      margin: 28px 0;
    }

    .benefits-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .benefits-list i {
      color: var(--text-primary);
      font-size: 1rem;
      margin-top: 4px;
    }

    .benefits-list strong {
      font-weight: 500;
    }

    .benefits-list p {
      margin: 4px 0 0 0;
      font-size: 0.9rem;
    }

    .tech-stack {
      background: var(--bg-gray);
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border);
    }

    .tech-stack h3 {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .tech-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tech-tag {
      background: var(--bg-white);
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 500;
      border: 1px solid var(--border);
    }

    .sidebar-card {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border);
      margin-bottom: 20px;
    }

    .sidebar-card h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 12px;
    }

    /* Service Detail Page - Extended */
    .service-hero {
      padding: 60px 0;
      background: var(--bg-white);
    }

    .service-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .service-hero-badge {
      display: inline-block;
      background: linear-gradient(135deg, #7c61d0 0%, #5a3aac 100%);
      color: white;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }

    .service-hero h1 {
      font-size: 2.5rem;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .service-hero-description {
      font-size: 1.1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .service-hero-image {
      height: 360px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      color: white;
      background: linear-gradient(135deg, #7c61d0 0%, #5a3aac 100%);
    }

    .service-capabilities {
      padding: 80px 0;
      background: var(--bg-gray);
    }

    .capabilities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .capability-card {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 28px;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .capability-card:hover {
      border-color: var(--text-muted);
      transform: translateY(-2px);
    }

    .capability-card i {
      font-size: 1.5rem;
      color: #5a3aac;
      margin-bottom: 16px;
    }

    .capability-card h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .capability-card p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Technology Logo Grid */
    .tech-section {
      padding: 80px 0;
      background: var(--bg-white);
    }

    .tech-section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .tech-section-header h2 {
      font-size: 1.75rem;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .tech-section-header p {
      color: var(--text-secondary);
      font-size: 1rem;
    }

    .tech-logo-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }

    .tech-logo-item {
      background: var(--bg-gray);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: all 0.3s ease;
      min-height: 100px;
    }

    .tech-logo-item:hover {
      border-color: #5a3aac;
      background: var(--bg-white);
    }

    .tech-logo-item i {
      font-size: 2rem;
      color: var(--text-primary);
    }

    .tech-logo-item span {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-secondary);
      text-align: center;
    }

    /* Certifications & Standards */
    .certifications-section {
      padding: 80px 0;
      background: var(--bg-gray);
    }

    .cert-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .cert-card {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 32px 24px;
      border: 1px solid var(--border);
      text-align: center;
      transition: all 0.3s ease;
    }

    .cert-card:hover {
      border-color: var(--text-muted);
    }

    .cert-card-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, rgba(124, 97, 208, 0.1) 0%, rgba(90, 58, 172, 0.1) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .cert-card-icon i {
      font-size: 1.5rem;
      color: #5a3aac;
    }

    .cert-card h4 {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .cert-card p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Process Section */
    .process-section {
      padding: 80px 0;
      background: var(--bg-white);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .process-step::after {
      content: '';
      position: absolute;
      top: 32px;
      right: -16px;
      width: 32px;
      height: 2px;
      background: var(--border);
    }

    .process-step:last-child::after {
      display: none;
    }

    .process-step-number {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, #7c61d0 0%, #5a3aac 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 auto 20px;
    }

    .process-step h4 {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .process-step p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Service Details Section */
    .service-details-section {
      padding: 80px 0;
      background: var(--bg-gray);
    }

    .service-details-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 48px;
    }

    .service-detail-block {
      margin-bottom: 40px;
    }

    .service-detail-block h2 {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .service-detail-block p {
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .service-detail-block ul {
      list-style: none;
    }

    .service-detail-block ul li {
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-secondary);
    }

    .service-detail-block ul li i {
      color: #5a3aac;
      font-size: 0.9rem;
    }

    /* Sidebar Cards for Services */
    .service-sidebar-card {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border);
      margin-bottom: 20px;
    }

    .service-sidebar-card h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .service-sidebar-card .info-row {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.9rem;
    }

    .service-sidebar-card .info-row:last-child {
      border-bottom: none;
    }

    .service-sidebar-card .info-row span:first-child {
      color: var(--text-muted);
    }

    .service-sidebar-card .info-row span:last-child {
      color: var(--text-primary);
      font-weight: 500;
    }

    .contact-card {
      background: linear-gradient(135deg, #7c61d0 0%, #5a3aac 100%);
      border-radius: 12px;
      padding: 28px;
      color: white;
      text-align: center;
    }

    .contact-card h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .contact-card p {
      font-size: 0.9rem;
      opacity: 0.9;
      margin-bottom: 20px;
    }

    .contact-card .btn {
      background: white;
      color: #5a3aac;
      width: 100%;
      justify-content: center;
    }

    .contact-card .btn::after {
      display: none;
    }

    /* About Page */
    .about-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-image {
      height: 360px;
      background: var(--bg-dark);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 4rem;
    }

    .timeline {
      position: relative;
      padding-left: 32px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 11px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--border);
    }

    .timeline-item {
      position: relative;
      padding-bottom: 32px;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -27px;
      top: 4px;
      width: 10px;
      height: 10px;
      background: var(--bg-dark);
      border-radius: 50%;
    }

    .timeline-year {
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 6px;
      font-size: 0.85rem;
    }

    .timeline-item h4 {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .timeline-item p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      font-weight: 400;
    }

    /* Karriere Page */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .benefit-card {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .benefit-card:hover {
      border-color: var(--text-muted);
    }

    .benefit-card i {
      font-size: 2rem;
      color: var(--text-primary);
      margin-bottom: 14px;
    }

    .benefit-card h4 {
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .benefit-card p {
      color: var(--text-secondary);
      font-size: 0.85rem;
      font-weight: 400;
    }

    .jobs-list {
      margin-top: 60px;
    }

    .job-card {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .job-card:hover {
      border-color: var(--text-muted);
    }

    .job-info h4 {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .job-meta {
      display: flex;
      gap: 20px;
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    .job-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Kontakt Page */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }

    .contact-form {
      background: var(--bg-white);
      border-radius: 12px;
      padding: 32px;
      border: 1px solid var(--border);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--text-primary);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .contact-info-card {
      background: var(--bg-gray);
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 14px;
      border: 1px solid var(--border);
    }

    .contact-info-card h4 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .contact-info-card i {
      color: var(--text-secondary);
    }

    .contact-info-card p {
      color: var(--text-secondary);
      padding-left: 30px;
      font-size: 0.9rem;
      font-weight: 400;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content,
      .about-intro,
      .service-detail-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .products-grid,
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .team-grid,
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      /* Prevent horizontal overflow */
      .header-inner {
        padding: 0 16px;
        max-width: 100%;
      }

      /* Navigation */
      .nav {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      /* Typography */
      .hero h1 {
        font-size: 1.75rem;
        word-wrap: break-word;
      }

      .hero p {
        max-width: 100%;
      }

      .hero-content {
        padding: 40px 16px;
        gap: 24px;
      }

      .section {
        padding: 48px 0;
      }

      .section-header {
        max-width: 100%;
      }

      .section-header h2 {
        font-size: 1.5rem;
      }

      /* Container */
      .container {
        padding: 0 16px;
      }

      /* All Grids → 1 column */
      .services-grid,
      .products-grid,
      .testimonials-grid,
      .team-grid,
      .benefits-grid,
      .features-grid,
      .capabilities-grid,
      .cert-grid,
      .process-steps,
      .tech-logo-grid,
      .service-hero-grid,
      .product-hero-grid,
      .service-detail-grid,
      .service-details-grid,
      .details-grid,
      .about-intro,
      .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
      }

      /* Prevent grid children from overflowing */
      .service-hero-grid > *,
      .product-hero-grid > *,
      .service-detail-grid > *,
      .service-details-grid > *,
      .details-grid > *,
      .about-intro > *,
      .container > * {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
      }

      /* Service hero text sizing */
      .service-hero-badge {
        font-size: 0.75rem;
      }

      .service-hero h1,
      .service-hero h2,
      .product-hero h1,
      .product-hero h2 {
        font-size: 1.5rem !important;
      }

      h1 {
        font-size: 1.75rem !important;
      }

      h2 {
        font-size: 1.35rem !important;
      }

      .service-hero-description,
      .product-hero p {
        font-size: 0.9rem;
      }

      .btn-group {
        flex-wrap: wrap;
      }

      /* Specialized card: stack + horizontal scroll pills */
      .specialized-card {
        grid-template-columns: 1fr !important;
        padding: 24px 16px !important;
        gap: 20px !important;
      }

      .tech-pills {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: thin;
      }

      .tech-pill {
        flex-shrink: 0;
      }

      /* Benefits grid: 1 column on mobile */
      .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
      }

      /* Tech logo grid: 3 columns */
      .tech-logo-grid {
        grid-template-columns: repeat(3, 1fr) !important;
      }

      /* Process steps: 2 columns */
      .process-steps {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .hero-stats {
        position: static;
        margin-top: 32px;
      }

      .stats-row {
        flex-wrap: wrap;
        gap: 24px;
      }

      /* Page Header */
      .page-header {
        padding: 100px 16px 40px;
      }

      .page-header h1 {
        font-size: 1.75rem;
      }

      .page-header p {
        max-width: 100%;
        font-size: 0.9rem;
      }

      /* Product/Service Hero: image first on mobile */
      .product-hero-grid,
      .service-hero-grid {
        text-align: center;
      }

      .product-hero-image,
      .service-hero-image {
        max-height: 250px;
        order: -1;
      }

      /* CTA Section */
      .cta-content,
      .cta-section .container {
        max-width: 100%;
      }

      .cta-section h2 {
        font-size: 1.5rem;
      }

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      /* Mega Menu in mobile */
      .mega-menu {
        min-width: auto !important;
        grid-template-columns: 1fr !important;
      }

      /* About intro stats */
      .about-intro div[style*="display: flex; gap: 40px"] {
        gap: 20px;
      }

      /* Buttons */
      .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
      }

      /* Carousel: buttons below cards on mobile */
      .carousel-wrapper {
        padding: 0;
      }

      .carousel-btn {
        position: static !important;
        transform: none !important;
        width: 44px;
        height: 44px;
        display: none !important;
      }

      .carousel-nav {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
      }

      .carousel-nav .carousel-btn {
        display: flex !important;
        position: static !important;
      }

      /* Testimonials */
      .testimonial-card {
        padding: 20px;
      }

      /* Timeline */
      .timeline {
        padding-left: 20px;
      }

      /* Cert/Feature cards */
      .cert-card,
      .feature-card,
      .capability-card {
        padding: 20px;
      }
    }

    /* Mobile Menu - Open State */
    .nav.mobile-open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--bg-white);
      padding: 80px 24px 24px;
      z-index: 998;
      overflow-y: auto;
      gap: 4px;
    }

    .nav.mobile-open .nav-item {
      width: 100%;
      padding: 14px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 1.1rem;
    }

    .nav.mobile-open .nav-item:last-child {
      border-bottom: none;
    }

    .nav.mobile-open .btn {
      margin-left: 0 !important;
      margin-top: 16px;
      justify-content: center;
    }

    .nav.mobile-open .mega-menu {
      position: static;
      transform: none;
      box-shadow: none;
      border: none;
      min-width: auto !important;
      padding: 8px 0 8px 16px;
      display: none;
      grid-template-columns: 1fr !important;
      gap: 4px;
    }

    .nav.mobile-open .nav-item:hover .mega-menu,
    .nav.mobile-open .nav-item:active .mega-menu,
    .nav.mobile-open .nav-item:focus .mega-menu {
      display: grid;
    }

    .nav.mobile-open .mega-menu-item {
      padding: 10px 12px;
      font-size: 0.9rem;
    }

    .nav.mobile-open .mega-menu-item h4 {
      font-size: 0.9rem;
    }

    .nav.mobile-open .mega-menu-item p {
      font-size: 0.75rem;
    }

    /* Mobile toggle z-index above mobile menu */
    .mobile-toggle {
      z-index: 999;
      position: relative;
    }

    /* Carousel */
    .carousel-wrapper {
      position: relative;
      padding: 0 52px;
    }

    .carousel-viewport {
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      gap: 24px;
      transition: transform 0.4s ease;
      cursor: grab;
    }

    .carousel-track.dragging {
      transition: none;
      cursor: grabbing;
    }

    .carousel-track .product-card {
      flex-shrink: 0;
    }

    /* 2 visible cards (SaaS) */
    .carousel-track[data-visible="2"] .product-card {
      width: calc(50% - 12px);
      min-width: calc(50% - 12px);
    }

    /* 3 visible cards (Projekte) */
    .carousel-track[data-visible="3"] .product-card {
      width: calc(33.333% - 16px);
      min-width: calc(33.333% - 16px);
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg-white);
      color: var(--text-primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .carousel-btn:hover {
      background: var(--bg-gray);
      border-color: var(--text-muted);
    }

    .carousel-btn:disabled {
      opacity: 0.3;
      cursor: default;
    }

    .carousel-btn:disabled:hover {
      background: var(--bg-white);
      border-color: var(--border);
    }

    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }

    .carousel-nav {
      display: none;
    }

    .section-gray .carousel-btn {
      background: var(--bg-white);
    }

    @media (max-width: 768px) {
      .carousel-wrapper { padding: 0; }
      .carousel-track[data-visible="2"] .product-card,
      .carousel-track[data-visible="3"] .product-card {
        min-width: 100%;
        width: 100%;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .carousel-track[data-visible="3"] .product-card {
        min-width: calc(50% - 12px);
      }
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
