/* ==================================================================================
   GERMAN OSTAD - HERO SECTION FÜR UNTERNEHMEN
   Style from Reference Image: Dark Navy Background, Orange Text
   ================================================================================== */

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

:root {
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --navy-dark: #2c3e5d;
    --navy-darker: #1f2937;
    --white: #ffffff;
    --text-light: #e5e7eb;
}

body {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #2c3e5d 0%, #1f2937 100%);
    padding: 3rem 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Subtle Background Pattern */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 117, 81, 0.03) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 117, 81, 0.02) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* ===== HERO CONTAINER ===== */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== HERO TEXT (LEFT) ===== */
.hero-text {
    animation: fadeInLeft 1s ease-out;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 117, 81, 0.15);
    border: 2px solid rgba(255, 117, 81, 0.4);
    color: var(--primary-orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-badge::before {
    content: "⭐";
    font-size: 0.9rem;
}

/* Hero Title */
.hero-text h1 {
    font-size: 2.8rem;
    color: var(--primary-orange);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Hero Description */
.hero-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.7s both;
}

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

/* ===== HERO FEATURES ===== */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: fadeIn 0.8s ease-out both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.9s;
}

.feature-item:nth-child(3) {
    animation-delay: 1s;
}

.feature-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.feature-item span {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

/* ===== HERO BUTTONS ===== */
.hero-buttons {
    animation: fadeIn 1s ease-out 1.1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    color: white;
    box-shadow: 0 15px 40px rgba(255, 117, 81, 0.4);
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 117, 81, 0.6);
}

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

/* ===== HERO IMAGE (RIGHT) ===== */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

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

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.6s ease;
}

.image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

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

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

/* Subtle border glow */
.image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.3),
        rgba(255, 143, 105, 0.1)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

/* ===== RESPONSIVE DESIGN ===== */

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

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

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

