/* HEADER */
/* HEADER - LANGUAGE */

#german-flag {
    width: 30px;
    height: 20px;
    z-index: 1100;
}

#portuguese-flag {
    width: 30px;
    height: 20px;
    z-index: 1100;
}

.highlighted {
    border: 2px solid #00e0ff;
    border-radius: 50%;
}

/* HERO-THEMED BACKGROUNDS */

#services, #business-cards {
    background: linear-gradient(180deg, #06192b 0%, #163a54 100%);
    position: relative;
    overflow: hidden;
}

/* Service cards are themed in the cards block below */

/* MODERN BUBBLE CARDS FOR SERVICES */

/* MODERN PORTFOLIO GRID */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 36px;
}
.portfolio-card {
    background: linear-gradient(140deg, #112b46 70%, #06192b 100%);
    border-radius: 2.1rem;
    box-shadow: 0 6px 32px 0 #00e0ff22, 0 2px 18px #06192b88;
    color: #f8fafd;
    padding: 28px 24px 24px 24px;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    border: 2px solid #00e0ff22;
    position: relative;
    overflow: hidden;
}
.portfolio-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 44px 0 #00e0ff44, 0 4px 26px #06192bcc;
    border-color: #00e0ff;
    z-index: 2;
}
.portfolio-image-wrapper {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06192b;
    border-radius: 1.2rem;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 2px 10px #06192b44;
}
.portfolio-image {
    max-width: 90%;
    max-height: 120px;
    object-fit: contain;
    display: block;
}
@media (max-width: 900px) {
    .portfolio-grid {
        gap: 18px;
    }
    .portfolio-card {
        min-width: 180px;
        max-width: 95vw;
        padding: 16px 8px 16px 8px;
    }
    .portfolio-image-wrapper {
        height: 90px;
    }
}
@media (max-width: 650px) {
    .portfolio-grid {
        flex-direction: column;
        align-items: center;
    }
    .portfolio-card {
        width: 92vw;
        min-width: 0;
        max-width: 98vw;
        border-radius: 1.2rem;
    }
    .portfolio-image-wrapper {
        height: 60px;
    }
}

/* ---- SERVICES: cards (auto-fit grid + category accent) ---- */
.service-category {
    margin-top: 56px;
    text-align: center;
}
.service-category:first-of-type {
    margin-top: 16px;
}
.service-category-title {
    display: inline-block;
    font-size: 1.5rem;
    color: #f8fafd;
    margin: 0 0 28px 0;
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 12px;
}
.service-category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: var(--cat-accent, #00e0ff);
}

