/* ═══════════════════════════════════════
   VERKEHRSABSICHERUNG SUBPAGE STYLES
   ═══════════════════════════════════════ */

/* ─── Breadcrumb ─── */
.breadcrumb {
    padding: 100px 0 0;
    background: var(--gray-50);
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 16px 0;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.breadcrumb__list a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb__list a:hover {
    color: var(--accent-dark);
}

.breadcrumb__list li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: var(--gray-300);
}

.breadcrumb__list li[aria-current="page"] {
    color: var(--gray-600);
    font-weight: 500;
}

/* ─── Sub-Hero ─── */
.sub-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sub-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sub-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 29, 58, 0.92) 0%, rgba(11, 29, 58, 0.75) 100%);
}

.sub-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    max-width: 700px;
}

.sub-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.sub-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ─── Trust Bar ─── */
.trust-bar {
    background: var(--primary);
    padding: 24px 0;
    border-bottom: 3px solid var(--accent);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-bar__item svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* ─── Content Two-Column Layout ─── */
.content-two-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-main h2 {
    margin-bottom: 24px;
}

.content-main h3 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.content-main p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 20px;
}

.content-main p strong {
    color: var(--primary);
}

/* ─── Content List ─── */
.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.content-list li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.content-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.content-list li strong {
    color: var(--primary);
}

/* ─── Info Cards (Sidebar) ─── */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.info-card--accent {
    background: linear-gradient(135deg, var(--primary) 0%, #142d52 100%);
    border-color: transparent;
    color: var(--white);
}

.info-card--accent h3 {
    color: var(--white);
}

.info-card--accent p {
    color: rgba(255, 255, 255, 0.8);
}

.info-card--accent p strong {
    color: var(--accent);
}

.info-card--accent .info-card__icon {
    background: rgba(255, 107, 53, 0.2);
}

.info-card--highlight {
    background: var(--gray-50);
    border: 2px solid var(--accent);
}

.info-card--highlight h3 {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ─── Checklist ─── */
.checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.checklist li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ─── Process Steps ─── */
.process-section {
    background: var(--gray-50);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step__number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    min-width: 60px;
}

.process-step__content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step__content p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.75;
}

/* ─── Use Case Cards ─── */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.usecase-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
}

.usecase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.usecase-card__icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.usecase-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.usecase-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.75;
}

/* ─── Cost Breakdown ─── */
.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 28px 0;
}

.cost-item {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    border-left: 4px solid var(--accent);
}

.cost-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary);
}

.cost-item p {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

/* ─── Leistungen Grid ─── */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.leistung-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s var(--ease-out);
}

.leistung-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.leistung-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leistung-item__icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.leistung-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.leistung-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

/* ─── FAQ Section ─── */
.faq-section {
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}

.faq-item:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.faq-item[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
    user-select: none;
    transition: background 0.3s;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question:hover {
    background: var(--gray-50);
}

.faq-item__chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
    color: var(--accent);
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-size: 0.98rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ─── CTA Banner ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #142d52 100%);
    padding: 80px 0;
}

.cta-banner__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner__inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
    .content-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-sidebar {
        position: static;
    }

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

    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

@media (max-width: 768px) {
    .sub-hero {
        min-height: 400px;
    }

    .sub-hero__content {
        padding: 60px 0 40px;
    }

    .trust-bar__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-step {
        flex-direction: column;
        gap: 12px;
    }

    .process-step__number {
        min-width: auto;
    }

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