    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --blue: #0057B7;
            --blue-dark: #003D7A;
            --orange: #FF6B00;
            --orange-dark: #E55F00;
            --dark: #1a1a1a;
            --gray: #666666;
            --light: #F8F9FA;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

        /* ============================================
           HEADER - MODERN & STICKY
           ============================================ */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 0.8rem 5%;
            box-shadow: var(--shadow-md);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--blue);
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo span {
            color: var(--orange);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:not(.btn):hover {
            color: var(--blue);
        }

        .nav-links a:not(.btn)::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--blue);
            transition: width 0.3s ease;
        }

        .nav-links a:not(.btn):hover::after {
            width: 100%;
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--dark);
            border-radius: 3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(9px, 9px);
            background: var(--orange);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(9px, -9px);
            background: var(--orange);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 20px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 6rem 2rem 2rem;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
        }

        .mobile-menu a {
            display: block;
            padding: 1.2rem 0;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-bottom: 1px solid var(--light);
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--blue);
            padding-left: 1rem;
        }

        .mobile-menu .btn {
            margin-top: 1.5rem;
            width: 100%;
            text-align: center;
            padding: 1.2rem;
        }

        .btn {
            padding: 0.75rem 2rem;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 600px;
            height: 600px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(0, 87, 183, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 87, 183, 0.4);
        }

        /* ============================================
           HERO - MODERN GRADIENT WITH GLASSMORPHISM
           ============================================ */
        .hero {
            margin-top: 75px;
            min-height: 95vh;
            background: linear-gradient(135deg, #0057B7 0%, #003D7A 50%, #002654 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 5% 5%;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -400px;
            right: -200px;
            animation: pulse 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -300px;
            left: -150px;
            animation: pulse 10s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .hero-text h1 {
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out;
            letter-spacing: -1px;
        }

        .hero-text .highlight {
            background: linear-gradient(135deg, var(--orange) 0%, #FFD700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .hero-text p {
            font-size: 1.4rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 0;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
            font-weight: 500;
        }

        /* Schnellsuche - GLASSMORPHISM */
        .quick-search {
            max-width: 950px;
            margin: 0 auto 4rem;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .search-form {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            padding: 1.8rem;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 1.2rem;
            align-items: center;
        }

        .search-input {
            padding: 1.2rem 1.8rem;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 15px;
            font-size: 1rem;
            font-family: inherit;
            font-weight: 500;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.95);
            color: var(--dark);
        }

        .search-input::placeholder {
            color: var(--gray);
            font-weight: 400;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
            background: var(--white);
            transform: translateY(-2px);
        }

        .search-btn {
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            color: var(--white);
            border: none;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: inherit;
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
        }

        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
        }

        .search-btn:active {
            transform: translateY(-1px);
        }

        /* Hero Stats - GLASSMORPHISM */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), #FFD700);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .stat-box:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .stat-box:hover::before {
            transform: scaleX(1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--orange) 0%, #FFD700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            color: rgba(255,255,255,0.95);
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* ============================================
           AKTUELLE STELLEN - MODERN CARDS
           ============================================ */
        .aktuelle-stellen {
            padding: 7rem 5%;
            background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-title h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1rem;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .section-title .accent {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.2rem;
            font-weight: 500;
        }

        .stellen-grid {
            max-width: 1400px;
            margin: 0 auto 4rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .stelle-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .stelle-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blue), var(--orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .stelle-card:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: var(--shadow-lg);
        }

        .stelle-card:hover::before {
            transform: scaleX(1);
        }

        .stelle-logo {
            width: 85px;
            height: 85px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            color: var(--white);
            font-size: 2.2rem;
            font-weight: 900;
            border-radius: 18px;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px rgba(0, 87, 183, 0.25);
            transition: all 0.3s ease;
        }

        .stelle-card:hover .stelle-logo {
            transform: scale(1.05) rotate(2deg);
        }

        .stelle-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 18px;
            padding: 0.5rem;
            background: var(--white);
        }

        .stelle-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.8rem;
            line-height: 1.3;
            letter-spacing: -0.3px;
        }

        .stelle-firma {
            color: var(--blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .stelle-meta {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .stelle-ort {
            color: var(--gray);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .stelle-typ {
            display: inline-block;
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            color: var(--white);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
        }

        .stelle-card .btn {
            margin-top: auto;
            width: 100%;
            text-align: center;
            padding: 1rem;
        }

        /* No Stellen State */
        .no-stellen {
            text-align: center;
            padding: 5rem 2rem;
            background: var(--white);
            border-radius: 30px;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: var(--shadow-md);
        }

        .no-stellen-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            opacity: 0.4;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .no-stellen h3 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .no-stellen p {
            color: var(--gray);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }

        /* ============================================
           FEATURES - MODERN GRID
           ============================================ */
        .features {
            padding: 7rem 5%;
            background: var(--white);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .feature-card {
            background: var(--light);
            padding: 3rem 2.5rem;
            border-radius: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,107,0,0.05), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .feature-card:hover {
            transform: translateY(-12px);
            border-color: var(--orange);
            box-shadow: var(--shadow-lg);
            background: var(--white);
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            margin-bottom: 2rem;
            color: var(--white);
            box-shadow: 0 10px 25px rgba(0, 87, 183, 0.25);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
            letter-spacing: -0.3px;
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.8;
            font-weight: 500;
        }

        /* ============================================
           PRICING - MODERN CARDS
           ============================================ */
        .pricing {
            padding: 7rem 5%;
            background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
        }

        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .pricing-card {
            background: var(--white);
            padding: 3.5rem;
            border-radius: 30px;
            border: 3px solid #E0E0E0;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .pricing-card.featured {
            border-color: var(--orange);
            transform: scale(1.08);
            box-shadow: 0 20px 60px rgba(255, 107, 0, 0.25);
            background: linear-gradient(135deg, #FFF8F0 0%, var(--white) 100%);
        }

        .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured:hover {
            transform: scale(1.1);
        }

        .pricing-badge {
            position: absolute;
            top: -18px;
            right: 35px;
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            color: var(--white);
            padding: 0.6rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }

        .pricing-card h3 {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
        }

        .price {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .price small {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gray);
        }

        .pricing-features {
            list-style: none;
            margin: 2.5rem 0;
        }

        .pricing-features li {
            padding: 1rem 0;
            border-bottom: 1px solid #E0E0E0;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 500;
            color: var(--dark);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--white);
            background: var(--orange);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* ============================================
           CTA - MODERN GRADIENT
           ============================================ */
        .cta {
            padding: 7rem 5%;
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, #D44F00 100%);
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -300px;
            right: -100px;
        }

        .cta h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            position: relative;
            z-index: 1;
        }

        .cta p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        /* ============================================
           FOOTER - MODERN
           ============================================ */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 5%;
            text-align: center;
        }

        footer .logo {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 2rem;
            display: inline-block;
        }

        footer p {
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin: 0 1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        footer a:hover {
            color: var(--orange);
        }
	#scrollTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;

  /* 👇 DAS ist der wichtige Teil */
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1; /* wichtig gegen vertikales Verrutschen */

  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}



		#scrollTopBtn.show {
		  opacity: 1;
		  visibility: visible;
		  transform: translateY(0);
		}

		#scrollTopBtn:hover {
		  transform: translateY(-4px) scale(1.05);
		}

		#scrollTopBtn:focus {
		  outline: 3px solid rgba(255,255,255,0.6);
		  outline-offset: 3px;
		}

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 968px) {
            .hero-text h1 {
                font-size: 3rem;
            }

            .section-title h2 {
                font-size: 2.5rem;
            }

            .search-form {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }

            .stellen-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            /* Mobile Navigation */
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu,
            .mobile-overlay {
                display: block;
            }

            .cta h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }