/* ============================================================
   PAGE-GENERIC.CSS – Final
   Einheitliches, hochwertiges Design
   ============================================================ */

/* =========================
   PAGE / BLATT-LOOK
   ========================= */
body {
    background: #f4f7fb;
}

.dp-page.dp-generic {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin: 40px auto 80px;
    overflow: hidden;
    color: #111;
}

/* =========================
   HERO
   ========================= */
.company-hero {
    padding: 120px 20px 90px;
    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 h1 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

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

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

.company-hero-badges li {
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 202, 255, 0.55);
}

/* =========================
   SECTIONS
   ========================= */
.dp-section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.dp-section:not(:last-of-type)::after {
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 202, 255, 0.45),
        transparent
    );
    margin: 80px auto 0;
}

/* =========================
   SECTION TITLES
   ========================= */
.dp-section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 34px;
    color: #0B1E33;
    letter-spacing: -0.02em;
}

.dp-section-title::before {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, #00caff, #009ecf);
    margin: 0 auto 16px;
}

/* =========================
   INTRO TEXT
   ========================= */
.company-intro-text {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    text-align: center;
}

/* =========================
   TWO COLUMN LAYOUT
   ========================= */
.dp-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 35px;
}

.dp-column {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.dp-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dp-column ul li {
    padding: 7px 0 7px 20px;
    position: relative;
}

.dp-column ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #00a0cc;
    font-weight: 700;
}

@media (max-width: 900px) {
    .dp-columns {
        grid-template-columns: 1fr;
    }
}

/* =========================
   EXPERIENCE LIST
   ========================= */
.experience-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
}

.experience-list li {
    display: inline-block;
    margin: 6px 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f2f7fb, #ffffff);
    border: 1px solid rgba(0, 202, 255, 0.25);
    font-size: 14px;
    color: #0B1E33;
}

/* =========================
   CARDS (PERMANENT GRADIENT)
   ========================= */
.pillars-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 45px;
}

.pillar-pro-card {
    background: linear-gradient(
        135deg,
        #f7fbff 0%,
        #ffffff 55%,
        #eef7ff 100%
    );
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(0, 202, 255, 0.08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.pillar-pro-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.14),
        inset 0 0 0 1px rgba(0, 202, 255, 0.25);
}

.pillar-pro-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00caff, #009ecf);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0, 202, 255, 0.35);
}

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

.pillar-pro-card h4 {
    margin: 6px 0 10px;
    font-size: 16px;
    color: #0B1E33;
}

.pillar-pro-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* =========================
   CTA
   ========================= */
.company-cta {
    background: linear-gradient(135deg, #f2f7fb, #ffffff) !important;
    color: #0c1a2b;
    padding: 80px 20px;
    text-align: center;
}

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

.company-cta p {
    max-width: 700px;
    margin: 0 auto 26px;
}
