/**
 * PNT Wundzentren - Custom Designsystem & Styles (Flyer-optimiert)
 * 
 * Basiert auf Bootstrap 5 und implementiert das exakte Look & Feel des Flyers.
 */

/* 1. Design-Tokens */
:root {
    --pnt-wound-red: #d2192a;
    --pnt-wound-red-hover: #a81220;
    --pnt-petrol: #295D69;
    --pnt-petrol-hover: #1f4750;
    --pnt-blue: #205DB2;
    --pnt-magenta: #B7155C;
    --pnt-violet: #753C97;

    --pnt-white: #FFFFFF;
    --pnt-text: #202020;
    --pnt-black: #000000;
    --pnt-light: #F3F6F7;
    --pnt-red-light: #FBE8EA;
    --pnt-border: #D8E2E5;

    --pnt-success-green: #0B663B;
    --pnt-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --pnt-shadow-md: 0 8px 24px rgba(41, 93, 105, 0.08);
    --pnt-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);

    --pnt-transition-fast: all 0.2s ease-in-out;
    --pnt-transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 2. Allgemeine Styles & Typografie */
body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    color: var(--pnt-text);
    background-color: var(--pnt-white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--pnt-petrol);
}

h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    line-height: 1.25;
    position: relative;
    padding-bottom: 12px;
}

/* Roter Banner-Titel wie im Flyer */
.red-banner-title {
    background-color: var(--pnt-wound-red);
    color: var(--pnt-white);
    display: inline-block;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Unterstreichung für Sektions-Überschriften */
h2.underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--pnt-wound-red);
    border-radius: 2px;
}

h2.underline-center {
    text-align: center;
    padding-bottom: 15px;
}

h2.underline-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--pnt-wound-red);
    border-radius: 2px;
}

p {
    font-size: 1.1rem;
}

.brand-bar-logo.h-45 {
    height: 45px;
}

/* A11y: Fokuszustände */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--pnt-blue);
    outline-offset: 2px;
}

/* 3. Flyer-Listen mit farbigen Bullets */
.bullet-list-red {
    list-style: none;
    padding-left: 0;
}

.bullet-list-red li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pnt-text);
    text-align: left;
}

.bullet-list-red li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pnt-wound-red);
    font-size: 2rem;
    line-height: 1;
    top: -2px;
}

.bullet-list-white {
    list-style: none;
    padding-left: 0;
}

.bullet-list-white li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 1.15rem;
    color: var(--pnt-white);
    text-align: left;
}

.bullet-list-white li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pnt-white);
    font-size: 2rem;
    line-height: 1;
    top: -2px;
}

/* 4. Diagonalen & Sektionsübergänge */

/* Diagonaler Schnitt für Bilder */
.diagonal-cut {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    border-radius: 12px;
    box-shadow: var(--pnt-shadow-lg);
    border: 4px solid var(--pnt-white);
}

.diagonal-cut-reverse {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    border-radius: 12px;
    box-shadow: var(--pnt-shadow-lg);
    border: 4px solid var(--pnt-white);
}

/* Diagonale Sektionen */
.diagonal-section-bottom-v {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
    padding-bottom: 120px !important;
}

.diagonal-section-top-left {
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
    padding-top: 120px !important;
    margin-top: -5vw;
}

/* 5. Komponenten-Layouts */

/* Header / Navigation */
.navbar {
    box-shadow: var(--pnt-shadow-sm);
    transition: var(--pnt-transition-normal);
}

.navbar.scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 68px;
    transition: var(--pnt-transition-fast);
}

.nav-link {
    font-weight: 600;
    color: var(--pnt-petrol) !important;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: var(--pnt-transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--pnt-wound-red);
    transform: scaleX(0);
    transition: var(--pnt-transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--pnt-wound-red) !important;
}

