/* ========================================= Header Section========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", "Roboto", sans-serif;
    background: #f5f7fa;
}

/* ===============================
           HEADER STYLING
        ================================== */
.app-header {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #667eea, #764ba2) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: "Segoe UI", "Roboto", sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* ===============================
           LOGO SECTION
        ================================== */
.logo-section {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.2));
}

/* ===============================
           NAVIGATION (DESKTOP)
        ================================== */
.main-nav {
    flex: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.3rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.9rem 1.3rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #667eea;
    font-weight: 700;
}

/* ===============================
           DROPDOWN CONTAINER
        ================================== */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* ===============================
           DROPDOWN MENU - SICHTBAR BEI HOVER
        ================================== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    background: white;
    border-radius: 16px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border: 2px solid rgba(102, 126, 234, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

/* Pfeil oben */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    filter: drop-shadow(0 -2px 4px rgba(102, 126, 234, 0.1));
}

/* WICHTIG: Zeige Dropdown bei Hover */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* ===============================
           DROPDOWN ITEMS
        ================================== */
.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    text-decoration: none;
    color: #2d3748;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    pointer-events: auto !important;
}

.dropdown-menu li a i {
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.15),
        rgba(118, 75, 162, 0.1)
    );
    border-radius: 10px;
    color: #667eea;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-menu li a strong {
    color: #2d3748;
    font-weight: 700;
    display: block;
}

.dropdown-menu li a small {
    color: #718096;
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
}

/* Hover Effekt */
.dropdown-menu li a:hover {
    background: linear-gradient(
        90deg,
        rgba(102, 126, 234, 0.1) 0%,
        transparent 100%
    );
    padding-left: 32px;
    color: #667eea;
}

.dropdown-menu li a:hover i {
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.3),
        rgba(118, 75, 162, 0.2)
    );
    transform: scale(1.2) rotate(10deg);
    color: #764ba2;
}

.dropdown-menu li a:hover strong {
    color: #667eea;
}

/* ===============================
           SIGN IN BUTTON
        ================================== */
.btn-signin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.btn-signin:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.btn-signin:hover::before {
    width: 300px;
    height: 300px;
}

/* ===============================
           MOBILE MENU
        ================================== */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 2px solid #667eea;
    border-radius: 0 0 16px 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mobile-nav li {
    margin: 0;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-left-color: #667eea;
    padding-left: 20px;
}

.mobile-socials {
    display: flex;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.mobile-socials a {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.mobile-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* ===============================
           HAMBURGER
        ================================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ===============================
           RESPONSIVE
        ================================== */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        gap: 1rem;
    }

    .main-nav {
        display: none;
    }

    .btn-signin {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 48px;
    }

    .mobile-menu {
        position: fixed;
        top: 80px;
        width: 100%;
        border-radius: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.8rem 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .mobile-nav a {
        font-size: 1rem;
    }

    .btn-signin {
        padding: 10px 24px;
        font-size: 1rem;
    }
}

/*=============================== Hero SECTION =================================================== */

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a3e 50%, #16213e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Animated Background */
.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 200, 255, 0.2), transparent);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(150, 100, 255, 0.15), transparent);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* LEFT SIDE - TEXT */
.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #64c8ff 0%, #9664ff 50%, #ff64e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}

/* KONTAKT BUTTON */
.btn-kontakt {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: linear-gradient(135deg, #64c8ff 0%, #9664ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.3);
    position: relative;
    z-index: 100;
    pointer-events: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-kontakt:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(100, 200, 255, 0.5);
}

.btn-kontakt:active {
    transform: translateY(-2px);
}

/* RIGHT SIDE - IMAGE GALLERY */
.hero-images {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
}

.image-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    animation: slideInRight 1s ease-out 0.1s backwards;
}

.image-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    animation: slideInRight 1s ease-out 0.2s backwards;
}

.image-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    animation: slideInRight 1s ease-out 0.3s backwards;
}