/* Category accent colors (semantic) */
.service-category--0 { --cat-accent: #00e0ff; --cat-accent-soft: rgba(0,224,255,0.16); }
.service-category--1 { --cat-accent: #a78bfa; --cat-accent-soft: rgba(167,139,250,0.18); }
.service-category--2 { --cat-accent: #34d399; --cat-accent-soft: rgba(52,211,153,0.18); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 4px 0 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 250px;
    background: linear-gradient(180deg, rgba(17,43,70,0.55) 0%, rgba(6,25,43,0.55) 100%);
    color: #f8fafd;
    padding: 28px 24px 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--cat-accent, #00e0ff);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.35), 0 0 0 1px var(--cat-accent, #00e0ff) inset;
    border-color: rgba(255,255,255,0.15);
    outline: none;
}
.service-card:focus-visible {
    outline: 2px solid var(--cat-accent, #00e0ff);
    outline-offset: 3px;
}

.service-icon {
    font-size: 2.25rem;
    margin: 0 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--cat-accent-soft, rgba(0,224,255,0.16));
    text-shadow: none;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.service-card p,
.service-card .short-description {
    font-size: 0.975rem;
    color: rgba(248, 250, 253, 0.78);
    text-align: left;
    margin: 0;
    line-height: 1.55;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cat-accent, #00e0ff);
    letter-spacing: 0.02em;
}
.card-cta-arrow {
    transition: transform 0.18s ease;
    font-weight: 700;
}
.service-card:hover .card-cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .services-grid {
        gap: 18px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    .service-card {
        min-height: 220px;
        padding: 24px 20px 20px;
    }
    .service-category {
        margin-top: 44px;
    }
}
@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
    .service-card {
        min-height: 0;
        padding: 22px 20px 20px;
        border-radius: 16px;
    }
    .service-icon {
        width: 46px;
        height: 46px;
        font-size: 2rem;
        margin-bottom: 12px;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    .service-card .short-description {
        font-size: 0.95rem;
    }
    .card-cta {
        padding-top: 14px;
    }
    .service-category {
        margin-top: 36px;
    }
}

/* FOOTER */

.hover-effect:hover {
    transition: transform 2s;
    color: #00b8d9; /* Textfarbe ändern */
    transform: scale(1.2); /* Den Button vergrößern */
}

/* COOKIES */
body.cookie-lock {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1200;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 48px);
    max-width: 720px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 1201;
    font-size: 15px;
    line-height: 1.6;
    animation: cookieBannerSlideIn 0.4s ease-out;
}

@keyframes cookieBannerSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 20px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.cookie-banner__logo {
    height: 56px;
    width: auto;
    flex-shrink: 0;
}

.cookie-banner__text {
    min-width: 0;
}

.cookie-banner__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.cookie-banner__body {
    margin: 0;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.65;
}

.cookie-banner__link {
    color: #00b8d9;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: #0095b3;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn--primary {
    background-color: #00b8d9;
    color: #ffffff;
}

.cookie-banner__btn--primary:hover {
    background-color: #0095b3;
}

.cookie-banner__btn--secondary {
    background-color: transparent;
    color: #4a4a4a;
    border-color: #d1d5db;
}

.cookie-banner__btn--secondary:hover {
    background-color: #f3f4f6;
    color: #1a1a1a;
}

.cookie-banner__warning {
    width: 100%;
    margin: 8px 0 0 0;
    padding: 10px 14px;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        top: 50%;
        width: auto;
        max-width: none;
        max-height: calc(100vh - 32px);
        transform: translateY(-50%);
        flex-direction: column;
        align-items: stretch;
        padding: 28px 22px;
        gap: 22px;
        border-radius: 16px;
    }

    @keyframes cookieBannerSlideIn {
        from {
            opacity: 0;
            transform: translateY(calc(-50% + 20px));
        }
        to {
            opacity: 1;
            transform: translateY(-50%);
        }
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .cookie-banner__logo {
        height: 44px;
    }

    .cookie-banner__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .cookie-banner__body {
        font-size: 14px;
        line-height: 1.65;
    }

    .cookie-banner__buttons {
        flex-direction: column-reverse;
        gap: 10px;
        width: 100%;
    }

    .cookie-banner__btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }
}
/* COOKIES-ENDE */

/* Service category styles live in the cards block above */

/* ===== STATS SECTION ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 0;
}
.stat-item {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid rgba(0, 224, 255, 0.2);
    border-radius: 16px;
    background: rgba(0, 224, 255, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 224, 255, 0.5);
}
.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00e0ff, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-value { font-size: 2.2rem; }
}

/* ===== PROCESS SECTION ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,224,255,0.3), rgba(0,168,255,0.3));
    z-index: 0;
}
.process-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
    z-index: 1;
}
.process-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e0ff, #00a8ff);
    color: #06192b;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(0, 224, 255, 0.3);
}
.process-step-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .process-steps::before { display: none; }
}
@media (max-width: 600px) {
    .process-steps { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.testimonial-quote {
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}
.quote-mark {
    color: #00a8ff;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
}
.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06192b, #163a54);
    color: #00e0ff;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-author-name {
    color: #1a365d;
    font-weight: 700;
    font-size: 0.95rem;
}
.testimonial-author-role {
    color: #718096;
    font-size: 0.85rem;
}
@media (max-width: 700px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ SECTION ===== */
.faq-list {
    margin-top: 48px;
}
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid #e2e8f0; }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    text-align: left;
    color: #1a365d;
    font-size: 1.05rem;
    font-weight: 600;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: #00a8ff; }
.faq-open .faq-question { color: #00a8ff; }
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #00a8ff;
    flex-shrink: 0;
    line-height: 1;
}
.faq-answer {
    padding: 0 0 24px 0;
}
.faq-answer p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* ===== BLOG TEASER SECTION ===== */
.blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.blog-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, #06192b, #163a54);
    color: #00e0ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}
.blog-card-title {
    color: #1a365d;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}
.blog-card-excerpt {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.blog-card-date {
    color: #a0aec0;
    font-size: 0.8rem;
}
@media (max-width: 900px) {
    .blog-teaser-grid { grid-template-columns: 1fr; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    display: none;
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 9000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: white;
}
@media (max-width: 768px) {
    .whatsapp-float {
        display: flex;
        bottom: 12px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

body.modal-open .whatsapp-float {
    display: none;
}

/* ── Blog article modal ─────────────────────────────────────── */
.blog-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.blog-modal {
    background: #fff;
    border-radius: 12px;
    width: min(780px, 96vw);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.blog-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 32px 20px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.blog-modal-category {
    display: inline-block;
    background: #ebf8ff;
    color: #2b6cb0;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.blog-modal-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.3;
    margin: 0 0 8px;
}

.blog-modal-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: #718096;
}

.blog-modal-reading-time::before {
    content: '·';
    margin-right: 16px;
}

.blog-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #718096;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}
.blog-modal-close:hover { color: #1a365d; }

.blog-modal-body {
    overflow-y: auto;
    padding: 28px 32px 36px;
    flex: 1;
}

.blog-article-intro {
    font-size: 1.05rem;
    color: #2d3748;
    line-height: 1.75;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    font-style: italic;
}

.blog-article-section {
    margin-bottom: 28px;
}

.blog-article-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 10px;
}

.blog-article-body {
    font-size: 0.97rem;
    color: #4a5568;
    line-height: 1.75;
    margin: 0;
}

.blog-article-sources {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.blog-sources-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.blog-sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-sources-list li a {
    font-size: 0.83rem;
    color: #2b6cb0;
    text-decoration: none;
    word-break: break-all;
}
.blog-sources-list li a:hover { text-decoration: underline; }

/* Blog card footer (date + reading time) */
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.82rem;
    color: #718096;
}
.blog-card-reading-time {
    font-style: italic;
}

@media (max-width: 768px) {
    .blog-modal-header { padding: 20px 20px 16px; }
    .blog-modal-body   { padding: 20px 20px 28px; }
    .blog-modal-title  { font-size: 1.15rem; }
}

/* ── Service modal sizing ───────────────────────────────────── */

/* Desktop: let the modal auto-size to its content so there is no
   dead white space. A min-height on the body keeps all steps
   visually consistent (expanded texts are all 4–6 sentences and
   therefore naturally similar in size). max-height on the modal
   prevents it from running off-screen on smaller monitors. */
@media (min-width: 769px) {
    .modal:not(.modal-mobile) {
        height: auto;
        max-height: 90vh;
    }
    .modal:not(.modal-mobile) .modal-body {
        flex: 1;
        min-height: 260px;
        overflow-y: auto;
    }
}


/* ── Hero CTA: phone on mobile, contact-link on desktop ─────── */
.hero-cta-desktop { display: none; }
.hero-cta-mobile  { display: inline-block; }
@media (min-width: 769px) {
    .hero-cta-desktop { display: inline-block; }
    .hero-cta-mobile  { display: none; }
}

/* ── Responsive text utilities ─────────────────────────────── */

/* Hidden on mobile, visible on desktop */
.desktop-only {
    display: none !important;
}
@media (min-width: 769px) {
    .desktop-only {
        display: block !important;
    }
}

/* Show only on mobile (< 769px) – counterpart to .desktop-only */
.mobile-only {
    display: block;
}
@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}

/* Service card description – only shown on desktop */
.service-card-description {
    display: none;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin-top: 10px;
    margin-bottom: 0;
}
@media (min-width: 769px) {
    .service-card-description {
        display: block;
    }
}

/* ── About section: trust-funnel layout ───────────────────── */
.about-section {
    background-color: #f8fafc;
    padding: 80px 0;
}
.about-header {
    text-align: center;
    margin-bottom: 36px;
}
.about-title {
    color: #1a365d;
    margin-bottom: 12px;
}
.about-subtitle {
    color: #4a5568;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 18px;
    letter-spacing: 0.01em;
}
.about-signature {
    font-family: 'Caveat', 'Dancing Script', 'Segoe Script', cursive;
    font-size: 2.2rem;
    color: #2b6cb0;
    margin: 0;
    line-height: 1;
}

.about-trust-bar {
    list-style: none;
    margin: 0 auto 36px;
    padding: 18px 16px;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.about-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 6px;
}
.about-trust-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.1;
}
.about-trust-label {
    font-size: 0.85rem;
    color: #4a5568;
    margin-top: 4px;
    line-height: 1.3;
}
@media (min-width: 769px) {
    .about-trust-bar {
        grid-template-columns: repeat(4, 1fr);
        padding: 24px 20px;
        gap: 20px;
    }
    .about-trust-value { font-size: 2rem; }
    .about-trust-label { font-size: 0.95rem; }
    .about-trust-item + .about-trust-item {
        border-left: 1px solid #e2e8f0;
    }
}

.about-card {
    background: white;
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 769px) {
    .about-card { padding: 40px; }
}

.about-intro {
    color: #2d3748;
    line-height: 1.7;
    font-size: 1.02rem;
    margin: 0 0 28px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
}
@media (min-width: 769px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
.about-feature {
    padding: 16px 18px;
    background: #f7fafc;
    border-left: 3px solid #2b6cb0;
    border-radius: 0 8px 8px 0;
}
.about-feature-title {
    color: #2b6cb0;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}
.about-feature-text {
    color: #4a5568;
    line-height: 1.55;
    font-size: 0.95rem;
    margin: 0;
}

.about-quote {
    margin: 0 0 24px;
    padding: 22px 22px 18px;
    background: linear-gradient(135deg, #ebf8ff 0%, #f7fafc 100%);
    border-radius: 10px;
    border: 1px solid #bee3f8;
}
.about-quote-text {
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 14px;
}
.about-quote-mark {
    color: #2b6cb0;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 2px;
}
.about-quote-caption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}
.about-quote-author {
    font-weight: 700;
    color: #1a365d;
    font-size: 0.98rem;
}
.about-quote-role {
    color: #4a5568;
    font-size: 0.88rem;
}
.about-quote-link {
    display: inline-block;
    color: #2b6cb0;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.about-quote-link:hover,
.about-quote-link:focus {
    border-bottom-color: #2b6cb0;
}

.about-risk-reversal {
    text-align: center;
    color: #2b6cb0;
    font-weight: 600;
    font-size: 0.92rem;
    margin: 0 0 18px;
    padding: 10px 14px;
    background: #ebf8ff;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.about-cta-micro {
    text-align: center;
    color: #4a5568;
    font-size: 0.88rem;
    margin: 0 0 12px;
}
.about-cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 769px) {
    .about-cta-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}
.about-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    background: white;
    color: #1a365d;
    border: 2px solid #2b6cb0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, transform 0.1s;
    min-height: 48px;
}
.about-cta-button:hover,
.about-cta-button:focus {
    background: #2b6cb0;
    color: white;
}
.about-cta-button:active {
    transform: translateY(1px);
}
.about-cta-primary {
    background: #2b6cb0;
    color: white;
}
.about-cta-primary:hover,
.about-cta-primary:focus {
    background: #1a365d;
    border-color: #1a365d;
}
.about-cta-icon {
    font-size: 1.05rem;
}

/* MOBILE LANDSCAPE
   Kein Lock mehr – Touch-Geräte im Querformat bekommen das
   Mobile-Layout (siehe PlatformService.js) plus kompakte
   Abstände über Media Queries in modern.css. */