/* Hero Sektion */
.hero-section {
    background: linear-gradient(135deg, var(--pnt-light) 0%, #e8f0f2 100%);
    padding: 65px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

/* Rote Hand-Logo Kachel aus dem Flyer */
.hand-logo-card {
    background-color: var(--pnt-wound-red);
    border-radius: 28px;
    padding: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--pnt-shadow-lg);
    transition: var(--pnt-transition-normal);
    width: 280px;
    height: 280px;
    border: 6px solid var(--pnt-white);
}

.hand-logo-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 48px rgba(216, 35, 54, 0.3);
}

.hand-logo-card svg,
.hand-logo-card img {
    width: 100%;
    height: 100%;
    color: var(--pnt-white);
    object-fit: contain;
}

/* Buttons */
.btn-primary-pnt {
    background-color: var(--pnt-wound-red);
    border-color: var(--pnt-wound-red);
    color: var(--pnt-white);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    transition: var(--pnt-transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-primary-pnt:hover {
    background-color: var(--pnt-wound-red-hover);
    border-color: var(--pnt-wound-red-hover);
    color: var(--pnt-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(216, 35, 54, 0.35);
}

.btn-secondary-pnt {
    background-color: var(--pnt-petrol);
    border-color: var(--pnt-petrol);
    color: var(--pnt-white);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    transition: var(--pnt-transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-secondary-pnt:hover {
    background-color: var(--pnt-petrol-hover);
    border-color: var(--pnt-petrol-hover);
    color: var(--pnt-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(41, 93, 105, 0.35);
}

.btn-outline-pnt {
    border: 2px solid var(--pnt-wound-red);
    color: var(--pnt-wound-red);
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 6px;
    transition: var(--pnt-transition-fast);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-outline-pnt:hover {
    background-color: var(--pnt-wound-red);
    color: var(--pnt-white);
    transform: translateY(-2px);
}

/* Trustbar / Key Facts */
.trust-card {
    background-color: var(--pnt-white);
    border: 1px solid var(--pnt-border);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: var(--pnt-transition-normal);
    box-shadow: var(--pnt-shadow-sm);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pnt-shadow-md);
    border-color: var(--pnt-wound-red);
}

.trust-icon {
    font-size: 2.25rem;
    color: var(--pnt-wound-red);
    margin-bottom: 16px;
}

/* Problem-Sektion */
.problem-section {
    padding: 85px 0;
    background-color: var(--pnt-white);
}

/* Wundarten Sektion */
.wound-types-section {
    background-color: var(--pnt-white);
    padding: 85px 0;
}

.wound-card {
    background-color: var(--pnt-white);
    border: 1px solid var(--pnt-border);
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    transition: var(--pnt-transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--pnt-shadow-sm);
}

.wound-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--pnt-petrol);
    transition: var(--pnt-transition-fast);
}

.wound-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pnt-shadow-md);
}

.wound-card:hover::before {
    background-color: var(--pnt-wound-red);
    width: 8px;
}

/* Sektion 06 — Rotes Markenstatement */
.statement-section {
    background-color: var(--pnt-wound-red);
    color: var(--pnt-white);
    padding: 100px 0;
    position: relative;
}

.statement-section h2 {
    color: var(--pnt-white);
}

/* Sektion 07 — Leistungsspektrum (DUNKLES PETROL-DESIGN AUS FLYER) */
.services-section {
    background-color: var(--pnt-petrol);
    color: var(--pnt-white);
    padding: 100px 0;
}

.services-section h2,
.services-section h3 {
    color: var(--pnt-white);
}

.services-intro-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.service-card-petrol {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: var(--pnt-transition-normal);
}

.service-card-petrol:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--pnt-wound-red);
    transform: translateY(-4px);
}

/* Sektion 08 — Behandlungsablauf (ROTER HINTERGRUND WIE IN FLYER-INNENSEITE) */
.process-section {
    background-color: var(--pnt-wound-red);
    color: var(--pnt-white);
    padding: 100px 0;
}

