/* ============================================================
   COMPANY.CSS – DiNC-POSiTiVE Company Page Styles
   (für page-company.php)
   ============================================================ */

/* Basis-Wrapper für die Seite */
.dp-page.dp-company {
    background: #ffffff;
    color: #111;
}

/* ------------------------------------------------------------
   HERO – FUTURISTISCH, 2-SPALTIG, ORBIT-VISUAL
   ------------------------------------------------------------ */

.company-hero {
    padding: 120px 20px 80px;
    background: radial-gradient(circle at top left, #141a26 0%, #05070b 55%, #020308 100%);
    color: #ffffff;
}

.company-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.company-hero-copy {
    flex: 1 1 380px;
    min-width: 280px;
}

.company-hero-copy h1 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
}

.company-hero-sub {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 560px;
    margin-bottom: 22px;
}

/* Badges unter dem Hero-Text */
.company-hero-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.company-hero-badges li {
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 202, 255, 0.45);
    white-space: nowrap;
}

/* Orbit-Visual rechts */
.company-hero-visual {
    flex: 0 0 280px;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    height: 280px;
}

.company-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 202, 255, 0.28);
    box-shadow: 0 0 40px rgba(0, 202, 255, 0.25);
}

.company-orbit-1 {
    transform: scale(0.82);
}

.company-orbit-2 {
    transform: scale(1);
    border-style: dashed;
    border-color: rgba(0, 202, 255, 0.5);
    animation: companyOrbitSpin 26s linear infinite;
}

.company-orbit-dot {
    --dot-size: 8px;
    position: absolute;
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    background: #00eaff;
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.8);
}

/* Positionierung der drei Punkte */
.company-orbit-dot.dot-1 {
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
}

.company-orbit-dot.dot-2 {
    bottom: 10%;
    left: 12%;
}

.company-orbit-dot.dot-3 {
    bottom: 16%;
    right: 10%;
}

/* Orbit-Label */
.company-orbit-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 8, 14, 0.9);
    backdrop-filter: blur(6px);
    color: #e9f8ff;
}

/* Orbit-Animation */
@keyframes companyOrbitSpin {
    from { transform: scale(1) rotate(0deg); }
    to   { transform: scale(1) rotate(360deg); }
}

/* Mobile Hero-Layout */
@media (max-width: 768px) {
    .company-hero {
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .company-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-hero-visual {
        order: -1;
        margin-bottom: 25px;
    }
}

/* ------------------------------------------------------------
   SNAPSHOT / COMPANY OVERVIEW (Metrics + Intro)
   ------------------------------------------------------------ */

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

.company-metric-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    text-align: center;
}

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

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

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

/* ------------------------------------------------------------
   PILLARS-PRO – 4 SÄULEN (High-Tech Cards)
   ------------------------------------------------------------ */

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

.pillar-pro-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 22px 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 210px;
}

/* Leichter Gradient-Overlay */
.pillar-pro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 202, 255, 0.12),
        transparent 55%
    );
    opacity: 0.8;
    pointer-events: none;
}

.pillar-pro-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #e7f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pillar-pro-icon i {
    font-size: 20px;
    color: #007ca0;
}

.pillar-pro-card h4 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pillar-pro-card p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 14px;
}

/* Pfeil-Button */
.pillar-pro-btn {
    position: relative;
    z-index: 1;
    align-self: flex-end;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #00caff;
    color: #007ca0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    background: #f4fbff;
    transition: 0.2s ease;
}

.pillar-pro-btn:hover {
    background: #00caff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ------------------------------------------------------------
   FOUNDER SECTION
   ------------------------------------------------------------ */

.company-founder {
    background: #ffffff;
}

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

.company-founder-text h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

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

.company-founder-facts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-founder-facts li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Founder Card rechts */
.company-founder-card {
    background: #05060a;
    color: #ffffff;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    margin: 0 auto 14px;
    border: 2px solid #00caff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #1c2435, #05060a);
}

.founder-avatar i {
    font-size: 28px;
    color: #00eaff;
}

.company-founder-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.8;
    margin-bottom: 12px;
}

