/* =========================================
   ARONION ACADEMY ENTERPRISE STYLES
   Global Stylesheet für alle Academy-Seiten
   ========================================= */

   :root {
    --ar-dark: #0e1a17;
    --ar-header: #132824;
    --ar-accent: #64dca4;
    --ar-lime: #7ebc4e;
    --ar-gold: #f59e0b;
    --ar-danger: #ef4444;
    --ar-text-dark: #1e293b;
    --ar-text-light: #94a3b8;
    --ar-white: #ffffff;
    --ar-gray: #f8fafc;
    --ar-border: #e2e8f0;
}

/* --- Globale Resets & Basis --- */
body.ar-body {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--ar-white);
    color: var(--ar-text-dark);
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.ar-body *, .ar-body *::before, .ar-body *::after {
    box-sizing: inherit;
}

.ar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
.ar-header {
    background-color: var(--ar-header);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}
.ar-nav-wrapper {
    display: flex; justify-content: space-between; align-items: center; height: 80px;
}
.ar-logo-link {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.ar-logo-img {
    height: 40px; width: auto; display: block;
}
.ar-logo-text {
    color: var(--ar-white); font-weight: 800; font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase;
}
.ar-nav-links { display: none; }
@media (min-width: 992px) {
    .ar-nav-links { display: flex; gap: 32px; align-items: center; }
}
.ar-nav-link {
    color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s ease;
}
.ar-nav-link:hover, .ar-nav-link.active {
    color: var(--ar-white);
}
.ar-nav-link.active {
    border-bottom: 2px solid var(--ar-white); padding-bottom: 4px;
}

/* Mobile Hamburger Menu */
.ar-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 1001;
}
.ar-hamburger span {
    width: 24px; height: 2px; background: var(--ar-white);
    transition: all 0.3s ease; display: block;
}
@media (min-width: 992px) { .ar-hamburger { display: none; } }

@media (max-width: 991px) {
    .ar-nav-links {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(14, 26, 23, 0.98); flex-direction: column;
        align-items: center; justify-content: center; gap: 32px; z-index: 1000;
    }
    .ar-nav-links.open { display: flex; }
    .ar-nav-links .ar-nav-link { font-size: 20px; padding: 8px 0; }
    .ar-header .ar-btn-group .ar-login-link { display: none !important; }
    .ar-header .ar-btn-group .ar-btn { padding: 10px 18px; font-size: 11px; }
    .ar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .ar-hamburger.open span:nth-child(2) { opacity: 0; }
    .ar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =========================================
   BUTTONS
   ========================================= */
.ar-btn-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 576px) { .ar-btn-group { justify-content: flex-start; } }

