/* ====================================================================== */
/*  GLOBAL STYLES                                                         */
/* ====================================================================== */

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    background: #f8f9fb;
    color: #222;
}

a {
    text-decoration: none;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ====================================================================== */
/*  HEADER                                                                */
/* ====================================================================== */

.dp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dp-header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------------- LOGO ---------------- */

.dp-logo {
    display: flex;
    align-items: center;
}

.dp-header-logo {
    height: 42px;
    width: auto;
    display: block;
    opacity: 0.92;
    transition: opacity .25s ease;
}

.dp-header-logo:hover {
    opacity: 1;
}

/* ====================================================================== */
/*  NAVIGATION (DESKTOP)                                                 */
/* ====================================================================== */

.dp-nav {
    display: block;
}

.dp-nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dp-nav-item {
    position: relative;
}

.dp-nav-item > a {
    color: white;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.85;
    padding-bottom: 5px;
    display: inline-block;
    transition: 0.2s;
}

.dp-nav-item > a:hover,
.dp-nav-item > a.active {
    opacity: 1;
    color: #00caff;
}

.dp-nav-item > a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00caff;
    transition: 0.25s;
}

.dp-nav-item:hover > a::after {
    width: 100%;
    left: 0;
}

/* ====================================================================== */
/*  DROPDOWN MENU (DESKTOP)                                              */
/* ====================================================================== */

.dp-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 260px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(14px);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
    z-index: 2000;
}

.dp-nav-item.dp-has-dropdown:hover > .dp-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dp-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #e9e9e9;
    font-size: 15px;
    opacity: 0.9;
    white-space: nowrap;
    transition: 0.2s;
}

.dp-dropdown a:hover {
    background: rgba(255,255,255,0.08);
    color: #00caff;
}

/* ====================================================================== */
/*  LANGUAGE SWITCH                                                       */
/* ====================================================================== */

.dp-lang {
    color: white;
    font-size: 14px;
    margin-left: 30px;
}

.dp-lang a {
    color: white;
    opacity: 0.7;
}

.dp-lang a:hover {
    opacity: 1;
}

.dp-lang .active-lang {
    opacity: 1;
    font-weight: 700;
}
/* ====================================================================== */
/*  HERO SECTION – PREMIUM VERSION                                       */
/* ====================================================================== */

.dp-hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/intro.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.48) saturate(1.1);
    transform: scale(1.05);
}

.dp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.60) 60%
    );
}

.dp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 0 22px;
    text-align: center;
    color: #fff;
    opacity: 0;
    animation: fadeUp 1.1s ease-out forwards;
}

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