.founder-tagline {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Founder */
@media (max-width: 860px) {
    .company-founder-inner {
        grid-template-columns: 1fr;
    }

    .company-founder-card {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ------------------------------------------------------------
   TRUST & CERTIFICATIONS
   ------------------------------------------------------------ */

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

.company-trust .trust-badge {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}

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

.company-trust .trust-badge span {
    line-height: 1.5;
}

.company-trust .trust-badge small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

/* ------------------------------------------------------------
   EXPERIENCE
   ------------------------------------------------------------ */

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

.experience-list {
    max-width: 760px;
    margin: 0 auto;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.experience-list li {
    margin-bottom: 6px;
}

/* ------------------------------------------------------------
   INTERNATIONAL ACTIVITY
   ------------------------------------------------------------ */

.company-international-text {
    max-width: 900px;
    margin: 10px auto 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    text-align: center;
}

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

.company-international-tags span {
    padding: 7px 14px;
    border-radius: 999px;
    background: #f4fbff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(0, 202, 255, 0.20);
    color: #006b85;
}

/* ------------------------------------------------------------
   APPROACH (1–3)
   ------------------------------------------------------------ */

.company-approach .dp-grid-3 {
    margin-top: 35px;
}

/* Icons in den Approach-Karten etwas größer */
.company-approach .dp-feature-card .dp-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

/* ------------------------------------------------------------
   SECTION WRAPPER – GLOBAL FÜR DIE COMPANY-SEITE
   ------------------------------------------------------------ */

.dp-page.dp-company .dp-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* KEIN first-of-type mehr → kein weißer Balken */
.dp-page.dp-company .dp-section + .dp-section {
    margin-top: -10px;
}

/* ------------------------------------------------------------
   SECTION TITLE
   ------------------------------------------------------------ */

.dp-page.dp-company .dp-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    position: relative;
}

.dp-page.dp-company .dp-section-title::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #00caff;
    margin: 0 auto 14px;
}

/* ------------------------------------------------------------
   FEATURE CARDS (Fallback)
   ------------------------------------------------------------ */

.dp-feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.dp-feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.dp-feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.dp-feature-card .dp-icon {
    font-size: 28px;
    color: #00caff;
    margin-bottom: 10px;
}

/* ------------------------------------------------------------
   CTA – Abschluss
   ------------------------------------------------------------ */

.company-cta {
    text-align: center;
    background: #05060a;
    color: #ffffff;
}

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

.company-cta p {
    max-width: 700px;
    margin: 0 auto 22px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.92;
}

.company-cta .dp-btn-primary {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* ------------------------------------------------------------
   TYPO / COLOR FIXES
   ------------------------------------------------------------ */

.company-founder-text p,
.company-experience-intro,
.company-international-text,
.company-intro-text {
    color: #444444;
}

/* ------------------------------------------------------------
   HERO-TEXT-FIX (kein Gradient-Titel)
   ------------------------------------------------------------ */

.company-hero-copy h1 {
    background: none !important;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.company-hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #e6f6ff;
}

.company-hero-badges li {
    border-color: rgba(0, 202, 255, 0.55);
    background: rgba(0, 0, 0, 0.35);
}
/* === FIX: Company-Seite ohne weißen Balken unter dem Header === */
.dp-page.dp-company {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* ============================================================
   CTA – FINAL FIX (hell, ohne Schatten, ohne Balken)
   ============================================================ */

/* Inline-Style aus PHP überschreiben */
.company-cta {
    background: #f5faff !important;
    color: #111 !important;
    text-align: center;
    padding: 70px 20px 70px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* dp-section Verhalten vollständig neutralisieren */
.company-cta.dp-section {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 70px 20px !important;
    background: #f5faff !important;
    border: none !important;
    box-shadow: none !important;
}

/* ============================================================
   SICHTBARER CTA BLOCK – FIX
   ============================================================ */

.company-cta,
.company-cta.dp-section {
    background: #eef6ff !important;     /* etwas dunkler, sichtbar */
    color: #0a0f17 !important;           /* dunkler Text */
    padding: 80px 20px !important;
    border-radius: 12px;
}

/* Titel sichtbar */
.company-cta h2 {
    color: #0a0f17 !important;
    font-weight: 800;
}

/* Untertitel sichtbar */
.company-cta p {
    color: #1a1f27 !important;
    opacity: 0.85 !important;
}

/* Button sichtbar */
.company-cta .dp-btn-primary {
    background: #ffffff !important;
    color: #0a0f17 !important;
    border: 1px solid #b9cfe0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.company-cta .dp-btn-primary:hover {
    background: #e7f1ff !important;
    border-color: #9fbcd6 !important;
}
/* ============================================
   FIX: CTA soll wieder ein sauberer Content-Block sein
   ============================================ */

.company-cta.dp-section {
    background: #eef6ff !important;
    padding: 70px 20px !important;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    
    /* WICHTIG: wieder Containerbreite setzen */
    max-width: 1200px !important;
    margin: 40px auto !important;
}

/* CTA Wrapper (zentriert) */
.company-cta {
    text-align: center;
}
/* Entfernt die globale dp-section Nach-Schattenfläche NUR auf der Company-Seite */
.dp-page.dp-company .dp-section::after {
    display: none !important;
}

/* Falls auch ein ::before gesetzt wurde */
.dp-page.dp-company .dp-section::before {
    display: none !important;
}
/* FIX: Abstand vor dem Footer nur für die Company-Seite */
.dp-page.dp-company .company-cta.dp-section {
    margin-bottom: 80px !important; /* Abstand nach unten */
}

/* Außerdem: Die Seite selbst darf keinen negativen Margin erzeugen */
.dp-page.dp-company {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
/* ============================================================
   VARIANTE 2 – WHITE CARD CTA (Premium Corporate Style)
   ============================================================ */

.dp-page.dp-company .company-cta.dp-section {
    background: #ffffff !important;         /* reine weiße Card */
    padding: 60px 30px !important;          /* Innenabstand */
    border-radius: 16px;                    /* moderne Rundung */
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);/* Premium-Shadow */
    max-width: 950px !important;            /* Apple-Style Content Breite */

    margin: 80px auto 120px !important;     /* Abstand oben / unten */
    display: block;
    position: relative;
}

/* Der Hintergrund hinter der Card bleibt schlicht */
.dp-page.dp-company {
    background: #f8f9fb !important;
}