.process-section h2,
.process-section h3 {
    color: var(--pnt-white);
}

.process-timeline-flyer {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}

.process-step-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    text-align: left;
}

.process-step-row:last-child {
    margin-bottom: 0;
}

.process-step-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--pnt-white);
    opacity: 0.9;
    line-height: 1.1;
    margin-right: 30px;
    width: 60px;
    text-align: right;
    flex-shrink: 0;
}

.process-step-body {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    width: 100%;
}

.process-step-row:last-child .process-step-body {
    border-bottom: none;
    padding-bottom: 0;
}

.process-step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pnt-white);
    margin-bottom: 6px;
}

.process-step-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Zielgruppen Tabs (Flat Design) */
.nav-tabs-pnt {
    border-bottom: 2px solid var(--pnt-border);
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.nav-tabs-pnt .nav-link {
    background: none !important;
    border: none !important;
    color: var(--pnt-petrol) !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 20px !important;
    position: relative;
    transition: var(--pnt-transition-fast);
    opacity: 0.75;
}

.nav-tabs-pnt .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--pnt-wound-red);
    transform: scaleX(0);
    transition: var(--pnt-transition-fast);
    border-radius: 2px;
}

.nav-tabs-pnt .nav-link:hover {
    opacity: 1;
    color: var(--pnt-wound-red) !important;
}

.nav-tabs-pnt .nav-link.active {
    color: var(--pnt-wound-red) !important;
    opacity: 1;
}

.nav-tabs-pnt .nav-link.active::after {
    transform: scaleX(1);
}

/* Tab Inhalts-Box (Premium Card Design) */
.tab-content-card {
    background-color: var(--pnt-white);
    border: 1px solid var(--pnt-border);
    border-top: 5px solid var(--pnt-wound-red);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--pnt-shadow-md);
    transition: var(--pnt-transition-normal);
}

/* Optimiertes Hero Bild (Ohne Diagonale) */
.hero-img-clean {
    border-radius: 16px;
    box-shadow: var(--pnt-shadow-lg);
    border: 6px solid var(--pnt-white);
    transition: var(--pnt-transition-normal);
}

.hero-img-clean:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Standorte & Karte */
.location-section {
    background-color: var(--pnt-light);
    padding: 85px 0;
}

.location-card {
    background-color: var(--pnt-white);
    border-radius: 12px;
    border: 1px solid var(--pnt-border);
    border-left: 5px solid transparent;
    padding: 30px 30px 30px 26px;
    height: 100%;
    box-shadow: var(--pnt-shadow-sm);
    transition: var(--pnt-transition-normal);
    cursor: pointer;
}

.location-card:hover {
    box-shadow: var(--pnt-shadow-md);
    border-color: var(--pnt-petrol);
    border-left-color: var(--pnt-petrol);
    transform: translateY(-2px);
}

.location-card h3 {
    color: var(--pnt-blue);
    /* Flyer hat dunkelblaue Überschriften bei den Standorten */
    transition: var(--pnt-transition-fast);
}

.location-city {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--pnt-petrol);
    margin-bottom: 8px;
}

.location-badge {
    background-color: var(--pnt-red-light);
    color: var(--pnt-wound-red);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--pnt-shadow-lg);
    border: 4px solid var(--pnt-white);
}

@media (min-width: 992px) {
    .map-container-sticky {
        position: sticky;
        top: 110px;
        z-index: 10;
        transition: top 0.3s ease;
    }
}

/* Map Markers & Tooltips styling */
.pnt-map-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: var(--pnt-petrol);
    border: 2px solid var(--pnt-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pnt-map-marker.active {
    background-color: var(--pnt-wound-red);
    width: 22px;
    height: 22px;
    border-width: 3px;
    z-index: 10;
    animation: pnt-pulse 2s infinite;
}

@keyframes pnt-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(210, 25, 42, 0.5);
    }

    100% {
        box-shadow: 0 0 0 12px rgba(210, 25, 42, 0);
    }
}

