/* ==========================================================================
   PMDeers Global Theme – CLEAN + STABLE VERSION
   With Mode Logic: Digital (default-ish) vs Survival
   ========================================================================= */
/* ----------------------------
   Basis-Farbvariablen
   ---------------------------- */
:root {
    /* Corporate Blau */
    --pmd-darkblue: #003a78;
    --pmd-blue: #306bff;
    --pmd-blue-light: #1a4ea3;
    --pmd-white: #ffffff;
    --pmd-text-dark: #003a78;
    --pmd-text-light: #ffffff;

    /* Semantische Page-Variablen (optional) */
    --page-bg: #ffffff;
    --page-text: #003a78;

    /* Legacy-Variablen (Digital-Default) – werden von Modes überschrieben */
    --blue-main: #01325b;

    /* Seiten-Hintergrund & Logo-Blau */
    --blue-box: #0f4ca8;

    /* Box-Hintergrund */
    --blue-subbox: #185dc7;

    /* Sub-Box-Hintergrund */
    --white: #ffffff;
    --text-main: #ffffff;
    --text-dark: #143252;
    --accent: #306bff;
    --accent-magenta: #a855f7;
    --accent-green: #1fb366;
    --border-subtle: rgba(255, 255, 255, 0.16);

    /* Globale Linkfarben (Content / Footer) */
    --link-color: #bfdbfe;
    --link-hover: #ffffff;
}

/* ----------------------------
   MODE: DIGITAL (Business / Projekte)
   ---------------------------- */
/* Entweder als Default ohne Klasse ODER explizit mit body.mode-digital */
body.mode-digital {
    --page-bg: #f3f6fb;
    --page-text: #0f172a;

    /* Digitales Blau-Schema für Boxen */
    --blue-main: #01325b;
    --blue-box: #0f4ca8;
    --blue-subbox: #185dc7;
    --text-main: #ffffff;
    --text-dark: #143252;
    --border-subtle: rgba(255, 255, 255, 0.12);
}

/* ----------------------------
   MODE: SURVIVAL (Outdoor / Events)
   ---------------------------- */
body.mode-survival {
    --page-bg: #463c2b;

    /* brauner Seiten-Hintergrund */
    --page-text: #fdf7ec;

    /* leicht warmes Hellbeige */
    /* Braun-Palette, 3 Ebenen (für Survival-Seiten) */
    --blue-main: #463c2b;
    --blue-box: #5d4f39;
    --blue-subbox: #574b36;
    --text-main: #ffffff;
    --text-dark: #143252;

    /* bleibt nutzbar für Header/Footer */
    --border-subtle: rgba(255, 255, 255, 0.16);
}

/* ==========================================================================
   Base Reset / Typography
   ========================================================================== */
html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    background: var(--blue-main);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--page-text);
}

p {
    margin: 0 0 1.2rem 0;
}

/* Globale Links (Content, Standard) – Header-Navigation hat eigene Regeln */
a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

a:hover {
    color: var(--link-hover);
}

/* ==========================================================================
   Layout Shell
   ========================================================================== */
.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1;
    padding-bottom: 40px;
}

.page-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 24px 0;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section-dark {
    background: var(--pmd-darkblue);
    color: var(--pmd-text-light);
    padding: 5rem 0;
}

.section-light {
    background: var(--pmd-white);
    color: var(--pmd-text-dark);
    padding: 5rem 0;
}

.section {
    padding: 5rem 0;
}

/* ==========================================================================
   Buttons (global)
   ========================================================================== */
.pmd-btn,
button,
.btn,
input[type="submit"] {
    background: var(--pmd-blue);
    color: var(--pmd-white);
    padding: 0.85rem 1.8rem;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.pmd-btn:hover,
button:hover,
.btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   Cards / Boxes (generisch)
   ========================================================================== */
.pmd-card {
    background: linear-gradient(180deg, var(--pmd-blue-light), var(--pmd-darkblue));
    color: var(--pmd-text-light);
    padding: 2.75rem;
    border-radius: 30px;
    box-shadow: 0px 12px 35px rgba(0,0,0,0.25);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Icons (monochrom blau)
   ========================================================================== */
.pmd-icon,
.card-icon,
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmd-icon img,
.card-icon img,
.service-icon img {
    filter: brightness(0) saturate(100%) invert(29%)
            sepia(53%) saturate(2200%)
            hue-rotate(198deg) brightness(95%) contrast(100%);
}

/* ==========================================================================
   Forms
   ========================================================================== */
input,
textarea,
select {
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
    border: 2px solid var(--pmd-darkblue);
    font-size: 1rem;
    box-sizing: border-box;
}

/* Standard-Select-Optik: helles Blau, gut lesbar auf dunklen Hintergründen */
select {
    background-color: #e5edff;
    color: #0f172a;
}

/* Placeholder-Farbe */
input::placeholder,
textarea::placeholder {
    color: #6e8bbd;
}

/* Datepicker-Icon global weiss (WebKit/Chromium) */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* ==========================================================================
   PAYMENT METHODS – RADIO + LOGO (ohne Box)
   ========================================================================== */
/* Container der Zahlungsarten */
.section-card .radio-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;

    /* viel Abstand zwischen den Methoden */
}

/* Radio-Label: Radio + Logo nebeneinander */
.section-card .radio-group .radio-option {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    /* Radio relativ nah am Logo */
}

/* Radio-Buttons moderat vergrößern (ca. 1.3x) */
.section-card .radio-group .radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    transform: scale(1.3);
    accent-color: #fbbf24;
    cursor: pointer;
}

