/* ==========================================================================
   RI-SE Enterprise-Theme
   Gemeinsame Override-Schicht für alle Produkt-Landingpages.
   Lädt NACH css/style.css und schärft den Auftritt auf Enterprise-Niveau:
   - ruhigere Palette (tiefes Navy statt Indigo), keine Rose-Akzente
   - keine Gradient-Texte, solidere Buttons
   - SVG-Icon-System statt Emojis
   - dezentes Hero-Raster, ruhigere Hover-Effekte
   - wiederverwendbare Bausteine: Prozess-Schritte, Compliance-Grid
   ========================================================================== */

:root {
    --primary: #0b3b6e;        /* Deep enterprise blue */
    --primary-dark: #07264a;
    --primary-light: #1e5a9c;
    --secondary: #0369a1;      /* Muted petrol, ersetzt Sky */
    --accent: #0b3b6e;         /* Rose entfernt */
}

/* --- Typografie: Gradient-Texte raus ------------------------------------- */
.hero h1 {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--dark);
    letter-spacing: -0.015em;
}

.logo span {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--dark);
}

/* --- Buttons: kantigere Pro-Form ---------------------------------------- */
.btn,
.btn-outline,
.btn-submit {
    border-radius: 8px;
}

/* --- Hero: Blobs raus, dezentes Grid ------------------------------------ */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    padding: 7rem 0 5rem;
}

.hero::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    background: transparent;
    background-image:
        linear-gradient(rgba(11, 59, 110, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 59, 110, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    border-radius: 0;
    -webkit-mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 75%);
    mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 75%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    display: none;
}

/* --- Hero-Badges: seriöser ---------------------------------------------- */
.hero-badge {
    background: white;
    border: 1px solid rgba(11, 59, 110, 0.18);
    color: var(--dark);
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    gap: 0.5rem;
}

.hero-badge:hover {
    transform: none;
    border-color: var(--primary-light);
    box-shadow: 0 2px 6px rgba(11, 59, 110, 0.1);
}

.hero-badge .icon {
    color: var(--primary);
}

/* --- Stats-Section: gedämpftes Navy statt Indigo→Sky -------------------- */
.stats-section {
    background: linear-gradient(135deg, #0b3b6e 0%, #0f4c85 100%);
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    margin: 0 auto 1rem;
}

.stat-icon .icon {
    width: 26px;
    height: 26px;
    stroke-width: 1.75;
}

/* --- Produkt-Intro: ruhigerer Hintergrund -------------------------------- */
.product-intro {
    background: #ffffff;
}

.intro-card {
    border-left-color: var(--primary);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.intro-card h3 {
    color: var(--primary);
}

/* --- 3-Schritte-Ablauf (neu) -------------------------------------------- */
.process-section {
    background: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
}

.process-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -18px;
    left: 1.75rem;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(11, 59, 110, 0.25);
}

.process-grid {
    counter-reset: step-counter;
}

.process-step .step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(11, 59, 110, 0.08);
    color: var(--primary);
    margin: 0.5rem 0 1rem;
}

.process-step .step-icon .icon {
    width: 24px;
    height: 24px;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

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

/* --- Benefit-Cards: ruhiger ---------------------------------------------- */
.benefit-card {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.benefit-card::before {
    background: var(--primary);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(11, 59, 110, 0.08);
    color: var(--primary);
    box-shadow: none;
    font-size: initial;
    margin-bottom: 1.25rem;
}

.benefit-icon .icon {
    width: 26px;
    height: 26px;
}

/* --- Audience-Cards ---------------------------------------------------- */
.audience-card {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(11, 59, 110, 0.08);
    color: var(--primary);
    margin: 0 auto 1rem;
    font-size: initial;
}

.audience-icon .icon {
    width: 28px;
    height: 28px;
}

/* --- Feature-Cards: etwas ruhiger --------------------------------------- */
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

/* --- Video-Section: Navy einheitlicher ---------------------------------- */
.video-section {
    background: linear-gradient(135deg, #07264a 0%, #0b3b6e 50%, #0f4c85 100%);
}

/* --- CTA-Banner --------------------------------------------------------- */
.cta-banner {
    background: linear-gradient(135deg, #07264a 0%, #0b3b6e 100%);
}

/* --- SVG-Icon-System ---------------------------------------------------- */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vertical-align: middle;
    flex-shrink: 0;
}

.hero-badge .icon {
    width: 18px;
    height: 18px;
}

/* --- Compliance-Bausteine (Easy-Support u.a.) --------------------------- */
.compliance-section {
    background: #ffffff;
}

.compliance-intro {
    max-width: 960px;
    margin: 0 auto 3rem;
}

.compliance-subheader {
    text-align: center;
    margin: 4rem auto 2rem;
    max-width: 760px;
}

.compliance-subheader h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.compliance-subheader h3::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

.compliance-subheader p {
    color: var(--gray);
    font-size: 1rem;
}

.compliance-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-feature {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.compliance-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.compliance-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(11, 59, 110, 0.08);
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.compliance-feature-icon .icon {
    width: 26px;
    height: 26px;
}

.compliance-feature h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.compliance-feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compliance-feature li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--dark-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.compliance-feature li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* --- Dashboard-Preview (große, klickbare Screenshot-Vorschau) ----------- */
.dashboard-preview {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    cursor: zoom-in;
    transition: var(--transition);
}

.dashboard-preview img:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

/* --- Responsive Tweaks -------------------------------------------------- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .compliance-subheader h3 {
        font-size: 1.35rem;
    }
}