.pnt-map-tooltip {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-color: rgba(41, 93, 105, 0.95);
    color: var(--pnt-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: var(--pnt-shadow-sm);
    transition: all 0.25s ease-in-out;
}

.pnt-map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(41, 93, 105, 0.95);
}

.pnt-map-marker:hover .pnt-map-tooltip,
.pnt-map-marker.active .pnt-map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Highlight styling for active location card */
.location-card.active {
    border-color: var(--pnt-wound-red) !important;
    box-shadow: 0 10px 30px rgba(210, 25, 42, 0.08);
    background-color: var(--pnt-white);
    border-left-color: var(--pnt-wound-red) !important;
    transform: translateY(-4px);
}

.location-card.active .location-badge {
    background-color: var(--pnt-wound-red);
    color: var(--pnt-white);
}

.location-card.active h3 {
    color: var(--pnt-wound-red);
}

.map-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Expertise & Zertifizierungen */
.expert-badge-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.expert-badge {
    background-color: var(--pnt-white);
    border: 1px solid var(--pnt-border);
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    color: var(--pnt-petrol);
    display: inline-flex;
    align-items: center;
    box-shadow: var(--pnt-shadow-sm);
}

/* FAQ Accordion */
.accordion-pnt .accordion-item {
    border: 1px solid var(--pnt-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--pnt-shadow-sm);
}

.accordion-pnt .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--pnt-petrol);
    padding: 20px 24px;
    background-color: var(--pnt-white);
}

.accordion-pnt .accordion-button:not(.collapsed) {
    color: var(--pnt-wound-red);
    background-color: var(--pnt-light);
    box-shadow: none;
}

.accordion-pnt .accordion-button::after {
    background-size: 1.25rem;
}

.accordion-pnt .accordion-body {
    padding: 20px 24px;
    font-size: 1.05rem;
    background-color: var(--pnt-white);
}

/* Kontakt-Sektion */
.contact-section {
    padding: 85px 0;
    background: linear-gradient(135deg, var(--pnt-petrol) 0%, #1c3f47 100%);
    color: var(--pnt-white);
}

.contact-section h2,
.contact-section h3 {
    color: var(--pnt-white);
}

.contact-info-list {
    list-style: none;
    padding-left: 0;
}

.contact-info-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
}

.contact-info-list i {
    font-size: 1.5rem;
    color: var(--pnt-wound-red);
    margin-right: 16px;
    margin-top: 2px;
}

.contact-form-wrapper {
    background-color: var(--pnt-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--pnt-shadow-lg);
    color: var(--pnt-text);
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid var(--pnt-border);
    border-radius: 6px;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--pnt-petrol);
    box-shadow: 0 0 0 3px rgba(41, 93, 105, 0.15);
}

.form-check-input:checked {
    background-color: var(--pnt-petrol);
    border-color: var(--pnt-petrol);
}

/* Footer */
footer {
    background-color: #153137;
    color: #a4bcc0;
    padding: 60px 0 30px;
    border-top: 4px solid var(--pnt-wound-red);
}

footer a {
    color: #a4bcc0;
    text-decoration: none;
    transition: var(--pnt-transition-fast);
}

footer a:hover {
    color: var(--pnt-white);
}

footer h4 {
    color: var(--pnt-white);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

/* Mobile Sticky CTA Bar & Responsive Fixes */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(21, 49, 55, 0.95);
    backdrop-filter: blur(8px);
    border-top: 2px solid var(--pnt-wound-red);
    padding: 12px 16px;
    z-index: 999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 74px;
        /* Platz für Sticky CTA Bar */
    }

    .hero-section {
        padding-top: 30px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .hand-logo-card {
        width: 220px;
        height: 220px;
        padding: 30px;
    }

    .process-step-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step-number {
        text-align: left;
        margin-bottom: 10px;
    }
}