/* Logos als echte Bilder (img / svg) */
/* Basis für alle Logos */
.section-card .radio-group .radio-option img,
.section-card .radio-group .radio-option svg {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* TWINT-Zahlungsmethode vergrößern */
.radio-option.payment-option.twint .payment-logo {
    transform: scale(1.8);
    transform-origin: center;
}

/* TWINT-Logo deutlich größer, damit es optisch gleich wirkt */
.section-card .radio-group .radio-option img[src*="twint"],
.section-card .radio-group .radio-option svg[src*="twint"],
.section-card .radio-group .radio-option svg[data-logo="twint"] {
    height: 70px;
}

/* Falls Du span.payment-logo mit background-image verwendest */
.payment-logo {
    display: block;
    width: 88px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* Kleine Hover-Aufhellung fürs Logo */
.section-card .radio-group .radio-option:hover img,
.section-card .radio-group .radio-option:hover svg,
.section-card .radio-group .radio-option:hover .payment-logo {
    filter: brightness(1.06);
    transition: filter 0.15s ease;
}

/* ==========================================================================
   FOOTER – GLOBAL (site-footer)
   ========================================================================== */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #e2e6f0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
    margin-top: 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px 12px;
    color: var(--blue-main);
    font-size: 0.9rem;
}

/* Social Icons */
.footer-social {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-main);
    border: none;
    padding: 0;
}

.footer-social-icon img,
.footer-social-icon svg {
    width: 26px;
    height: 26px;
    display: block;

    /* kein filter hier! */
}

.footer-social-icon:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

/* Footer-Spalten */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 12px;
}

.footer-col-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-col p {
    margin: 0 0 3px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 3px;
}

/* Footer-Links: gleiche dunkelblaue Farbe wie der übrige Footer-Text */
.footer-links a {
    color: var(--blue-main);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.footer-links a:hover {
    color: var(--blue-main);

    /* Farbe gleich lassen, nur Unterstreichung wirkt */
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #d3d9ea;
    padding-top: 8px;
    font-size: 0.82rem;
    text-align: center;
}

.footer-bottom a {
    color: var(--blue-main);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.footer-bottom a:hover {
    color: var(--blue-main);
}

/* Footer: E-Mail-Adresse im gleichen Dunkelblau wie der restliche Text */
.site-footer a[href^="mailto"] {
    color: var(--blue-main) !important;
}

.site-footer a[href^="mailto"]:hover {
    color: var(--blue-main) !important;
}

/* Footer Responsiveness */
@media (max-width: 840px) {
    .footer-top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ==========================================================================
   HEADER – GLOBAL (site-header)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid #e2e6f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.site-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 24px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Brand / Logo */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 110px;
    width: auto;
    display: block;
}

@media (max-width: 640px) {
    .brand-logo {
        height: 90px;
    }
}

/* Hauptnavigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    white-space: nowrap;
}

/* Underline-Effekt */
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(135deg, var(--blue-main), var(--accent-magenta));
    transition: width 0.16s ease;
}

.site-nav a:hover::after {
    width: 100%;
}

.site-nav a:hover {
    color: #000000;
}

/* Warenkorb-Icon */
.nav-icon {
    font-size: 1.2rem;
    padding-bottom: 0;
}

/* Sprachwahl */
.lang-switch {
    position: relative;
    font-size: 0.86rem;
}

.lang-trigger {
    border: 1px solid #d0d7ea;
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font: inherit;
}

.lang-trigger span.flag {
    font-size: 1.1rem;
}

.lang-trigger span.code {
    font-weight: 600;
}

.lang-menu {
    position: absolute;
    right: 0;
    margin-top: 6px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #d0d7ea;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    display: none;
    min-width: 180px;
    z-index: 30;
}

.lang-menu button {
    width: 100%;
    border: none;
    background: transparent;
    font: inherit;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-dark);
}

.lang-menu button:hover {
    background: #f2f4fb;
}

.lang-menu button .flag {
    font-size: 1.1rem;
}

/* Hover / Fokus zeigt Sprachen */
.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu {
    display: block;
}

/* Header Responsive */
@media (max-width: 980px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   NAVIGATION – SURVIVAL-DROPDOWN (Struktur aus header.html)
   ========================================================================== */
.nav-item-dropdown {
    position: relative;
}

/* Hauptlink */
.nav-item-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Dropdown-Panel */
.nav-dropdown-panel {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 10px;
    min-width: 260px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    padding: 14px 18px 16px;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
    color: var(--text-dark);
    z-index: 50;
}

/* Inneres Grid */
.nav-dropdown-section {
    min-width: 180px;
    margin-bottom: 10px;
}

.nav-dropdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #94a3b8;
    margin-bottom: 6px;
}

