/* =============================== HERO SECTION (KLEINER) ================================== */

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

body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.prozesse {
    min-height: 75vh; /* Reduziert von 100vh */
    background: linear-gradient(135deg, #1e2139 0%, #2d3354 50%, #1e2139 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 40px; /* Reduziert von 80px */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated blob background */
.blob {
    position: absolute;
    opacity: 0.08; /* Reduziert für subtileren Effekt */
    filter: blur(40px);
    animation: blob-animation 8s infinite;
}

.blob1 {
    width: 500px; /* Reduziert von 600px */
    height: 500px;
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    top: -150px; /* Angepasst */
    right: -80px;
    animation-delay: 0s;
}

.blob2 {
    width: 400px; /* Reduziert von 500px */
    height: 400px;
    background: linear-gradient(135deg, #4a9fd8, #6bb3e6);
    bottom: -100px; /* Angepasst */
    left: -80px;
    animation-delay: 2s;
}

.blob3 {
    width: 350px; /* Reduziert von 400px */
    height: 350px;
    background: linear-gradient(135deg, #ff7f5c, #4a9fd8);
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}

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

.prozesse-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Reduziert von 100px */
    align-items: center;
    position: relative;
    z-index: 1;
}

.prozesse-text {
    color: white;
    animation: slideInLeft 1.2s ease-out;
}

.prozesse-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Reduziert */
    margin-bottom: 20px; /* Reduziert von 25px */
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9a7c 50%, #4a9fd8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.prozesse-text p {
    font-size: clamp(1rem, 2vw, 1.2rem); /* Reduziert */
    line-height: 1.8; /* Reduziert von 1.9 */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px; /* Reduziert von 45px */
    font-weight: 300;
    letter-spacing: 0.3px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; /* Reduziert von 20px */
    margin-bottom: 35px; /* Reduziert von 40px */
}

.feature-item {
    display: flex;
    gap: 12px; /* Reduziert von 15px */
    padding: 16px; /* Reduziert von 20px */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 127, 92, 0.5); /* Orange Farbe */
    transform: translateY(-5px);
}

.feature-icon {
    width: 38px; /* Reduziert von 40px */
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* Reduziert von 1.5rem */
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 0.95rem; /* Reduziert von 1rem */
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem; /* Reduziert von 0.9rem */
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.cta-container {
    display: flex;
    gap: 15px; /* Reduziert von 20px */
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 38px; /* Reduziert */
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9a7c 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem; /* Reduziert von 1.05rem */
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(255, 127, 92, 0.4);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 127, 92, 0.6);
}

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

.cta-button-secondary {
    padding: 14px 38px; /* Reduziert */
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem; /* Reduziert */
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-button-secondary:hover {
    background: rgba(255, 127, 92, 0.15);
    border-color: #ff7f5c;
    transform: translateY(-5px);
}

.prozesse-image {
    position: relative;
    animation: slideInRight 1.2s ease-out;
    perspective: 1000px;
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5); /* Reduziert */
}

.image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255, 127, 92, 0.25) 100%
    );
    z-index: 2;
}

.prozesse-image img {
    width: 100%;
    height: auto;
    display: block;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.image-wrapper:hover img {
    transform: scale(1.08) rotateY(-5deg);
    filter: brightness(1) contrast(1.2);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .prozesse {
        padding: 50px 30px; /* Reduziert */
        min-height: 70vh;
    }

    .prozesse-content {
        gap: 50px; /* Reduziert */
    }

    .prozesse-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .prozesse {
        padding: 40px 20px; /* Reduziert */
        min-height: auto;
    }

    .prozesse-content {
        grid-template-columns: 1fr;
        gap: 35px; /* Reduziert */
    }

    .prozesse-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .prozesse-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .cta-container {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }

    .blob {
        display: none;
    }
}

@media (max-width: 480px) {
    .prozesse {
        padding: 35px 15px; /* Reduziert */
    }

    .prozesse-text h1 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .prozesse-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .feature-item {
        padding: 14px;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
}

/* ============================= Prozesse erklären =============================== */

/* ============================================
   PROZESS SECTION - MODERN STYLES MIT LOGO-FARBEN
============================================ */

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

body {
    font-family:
        "Inter",
        "Segoe UI",
        -apple-system,
        BlinkMacSystemFont,
        "Roboto",
        sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #1e2139;
    line-height: 1.6;
}

/* ============== PROZESS INTRO SECTION ============== */
.prozess-intro-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.prozess-intro-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(255, 127, 92, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
}

.prozess-intro-section::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(74, 159, 216, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(3deg);
    }
}

/* Header */
.intro-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.1),
        rgba(74, 159, 216, 0.1)
    );
    color: #ff7f5c;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 127, 92, 0.2);
    animation: slideDown 0.8s ease-out;
}