.dp-hero-title {
    font-size: clamp(24px, 6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 18px;
    background: linear-gradient(92deg,#ffffff 0%,#b3eaff 40%,#00caff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 18px rgba(0,0,0,0.55);
}

.dp-hero-sub {
    font-size: clamp(16px, 4.5vw, 22px);
    opacity: 0.92;
    margin-bottom: 22px;
}

.dp-hero-text {
    font-size: clamp(15px, 4vw, 20px);
    line-height: 1.65;
    opacity: 0.95;
    max-width: 780px;
    margin: 0 auto 32px;
}

.dp-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.dp-btn {
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.25s ease;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

/* ====================================================================== */
/*  HERO VIDEO (HOME)                                                    */
/* ====================================================================== */

.dp-hero-video {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.dp-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(1px);
    z-index: 2;
}

.dp-hero-video-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    text-align: center;
}

.dp-hero-values {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
    font-size: clamp(13px, 3.5vw, 16px);
    opacity: 0.95;
}

.dp-hero-values div {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

@media (max-width: 480px) {
    .dp-hero-video {
        padding-top: 95px;
        min-height: calc(100vh + 40px);
    }
    .dp-hero-values span {
        display: block;
        margin-bottom: 6px;
    }
}

/* ========================================================= */
/*  HERO VIDEO – TEXT COLOR FIX                              */
/* ========================================================= */

.dp-hero-video-inner,
.dp-hero-video-inner p,
.dp-hero-video-inner .dp-hero-label,
.dp-hero-video-inner .dp-hero-sub,
.dp-hero-video-inner .dp-hero-text,
.dp-hero-video-inner .dp-hero-values,
.dp-hero-video-inner .dp-hero-values span {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

/* ====================================================================== */
/*  SECTION WRAPPER                                                      */
/* ====================================================================== */

.dp-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ====================================================================== */
/*  VALUE METRICS                                                       */
/* ====================================================================== */

.dp-metrics {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 50px 0;
    flex-wrap: wrap;
}

.dp-metric-card {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 22px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.dp-metric-number {
    font-size: 38px;
    font-weight: 800;
    color: #00caff;
    margin-bottom: 4px;
}

.dp-metric-label {
    font-size: 16px;
    color: #333;
}

/* ====================================================================== */
/*  GRID (3 & 4 columns)                                                 */
/* ====================================================================== */

.dp-grid-4,
.dp-grid-3 {
    display: grid;
    gap: 25px;
}

.dp-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dp-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ====================================================================== */
/*  FEATURE CARDS (USP / Pillars)                                        */
/* ====================================================================== */

.dp-feature-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.dp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.dp-feature-card .dp-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.dp-feature-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.dp-feature-card p {
    font-size: 15px;
    opacity: 0.9;
}

/* ====================================================================== */
/*  INDUSTRIES CARDS                                                     */
/* ====================================================================== */

.dp-industry-card {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 22px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform .25s ease, background .25s ease;
}

.dp-industry-card:hover {
    transform: translateY(-5px);
    background: #00caff;
}

/* ====================================================================== */
/*  COMPANY PAGE – ULTRA VERSION                                         */
/* ====================================================================== */

.dp-page.dp-company {
    padding-top: 100px; /* Header-Abstand bleibt */
    margin-top: 0 !important;
    background: #f8f9fb;
    color: #222;
    font-size: 16px;
}


/* ---------------- HERO ---------------- */

.company-hero {
    background: radial-gradient(circle at top left, #1f2937 0, #05060a 55%);
    color: #fff;
    padding: 80px 20px 90px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.company-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 40px;
    align-items: center;
}

.company-hero-copy h1 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.company-hero-sub {
    font-size: 18px;
    opacity: 0.9;
    max-width: 620px;
    margin-bottom: 20px;
}

.company-hero-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.company-hero-badges li {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(3px);
}

/* Visual */

.company-hero-visual {
    position: relative;
    height: 210px;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 0, #00caff 0, transparent 55%),
                radial-gradient(circle at 80% 100%, #1f6feb 0, transparent 55%),
                #050712;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.company-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.28);
}

.company-orbit-1 { width: 220px; height: 220px; top: -40px; right: -80px; }
.company-orbit-2 { width: 160px; height: 160px; top: 40px; right: 40px; }

.company-orbit-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,0.9);
}

.company-orbit-dot.dot-1 { top: 40px; right: 22px; }
.company-orbit-dot.dot-2 { top: 130px; right: 90px; }
.company-orbit-dot.dot-3 { top: 80px; right: 160px; }

.company-orbit-label {
    position: absolute;
    left: 26px;
    bottom: 22px;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ====================================================================== */
/*  COMPANY SNAPSHOT / METRICS                                            */
/* ====================================================================== */

.company-snapshot .company-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.company-metric-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 26px rgba(15,23,42,0.06);
    text-align: center;
}

.company-metric-card .metric-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #00caff;
    margin-bottom: 4px;
}

.company-metric-card .metric-label {
    font-size: 14px;
    color: #444;
}

.company-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* ====================================================================== */
/*  PILLARS PRO – 4 SÄULEN                                                */
/* ====================================================================== */

.pillars-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.pillar-pro-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transition: 0.28s ease;
    position: relative;
    overflow: hidden;
}

.pillar-pro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.pillar-pro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,202,255,0.08), transparent 55%);
    opacity: 0;
    transition: opacity .28s ease;
}

.pillar-pro-card:hover::before {
    opacity: 1;
}

.pillar-pro-icon {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00caff, #0095c7);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    color: white;
    font-size: 30px;
}

/* ====================================================================== */
/*  FOUNDER SECTION                                                      */
/* ====================================================================== */

.company-founder-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
    align-items: stretch;
}

.company-founder-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.company-founder-facts li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #333;
}