.image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(100, 200, 255, 0.3);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Border Glow */
.image-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #64c8ff 0%, #9664ff 50%, #ff64e5 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
}

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-content {
        gap: 3rem;
    }

    .btn-kontakt {
        padding: 1.2rem 2.8rem;
        font-size: 0.9rem;
    }

    .images-grid {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-kontakt {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
        display: inline-block;
    }

    .images-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .image-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .image-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .image-item:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 1rem;
        min-height: 80vh;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-kontakt {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }

    .images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .image-item:nth-child(1),
    .image-item:nth-child(2),
    .image-item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .image-item {
        height: 200px;
        border-radius: 15px;
    }

    .image-item::before {
        border-radius: 15px;
    }
}

/*=========================================== Service SECTION ======================================= */

.auswahl-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f5f7fa 0%, #e8eef5 100%);
    overflow: hidden;
}

/* Dekorative Hintergrund-Elemente */
.auswahl-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 8s infinite ease-in-out;
}

.auswahl-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(30, 60, 114, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
}

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

.auswahl-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.auswahl-container > h1 {
    text-align: center;
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 4rem;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auswahl-container > h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.auswahl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.option-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.option-card:nth-child(1) {
    animation-delay: 0.2s;
}

.option-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.option-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.option-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.1) 0%,
        rgba(0, 153, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.option-card:hover::before {
    opacity: 1;
}

.image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.image-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.option-card:hover .image-container img {
    transform: scale(1.1);
}

.icon-badge {
    display: none;
}

.content-box {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.content-box h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.content-box p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 60, 114, 0.5);
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

.btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.btn:hover svg {
    transform: translateX(5px);
}

/* Feature-Tags */
.feature-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #0099ff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .auswahl-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto;
    }

    .auswahl-container > h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .auswahl-section {
        padding: 4rem 1.5rem;
    }

    .auswahl-container > h1 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .auswahl-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .image-container {
        height: 280px;
    }

    .content-box {
        padding: 2rem;
    }

    .content-box h3 {
        font-size: 1.6rem;
    }

    .content-box p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .auswahl-section {
        padding: 3rem 1rem;
    }

    .auswahl-container > h1 {
        font-size: 1.6rem;
    }

    .image-container {
        height: 240px;
    }

    .content-box {
        padding: 1.5rem;
    }

    .content-box h3 {
        font-size: 1.4rem;
    }

    .feature-tags {
        gap: 0.5rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ====== ============================================DIENSTLEISTUNGEN ===================================== */

.dienstleistungen-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    overflow: hidden;
}

/* Dekorative Elemente */
.dienstleistungen-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(0, 212, 255, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(30, 60, 114, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.dienstleistungen-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dienstleistungen-container > h2 {
    text-align: center;
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dienstleistungen-container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.dienstleistung-card {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out both;
}

.dienstleistung-card:nth-child(1) {
    animation-delay: 0.1s;
}
.dienstleistung-card:nth-child(2) {
    animation-delay: 0.2s;
}
.dienstleistung-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dienstleistung-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.dienstleistung-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.05) 0%,
        rgba(30, 60, 114, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.dienstleistung-card:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dienstleistung-card:hover .card-image img {
    transform: scale(1.1);
}

.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.4);
}

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0099ff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #00d4ff;
    gap: 0.8rem;
}

.card-link:hover svg {
    transform: translateX(5px);
}

.mehr-button-container {
    text-align: center;
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.btn-mehr {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(30, 60, 114, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-mehr::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.6s ease;
}

.btn-mehr:hover::before {
    left: 100%;
}

.btn-mehr:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 60, 114, 0.5);
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .dienstleistungen-container > h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .dienstleistungen-section {
        padding: 4rem 1.5rem;
    }

    .dienstleistungen-container > h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .dienstleistungen-container > p {
        font-size: 1.05rem;
        margin-bottom: 3rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-image {
        height: 240px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .card-content p {
        font-size: 1rem;
    }

    .btn-mehr {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .dienstleistungen-section {
        padding: 3rem 1rem;
    }

    .dienstleistungen-container > h2 {
        font-size: 1.6rem;
    }

    .dienstleistungen-container > p {
        font-size: 0.95rem;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 1.2rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/*=======================================Kostenlose Bedarfsanalyse Sektion====================*/

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

body {
    font-family: "Poppins", sans-serif;
    background: white;
}

.bedarfsanalyse-section {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    overflow: hidden;
}

/* Animated background patterns */
.bedarfsanalyse-section::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: floatPattern 15s ease-in-out infinite;
}

@keyframes floatPattern {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

.bedarfsanalyse-section::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(240, 147, 251, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: floatPattern 20s ease-in-out infinite reverse;
}

/* Decorative dots pattern */
.dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.1) 2px,
        transparent 2px
    );
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 1;
}

.bedarfsanalyse-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
    border-radius: 40px;
    overflow: visible;
    transition: all 0.6s ease;
}

/* Glowing border effect */
.image-container::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 300%;
    border-radius: 40px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: gradientRotate 4s linear infinite;
    filter: blur(10px);
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.image-container:hover::before {
    opacity: 1;
}

.image-main {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.15);
    position: relative;
    z-index: 1;
}