.intro-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e2139 0%, #ff7f5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: slideDown 0.8s ease-out 0.2s both;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: slideDown 0.8s ease-out 0.4s both;
}

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

/* Boxes Container */
.intro-boxes {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Box */
.intro-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 50px;
    align-items: start;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.intro-box[data-step="1"] {
    animation-delay: 0.1s;
}
.intro-box[data-step="2"] {
    animation-delay: 0.2s;
}
.intro-box[data-step="3"] {
    animation-delay: 0.3s;
}
.intro-box[data-step="4"] {
    animation-delay: 0.4s;
}
.intro-box[data-step="5"] {
    animation-delay: 0.5s;
}
.intro-box[data-step="6"] {
    animation-delay: 0.6s;
}
.intro-box[data-step="7"] {
    animation-delay: 0.7s;
}
.intro-box[data-step="8"] {
    animation-delay: 0.8s;
}

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

.intro-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #ff7f5c 0%, #4a9fd8 50%, #ff9a7c 100%);
    transition:
        width 0.4s ease,
        opacity 0.4s ease;
}

.intro-box:hover {
    box-shadow: 0 20px 70px rgba(255, 127, 92, 0.15);
    transform: translateY(-10px) scale(1.01);
}

.intro-box:hover::before {
    width: 100%;
    opacity: 0.05;
}

/* Box Icon */
.box-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9a7c 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(255, 127, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.box-icon::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 ease,
        height 0.6s ease;
}

.intro-box:hover .box-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 20px 60px rgba(255, 127, 92, 0.5);
}

.intro-box:hover .box-icon::before {
    width: 200%;
    height: 200%;
}

/* Box Content */
.intro-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-label {
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.1),
        rgba(74, 159, 216, 0.1)
    );
    color: #ff7f5c;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.intro-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: #1e2139;
    line-height: 1.3;
    margin-bottom: 5px;
}

.intro-content p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Button */
.btn-more-info {
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9a7c 100%);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(255, 127, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-more-info::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 ease,
        height 0.6s ease;
}

.btn-more-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 127, 92, 0.5);
}

.btn-more-info:hover::before {
    width: 400px;
    height: 400px;
}

.btn-more-info span,
.btn-more-info i {
    position: relative;
    z-index: 1;
}

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

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

/* ============== MODAL OVERLAY ============== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 33, 57, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Modal */
.modal {
    display: none;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show {
    display: block;
    animation: modalSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Modal Content */
.modal-content {
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9a7c 100%);
    padding: 60px;
    color: white;
    text-align: center;
    position: relative;
}

.modal-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.95;
    font-weight: 500;
}

/* Modal Body */
.modal-body {
    padding: 60px;
}

.modal-intro {
    display: flex;
    gap: 20px;
    align-items: start;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.05),
        rgba(74, 159, 216, 0.05)
    );
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #ff7f5c;
}

.modal-intro i {
    font-size: 2rem;
    color: #ff7f5c;
    flex-shrink: 0;
}

.modal-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.modal-goal,
.modal-result,
.modal-highlight {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.modal-goal {
    background: linear-gradient(
        135deg,
        rgba(74, 159, 216, 0.05),
        rgba(107, 179, 230, 0.05)
    );
    border-left: 4px solid #4a9fd8;
}

.modal-result {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.05),
        rgba(5, 150, 105, 0.05)
    );
    border-left: 4px solid #10b981;
}

.modal-highlight {
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.05),
        rgba(255, 154, 124, 0.05)
    );
    border-left: 4px solid #ff7f5c;
}

.modal-goal i,
.modal-result i,
.modal-highlight i {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-goal i {
    color: #4a9fd8;
}
.modal-result i {
    color: #10b981;
}
.modal-highlight i {
    color: #ff7f5c;
}

.modal-goal strong,
.modal-result strong,
.modal-highlight strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1e2139;
}

.modal-goal p,
.modal-result p,
.modal-highlight p {
    color: #4a5568;
    line-height: 1.7;
}