.company-founder-card {
    background: #05060a;
    color: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* ====================================================================== */
/*  TRUST / BADGES                                                       */
/* ====================================================================== */

.company-trust .trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.trust-badge {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

.trust-badge i {
    font-size: 20px;
    color: #00caff;
    margin-top: 4px;
}

.trust-badge span {
    font-size: 14px;
    color: #333;
}

.trust-badge small {
    display: block;
    font-size: 12px;
    color: #777;
}

/* ====================================================================== */
/*  INTERNATIONAL                                                        */
/* ====================================================================== */

.company-international-text {
    max-width: 880px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 16px;
    color: #444;
}

.company-international-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.company-international-tags span {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e5edf6;
    color: #223;
}

/* ====================================================================== */
/*  CTA (Premium)                                                        */
/* ====================================================================== */

.company-cta {
    text-align: center;
    background: #05060a;
    color: #fff;
    border-radius: 18px;
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 40px 26px 46px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.company-cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.company-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ====================================================================== */
/*  RESPONSIVE FIXES                                                     */
/* ====================================================================== */

@media (max-width: 900px) {

    .company-hero-inner,
    .company-founder-inner {
        grid-template-columns: 1fr;
    }

    .company-hero {
        padding-top: 100px;
    }

    .company-hero-visual {
        height: 180px;
        margin-top: 6px;
    }

    .company-cta {
        margin: 40px 16px 70px;
    }
}

.dp-hero-title {
    background: linear-gradient(92deg,#ffffff 0%,#b3eaff 40%,#00caff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ====================================================================== */
/*  MOBILE NAVIGATION – CSS ONLY, NO JAVASCRIPT                           */
/* ====================================================================== */

/* Hamburger Icon (hidden on desktop) */
.dp-nav-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
    padding: 6px 10px;
    line-height: 1;
}

/* Mobile Navigation (hidden by default) */
.dp-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    height: 100vh;
    background: rgba(5,6,8,0.96);
    backdrop-filter: blur(6px);
    padding: 30px 20px;
    transition: right 0.35s ease;
    z-index: 99999;
}

.dp-mobile-nav ul {
    list-style: none;
    padding: 40px 0 0 0;
    margin: 0;
}

.dp-mobile-nav ul li a {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0.9;
}

.dp-mobile-nav ul li a:hover {
    opacity: 1;
    color: #00caff;
}

.dp-nav-close {
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    float: right;
}

/* MOBILE ACTIVATION – via CSS :target */
#dp-mobile-nav:target {
    right: 0;
}

/* ====================================================================== */
/*  RESPONSIVE BREAKPOINT – MAX 880px                                    */
/* ====================================================================== */

@media (max-width: 880px) {

    /* Hide desktop nav */
    .dp-nav {
        display: none;
    }

    /* Show hamburger */
    .dp-nav-toggle {
        display: block;
    }

    /* Logo spacing fix */
    .dp-header-inner {
        padding-right: 10px;
    }
}

/* ====================================================================== */
/*  LISTS                                                                */
/* ====================================================================== */

.dp-list {
    margin: 20px 0;
    padding-left: 25px;
    list-style: disc;
}

.dp-list li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}

/* ====================================================================== */
/*  GLOBAL FOOTER-GAP FIX                                                */
/* ====================================================================== */

/* Entfernt unnötigen Abstand vor dem Footer auf ALLEN Seiten */
.dp-page .dp-section:last-of-type,
.dp-section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Sicherheit: Verhindert, dass page-generic.css oder company.css den Abstand wieder einfügen */
.dp-page {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Falls ein unsichtbares Element zwischen letzter Section und Footer existiert */
.dp-gap,
.section-gap,
.spacer,
.footer-spacer {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ====================================================================== */
/*  FOOTER GAP FIX – Entfernt jeden Abstand über dem Footer               */
/* ====================================================================== */

.dp-section:last-of-type,
.dp-page .dp-section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.dp-footer-full,
footer.dp-footer-full {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Falls ein leeres Wrapper-Element dazwischen ist */
.section-wrapper,
.dp-section-wrapper,
.footer-gap,
.spacer,
.gap {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Pseudoelemente deaktivieren */
.dp-section:last-of-type::before,
.dp-section:last-of-type::after {
    content: none !important;
}

/* ============================================================
   GROUPED SERVICES – Kartenlayout für Automotive (8 Karten)
   ============================================================ */

.dp-grouped-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 25px;
}

.dp-service-group-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.dp-service-group-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.dp-service-group-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0f17;
}

.dp-service-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-service-items li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 7px;
    font-size: 14px;
    color: #333;
}

.dp-service-items li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #00caff;
    font-weight: 700;
}

/* ====================================================================== */
/*  GENERIC CTA OVERRIDE (HELL)                                          */
/* ====================================================================== */

.dp-cta-box,
.dp-generic .dp-cta-box,
.dp-page .dp-cta-box,
section.dp-cta-box {
    background: #f5f7fa !important;
    color: #111 !important;
    border-radius: 16px !important;
    padding: 50px 35px !important;
    max-width: 900px;
    margin: 60px auto !important;
    text-align: center !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
}

/* FINAL FIX – überschreibt das schwarze CTA der Generic-Seiten */
.dp-generic .company-cta {
    background: #f5f7fa !important;
    color: #111 !important;
    border-radius: 14px !important;
    padding: 45px 32px !important;
    text-align: center !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09) !important;
}

.dp-generic .company-cta h2 {
    color: #111 !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}

.dp-generic .company-cta p {
    color: #333 !important;
    font-size: 16px !important;
    margin-bottom: 25px !important;
}

.dp-generic .company-cta .dp-btn-primary {
    background: #0078ff !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 12px 26px !important;
    font-weight: 600 !important;
}

/* ====================================================================== */
/*  ASSESSMENT HERO FEIN-TUNING                                          */
/* ====================================================================== */

.dp-generic .company-hero {
    background: radial-gradient(circle at top left, #111827 0, #020617 55%);
}

.dp-generic .company-hero-copy h1 {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
}