/* Mobile Landscape */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

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

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

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

    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-item span {
        font-size: 1rem;
    }

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

    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-section {
        padding: 2.5rem 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
        margin-bottom: 1.5rem;
    }

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

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

    .hero-features {
        gap: 0.9rem;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .feature-item span {
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* ==================================================================================
   ============================= DIESTLEISTUNG SECTION ==============================
   ================================================================================== */

/* ================================================
   GERMAN OSTAD - LEISTUNGEN SECTION
   ================================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1b1f3b;
    background-color: #ffffff;
}

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

.dienstleistungen-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #ffffff;
}

.dienstleistungen-container h2 {
    font-size: 3rem;
    color: #1b1f3b;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.dienstleistungen-container h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff7f5c, #4a90e2);
    margin: 20px auto 0;
    border-radius: 2px;
}

.dienstleistungen-container > p {
    text-align: center;
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ================================================
   SERVICES WRAPPER & CONNECTOR LINES
   ================================================ */

.services-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.arrow-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.arrow-line {
    animation: dash 4s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

.arrow-dot {
    animation: pulse-dot 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* ================================================
   SERVICE ITEMS
   ================================================ */

.service-item {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(27, 31, 59, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(27, 31, 59, 0.15);
    border-color: #ff7f5c;
}

/* Alternating Layout */
.service-reverse {
    direction: rtl;
}

.service-reverse > * {
    direction: ltr;
}

/* ================================================
   SERVICE IMAGE & PLACEHOLDER
   ================================================ */

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9977 100%);
    box-shadow: 0 15px 40px rgba(255, 127, 92, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.placeholder::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: rotate-gradient 10s linear infinite;
}

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

.service-item:hover .placeholder {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(255, 127, 92, 0.4);
}

.placeholder-2 {
    background: linear-gradient(135deg, #4a90e2 0%, #6ba5e7 100%);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
}

.service-item:hover .placeholder-2 {
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.4);
}

.placeholder-3 {
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9977 100%);
    box-shadow: 0 15px 40px rgba(255, 127, 92, 0.3);
}

.placeholder-4 {
    background: linear-gradient(135deg, #4a90e2 0%, #6ba5e7 100%);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
}

.placeholder-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}

.placeholder-icon {
    font-size: 90px;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

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

.placeholder-text {
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* ================================================
   SERVICE CONTENT
   ================================================ */

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #ff7f5c, #ff9977);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 127, 92, 0.3);
    letter-spacing: 0.5px;
}

.badge-2,
.badge-4 {
    background: linear-gradient(135deg, #4a90e2, #6ba5e7);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.service-content h3 {
    font-size: 2.2rem;
    color: #1b1f3b;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.service-content > p {
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ================================================
   SERVICE FEATURES
   ================================================ */

.service-features {
    list-style: none;
    margin-bottom: 35px;
}

.service-features li {
    padding: 15px 0;
    color: #1b1f3b;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 35px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    padding-left: 40px;
    color: #ff7f5c;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff7f5c;
    font-weight: bold;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.service-features li:hover:before {
    transform: scale(1.2);
}

/* ================================================
   CTA BUTTON
   ================================================ */

.cta-button {
    padding: 18px 40px;
    background: linear-gradient(135deg, #1b1f3b 0%, #2c3454 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    box-shadow: 0 8px 20px rgba(27, 31, 59, 0.3);
    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.2),
        transparent
    );
    transition: left 0.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(27, 31, 59, 0.4);
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9977 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* ================================================
   MODAL STYLES
   ================================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.3s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 31, 59, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 30px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: translateY(-80px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 40px 50px;
    background: linear-gradient(135deg, #1b1f3b 0%, #2c3454 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #ff7f5c;
}

.modal-header h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-btn:hover {
    background: #ff7f5c;
    border-color: #ff7f5c;
    transform: rotate(90deg) scale(1.1);
}

.close-btn span {
    display: block;
    line-height: 1;
}

.modal-body {
    padding: 50px;
    color: #1b1f3b;
    font-size: 1.1rem;
    line-height: 1.9;
    max-height: calc(90vh - 160px);
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 10px;
}

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

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

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff9977, #6ba5e7);
}

.modal-body h3 {
    color: #1b1f3b;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff7f5c;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin: 20px 0;
    color: #444;
}

.modal-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.modal-body li {
    margin: 15px 0;
    color: #1b1f3b;
    line-height: 1.8;
}

.modal-body strong {
    color: #ff7f5c;
    font-weight: 700;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1200px) {
    .dienstleistungen-container h2 {
        font-size: 2.5rem;
    }

    .service-item {
        gap: 40px;
        padding: 40px;
    }

    .placeholder {
        height: 320px;
    }
}

@media (max-width: 968px) {
    .dienstleistungen-section {
        padding: 60px 20px;
    }

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

    .dienstleistungen-container > p {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }

    .service-item,
    .service-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 35px;
    }

    .arrow-connector {
        display: none;
    }

    .services-wrapper {
        gap: 60px;
    }

    .placeholder {
        height: 280px;
    }

    .placeholder-icon {
        font-size: 70px;
    }

    .placeholder-text {
        font-size: 1.3rem;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

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

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

    .modal-body {
        padding: 35px 30px;
    }
}

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

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

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

    .service-item {
        padding: 25px;
        gap: 30px;
    }

    .placeholder {
        height: 220px;
    }

    .placeholder-icon {
        font-size: 60px;
    }

    .placeholder-text {
        font-size: 1.1rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

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

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

    .service-features li {
        font-size: 0.95rem;
        padding: 12px 0 12px 30px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

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

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .close-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 25px 20px;
        font-size: 1rem;
    }

    .modal-body h3 {
        font-size: 1.4rem;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .services-wrapper {
        gap: 40px;
    }

    .service-item {
        border-radius: 20px;
    }

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

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

    .modal-content {
        border-radius: 20px;
    }
}

/* ==================================================================================
   =========================== VORTEILE SECTION FÜR UNTERNEHMEN =====================
   ================================================================================== */

/* ==================================================================================
   GERMAN OSTAD - VORTEILE SECTION
   Logo Colors: Orange #FF7551, Navy #1A1F3A, Blue #4A90E2
   ================================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

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

:root {
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --navy-dark: #1a1f3a;
    --blue: #4a90e2;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gray-light: #f8f9fa;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== VORTEILE SECTION ==================== */
.vorteile-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.vorteile-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.vorteile-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(74, 144, 226, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

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

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

/* ===== SECTION HEADER ===== */
.vorteile-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInDown 1s ease-out;
    position: relative;
}

.vorteile-header::after {
    content: "";
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-orange),
        var(--primary-coral),
        transparent
    );
    border-radius: 2px;
}

.vorteile-header::before {
    content: "";
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 117, 81, 0.5);
    z-index: 1;
}

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

.vorteile-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1.2rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vorteile-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ===== VORTEILE GRID ===== */
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== VORTEIL CARD ===== */
.vorteil-card {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
}

.vorteil-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 117, 81, 0.15);
    border-color: rgba(255, 117, 81, 0.2);
}

/* Icon Container */
.vorteil-icon-container {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(255, 117, 81, 0.35);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vorteil-card:hover .vorteil-icon-container {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(255, 117, 81, 0.5);
}

.vorteil-icon-container i {
    font-size: 2rem;
    color: white;
}

/* Image */
.vorteil-image {
    width: 100%;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vorteil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Badge */
.vorteil-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 117, 81, 0.25);
    transition: all 0.3s ease;
}

.vorteil-card:hover .vorteil-badge {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 117, 81, 0.35);
}

/* Title */
.vorteil-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.vorteil-card:hover .vorteil-title {
    color: var(--primary-orange);
}

/* Description */
.vorteil-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Features */
.vorteil-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.vorteil-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.vorteil-features li i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Stat Highlight */
.stat-highlight {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    padding: 1.8rem;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 25px rgba(255, 117, 81, 0.25);
    transition: all 0.3s ease;
}

.vorteil-card:hover .stat-highlight {
    box-shadow: 0 12px 35px rgba(255, 117, 81, 0.35);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Button */
.more-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 117, 81, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 117, 81, 0.5);
}

/* ==================== MODAL ==================== */
.vorteile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.vorteile-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.vorteile-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 10001;
}

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