/* 6. Scroll & Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .btn-primary-pnt:hover,
    .btn-secondary-pnt:hover,
    .trust-card:hover,
    .wound-card:hover,
    .service-card-petrol:hover {
        transform: none !important;
        transition: none !important;
    }
}

/* 7. Icon Font Utilities & Alignments */
.icon,
.bi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.icon {
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.25rem;
}

.icon--sm {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
}

.icon--lg {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
}

.icon-card .icon {
    margin-bottom: 1rem;
}

.button .icon,
a .icon,
.btn .icon {
    margin-inline-end: 0.5rem;
}

.button .icon:last-child,
a .icon:last-child,
.btn .icon:last-child {
    margin-inline-start: 0.5rem;
    margin-inline-end: 0;
}

/* 8. Refactored Component & DSGVO Styles */

/* Common Badge overrides */
.badge-pnt-red {
    background-color: var(--pnt-red-light) !important;
    color: var(--pnt-wound-red) !important;
}

.badge-pnt-red-solid {
    background-color: var(--pnt-wound-red) !important;
    color: var(--pnt-white) !important;
}

.badge-pnt-blue {
    background-color: rgba(32, 93, 178, 0.1) !important;
    color: var(--pnt-blue) !important;
}

.badge-pnt-white {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--pnt-white) !important;
}

/* Hero Section */
.hero-title-accent {
    color: var(--pnt-wound-red);
}

.hero-lead-text {
    font-size: 1.25rem;
    font-weight: 500;
}

.hero-partner-link {
    color: var(--pnt-blue) !important;
    font-size: 1.05rem;
}

.hero-section .hand-logo-card {
    bottom: -30px;
    left: 20px;
}

/* Trustbar Section */
.trustbar-section-offset {
    margin-top: -30px;
    z-index: 10;
}

/* Problem Section */
.problem-bg-danger-decorative {
    width: 100%;
    height: 100%;
    left: -20px;
    top: 20px;
    z-index: 1;
    background-color: var(--pnt-wound-red) !important;
}

.problem-text-accent {
    color: var(--pnt-wound-red);
}

.problem-checkmark-wrapper {
    color: var(--pnt-wound-red);
    margin-top: 3px;
}

/* Wound Types Section */
.wound-card-custom {
    background-color: var(--pnt-light) !important;
    border-radius: 12px;
}

.wound-card-custom .icon-wrapper {
    color: var(--pnt-wound-red);
    margin-top: 4px;
}

.wound-card-custom .link-arrow {
    font-size: 0.95rem;
}

/* Services Section */
.services-sticky-intro {
    top: 110px;
    z-index: 1;
}