.ar-btn {
    display: inline-block; padding: 14px 28px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none;
    text-align: center; transition: all .25s cubic-bezier(.4,0,.2,1); cursor: pointer; border-radius: 8px;
}
.ar-btn-outline { border: 1px solid var(--ar-white); color: var(--ar-white); background: transparent; border-radius: 6px; }
.ar-btn-outline:hover { background: rgba(255,255,255,0.1); }
.ar-btn-primary { border: 1px solid var(--ar-lime); color: var(--ar-white); background: var(--ar-lime); border-radius: 8px; box-shadow: 0 1px 3px rgba(126,188,78,.25); }
.ar-btn-primary:hover { background: #6aa63e; border-color: #6aa63e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(126,188,78,.3); }
.ar-btn-dark { border: 1px solid var(--ar-header); color: var(--ar-header); background: transparent; border-radius: 6px; }
.ar-btn-dark:hover { background: var(--ar-header); color: var(--ar-white); }
.ar-login-link { color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; display: none; }
@media (min-width: 576px) { .ar-login-link { display: block; } }

/* =========================================
   HERO SECTIONS (Obergrafiken)
   ========================================= */
.ar-hero {
    background-color: var(--ar-dark);
    background-size: cover;
    background-position: center;
    padding: 160px 24px 110px 24px;
    text-align: center;
    position: relative;
}
/* Spezifische Hintergründe für die jeweiligen Seiten */
.ar-hero-landing { background-image: linear-gradient(to right, rgba(14, 26, 23, 0.92), rgba(19, 40, 36, 0.88)), url('/assets/img/hero-firewall.jpg'); }
.ar-hero-phishing { background-image: linear-gradient(to right, rgba(14, 26, 23, 0.95), rgba(19, 40, 36, 0.80)), url('/assets/img/phishing-bg.jpg'); text-align: left; }
.ar-hero-elearning { background-image: linear-gradient(to right, rgba(14, 26, 23, 0.95), rgba(19, 40, 36, 0.85)), url('/assets/img/elearning-bg.jpg'); text-align: left;}
.ar-hero-reporting { background-image: linear-gradient(to right, rgba(14, 26, 23, 0.95), rgba(19, 40, 36, 0.85)), url('/assets/img/reporting-bg.jpg'); text-align: left;}

.ar-hero-badge {
    display: inline-block; padding: 8px 16px; background: rgba(100, 220, 164, 0.08);
    border: 1px solid rgba(100, 220, 164, 0.25); color: var(--ar-accent);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 28px;
    border-radius: 100px; backdrop-filter: blur(4px);
}
.ar-hero-title {
    color: var(--ar-white); font-size: 42px; font-weight: 800; margin: 0 0 24px 0; line-height: 1.12; max-width: 800px;
    letter-spacing: -.02em;
}
.ar-hero-text {
    color: rgba(255,255,255,.65); font-size: 17px; max-width: 660px; margin: 0 0 40px 0; line-height: 1.7;
}
.ar-hero-landing .ar-hero-title, .ar-hero-landing .ar-hero-text { margin-left: auto; margin-right: auto; }

@media (min-width: 992px) { .ar-hero-title { font-size: 56px; } }

/* =========================================
   LAYOUT & GRIDS
   ========================================= */
.ar-section { padding: 110px 0; }
.ar-section-light { background-color: var(--ar-white); }
.ar-section-gray { background-color: #f8fafb; border-top: 1px solid rgba(0,0,0,.04); border-bottom: 1px solid rgba(0,0,0,.04); }

.ar-section-header { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.ar-section-title { font-size: 34px; font-weight: 800; margin: 0 0 16px 0; color: var(--ar-header); line-height: 1.2; letter-spacing: -.02em; }
.ar-section-subtitle { font-size: 16px; color: #64748b; line-height: 1.75; margin: 0; }

.ar-grid-2 { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
.ar-grid-3 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.ar-grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 576px) { .ar-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) {
    .ar-grid-2 { grid-template-columns: 1fr 1fr; }
    .ar-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .ar-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   CARDS & FEATURES
   ========================================= */
.ar-feature { display: flex; gap: 18px; margin-bottom: 32px; }
.ar-feature-icon {
    background: linear-gradient(135deg, var(--ar-header), #1a3d35); padding: 8px; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--ar-accent);
    border-radius: 12px;
}
.ar-feature-icon svg { width: 24px; height: 24px; }
.ar-feature-title { color: var(--ar-header); font-weight: 700; font-size: 17px; margin: 0 0 6px 0; }
.ar-feature-desc { color: #475569; font-size: 14px; line-height: 1.65; margin: 0; }

.ar-card {
    background: var(--ar-white); border: 1px solid var(--ar-border); padding: 36px 28px;
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s cubic-bezier(.4,0,.2,1), border-color .25s ease;
    height: 100%; display: flex; flex-direction: column; border-radius: 12px;
}
.ar-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -6px rgba(0, 0, 0, 0.1); border-color: rgba(100,220,164,.35); }
.ar-card-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(100, 220, 164, 0.1), rgba(126, 188, 78, 0.06));
    border: 1px solid rgba(100, 220, 164, 0.18); color: var(--ar-accent);
}
.ar-card-icon svg { width: 26px; height: 26px; }
.ar-card-title { font-size: 18px; font-weight: 700; color: var(--ar-header); margin: 0 0 10px 0; }
.ar-card-desc { font-size: 14px; color: #475569; line-height: 1.65; margin: 0; flex-grow: 1; }

.ar-trust-bar { background-color: var(--ar-header); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 24px 0; }
.ar-trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; opacity: 0.7; }
.ar-trust-item { color: var(--ar-white); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.ar-trust-item svg { width: 18px; height: 18px; color: var(--ar-accent); }

/* =========================================
   UI MOCKUPS & DASHBOARDS
   ========================================= */
.ar-ui-box {
    background-color: #fbfcfd; border: 1px solid rgba(0,0,0,.06);
    padding: 32px; position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 32px -4px rgba(0,0,0,.08);
    border-radius: 14px;
}
.ar-ui-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--ar-border); padding-bottom: 16px; margin-bottom: 24px; }
.ar-ui-title { color: var(--ar-header); font-weight: 700; font-size: 18px; margin: 0; }
.ar-ui-status { color: #94a3b8; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.ar-ui-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ar-ui-deco {
    position: absolute; top: -1px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ar-accent), var(--ar-lime));
    border-radius: 8px 8px 0 0;
}
.ar-content-text { font-size: 15px; color: #475569; line-height: 1.7; margin: 0 0 32px 0; }

/* Landing Metrics */
.ar-metric-card { background: var(--ar-white); border: 1px solid var(--ar-border); padding: 24px; border-radius: 8px; }
.ar-metric-label { color: #64748b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 8px 0; }
.ar-metric-value { color: var(--ar-header); font-size: 32px; font-weight: 700; margin: 0; }
.ar-metric-unit { font-size: 18px; color: #94a3b8; }
.ar-progress-bg { background-color: #f1f5f9; height: 4px; width: 100%; margin-top: 16px; }
.ar-progress-fill-accent { background-color: var(--ar-accent); height: 100%; width: 94%; }
.ar-progress-fill-lime { background-color: var(--ar-lime); height: 100%; width: 2%; }

/* Phishing Funnel & Lists */
.ar-funnel-card { background: var(--ar-white); border: 1px solid var(--ar-border); padding: 20px; text-align: center; border-radius: 8px; }
.ar-funnel-label { color: #64748b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 8px 0; }
.ar-funnel-value { color: var(--ar-header); font-size: 28px; font-weight: 700; margin: 0 0 12px 0; }
.ar-funnel-bar { height: 4px; width: 100%; background: #f1f5f9; }
.ar-funnel-fill { height: 100%; }

.ar-step-list { list-style: none; padding: 0; margin: 0; counter-reset: ar-counter; }
.ar-step-item { position: relative; padding-left: 64px; margin-bottom: 40px; }
.ar-step-item::before {
    counter-increment: ar-counter; content: counter(ar-counter);
    position: absolute; left: 0; top: 0; width: 40px; height: 40px;
    background: var(--ar-header); color: var(--ar-white);
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
}
.ar-step-title { font-size: 20px; font-weight: 700; color: var(--ar-header); margin: 0 0 8px 0; }
.ar-step-desc { font-size: 15px; color: #475569; line-height: 1.6; margin: 0; }

/* E-Learning Gamification & Player */
.ar-user-profile { background: var(--ar-white); border: 1px solid var(--ar-border); padding: 24px; border-radius: 8px; }
.ar-user-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.ar-avatar { width: 56px; height: 56px; background: var(--ar-header); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ar-white); font-weight: 700; font-size: 20px; }
.ar-user-info h4 { margin: 0 0 4px 0; color: var(--ar-header); font-size: 18px; font-weight: 700; }
.ar-user-info p { margin: 0; color: #64748b; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.ar-xp-container { margin-bottom: 24px; background: var(--ar-gray); padding: 16px; border-radius: 6px; border: 1px solid var(--ar-border); }
.ar-xp-labels { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--ar-header); margin-bottom: 8px; }
.ar-xp-bar-bg { height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.ar-xp-bar-fill { height: 100%; background: linear-gradient(90deg, var(--ar-accent), var(--ar-lime)); width: 75%; }
.ar-badges-title { font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 12px 0; }
.ar-badges-grid { display: flex; gap: 12px; }
.ar-badge { width: 48px; height: 48px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--ar-gold); position: relative; cursor: help; }
.ar-badge svg { width: 24px; height: 24px; }
.ar-badge-tooltip { position: absolute; bottom: -30px; background: var(--ar-header); color: var(--ar-white); font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; opacity: 0; transition: opacity 0.2s; white-space: nowrap; pointer-events: none; z-index: 10; }
.ar-badge:hover .ar-badge-tooltip { opacity: 1; }

.ar-course-video { height: 200px; background: #0f1c19; display: flex; align-items: center; justify-content: center; position: relative; border-radius: 8px 8px 0 0;}
.ar-play-btn { width: 64px; height: 64px; background: rgba(100, 220, 164, 0.2); border: 2px solid var(--ar-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ar-accent); }
.ar-play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.ar-course-content { padding: 20px; background: var(--ar-white); border-top: 1px solid var(--ar-border); border-radius: 0 0 8px 8px;}
.ar-course-module { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--ar-border); }
.ar-course-module:last-child { border-bottom: none; padding-bottom: 0; }
.ar-module-name { font-size: 14px; font-weight: 600; color: var(--ar-header); display: flex; align-items: center; gap: 8px; }
.ar-module-meta { font-size: 12px; color: #64748b; font-weight: 600; }
.ar-status-icon { color: var(--ar-lime); width: 16px; height: 16px; }

/* Reporting Tables & Dashboards */
.ar-ui-box-clean { padding: 0; overflow: hidden; }
.ar-ui-header-clean { background: var(--ar-gray); padding: 20px 24px; }
.ar-dashboard-actions { display: flex; gap: 12px; }
.ar-dash-btn { padding: 6px 12px; border: 1px solid #cbd5e1; background: var(--ar-white); color: #475569; font-size: 12px; font-weight: 600; border-radius: 4px; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.ar-kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px; border-bottom: 1px solid var(--ar-border); }
.ar-kpi-card { border: 1px solid var(--ar-border); padding: 16px; border-radius: 8px; }
.ar-kpi-label { font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; margin: 0 0 8px 0; letter-spacing: 0.05em; }
.ar-kpi-value { font-size: 28px; font-weight: 800; color: var(--ar-header); margin: 0; }
.ar-kpi-sub { font-size: 12px; color: #94a3b8; margin: 4px 0 0 0; }
.ar-table-wrap { padding: 0 24px 24px 24px; }
.ar-table-header { display: grid; grid-template-columns: 2fr 2fr 1.5fr 1.5fr; padding: 12px 0; border-bottom: 1px solid var(--ar-border); font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; }
.ar-table-row { display: grid; grid-template-columns: 2fr 2fr 1.5fr 1.5fr; padding: 16px 0; border-bottom: 1px solid #f1f5f9; align-items: center; font-size: 13px; }
.ar-table-row:last-child { border-bottom: none; }
.ar-td-main { font-weight: 700; color: var(--ar-header); }
.ar-td-sub { color: #64748b; font-size: 11px; display: block; margin-top: 2px; }
.ar-progress-wrap { display: flex; align-items: center; gap: 8px; }
.ar-mini-bar-bg { width: 60px; height: 4px; background: #e2e8f0; }
.ar-mini-bar-fill { height: 100%; background: var(--ar-lime); }
.ar-status-badge { display: inline-block; padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 4px; }
.ar-status-done { background: rgba(126, 188, 78, 0.1); color: var(--ar-lime); }
.ar-status-pending { background: rgba(245, 158, 11, 0.1); color: var(--ar-gold); }

/* =========================================
   STATS BAR (Social Proof Zahlen)
   ========================================= */
.ar-stats-bar { background: var(--ar-white); border-top: 1px solid var(--ar-border); border-bottom: 1px solid var(--ar-border); padding: 64px 0; }
.ar-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; text-align: center; }
@media (min-width: 768px) { .ar-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.ar-stat-value { font-size: 42px; font-weight: 800; color: var(--ar-header); margin: 0 0 8px 0; line-height: 1; }
.ar-stat-value span { color: var(--ar-accent); }
.ar-stat-label { font-size: 13px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }

/* =========================================
   FEATURE GRID (6 Features, 2 Spalten)
   ========================================= */
.ar-features-grid { display: grid; grid-template-columns: 1fr; gap: 48px 64px; }
@media (min-width: 768px) { .ar-features-grid { grid-template-columns: 1fr 1fr; } }
.ar-feature-item { display: flex; gap: 20px; align-items: flex-start; }
.ar-feature-icon-box {
    width: 52px; height: 52px; min-width: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(100, 220, 164, 0.12), rgba(126, 188, 78, 0.08));
    border: 1px solid rgba(100, 220, 164, 0.2);
    color: var(--ar-accent);
}
.ar-feature-icon-box svg { width: 24px; height: 24px; }
.ar-feature-item h3 { font-size: 17px; font-weight: 700; color: var(--ar-header); margin: 0 0 8px 0; }
.ar-feature-item p { font-size: 14px; color: #475569; line-height: 1.65; margin: 0; }

/* =========================================
   PRICING TABLE
   ========================================= */
.ar-pricing-section { background: var(--ar-gray); border-top: 1px solid var(--ar-border); border-bottom: 1px solid var(--ar-border); }
.ar-pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .ar-pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.ar-price-card {
    background: var(--ar-white); border: 1px solid var(--ar-border); padding: 40px 32px; border-radius: 8px;
    display: flex; flex-direction: column; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ar-price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); }
.ar-price-card.featured {
    border-color: var(--ar-accent); box-shadow: 0 0 0 1px var(--ar-accent);
}
.ar-price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--ar-header); color: var(--ar-white); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 16px; white-space: nowrap; border-radius: 4px;
}
.ar-price-name { font-size: 22px; font-weight: 800; color: var(--ar-header); margin: 0 0 8px 0; }
.ar-price-desc { font-size: 14px; color: #64748b; margin: 0 0 24px 0; line-height: 1.5; }
.ar-price-amount { font-size: 48px; font-weight: 800; color: var(--ar-header); margin: 0; line-height: 1; }
.ar-price-amount span { font-size: 16px; font-weight: 600; color: #94a3b8; }
.ar-price-interval { font-size: 13px; color: #94a3b8; margin: 4px 0 32px 0; }
.ar-price-features { list-style: none; padding: 0; margin: 0 0 32px 0; flex-grow: 1; }
.ar-price-features li {
    font-size: 14px; color: #475569; padding: 10px 0; border-bottom: 1px solid #f1f5f9;
    display: flex; align-items: center; gap: 10px;
}
.ar-price-features li:last-child { border-bottom: none; }
.ar-price-features .check { color: var(--ar-accent); width: 18px; height: 18px; flex-shrink: 0; }
.ar-price-features .dash { color: #cbd5e1; width: 18px; height: 18px; flex-shrink: 0; }

.ar-btn-pricing {
    display: block; width: 100%; padding: 14px 24px; text-align: center; border-radius: 6px;
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    text-decoration: none; border: 1px solid var(--ar-border); color: var(--ar-header);
    background: var(--ar-white); transition: all 0.3s ease; cursor: pointer;
}
.ar-btn-pricing:hover { border-color: var(--ar-header); background: var(--ar-header); color: var(--ar-white); }
.ar-btn-pricing.primary {
    background: var(--ar-header); color: var(--ar-white); border-color: var(--ar-header);
}
.ar-btn-pricing.primary:hover { background: #1a3d35; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.ar-testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .ar-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.ar-testimonial {
    background: var(--ar-white); border: 1px solid var(--ar-border); padding: 32px; border-radius: 8px;
    display: flex; flex-direction: column;
}
.ar-testimonial-text { font-size: 15px; color: #475569; line-height: 1.7; margin: 0 0 24px 0; flex-grow: 1; font-style: italic; }
.ar-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ar-testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--ar-header);
    display: flex; align-items: center; justify-content: center;
    color: var(--ar-white); font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.ar-testimonial-name { font-size: 14px; font-weight: 700; color: var(--ar-header); margin: 0; }
.ar-testimonial-role { font-size: 12px; color: #94a3b8; margin: 2px 0 0 0; }

/* =========================================
   FAQ SECTION
   ========================================= */
.ar-faq-list { max-width: 800px; margin: 0 auto; }
.ar-faq-item { border-bottom: 1px solid var(--ar-border); }
.ar-faq-question {
    width: 100%; padding: 24px 0; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600; color: var(--ar-header);
    text-align: left; transition: color 0.2s;
}
.ar-faq-question:hover { color: var(--ar-accent); }
.ar-faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: #94a3b8; transition: transform 0.3s ease; }
.ar-faq-item.open .ar-faq-question svg { transform: rotate(180deg); color: var(--ar-accent); }
.ar-faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.ar-faq-item.open .ar-faq-answer { max-height: 300px; }
.ar-faq-answer p { font-size: 14px; color: #475569; line-height: 1.7; margin: 0; padding: 0 0 24px 0; }

/* =========================================
   LOGO BAR (Partner/Kunden)
   ========================================= */
.ar-logo-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px; }
.ar-industry-badge {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; background: var(--ar-white);
    border: 1px solid var(--ar-border); border-radius: 6px;
    font-size: 13px; font-weight: 600; color: var(--ar-header);
    transition: border-color 0.2s ease;
}
.ar-industry-badge:hover { border-color: var(--ar-accent); }
.ar-industry-badge svg { width: 18px; height: 18px; color: var(--ar-accent); flex-shrink: 0; }

/* =========================================
   CTA & FOOTER
   ========================================= */
.ar-cta { text-align: center; padding: 80px 24px; }
.ar-cta .ar-section-title { letter-spacing: -.02em; }
.ar-cta .ar-content-text { color: rgba(255,255,255,.55); }

.ar-footer { background-color: var(--ar-dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 40px 0; }
.ar-footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 64px; }
@media (min-width: 768px) { .ar-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.ar-footer-title { color: var(--ar-white); font-size: 16px; font-weight: 700; margin: 0 0 24px 0; }
.ar-footer-desc { color: var(--ar-text-light); font-size: 14px; line-height: 1.6; margin: 0 0 24px 0; max-width: 300px; }
.ar-footer-links { list-style: none; padding: 0; margin: 0; }
.ar-footer-links li { margin-bottom: 12px; }
.ar-footer-links a { color: var(--ar-text-light); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.ar-footer-links a:hover { color: var(--ar-accent); }
.ar-footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .ar-footer-bottom { flex-direction: row; } }
.ar-footer-copy { color: #64748b; font-size: 13px; margin: 0; }

/* =========================================
   DARK SECTION VARIANT
   ========================================= */
.ar-section-dark {
    background: linear-gradient(160deg, #0a1512 0%, var(--ar-header) 60%, #132e28 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ar-title-light { color: var(--ar-white) !important; }
.ar-text-muted { color: rgba(255,255,255,0.55) !important; }

/* =========================================
   OVERLINE LABEL (Konsistentes Muster)
   ========================================= */
.ar-overline {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--ar-lime); margin: 0 0 16px 0;
}
.ar-overline-light { color: var(--ar-accent); }

/* =========================================
   PROBLEM SECTION (Industrie-Statistiken)
   ========================================= */
.ar-problem-stat {
    text-align: center; padding: 40px 24px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; transition: border-color 0.3s ease, transform 0.3s ease;
}
.ar-problem-stat:hover { border-color: rgba(100, 220, 164, 0.3); transform: translateY(-3px); }
.ar-problem-value {
    font-size: 48px; font-weight: 800; color: var(--ar-accent);
    margin: 0 0 12px 0; line-height: 1;
}
.ar-problem-label {
    font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 0 16px 0;
}
.ar-problem-source {
    font-size: 11px; color: rgba(255,255,255,0.3); margin: 0;
    font-weight: 500; font-style: italic;
}

/* =========================================
   PRODUCT PILLAR CARDS
   ========================================= */
.ar-pillar-card {
    background: var(--ar-white); border: 1px solid var(--ar-border);
    padding: 40px 32px; border-radius: 8px; display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ar-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    border-color: var(--ar-accent);
}
.ar-pillar-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(100, 220, 164, 0.12), rgba(126, 188, 78, 0.08));
    border: 1px solid rgba(100, 220, 164, 0.2);
    color: var(--ar-accent); margin-bottom: 24px;
}
.ar-pillar-icon svg { width: 28px; height: 28px; }
.ar-pillar-title { font-size: 20px; font-weight: 700; color: var(--ar-header); margin: 0 0 12px 0; }
.ar-pillar-desc { font-size: 14px; color: #475569; line-height: 1.7; margin: 0; flex-grow: 1; }
.ar-pillar-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--ar-accent);
    text-decoration: none; margin-top: 24px; transition: gap 0.2s ease;
}
.ar-pillar-link:hover { gap: 12px; }
.ar-pillar-link span { transition: transform 0.2s ease; }
.ar-pillar-link:hover span { transform: translateX(4px); }

/* =========================================
   HOW IT WORKS TIMELINE
   ========================================= */
.ar-timeline {
    max-width: 700px; margin: 0 auto;
    position: relative; padding-left: 0;
}
.ar-timeline::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: var(--ar-border);
}
.ar-timeline-step {
    display: flex; gap: 24px; align-items: flex-start;
    margin-bottom: 48px; position: relative;
}
.ar-timeline-step:last-child { margin-bottom: 0; }
.ar-timeline-number {
    width: 56px; height: 56px; min-width: 56px; border-radius: 50%;
    background: var(--ar-header); color: var(--ar-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; position: relative; z-index: 1;
}
.ar-timeline-content h3 {
    font-size: 18px; font-weight: 700; color: var(--ar-header);
    margin: 8px 0 8px 0;
}
.ar-timeline-content p {
    font-size: 14px; color: #475569; line-height: 1.7; margin: 0;
}

/* =========================================
   DIFFERENTIATOR CARDS (Warum Aronion)
   ========================================= */
.ar-diff-card {
    text-align: center; padding: 32px 24px;
    background: var(--ar-white); border: 1px solid var(--ar-border); border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ar-diff-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px -8px rgba(0,0,0,0.08); }
.ar-diff-icon {
    width: 48px; height: 48px; margin: 0 auto 16px auto;
    display: flex; align-items: center; justify-content: center;
    color: var(--ar-accent);
}
.ar-diff-icon svg { width: 28px; height: 28px; }
.ar-diff-title { font-size: 15px; font-weight: 700; color: var(--ar-header); margin: 0 0 8px 0; }
.ar-diff-desc { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1; transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* =========================================
   COMPARISON TABLE
   ========================================= */
.ar-compare-table {
    border: 1px solid var(--ar-border); border-radius: 8px; overflow: hidden;
    background: var(--ar-white);
}
.ar-compare-header {
    display: grid; grid-template-columns: 2fr repeat(3, 1fr);
    background: var(--ar-header); color: var(--ar-white);
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.ar-compare-header > div { padding: 16px 20px; }
.ar-compare-row {
    display: grid; grid-template-columns: 2fr repeat(3, 1fr);
    border-bottom: 1px solid var(--ar-border);
    font-size: 14px; color: #475569;
}
.ar-compare-row:last-child { border-bottom: none; }
.ar-compare-row > div { padding: 14px 20px; display: flex; align-items: center; }
.ar-compare-feature { font-weight: 600; color: var(--ar-header); }
.ar-compare-highlight {
    background: rgba(100, 220, 164, 0.06);
    color: var(--ar-header) !important; font-weight: 600;
}
.ar-compare-header .ar-compare-highlight {
    background: rgba(100, 220, 164, 0.15); color: var(--ar-accent) !important;
}

/* Subpage Hero Badges (matching landing) */
.ar-hero-phishing .ar-hero-badge,
.ar-hero-elearning .ar-hero-badge,
.ar-hero-reporting .ar-hero-badge {
    margin-bottom: 24px;
}
.ar-hero-phishing .ar-hero-title,
.ar-hero-elearning .ar-hero-title,
.ar-hero-reporting .ar-hero-title {
    max-width: 800px;
}

/* =========================================
   HERO TRUST PILLS (SoSafe-Style)
   ========================================= */
.ar-hero-trust {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px;
}
.ar-hero .ar-hero-trust { justify-content: center; }
.ar-hero-phishing .ar-hero-trust,
.ar-hero-elearning .ar-hero-trust,
.ar-hero-reporting .ar-hero-trust { justify-content: flex-start; }
.ar-trust-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 100px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
    white-space: nowrap;
}
.ar-trust-pill svg { width: 14px; height: 14px; color: var(--ar-accent); flex-shrink: 0; }

/* =========================================
   RESULT CARDS (Typische Ergebnisse)
   ========================================= */
.ar-result-card {
    background: var(--ar-white); border: 1px solid var(--ar-border); border-radius: 12px;
    padding: 32px 28px; position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ar-result-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.ar-result-tag {
    display: inline-block; padding: 4px 10px; border-radius: 4px;
    background: rgba(100,220,164,0.1); color: var(--ar-accent);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.ar-result-headline {
    font-size: 20px; font-weight: 700; color: var(--ar-header); margin: 0 0 12px 0; line-height: 1.3;
}
.ar-result-desc {
    font-size: 14px; color: #64748b; line-height: 1.6; margin: 0 0 20px 0;
}
.ar-result-metric {
    display: flex; gap: 24px; border-top: 1px solid var(--ar-border); padding-top: 20px;
}
.ar-result-metric-item { text-align: center; flex: 1; }
.ar-result-metric-value {
    font-size: 28px; font-weight: 800; color: var(--ar-accent); margin: 0;
}
.ar-result-metric-label {
    font-size: 11px; color: #94a3b8; margin: 4px 0 0 0; text-transform: uppercase;
    font-weight: 600; letter-spacing: 0.03em;
}

/* =========================================
   INTEGRATION GRID
   ========================================= */
.ar-integration-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.ar-integration-item {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 28px 24px; background: var(--ar-white); border: 1px solid var(--ar-border);
    border-radius: 12px; min-width: 160px; flex: 1; max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ar-integration-item:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.ar-integration-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(100,220,164,0.08); border-radius: 12px; color: var(--ar-header);
}
.ar-integration-icon svg { width: 28px; height: 28px; }
.ar-integration-name { font-size: 13px; font-weight: 700; color: var(--ar-header); text-align: center; }

/* =========================================
   FOOTER COMPLIANCE BADGES
   ========================================= */
.ar-footer-badges {
    display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.ar-compliance-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 6px;
    background: rgba(100,220,164,0.08); border: 1px solid rgba(100,220,164,0.15);
    color: var(--ar-accent); font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ar-compliance-badge svg { width: 14px; height: 14px; }

/* =========================================
   MOBILE RESPONSIVE FIXES
   ========================================= */
@media (max-width: 768px) {
    .ar-kpi-grid { grid-template-columns: 1fr; }
    .ar-table-header { display: none; }
    .ar-table-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
    .ar-hero-title { font-size: 28px; }
    .ar-hero-text { font-size: 15px; }
    .ar-section { padding: 72px 0; }
    .ar-section-title { font-size: 24px; }
    .ar-stat-value { font-size: 32px; }
    .ar-price-amount { font-size: 36px; }
    .ar-problem-value { font-size: 36px; }
    .ar-timeline::before { left: 20px; }
    .ar-timeline-number { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
    .ar-timeline-step { gap: 16px; }
    .ar-compare-header,
    .ar-compare-row { grid-template-columns: 1fr; }
    .ar-compare-header > div:first-child,
    .ar-compare-row > .ar-compare-feature { display: none; }
    .ar-compare-header > div,
    .ar-compare-row > div { padding: 10px 16px; font-size: 13px; }
    .ar-compare-row { border-bottom: 2px solid var(--ar-border); }
    .ar-features-grid { gap: 32px 32px; }
    .ar-hero-trust { gap: 8px; }
    .ar-trust-pill { font-size: 10px; padding: 4px 10px; }
    .ar-result-metric { flex-direction: column; gap: 12px; }
    .ar-result-metric-item { text-align: left; display: flex; align-items: baseline; gap: 8px; }
    .ar-integration-grid { gap: 12px; }
    .ar-integration-item { min-width: 130px; padding: 20px 16px; }
    .ar-footer-badges { justify-content: center; }
}