.vorteile-modal-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--blue) 100%);
    padding: 3rem 3rem 2.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vorteile-modal-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    );
    opacity: 0.5;
}

.vorteile-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.vorteile-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.vorteile-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.vorteile-modal-body {
    padding: 3rem;
    max-height: calc(90vh - 150px);
    overflow-y: auto;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.vorteile-modal-body::-webkit-scrollbar {
    width: 10px;
}

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

.vorteile-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    border-radius: 10px;
    border: 2px solid #f1f3f5;
}

.vorteile-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--primary-orange)
    );
}

.vorteile-modal-body h3 {
    color: var(--navy-dark);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    position: relative;
    padding-left: 25px;
    letter-spacing: -0.5px;
}

.vorteile-modal-body h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 35px;
    background: linear-gradient(
        180deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 117, 81, 0.3);
}

.vorteile-modal-body h3:first-child {
    margin-top: 0;
}

.vorteile-modal-body p {
    margin-bottom: 1.8rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.vorteile-modal-body p strong {
    color: var(--navy-dark);
    font-weight: 700;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.1),
        rgba(255, 143, 105, 0.05)
    );
    padding: 2px 6px;
    border-radius: 4px;
}

.vorteile-modal-body ul {
    margin: 1.8rem 0;
    padding-left: 0;
    list-style: none;
}

.vorteile-modal-body > ul > li {
    margin: 1.2rem 0;
    color: var(--text-dark);
    padding-left: 35px;
    position: relative;
    line-height: 1.8;
}

.vorteile-modal-body > ul > li::before {
    content: "●";
    position: absolute;
    left: 12px;
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: bold;
}

.vorteile-modal-body ul ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 25px;
}

.vorteile-modal-body ul ul li {
    margin: 0.8rem 0;
    padding-left: 25px;
    font-size: 1rem;
}

.vorteile-modal-body ul ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-size: 1rem;
}

.vorteile-modal-body strong {
    color: var(--navy-dark);
    font-weight: 700;
}

/* Modal Section Dividers */
.vorteile-modal-body h3 + p + ul {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.vorteile-modal-body h3:not(:first-child) {
    border-top: 2px solid rgba(255, 117, 81, 0.1);
    padding-top: 2.5rem;
    margin-top: 3rem;
}

/* Highlight Boxes for Important Info */
.vorteile-modal-body p strong:only-child {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.15),
        rgba(255, 143, 105, 0.1)
    );
    border-left: 4px solid var(--primary-orange);
    border-radius: 0 8px 8px 0;
    margin: 0.5rem 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vorteile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .vorteil-image {
        height: 220px;
    }
}

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

    .vorteile-header {
        margin-bottom: 4rem;
    }

    .vorteile-header::after {
        bottom: -2rem;
        width: 80px;
    }

    .vorteile-header h2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .vorteile-header p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .vorteile-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .vorteil-card {
        padding: 2rem;
    }

    .vorteil-image {
        height: 200px;
    }

    .vorteile-modal-content {
        width: 95%;
    }

    .vorteile-modal-header {
        padding: 2.5rem 2rem 2rem;
    }

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

    .vorteile-modal-body {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }

    .vorteile-modal-body h3 {
        font-size: 1.5rem;
        padding-left: 20px;
    }

    .vorteile-modal-body h3::before {
        width: 5px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .vorteile-header h2 {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .vorteile-header p {
        font-size: 0.95rem;
    }

    .vorteile-header::after {
        width: 60px;
        height: 3px;
    }

    .vorteil-icon-container {
        width: 60px;
        height: 60px;
    }

    .vorteil-icon-container i {
        font-size: 1.6rem;
    }

    .vorteil-title {
        font-size: 1.4rem;
    }

    .vorteil-description {
        font-size: 0.95rem;
    }

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

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

    .more-btn {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .vorteile-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

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

    .vorteile-close-btn {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }

    .vorteile-modal-body {
        padding: 1.5rem 1.2rem;
    }

    .vorteile-modal-body h3 {
        font-size: 1.3rem;
        padding-left: 18px;
    }

    .vorteile-modal-body h3::before {
        width: 4px;
        height: 24px;
    }

    .vorteile-modal-body > ul > li {
        padding-left: 28px;
        font-size: 0.95rem;
    }

    .vorteile-modal-body ul ul li {
        font-size: 0.9rem;
    }
}

/* ==================================================================================
   ============================= DIESTLEISTUNG SECTION ==============================
   ================================================================================== */