.services-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-service-img {
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.services-card-icon-wrapper {
    margin-top: 4px;
}

.services-card-text {
    line-height: 1.6;
}

.services-cta-box {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.services-cta-text {
    font-size: 1.1rem;
}

/* Process Section */
.process-service-img {
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.process-cta-box {
    background-color: rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.process-cta-text {
    font-size: 1.1rem;
}

.process-cta-btn-white {
    background-color: var(--pnt-white) !important;
    border-color: var(--pnt-white) !important;
    color: var(--pnt-wound-red) !important;
}

.process-cta-btn-white:hover {
    background-color: var(--pnt-light) !important;
    border-color: var(--pnt-light) !important;
    color: var(--pnt-wound-red-hover) !important;
}

/* Target Groups Section */
.target-groups-badge {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.target-groups-card-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.target-group-icon-circle {
    width: 220px;
    height: 220px;
    color: var(--pnt-wound-red);
    background-color: var(--pnt-light) !important;
}

.target-group-icon-circle i {
    font-size: 96px;
    line-height: 1;
}

/* Statement Section */
.statement-heart-wrapper {
    font-size: 48px;
    line-height: 1;
}

.statement-title {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    line-height: 1.2;
}

.statement-lead-text {
    max-width: 800px;
    font-size: 1.25rem;
}

.statement-badge {
    background-color: rgba(255, 255, 255, 0.15) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Parent Brand Section */
.parent-brand-section-bg {
    background-color: var(--pnt-light) !important;
}

.parent-brand-quote {
    border-left: 3px solid var(--pnt-blue);
    padding-left: 15px;
}

.parent-brand-box {
    border-top: 4px solid var(--pnt-blue);
}

.parent-brand-box a {
    transition: var(--pnt-transition-fast);
}

.parent-brand-box img {
    height: 38px;
    width: 60px;
    object-fit: contain;
}

.parent-brand-box-subtext {
    font-size: 0.75rem;
}

/* Locations Section */
.location-title-custom {
    color: var(--pnt-wound-red);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.location-lead-text {
    font-size: 1.25rem;
}

.pnt-map-svg-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 450/320;
}

.pnt-map-svg-wrapper svg {
    display: block;
}

.location-card-contact-name {
    font-size: 1.05rem;
}

.location-card-btn {
    font-size: 0.85rem;
}

.location-card-route-link {
    color: var(--pnt-blue) !important;
    font-weight: 700;
}

/* Expertise Section */
.expert-badge-checkmark {
    color: var(--pnt-wound-red);
    font-size: 1.25rem;
}

.expertise-coop-box {
    background-color: var(--pnt-light) !important;
    border-top: 5px solid var(--pnt-wound-red);
}

.expertise-coop-text {
    line-height: 1.7;
    font-size: 1.05rem;
}

.expertise-partner-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.expertise-scan-text {
    font-size: 0.8rem;
    line-height: 1.3;
}

.expertise-qr-wrapper {
    background-color: var(--pnt-light) !important;
}

.expertise-qr-code {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Brands Trust Bar */
.pnt-brands-bar {
    background: linear-gradient(135deg, var(--pnt-petrol) 0%, #1c3f47 100%);
    border-bottom: 2px solid var(--pnt-border);
}

.pnt-brands-bar a {
    outline: none;
}

.brand-bar-logo {
    height: 50px;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.2s ease-in-out;
}

.brand-bar-logo:hover {
    filter: brightness(0) invert(1) opacity(1) !important;
    transform: scale(1.05);
}

/* Footer Section */
.footer-medical-note {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Contact Section Additional Styles */
.contact-lead-text {
    font-size: 1.15rem;
}

.contact-trust-note {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--pnt-wound-red);
}

.contact-privacy-note {
    background-color: var(--pnt-light);
    border-left: 3px solid var(--pnt-blue);
}

.contact-privacy-link {
    color: var(--pnt-blue) !important;
}

.contact-submit-btn {
    font-size: 1.1rem;
}

/* Cookie Banner Styles */
.pnt-cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(21, 49, 55, 0.98);
    backdrop-filter: blur(12px);
    border-top: 3px solid var(--pnt-wound-red);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    color: var(--pnt-white);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
    opacity: 0;
    transform: translateY(100px);
}

.pnt-cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    bottom: 0;
}

.pnt-cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.pnt-cookie-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pnt-white);
}

.pnt-cookie-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .pnt-cookie-banner {
        left: 20px;
        right: auto;
        bottom: 20px;
        max-width: 420px;
        border-radius: 12px;
        border: 1px solid var(--pnt-border);
        border-top: 4px solid var(--pnt-wound-red);
        transform: translateY(150px);
    }

    .pnt-cookie-banner.show {
        bottom: 20px;
        transform: translateY(0);
    }
}

/* Legal Pages Styling */
.legal-page {
    margin-inline: auto;
}

.legal-section {
    margin-block-start: 2rem;
}

.legal-section p,
.legal-section li {
    line-height: 1.7;
}

.legal-page a {
    overflow-wrap: anywhere;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

@media (max-width: 600px) {
    .legal-page {
        width: min(100% - 1.25rem, 980px);
        padding-block: 2rem;
    }

    .legal-page h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .legal-section {
        margin-block-start: 1.5rem;
    }
}