.nav-dropdown-link {
    display: block;
    font-size: 0.9rem;
    padding: 4px 0;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-dropdown-link:hover {
    color: #000000;
}

/* Hover-Verhalten */
.nav-item-dropdown:hover .nav-dropdown-panel,
.nav-item-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Unsichtbare Brücke, damit beim Herunterfahren der Maus das Menü nicht wegklappt */
.nav-item-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

@media (max-width: 980px) {
    .nav-dropdown-panel {
        margin-top: 8px;
        right: auto;
    }
}

/* ==========================================================================
   Projektmanagement – Hero & Boxen
   (Seiten-spezifische Komponenten, zentralisiert)
   ========================================================================== */
/* HERO-BEREICH */
.hero-wrapper {
    padding-top: 24px;
}

.hero-pm {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    min-height: 260px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top left, #062446, #07101f);
}

/* Hintergrundbild mit Overlay */
.hero-pm::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("Images/Hero/Favicon%20PMDeers%20Project%20Management%202.png");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    mix-blend-mode: screen;
}

.hero-pm::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.3)
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 48px 40px 46px;
}

.hero-title-main {
    font-size: clamp(2.6rem, 4.2vw, 3.4rem);
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 26px;
    color: #ffffff;
}

.hero-subline {
    font-size: 1.15rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* PMDeers – Überschriften in Boxen immer weiß im Digital-Mode */
.mode-digital .section-box h1,
.mode-digital .section-box h2,
.mode-digital .section-box h3,
.mode-digital .section-box h4 {
    color: #ffffff;
}

/* STACK DER SEKTIONS-BOXEN */
.sections-stack {
    display: flex;
    flex-direction: column;
    gap: 44px;
    margin-top: 40px;
}

/* GROSSE BLAUE BOX */
.section-box {
    background: var(--blue-box);
    border-radius: 20px;
    padding: 30px 28px 30px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.section-box-header {
    margin-bottom: 22px;
    text-align: center;
}

.section-box-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.section-box-title {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: var(--white);
}

.section-box-lead {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.96);
}

/* SUB-BOX INNEN */
.sub-box {
    margin-top: 20px;
    padding: 20px 18px 22px;
    border-radius: 16px;
    background: var(--blue-subbox);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* GRID für Leistungen / Partner */
.sub-box-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

@media (max-width: 840px) {
    .sub-box-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* LEISTUNGEN-KARTEN */
.hero-side-card {
    border-radius: 16px;
    padding: 14px 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
    text-align: left;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.service-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 25% 20%,
        #ffffff 0,
        #8ec5ff 28%,
        #01325b 85%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.service-icon-circle svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.service-text-block {
    flex: 1;
}

.hero-side-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 2px;
    text-align: left;
    color: #ffffff;
}

.service-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(220, 234, 255, 0.9);
}

.hero-side-text {
    font-size: 0.96rem;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.98);
    text-align: left;
}

/* BULLET-LISTEN */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98rem;
}

.bullet-dot {
    margin-top: 8px;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 20%,
        #ffffff 0,
        #4b7bb3 35%,
        #01325b 80%
    );
}

.bullet-text-strong {
    font-weight: 600;
    display: block;
    color: #ffffff;
}

.bullet-text-sub {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.98);
}

/* PHASEN-LAYOUT */
.phase-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 20px;
}

@media (max-width: 980px) {
    .phase-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.phase-card {
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 14px;
    text-align: left;
}

.phase-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.phase-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: #ffffff;
}

.phase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.phase-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.98);
}

.phase-list li::before {
    content: "";
    margin-top: 8px;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 20%,
        #ffffff 0,
        #4b7bb3 35%,
        #01325b 80%
    );
}

/* WED-KARTE */
.wed-card {
    border-radius: 16px;
    padding: 16px 16px 20px;
    border: 1px dashed rgba(204, 224, 255, 0.7);
    background: rgba(0, 0, 0, 0.04);
    text-align: center;
}

.wed-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: #ffffff;
}

.wed-subtitle {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 12px;
}

.wed-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px dashed rgba(186, 210, 255, 0.9);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    background: radial-gradient(
        circle at 30% 15%,
        #17418f 0,
        #020b26 65%
    );
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

/* CTA-BUTTON innerhalb der Seite */
.cta-inline {
    margin-top: 20px;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--blue-main), var(--accent));
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: transform 0.12s ease,
        box-shadow 0.12s ease,
        filter 0.12s ease;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
    filter: brightness(1.03);
}

/* ==========================================================================
   Spacing Utilities
   ========================================================================== */
.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* ==========================================================================
   IMPORTANT:
   - Keine globalen UL/LI-Regeln, damit Navigation & Dropdown sauber bleiben
   - Header/Footer/Projektmanagement zentralisiert
   ========================================================================== */