.image-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.2) 0%,
        rgba(240, 147, 251, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.image-container:hover .image-main::after {
    opacity: 1;
}

.image-container:hover {
    transform: translateY(-10px);
}

.image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-container:hover .image-main img {
    transform: scale(1.08) rotate(1deg);
}

/* Floating badges with enhanced design */
.badge-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.5s ease;
    animation: floatBadge 4s ease-in-out infinite;
    border: 4px solid white;
}

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

.badge-circle:hover {
    transform: translateY(-15px) scale(1.15) rotate(10deg);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.badge-circle.top-right {
    top: -30px;
    right: -30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation-delay: 0s;
}

.badge-circle.bottom-left {
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    animation-delay: 2s;
}

.badge-circle.middle-right {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    animation-delay: 1s;
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

.content-wrapper {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-wrapper h2 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 900;
    font-family: "Playfair Display", serif;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 30%,
        #f093fb 60%,
        #f5576c 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: gradientShift 5s ease infinite;
    background-size: 300% 300%;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.content-wrapper p {
    font-size: 1.2rem;
    color: #555;
    line-height: 2;
    margin-bottom: 3rem;
    font-weight: 400;
}

.content-wrapper p::first-line {
    font-weight: 600;
    font-size: 1.25rem;
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.features-list li:nth-child(1) {
    animation-delay: 0.1s;
}
.features-list li:nth-child(2) {
    animation-delay: 0.2s;
}
.features-list li:nth-child(3) {
    animation-delay: 0.3s;
}
.features-list li:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-list li:hover {
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.05),
        rgba(240, 147, 251, 0.05)
    );
    transform: translateX(10px);
}

.check-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.check-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.features-list li:hover .check-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2, #f093fb);
}

.check-icon i {
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.feature-text span {
    display: block;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.cta-button::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.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 50%, #667eea 100%);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.05),
        rgba(240, 147, 251, 0.05)
    );
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.6s;
}
.stat-item:nth-child(2) {
    animation-delay: 0.7s;
}
.stat-item:nth-child(3) {
    animation-delay: 0.8s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #777;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bedarfsanalyse-container {
        gap: 4rem;
    }

    .content-wrapper h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .bedarfsanalyse-section {
        padding: 4rem 1.5rem;
    }

    .bedarfsanalyse-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-wrapper {
        order: -1;
    }

    .badge-circle {
        width: 100px;
        height: 100px;
    }

    .badge-icon {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .content-wrapper h2 {
        font-size: 2rem;
    }

    .content-wrapper p {
        font-size: 1.05rem;
    }

    .features-list li {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1.3rem 2.5rem;
    }

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

@media (max-width: 480px) {
    .bedarfsanalyse-section {
        padding: 3rem 1rem;
    }

    .badge-circle {
        width: 80px;
        height: 80px;
    }

    .badge-circle.top-right {
        top: -15px;
        right: -15px;
    }

    .badge-circle.bottom-left {
        bottom: -15px;
        left: -15px;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .content-wrapper h2 {
        font-size: 1.75rem;
    }

    .content-wrapper p {
        font-size: 0.95rem;
    }

    .features-list li {
        font-size: 0.95rem;
        padding: 0.8rem;
    }

    .check-icon {
        width: 40px;
        height: 40px;
    }

    .check-icon i {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1.2rem 2rem;
    }
}

/* =========================== Mission, Vision ================================================== */

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

body {
    font-family: "Poppins", sans-serif;
    background: white;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 100px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.values-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.values-section::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(240, 147, 251, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.values-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-title p {
    font-size: 1.2rem;
    color: #777;
    margin-top: 2rem;
    font-weight: 400;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
    animation: cardFadeIn 0.8s ease-out backwards;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}
.card:nth-child(2) {
    animation-delay: 0.3s;
}
.card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Different gradient borders for each card */
.card:nth-child(1):hover {
    border-color: #667eea;
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
}

.card:nth-child(2):hover {
    border-color: #764ba2;
    box-shadow: 0 25px 70px rgba(118, 75, 162, 0.25);
}

.card:nth-child(3):hover {
    border-color: #f093fb;
    box-shadow: 0 25px 70px rgba(240, 147, 251, 0.25);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card:nth-child(1) .card-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card:nth-child(2) .card-image {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
}

.card:nth-child(3) .card-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.8;
}

.card:hover .card-image img {
    transform: scale(1.15);
    opacity: 0.3;
}

.card-icon {
    font-size: 5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0.3;
    transition: all 0.5s ease;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.card:hover .card-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
}

.card-content {
    padding: 40px 35px;
    position: relative;
}

.card-content::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 15%;
    right: 15%;
    height: 8px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.card:nth-child(1) .card-content::before {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.card:nth-child(2) .card-content::before {
    background: linear-gradient(90deg, #764ba2, #f093fb);
}

.card:nth-child(3) .card-content::before {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.card:hover .card-content::before {
    left: 10%;
    right: 10%;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    transition: all 0.3s ease;
}

.card:nth-child(1) .card-content h3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card:nth-child(2) .card-content h3 {
    background: linear-gradient(135deg, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card:nth-child(3) .card-content h3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-weight: 400;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    font-size: 1rem;
    border: 2px solid;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.card:nth-child(1) .btn-read-more {
    border-color: #667eea;
    color: #667eea;
}

.card:nth-child(2) .btn-read-more {
    border-color: #764ba2;
    color: #764ba2;
}

.card:nth-child(3) .btn-read-more {
    border-color: #f093fb;
    color: #f093fb;
}

.btn-read-more::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease;
    z-index: -1;
}

.card:nth-child(1) .btn-read-more::before {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.card:nth-child(2) .btn-read-more::before {
    background: linear-gradient(135deg, #764ba2, #f093fb);
}

.card:nth-child(3) .btn-read-more::before {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.btn-read-more:hover::before {
    left: 0;
}

.btn-read-more:hover {
    color: white;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Decorative elements */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.card:nth-child(1) .card-badge {
    color: #667eea;
}

.card:nth-child(2) .card-badge {
    color: #764ba2;
}

.card:nth-child(3) .card-badge {
    color: #f093fb;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 20px;
    }

    .section-title {
        margin-bottom: 50px;
    }

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

    .section-title p {
        font-size: 1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-image {
        height: 220px;
    }

    .card-content {
        padding: 30px 25px;
    }

    .card-content h3 {
        font-size: 1.6rem;
    }

    .card-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 40px 15px;
    }

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

    .card-image {
        height: 200px;
    }

    .card-icon {
        font-size: 4rem;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .btn-read-more {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ===================================================== Kandidaten Section  =========================*/

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
}

/* ===== HERO SECTION ===== */
.kandidaten {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.kandidaten::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

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

.kandidaten-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.kandidaten-text {
    animation: slideInLeft 0.8s ease-out;
}

.kandidaten-text h1 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kandidaten-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.kandidaten-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.kandidaten-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.kandidaten-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1),
        rgba(118, 75, 162, 0.1)
    );
    border-radius: 20px;
    pointer-events: none;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

/* ===== SECTION HEADER ===== */
.kandidaten-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

.kandidaten-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kandidaten-header p {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== KANDIDATEN CARDS CONTAINER ===== */
.kandidaten-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.kandidaten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* ===== KANDIDATEN CARD ===== */
.kandidaten-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease-out;
}

.kandidaten-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

/* Profile Image */
.profil-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.profil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kandidaten-card:hover .profil-image img {
    transform: scale(1.1);
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

/* Profile Info */
.profil-content {
    padding: 30px;
}

.profil-name {
    font-size: 1.4rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 5px;
}

.profil-beruf {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.profil-info {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Skills */
.profil-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.skill-tag {
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1),
        rgba(118, 75, 162, 0.1)
    );
    color: #667eea;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* Details Button */
.profil-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.profil-button:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
}

/* ===== VIEW ALL SECTION ===== */
.view-all-section {
    text-align: center;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.view-all-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.view-all-btn:hover::before {
    transform: translateX(0);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .kandidaten-hero {
        padding: 60px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .kandidaten-header h2 {
        font-size: 1.8rem;
    }

    .kandidaten-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profil-image {
        height: 250px;
    }

    .profil-content {
        padding: 25px;
    }

    .profil-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .kandidaten-hero {
        padding: 40px 15px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

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

    .kandidaten-grid {
        gap: 25px;
        margin-bottom: 40px;
    }

    .profil-image {
        height: 220px;
    }

    .profil-content {
        padding: 20px;
    }

    .profil-name {
        font-size: 1.1rem;
    }

    .profil-skills {
        gap: 6px;
    }

    .skill-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .view-all-btn {
        padding: 14px 40px;
        font-size: 0.95rem;
    }
}

/* ================================ Meilensteine ============================================= */

/* ===== MEILENSTEINE SECTION ===== */
.meilenstein {
    padding: 6rem 2rem;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background */
.meilenstein::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite;
}

.meilenstein::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(
        circle,
        rgba(240, 147, 251, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 30px);
    }
}

.meilenstein-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== IMAGE SIDE ===== */
.meilenstein-image {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1),
        rgba(240, 147, 251, 0.1)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.image-container:hover::before {
    opacity: 1;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.2);
}

.meilenstein-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Decorative frame */
.image-frame {
    position: absolute;
    inset: -20px;
    border: 3px dashed rgba(102, 126, 234, 0.15);
    border-radius: 35px;
    pointer-events: none;
    animation: rotateFrame 20s linear infinite;
}

@keyframes rotateFrame {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Floating badge */
.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideInUp 1s ease-out 0.3s backwards;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.badge-icon {
    font-size: 1.3rem;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.badge-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}

/* Stats floating badges */
.floating-stats {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.stat-card {
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInRight 1s ease-out backwards;
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
}

.stat-card:nth-child(1) {
    animation-delay: 0.4s;
}
.stat-card:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ===== TEXT SIDE ===== */
.meilenstein-text {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.08),
        rgba(240, 147, 251, 0.08)
    );
    border-radius: 30px;
    color: #667eea;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(102, 126, 234, 0.15);
}

.meilenstein-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 900;
    font-family: "Playfair Display", serif;
    letter-spacing: -0.5px;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.meilenstein-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Highlights list */
.highlights-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.03),
        rgba(240, 147, 251, 0.03)
    );
    border-radius: 15px;
    border-left: 4px solid;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.highlights-list li:nth-child(1) {
    border-left-color: #667eea;
    animation-delay: 0.2s;
}

.highlights-list li:nth-child(2) {
    border-left-color: #764ba2;
    animation-delay: 0.4s;
}

.highlights-list li:nth-child(3) {
    border-left-color: #f093fb;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlights-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.highlights-list li:nth-child(1) .highlight-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.highlights-list li:nth-child(2) .highlight-icon {
    background: linear-gradient(135deg, #764ba2, #f093fb);
    box-shadow: 0 8px 20px rgba(118, 75, 162, 0.25);
}

.highlights-list li:nth-child(3) .highlight-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.25);
}

.highlights-list li:hover .highlight-icon {
    transform: scale(1.1) rotate(-5deg);
}

.highlight-text {
    flex: 1;
}

.highlight-text strong {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.highlight-text span {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
}

.btn-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .meilenstein {
        padding: 4rem 1.5rem;
    }

    .meilenstein-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .meilenstein-image {
        order: -1;
    }

    .image-frame {
        display: none;
    }

    .floating-stats {
        flex-direction: row;
        top: 20px;
        right: 20px;
        gap: 10px;
    }

    .stat-card {
        padding: 10px 15px;
        min-width: 85px;
    }

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

    .stat-label {
        font-size: 0.65rem;
    }

    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 22px;
    }

    .meilenstein-text h1 {
        font-size: 2rem;
    }

    .meilenstein-text p {
        font-size: 1.05rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .meilenstein {
        padding: 3rem 1rem;
    }

    .floating-stats {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .stat-card {
        padding: 8px 12px;
        min-width: 75px;
    }

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

    .image-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .badge-icon {
        font-size: 1.1rem;
    }

    .meilenstein-text h1 {
        font-size: 1.75rem;
    }

    .meilenstein-text p {
        font-size: 0.95rem;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .highlight-text strong {
        font-size: 1rem;
    }

    .highlight-text span {
        font-size: 0.85rem;
    }
}

/* =======================================Blog Sektion CSS========================================= */

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.blog-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(118, 75, 162, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

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

/* ===== SECTION TITLE ===== */
.blog-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

.blog-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BLOG CONTAINER ===== */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== BLOG CARD ===== */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

/* Image Container */
.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

/* Overlay Badge */
.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    animation: slideInDown 0.5s ease-out;
}

/* Content */
.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #667eea;
}

.blog-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
    min-height: 50px;
}

/* Meta Information */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 15px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-icon {
    font-size: 1rem;
}

/* Read More Button */
.blog-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-button:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* ===== VIEW ALL BUTTON ===== */
.blog-footer {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.view-all-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.view-all-btn:hover::before {
    transform: translateX(0);
}

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

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 20px;
    }

    .blog-header h2 {
        font-size: 2rem;
    }

    .blog-header p {
        font-size: 1rem;
    }

    .blog-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 15px;
    }

    .blog-header h2 {
        font-size: 1.6rem;
    }

    .blog-header p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .blog-container {
        gap: 25px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .blog-description {
        font-size: 0.9rem;
        min-height: auto;
    }

    .blog-meta {
        flex-wrap: wrap;
        font-size: 0.8rem;
        gap: 10px;
    }

    .view-all-btn {
        padding: 14px 40px;
        font-size: 0.95rem;
        margin-top: 60px;
    }
}

/* ==================================   Feedback SECTION ==================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* =============================== ANIMATED BACKGROUND =============================== */
.bg-decoration {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.bg-decoration-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.bg-decoration-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -250px;
    left: -250px;
    animation-delay: 10s;
}

.bg-decoration-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* =============================== FEEDBACK SECTION =============================== */
.feedback-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 30px;
    z-index: 1;
}

/* =============================== HEADER =============================== */
.feedback-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.feedback-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.feedback-header h2 {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.feedback-header p {
    font-size: 22px;
    color: #6b7280;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================== STATS SECTION =============================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 28px;
    text-align: center;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: left 0.6s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 12px;
    animation: bounce 2s ease-in-out infinite;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
}

/* =============================== FEEDBACK CARDS =============================== */
.feedback-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: #667eea;
    opacity: 0.1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.avatar-wrapper {
    position: relative;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

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

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.card-info .name {
    font-weight: 800;
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 6px;
}

.card-info .company {
    font-size: 15px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.card-text {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.card-stars {
    color: #fbbf24;
    font-size: 24px;
    letter-spacing: 4px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.card-date {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
}

.read-more:hover {
    gap: 10px;
    color: #764ba2;
}

/* =============================== CTA BUTTON =============================== */
.cta-wrapper {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* =============================== ANIMATIONS =============================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================== RESPONSIVE =============================== */
@media (max-width: 1024px) {
    .feedback-header h2 {
        font-size: 48px;
    }

    .feedback-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 640px) {
    .feedback-section {
        padding: 80px 20px;
    }

    .feedback-header h2 {
        font-size: 36px;
    }

    .feedback-header p {
        font-size: 17px;
    }

    .feedback-cards {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 42px;
    }

    .card {
        padding: 30px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }

    .bg-decoration {
        width: 400px;
        height: 400px;
    }
}

/* ==========================Kontakt Sektion CSS===================================== */

/* ===============================
           CTA SECTION - MAIN
        ================================== */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin: 2rem 0;
}

/* Animated Background Orbs */
.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

/* CTA Container */
.cta-container {
    max-width: 1000px;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Main Content Section */
.cta-main {
    text-align: center;
    margin-bottom: 3rem;
}

/* CTA Title */
.cta-section h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    animation: slideInDown 0.7s ease-out;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

/* CTA Subtitle */
.cta-section p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 500;
    animation: slideInUp 0.7s ease-out 0.2s both;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.01em;
}

/* CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    animation: slideInUp 0.7s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.6);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* Features Grid */
.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.cta-feature {
    color: white;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
}

.cta-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

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

.cta-feature-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cta-feature-text {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ===============================
           ANIMATIONS
        ================================== */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===============================
           RESPONSIVE DESIGN
        ================================== */
@media (max-width: 1200px) {
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .cta-section p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        min-height: auto;
        margin: 1.5rem 0;
        border-radius: 0;
    }

    .cta-container {
        padding: 3rem 1.5rem;
    }

    .cta-main {
        margin-bottom: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        gap: 0.6rem;
    }

    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-feature {
        padding: 1.5rem 1rem;
    }

    .cta-feature-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .cta-feature-title {
        font-size: 0.9rem;
    }

    .cta-feature-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        min-height: auto;
        margin: 1rem 0;
        border-radius: 0;
    }

    .cta-container {
        padding: 2rem 1rem;
    }

    .cta-main {
        margin-bottom: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 0.95rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }

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

    .cta-feature {
        padding: 1.2rem 1rem;
    }

    .cta-feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .cta-feature-title {
        font-size: 0.85rem;
    }

    .cta-feature-text {
        font-size: 0.75rem;
    }
}

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

body {
    font-family: "Segoe UI", "Roboto", sans-serif;
    background: #f5f7fa;
}

/* ===============================
           FOOTER STYLING
        ================================== */
.site-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animated Background */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.site-footer::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 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 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* ===============================
           FOOTER LOGO
        ================================== */
.footer-logo {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.footer-logo-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

/* ===============================
           MAIN NAVIGATION
        ================================== */
.footer-main-nav {
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.footer-main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.footer-main-nav a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-main-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.footer-main-nav a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-main-nav a:hover::before {
    width: 100%;
}

/* ===============================
           SOCIAL LINKS
        ================================== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.4s both;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.02)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 12px;
}

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

.social-link:hover {
    transform: translateY(-12px) scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
}

.social-link:hover::before {
    opacity: 0.15;
}

.social-link:hover::after {
    width: 250px;
    height: 250px;
}

.social-link svg,
.social-link i {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-link:hover i,
.social-link:hover svg {
    transform: scale(1.25) rotate(8deg);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Individual Social Colors on Hover */
.social-link:nth-child(1):hover {
    border-color: #1877f2;
    box-shadow: 0 25px 50px rgba(24, 119, 242, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.social-link:nth-child(2):hover {
    border-color: #1da1f2;
    box-shadow: 0 25px 50px rgba(29, 161, 242, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.social-link:nth-child(3):hover {
    border-color: #e4405f;
    box-shadow: 0 25px 50px rgba(228, 64, 95, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.social-link:nth-child(4):hover {
    border-color: #0a66c2;
    box-shadow: 0 25px 50px rgba(10, 102, 194, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.social-link:nth-child(5):hover {
    border-color: #ff0000;
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* ===============================
           FOOTER DIVIDER
        ================================== */
.footer-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 10%,
        rgba(255, 255, 255, 0.2) 90%,
        transparent 100%
    );
    margin: 0 auto;
    width: 90%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* ===============================
           FOOTER NAVIGATION
        ================================== */
.footer-nav {
    animation: fadeIn 1s ease-out 0.6s both;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* ===============================
           FOOTER BOTTOM
        ================================== */
.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-out 0.8s both;
}

.footer-bottom p {
    line-height: 1.6;
}

/* ===============================
           RESPONSIVE DESIGN
        ================================== */
@media (max-width: 1024px) {
    .footer-inner {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .footer-logo-text {
        font-size: 2rem;
    }

    .footer-main-nav ul {
        gap: 2rem;
    }

    .footer-main-nav a {
        font-size: 1rem;
    }

    .social-link {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .social-link i {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 0 1.5rem;
    }

    .footer-inner {
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .footer-logo-text {
        font-size: 1.7rem;
    }

    .footer-main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-main-nav a {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-link {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .social-link i {
        width: 24px;
        height: 24px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 3rem 0 1rem;
    }

    .footer-inner {
        gap: 2rem;
        padding: 0 0.8rem;
    }

    .footer-logo-text {
        font-size: 1.4rem;
    }

    .footer-main-nav ul {
        gap: 1rem;
    }

    .footer-main-nav a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .social-link i {
        width: 20px;
        height: 20px;
    }

    .footer-nav ul {
        gap: 0.8rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