/* Modal Sections */
.modal-section {
    margin-bottom: 45px;
}

.modal-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e2139;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-section h3 i {
    color: #ff7f5c;
    font-size: 1.8rem;
}

.modal-section > p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Modal Lists */
.modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-list li {
    display: flex;
    gap: 15px;
    align-items: start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-list li:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.05),
        rgba(74, 159, 216, 0.05)
    );
    transform: translateX(5px);
}

.modal-list li i {
    color: #10b981;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-list li div {
    color: #4a5568;
    line-height: 1.6;
}

.modal-list li strong {
    color: #1e2139;
    display: block;
    margin-bottom: 5px;
}

/* Compact List */
.compact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.compact-list li {
    padding-left: 25px;
    position: relative;
    color: #4a5568;
}

.compact-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.05),
        rgba(74, 159, 216, 0.05)
    );
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 127, 92, 0.15);
}

.feature-item i {
    font-size: 2rem;
    color: #ff7f5c;
}

.feature-item span {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 600;
}

/* Competence Boxes */
.competence-box {
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.competence-box.blue {
    background: linear-gradient(
        135deg,
        rgba(74, 159, 216, 0.08),
        rgba(107, 179, 230, 0.08)
    );
    border-left: 5px solid #4a9fd8;
}

.competence-box.green {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.08),
        rgba(5, 150, 105, 0.08)
    );
    border-left: 5px solid #10b981;
}

.competence-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.competence-box.blue h4 {
    color: #2563a8;
}
.competence-box.green h4 {
    color: #065f46;
}

/* Feedback Grid */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feedback-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.05),
        rgba(74, 159, 216, 0.05)
    );
    border-radius: 15px;
    text-align: center;
}

.feedback-item i {
    font-size: 2.5rem;
    color: #ff7f5c;
}

.feedback-item span {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
}

/* Modal Note */
.modal-note {
    background: #fff8f0;
    border-left: 4px solid #ff7f5c;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.modal-note strong {
    color: #1e2139;
    font-size: 1.05rem;
}

/* ============== RESPONSIVE DESIGN ============== */
@media (max-width: 1200px) {
    .intro-box {
        padding: 50px;
        gap: 40px;
        grid-template-columns: 100px 1fr;
    }

    .box-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .prozess-intro-section {
        padding: 80px 30px;
    }

    .intro-boxes {
        gap: 30px;
    }

    .intro-box {
        padding: 40px;
        gap: 30px;
        grid-template-columns: 80px 1fr;
    }

    .box-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .modal-header {
        padding: 50px 40px;
    }

    .modal-body {
        padding: 40px;
    }

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

@media (max-width: 768px) {
    .prozess-intro-section {
        padding: 60px 20px;
    }

    .intro-header {
        margin-bottom: 60px;
    }

    .section-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .intro-box {
        padding: 30px;
        gap: 25px;
        grid-template-columns: 70px 1fr;
        border-radius: 20px;
    }

    .box-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        border-radius: 15px;
    }

    .btn-more-info {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .modal-header {
        padding: 40px 30px;
    }

    .modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .modal-body {
        padding: 30px;
    }

    .modal-close {
        width: 45px;
        height: 45px;
        top: 20px;
        right: 20px;
    }

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

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

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

    .intro-header {
        margin-bottom: 50px;
    }

    .section-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .intro-box {
        padding: 25px;
        gap: 20px;
        grid-template-columns: 60px 1fr;
        border-radius: 15px;
    }

    .box-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 12px;
    }

    .step-label {
        padding: 5px 15px;
        font-size: 0.75rem;
    }

    .btn-more-info {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .modal {
        max-width: 100%;
    }

    .modal-header {
        padding: 35px 25px;
    }

    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }

    .modal-section h3 {
        font-size: 1.3rem;
        gap: 10px;
    }

    .modal-intro,
    .modal-goal,
    .modal-result,
    .modal-highlight {
        padding: 20px;
        gap: 15px;
    }

    .modal-intro i,
    .modal-goal i,
    .modal-result i,
    .modal-highlight i {
        font-size: 1.5rem;
    }

    .modal-list li {
        padding: 12px;
        gap: 12px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .competence-box {
        padding: 20px;
    }
}

/* Scrollbar Styling */
.modal::-webkit-scrollbar {
    width: 10px;
}

.modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff9a7c, #4a9fd8);
}
