/* ==========================================================================
   AusschreibungsRadar — Main Stylesheet
   Design: Stripe/Vercel-level B2B, ultra-clean, minimal
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Accessibility
   -------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--blue-600, #2563eb);
    color: #fff;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --gray-950: #0a0f1a;
    --gray-900: #1a1f36;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;
    --white:    #ffffff;

    --blue-50:  #eff6ff;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;

    --green-600: #16a34a;
    --green-700: #15803d;

    --red-500:   #ef4444;
    --amber-500: #f59e0b;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-xs:  0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg:  0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl:  0 20px 48px rgba(0, 0, 0, 0.1);
    --shadow-focus: 0 0 0 3px rgba(37, 99, 235, 0.12);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;

    /* Borders */
    --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
    --border-default: 1px solid var(--gray-200);

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;

    --nav-height: 64px;
}


/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 1rem);
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--blue-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--blue-700);
}

:focus-visible {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
    border-radius: 2px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
    box-shadow: var(--shadow-focus);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 1.875rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* -- Unified Form Input Base Styles -- */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
select,
textarea {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-focus);
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-500);
}


/* --------------------------------------------------------------------------
   3. Utility Classes
   -------------------------------------------------------------------------- */
.container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.text-muted    { color: var(--gray-500); }
.text-accent   { color: var(--blue-600); }
.text-heading  { color: var(--gray-900); }
.text-small    { font-size: 0.875rem; }
.text-xs       { font-size: 0.75rem; }
.text-center   { text-align: center; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.mt-1          { margin-top: 0.5rem; }
.mt-2          { margin-top: 1rem; }
.mt-3          { margin-top: 1.5rem; }
.mt-4          { margin-top: 2rem; }
.mb-1          { margin-bottom: 0.5rem; }
.mb-2          { margin-bottom: 1rem; }
.mb-3          { margin-bottom: 1.5rem; }
.mb-4          { margin-bottom: 2rem; }
.tnum          { font-feature-settings: 'tnum' 1; }


/* --------------------------------------------------------------------------
   4. Navbar (.nav)
   -------------------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.3s, border-color 0.3s;
}

.nav--dark {
    background: rgba(10, 15, 26, 0.6);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav--dark .nav__logo { color: var(--white); }
.nav--dark .nav__links a { color: rgba(255, 255, 255, 0.7); }
.nav--dark .nav__links a:hover { color: var(--white); }
.nav--dark .nav__login { color: rgba(255, 255, 255, 0.7); }
.nav--dark .nav__login:hover { color: var(--white); }
.nav--dark .nav__hamburger span { background: var(--white); }

.nav__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-size: 1.1875rem;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav__logo:hover {
    color: var(--gray-900);
}

.nav__logo strong {
    font-weight: 800;
}

.nav__links {
    display: none;
    gap: 2rem;
}

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.15s ease;
}

.nav__links a:hover {
    color: var(--gray-900);
}

/* Dropdown Navigation */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-trigger {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-sans);
    transition: color var(--transition-fast);
}

.nav__dropdown-trigger:hover {
    color: var(--gray-900);
}

.nav__dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.5;
}

.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    z-index: 200;
}

.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
    display: block;
}

.nav__dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-700);
    transition: background 0.1s, color 0.1s;
    white-space: nowrap;
}

.nav__dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

/* Dark nav dropdown */
.nav--dark .nav__dropdown-trigger { color: rgba(255, 255, 255, 0.7); }
.nav--dark .nav__dropdown-trigger:hover { color: var(--white); }

.nav__login {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.15s ease;
    white-space: nowrap;
}

.nav__login:hover {
    color: var(--gray-900);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--green-600);
    border-radius: 8px;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.nav__cta:hover {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

/* --------------------------------------------------------------------------
   Mobile Optimizations (< 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 639px) {
    /* Hero */
    .lp-hero h1 {
        font-size: 1.75rem;
        letter-spacing: -0.03em;
    }

    .lp-hero__sub {
        font-size: 0.9375rem;
        max-width: none;
    }

    .lp-hero__proof {
        font-size: 0.75rem;
        gap: 0.125rem;
    }

    .lp-hero__branches {
        gap: 0.375rem;
    }

    .lp-hero__branch-tag {
        padding: 0.3rem 0.625rem;
        font-size: 0.75rem;
    }

    .lp-hero__urgency {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    /* Sections */
    .lp-section {
        padding: 3rem 0;
    }

    .lp-section__title {
        font-size: 1.5rem;
    }

    .lp-section__subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Feature Cards */
    .lp-feature-card {
        padding: 1.75rem 1.25rem;
    }

    .lp-feature-card__icon {
        width: 48px;
        height: 48px;
    }

    /* Stats */
    .lp-stats__number {
        font-size: 1.75rem;
    }

    /* Pricing */
    .lp-price-card {
        padding: 1.75rem;
    }

    .lp-price-card--featured {
        transform: none;
        border-width: 2px;
    }

    .lp-price-card__price {
        font-size: 2rem;
    }

    /* Steps */
    .lp-steps {
        gap: 1rem;
    }

    .lp-steps__item {
        padding: 1.5rem 1.25rem;
    }

    /* FAQ */
    .lp-faq__item summary {
        font-size: 0.9375rem;
        gap: 0.75rem;
    }

    /* Founder */
    .lp-founder__text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .lp-founder__text .lp-section__title,
    .lp-founder__title {
        font-size: 1.375rem;
    }

    /* CTA Final */
    .lp-cta-final h2 {
        font-size: 1.375rem;
    }

    /* Preview */
    .lp-preview__bar-title {
        display: none;
    }

    .lp-preview__status {
        font-size: 0.6875rem;
    }

    /* Footer */
    .footer__inner {
        gap: 2rem;
    }

    .footer__links {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* AR Pages — Mobile Breathing Room */
    .ar-page {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }

    .ar-hero {
        padding: 1.25rem 1.25rem;
        margin-bottom: 1rem;
    }

    .ar-hero__title {
        font-size: 1.375rem;
        line-height: 1.3;
    }

    .ar-hero__subtitle {
        margin-top: 0.375rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .ar-stat-card {
        padding: 1.25rem;
    }

    .ar-stat-card__value {
        font-size: 1.5rem;
    }

    .ar-stats-grid {
        gap: 0.625rem;
        margin-bottom: 1.5rem;
    }

    .ar-section {
        padding: 1.75rem 0;
    }

    .ar-section__heading {
        font-size: 1.125rem;
        margin: 1.5rem 0 0.75rem;
    }
    .ar-section__heading:first-child {
        margin-top: 0;
    }

    .ar-intro {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    /* ar-cta-box mobile overrides below desktop block (cascade-safe) */

    /* Breadcrumb: truncate long names. 0.8125rem = Skill-Floor (siehe mobile-typography). */
    .ar-breadcrumb {
        font-size: 0.8125rem;
    }

    .ar-breadcrumb span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 200px;
        display: inline-block;
        vertical-align: bottom;
    }

    /* Analysis preview */
    .ar-analysis-preview {
        margin-top: 1rem;
        min-height: 220px;
    }
    .ar-analysis-preview__blurred {
        padding: 1.5rem 1.25rem 3rem;
    }
    .ar-analysis-preview__overlay {
        padding: 1.5rem 1.125rem;
    }
    .ar-analysis-preview__lock {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    .ar-analysis-preview__overlay h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .ar-analysis-preview__overlay p {
        margin-bottom: 1.25rem;
        font-size: 0.8125rem;
    }
    .ar-analysis-preview__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    /* Search form */
    .ar-search-form button {
        width: 100%;
    }

    /* Card grid */
    .ar-card-grid {
        gap: 0.5rem;
    }

    .ar-card-grid__count {
        font-size: 1.25rem;
    }

    /* Email preview in alerts */
    .ar-email-preview__body {
        padding: 0.75rem;
    }

    /* Premium box */
    .ar-premium-box {
        padding: 1.5rem;
    }

    /* Tables */
    .ar-table th,
    .ar-table td {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }

    /* Notice badges */
    .ar-notice-badges {
        gap: 0.375rem;
    }

    .ar-notice-badges .ar-badge {
        /* Skill-Floor mobile-typography: 0.75rem (12px). Vorher 0.625rem (10px) — verboten. */
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }

    /* Search info */
    .ar-search-info {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        font-weight: 500;
    }

    /* Search tags mobile */
    .ar-search-tags {
        gap: 0.5rem;
    }

    .ar-search-tag {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    /* Search form mobile — see override after defaults */

    /* Similar notices on mobile */
    .ar-similar-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Hide nav CTA on mobile — replaced by sticky footer */
    .nav__cta {
        display: none;
    }
}

@media (min-width: 640px) {
    .nav__links {
        display: flex;
    }

    .nav__mobile-only,
    .nav__mobile-divider {
        display: none;
    }

    .nav__desktop-only {
        display: inline;
    }
}


/* --------------------------------------------------------------------------
   5. Landing Page — Sections (.lp-*)
   -------------------------------------------------------------------------- */

/* -- Section wrapper -- */
.lp-section {
    padding: 3.5rem 0;
}

.lp-section--alt {
    background: var(--gray-50);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

.lp-section__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-600);
    text-align: center;
    margin-bottom: 0.75rem;
}

.lp-section__title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem;
    color: var(--gray-900);
}

.lp-section__subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    text-align: center;
    max-width: 540px;
    margin: 0 auto 3rem;
}

@media (min-width: 1024px) {
    .lp-section {
        padding: 5rem 0;
    }
}


/* -- Dark section variant -- */
.lp-section--dark {
    background: var(--gray-900);
    color: var(--white);
}

.lp-section--dark h2 {
    color: var(--white);
}

.lp-section--dark p {
    color: rgba(255, 255, 255, 0.6);
}

.lp-cta-final--v2 .lp-hero__form--v2 input[type="email"] {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

/* -- Problem cards (stat-driven) -- */
.lp-problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.lp-problem-card {
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.lp-problem-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.lp-problem-card__num {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    line-height: 1;
    font-feature-settings: 'tnum' 1;
}

.lp-problem-card__unit {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-top: 0.375rem;
    margin-bottom: 1rem;
}

.lp-problem-card p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .lp-problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Feature Rows — Stripe-style alternating layout
   -------------------------------------------------------------------------- */
.lp-feat {
    padding: 4rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.lp-feat--alt {
    background: var(--gray-50);
}

.lp-feat__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.lp-feat__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    background: var(--blue-50);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.lp-feat__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.lp-feat__desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 440px;
}

.lp-feat__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
}

.lp-feat__link:hover {
    text-decoration: underline;
}

/* Feature visual card */
.lp-feat__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.lp-feat--alt .lp-feat__card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.03);
}

/* Deadline rows */
.lp-feat__card-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
    color: var(--gray-700);
}

.lp-feat__card-row:last-child { border-bottom: none; }

/* Price bar */
.lp-feat__price-bar {
    display: flex;
    height: 40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.lp-feat__price-seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.lp-feat__price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Winner rows */
.lp-feat__winner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}

.lp-feat__winner-row:last-child { border-bottom: none; }
.lp-feat__winner-row strong { color: var(--gray-900); }
.lp-feat__winner-row span { color: var(--gray-500); font-size: 0.8125rem; font-feature-settings: 'tnum' 1; }

/* Stat rows */
.lp-feat__stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.lp-feat__stat-row:last-child { border-bottom: none; }
.lp-feat__stat-row strong { color: var(--gray-900); font-feature-settings: 'tnum' 1; }

/* Alert items */
.lp-feat__alert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}

.lp-feat__alert-item:last-child { border-bottom: none; }

.lp-feat__alert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-600);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(22, 163, 74, 0.3);
}

.lp-feat__alert-dot--blue {
    background: var(--blue-600);
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.3);
}

@media (min-width: 768px) {
    .lp-feat__inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .lp-feat__inner--reverse {
        direction: rtl;
    }

    .lp-feat__inner--reverse > * {
        direction: ltr;
    }

    .lp-feat__title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .lp-feat {
        padding: 5rem 0;
    }

    .lp-feat__inner {
        gap: 5rem;
    }

    .lp-feat__title {
        font-size: 2.25rem;
    }
}


/* More features compact grid */
.lp-more-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.lp-more-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.lp-more-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.lp-more-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.lp-more-card p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .lp-more-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Legacy hero styles (kept for non-v2 usage) */
.lp-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
}

.lp-hero .container {
    max-width: 720px;
}

.lp-hero h1 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--blue-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero .lp-section__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-600);
    margin-bottom: 1rem;
}

.lp-hero__sub {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.lp-hero p {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.lp-hero__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

.lp-hero__form input[type="email"] {
    width: 100%;
    height: 52px;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-hero__form input[type="email"]::placeholder {
    color: var(--gray-500);
}

.lp-hero__form input[type="email"]:focus {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-focus);
    outline: none;
}

.lp-hero__form button {
    height: 52px;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--white);
    background: var(--green-600);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.lp-hero__form button:hover {
    background: var(--green-700);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.lp-hero__proof {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-feature-settings: 'tnum' 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.lp-hero__proof-check {
    color: var(--green-600);
    font-weight: 700;
}

.lp-hero__proof-sep {
    color: var(--gray-200);
    margin: 0 0.375rem;
}

.lp-hero__urgency {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-600);
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.15);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    font-feature-settings: 'tnum' 1;
    animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}


/* Hero pill badge */
.lp-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.lp-hero__pill--light {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-600);
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.lp-hero__pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-600);
    animation: pill-pulse 2s ease-in-out infinite;
}

@keyframes pill-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --------------------------------------------------------------------------
   Hero Light — Stripe/Apple aesthetic
   -------------------------------------------------------------------------- */
.lp-hero--light {
    padding: 5.5rem 0 3.5rem;
    text-align: center;
    background: linear-gradient(180deg, #f8fafb 0%, var(--white) 60%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.lp-hero--light::before {
    content: "";
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 800px;
    background:
        radial-gradient(ellipse 500px 350px at 25% 35%, rgba(22, 163, 74, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 450px 300px at 75% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 300px 200px at 50% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero--light .container {
    position: relative;
    max-width: 720px;
}

.lp-hero--light .lp-hero__h1 {
    font-size: 2.875rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--gray-900) 60%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__h1-light {
    font-weight: 500;
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__sub2 {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto 2.25rem;
    line-height: 1.75;
}

.hide-mobile { display: none; }

/* Metrics row inside hero */
.lp-hero__metrics {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.lp-hero__metric {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid var(--gray-200);
}

.lp-hero__metric:last-child {
    border-right: none;
}

.lp-hero__metric-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum' 1;
    white-space: nowrap;
}

.lp-hero__metric-num--green {
    color: var(--green-600);
}

.lp-hero__metric-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Light form */
.lp-hero__form--light {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto 1.75rem;
}

.lp-hero__form--light input[type="email"] {
    width: 100%;
    height: 52px;
    padding: 0 1.25rem;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-hero__form--light input[type="email"]::placeholder {
    color: var(--gray-500);
}

.lp-hero__form--light input[type="email"]:focus {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-focus);
    outline: none;
}

.lp-hero__form--light button {
    height: 52px;
    padding: 0 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--white);
    background: var(--green-600);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.2s, transform 0.1s;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(22, 163, 74, 0.15);
}

.lp-hero__form--light button:hover {
    background: var(--green-700);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 6px 20px rgba(22, 163, 74, 0.2);
    transform: translateY(-1px);
}

/* Light trust badges */
.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.375rem 1.25rem;
    margin-top: 1.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.lp-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.lp-hero__trust--light {
    color: var(--gray-500);
}

.lp-hero__trust-sep {
    display: none;
}

/* Interactive search demo */
.lp-demo {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    position: relative;
}

/* Stripe-style ambient glow behind the search pill */
.lp-demo::before {
    content: "";
    position: absolute;
    inset: -24px -40px;
    background: radial-gradient(60% 80% at 50% 50%, rgba(22, 163, 74, 0.18) 0%, rgba(37, 99, 235, 0.12) 35%, rgba(37, 99, 235, 0) 70%);
    filter: blur(24px);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.lp-demo:focus-within::before {
    opacity: 1;
}

.lp-demo__search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 32px -12px rgba(15, 23, 42, 0.18);
    padding: 6px 6px 6px 22px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.lp-demo__search:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 18px 44px -14px rgba(15, 23, 42, 0.24);
    transform: translateY(-1px);
}

.lp-demo__search:focus-within {
    border-color: rgba(22, 163, 74, 0.5);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12), 0 18px 44px -14px rgba(15, 23, 42, 0.24);
}

.lp-demo__icon {
    flex-shrink: 0;
    color: var(--gray-400);
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.lp-demo__search:focus-within .lp-demo__icon {
    color: var(--green-600);
}

.lp-demo__input {
    flex: 1;
    min-width: 0;
    height: 56px;
    padding: 0;
    font-size: 1.0625rem;
    font-family: var(--font-sans);
    border: none;
    background: transparent;
    color: var(--gray-900);
    box-sizing: border-box;
}

.lp-demo__input:focus {
    outline: none;
}

.lp-demo__input::placeholder {
    color: var(--gray-400);
}

.lp-demo__submit {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 48px;
    padding: 0 1.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--white);
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(21, 128, 61, 0.4), 0 4px 12px rgba(22, 163, 74, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.lp-demo__submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 4px rgba(21, 128, 61, 0.4), 0 8px 20px rgba(22, 163, 74, 0.35);
}

.lp-demo__submit:active {
    transform: translateY(0);
}

.lp-demo__submit svg {
    transition: transform 0.2s ease;
}

.lp-demo__submit:hover svg {
    transform: translateX(2px);
}

.lp-demo__results {
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.lp-demo__result {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    transition: background 0.1s;
}

.lp-demo__result:last-child { border-bottom: none; }
.lp-demo__result:hover { background: var(--gray-50); }

.lp-demo__result-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-demo__result-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.125rem;
}

.lp-demo__empty {
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
}

.lp-demo__gate {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    margin-top: 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
}

.lp-demo__blur {
    flex: 1;
    padding: 0.625rem 1rem;
    position: relative;
    overflow: hidden;
}

.lp-demo__blur::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(4px);
}

.lp-demo__blur-row {
    height: 0.625rem;
    background: var(--gray-200);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    width: 80%;
}

.lp-demo__blur-row:last-child { width: 60%; }

.lp-demo__gate-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: var(--gray-50);
    border-left: 1px solid var(--gray-200);
    text-align: center;
    min-width: 180px;
}

.lp-demo__gate-cta p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.375rem;
}

.lp-demo__gate-btn {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    color: #ffffff !important;
    background-color: #16a34a;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
}

.lp-demo__gate-btn:hover {
    background-color: #15803d;
}

@media (max-width: 639px) {
    .lp-demo {
        max-width: 100%;
    }

    .lp-demo::before {
        inset: -16px -20px;
        filter: blur(18px);
    }

    .lp-demo__search {
        padding: 5px 5px 5px 16px;
    }

    .lp-demo__icon {
        width: 18px;
        height: 18px;
        margin-right: 0.5rem;
    }

    .lp-demo__input {
        height: 52px;
        font-size: 1rem;
    }

    .lp-demo__submit {
        height: 44px;
        padding: 0 1rem;
        font-size: 0.875rem;
    }

    .lp-demo__submit span {
        display: none;
    }

    .lp-demo__submit svg {
        width: 18px;
        height: 18px;
    }

    .lp-demo__gate {
        flex-direction: column;
    }

    .lp-demo__blur { display: none; }

    .lp-demo__gate-cta {
        border-left: none;
        border-top: 1px solid var(--gray-200);
        min-width: auto;
    }
}

/* Stats strip */
.lp-stats-strip {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.lp-stats-strip__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-stats-strip__item {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.lp-stats-strip__num {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    font-feature-settings: 'tnum' 1;
    line-height: 1.1;
    white-space: nowrap;
}

.lp-stats-strip__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-top: 0.375rem;
}

.lp-stats-strip__div {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* Trust strip (between pricing and FAQ) */
.lp-trust-strip {
    padding: 2rem 0;
    text-align: center;
}

@media (max-width: 639px) {
    .lp-hero__metrics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lp-hero__metric-num {
        font-size: 1.125rem;
    }

    .lp-stats-strip__inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 1.5rem 0.75rem;
    }

    .lp-stats-strip__num {
        font-size: 1.5rem;
    }

    .lp-stats-strip__div:nth-of-type(2) {
        display: none;
    }
}

@media (min-width: 640px) {
    .lp-hero__form--light {
        flex-direction: row;
    }

    .lp-hero__form--light input[type="email"] {
        flex: 1;
    }

    .lp-hero__form--light button {
        flex-shrink: 0;
    }

    .hide-mobile { display: inline; }

    .lp-stats-strip__num {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .lp-hero--light {
        padding: 8rem 0 5rem;
    }

    .lp-hero--light .lp-hero__h1 {
        font-size: 3.5rem;
    }

    .lp-hero__metric {
        padding: 0 2rem;
    }

    .lp-hero__metric-num {
        font-size: 1.625rem;
    }

    .lp-stats-strip__num {
        font-size: 3.25rem;
    }
}

.lp-price-card__risk {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.75rem;
    letter-spacing: 0.01em;
}

/* Email Preview Mockup */
.ar-email-preview {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.ar-email-preview__header {
    background: linear-gradient(135deg, var(--gray-900), #1e293b);
    padding: 0.875rem 1rem;
    text-align: center;
    color: var(--white);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.ar-email-preview__body {
    padding: 1rem;
}

.ar-email-preview__item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}

.ar-email-preview__item:last-child {
    border-bottom: none;
}

.lp-trust-bar {
    padding: 2rem 0;
}

.text-center {
    text-align: center;
}

.lp-feature-card__num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-600);
}

.lp-pricing__anchor {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

@media (min-width: 640px) {
    .lp-hero__form {
        flex-direction: row;
    }

    .lp-hero__form input[type="email"] {
        flex: 1;
    }

    .lp-hero__form button {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .lp-hero {
        padding: 6rem 0 4rem;
    }

    .lp-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
}


/* -- Preview (Browser Mockup) -- */
.lp-preview {
    max-width: 960px;
    margin: 2rem auto 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.03),
        0 16px 32px rgba(0, 0, 0, 0.06),
        0 32px 64px rgba(0, 0, 0, 0.04);
}

.lp-preview__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.25rem;
    background: #e8eaed;
    border-bottom: 1px solid var(--gray-200);
}

.lp-preview__dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lp-preview__dot--red    { background: #ff5f57; }
.lp-preview__dot--yellow { background: #febc2e; }
.lp-preview__dot--green  { background: #28c840; }

.lp-preview__bar-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
}

.lp-preview__content {
    padding: 0;
    background: var(--white);
}

/* Dashboard Status Bar */
.lp-preview__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.lp-preview__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28c840;
    flex-shrink: 0;
}

/* Dashboard Preview Table */
.lp-preview__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.lp-preview__table thead {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.lp-preview__table th {
    padding: 0.75rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.lp-preview__table td {
    padding: 0.875rem 1.25rem;
    color: var(--gray-700);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}

.lp-preview__table tbody tr:last-child td {
    border-bottom: none;
}

.lp-preview__table tbody tr {
    transition: background-color 150ms ease;
}

.lp-preview__table tbody tr:hover {
    background: var(--blue-50);
}

.lp-preview__table td:first-child {
    font-weight: 500;
    color: var(--gray-900);
    max-width: 280px;
}

.lp-preview__table td:nth-child(3) {
    font-feature-settings: 'tnum' 1;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
}

.lp-preview__table td:nth-child(4) {
    font-feature-settings: 'tnum' 1;
    color: var(--gray-500);
    font-size: 0.8125rem;
    white-space: nowrap;
}

/* Preview Badge */
.lp-preview__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.1875rem 0.625rem;
    border-radius: 9999px;
    background: var(--blue-50);
    color: var(--blue-600);
    border: 1px solid rgba(37, 99, 235, 0.12);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Mobile: horizontal scroll for preview table */
@media (max-width: 640px) {
    .lp-preview__content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .lp-preview__table {
        min-width: 600px;
    }
}


/* -- Features (3-column grid) -- */
.lp-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.lp-feature-card {
    text-align: left;
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.lp-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.3s ease;
    pointer-events: none;
}

.lp-feature-card:hover::before {
    background: linear-gradient(135deg, var(--blue-600), var(--green-600));
}

.lp-feature-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.lp-feature-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue-50);
    border: 2px solid rgba(37, 99, 235, 0.15);
    color: var(--blue-600);
    font-size: 1.25rem;
    font-weight: 700;
}

.lp-feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lp-feature-card p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .lp-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}


/* -- Stats (4-column grid) -- */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.lp-stats__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-600);
    letter-spacing: -0.03em;
    font-feature-settings: 'tnum' 1;
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--green-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-stats__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .lp-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .lp-stats__number {
        font-size: 3rem;
    }
}


/* -- Pricing (4 tiers: Free / Starter / Business / Professional) -- */
.lp-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 1140px;
    margin: 0 auto;
}

.lp-price-card {
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.lp-price-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.lp-price-card--featured {
    background: var(--white);
    border: 2px solid var(--blue-600);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.lp-price-card--featured:hover {
    transform: scale(1.04) translateY(-1px);
    box-shadow: var(--shadow-xl);
}

.lp-price-card__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-600);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

.lp-price-card__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.lp-price-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum' 1;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lp-price-card__price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-500);
}

.lp-price-card__yearly {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.lp-price-card__features {
    margin-bottom: 1.5rem;
}

.lp-price-card__features li {
    font-size: 0.875rem;
    color: var(--gray-700);
    padding: 0.375rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.lp-price-card__features li::before {
    content: "\2713";
    color: var(--green-600);
    font-weight: 700;
    flex-shrink: 0;
}

.lp-price-card__features li:first-child {
    font-style: italic;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 0.75rem;
    margin-bottom: 0.25rem;
}

.lp-price-card__features li:first-child::before {
    content: "";
}

.lp-price-card__cta {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: var(--border-default);
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-sans);
}

.lp-price-card__cta:hover {
    border-color: var(--gray-900);
    color: var(--gray-900);
}

.lp-price-card--featured .lp-price-card__cta {
    background: var(--green-600);
    border-color: var(--green-600);
    color: var(--white);
}

.lp-price-card--featured .lp-price-card__cta:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

@media (min-width: 640px) {
    .lp-pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-pricing {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .lp-pricing .lp-price-card {
        padding: 2.25rem 1.75rem;
    }
}


/* -- CTA Final -- */
.lp-cta-final {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lp-cta-final h2 {
    margin-bottom: 0.75rem;
}

.lp-cta-final p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.lp-cta-final .lp-hero__form {
    max-width: 420px;
}


/* -- Steps (3-column grid) -- */
.lp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.lp-steps__item {
    text-align: center;
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lp-steps__item:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.lp-steps__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid var(--blue-600);
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: 1.25rem;
    font-weight: 700;
}

.lp-steps__heading {
    margin-bottom: 0.5rem;
}

.lp-steps__item p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .lp-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}


/* --------------------------------------------------------------------------
   6. Data / SEO Pages (.ar-*)
   -------------------------------------------------------------------------- */

/* -- AR Page Container -- */
.ar-page {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* -- AR Hero (light) -- */
.ar-hero {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ar-hero .ar-badge {
    margin-bottom: 0.75rem;
}

/* Notice-Detail Hero (Stripe-Wow Kopfbereich) */
.ar-notice-hero {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem 1.75rem;
    margin: -1rem -1rem 2rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-100);
}

.ar-notice-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.ar-notice-hero__badges .ar-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.75rem;
    letter-spacing: 0.04em;
}

.ar-notice-hero__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--gray-950);
    max-width: 50rem;
    margin: 0 auto 0.5rem;
}

.ar-notice-hero__buyer {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.ar-notice-hero__buyer a {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 500;
}

.ar-notice-hero__buyer a:hover {
    text-decoration: underline;
}

.ar-notice-hero__actions {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    gap: 0.375rem;
}

.ar-notice-hero__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-400);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-xs);
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.ar-notice-hero__action:hover {
    border-color: var(--blue-300);
    color: var(--blue-600);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.ar-notice-hero__action--active {
    border-color: rgba(37, 99, 235, 0.15);
    background: rgba(37, 99, 235, 0.06);
    color: var(--blue-600);
}

.ar-notice-hero__action--active:hover {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.15);
    color: var(--red-500);
}

@media (max-width: 639px) {
    .ar-notice-hero {
        padding: 1.25rem 1rem 1.25rem;
        margin: -0.5rem -0.5rem 1.25rem;
    }
    .ar-notice-hero__title {
        font-size: 1.125rem;
        padding-right: 0;
    }
    .ar-notice-hero__actions {
        position: static;
        justify-content: center;
        margin-bottom: 0.625rem;
    }
    .ar-notice-hero__action {
        width: 32px;
        height: 32px;
    }
    .ar-notice-hero__badges {
        gap: 0.3125rem;
        margin-bottom: 0.75rem;
    }
    .ar-notice-hero__badges .ar-badge,
    .ar-notice-hero__badges .ar-badge--status {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        letter-spacing: 0.04em;
    }
    .ar-notice-hero__badges .ar-badge--hide-mobile {
        display: none;
    }
}

.ar-notice-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ar-analysis__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ar-analysis__icon {
    font-size: 1.125rem;
}

.ar-analysis__title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
    flex: 1;
}

.ar-analysis__ai-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    color: #6d28d9;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: help;
}

.ar-analysis__body {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.ar-analysis__body p {
    margin-bottom: 0.75rem;
}

.ar-analysis__disclaimer {
    margin-top: 1rem;
    padding: 0.75rem 0.875rem;
    background: var(--gray-50);
    border-left: 3px solid var(--gray-300);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.55;
}

.ar-analysis__disclaimer strong {
    color: var(--gray-700);
}

/* Rechtlicher Hinweis unter Signup-Forms (Art. 13 DSGVO) */
.ar-signup-legal {
    font-size: 0.6875rem;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0.625rem auto 0 auto;
    max-width: 520px;
    text-align: center;
}

.ar-signup-legal a {
    color: var(--gray-500);
    text-decoration: underline;
    text-decoration-color: var(--gray-300);
}

.ar-signup-legal a:hover {
    color: var(--gray-700);
}

/* Notice-Beschreibung — eigene BEM-Klasse statt Inline-Style.
   Mobile-Override hebt auf 1rem an (Skill mobile-typography Body-Floor). */
.ar-notice-description {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: break-word;
}
.ar-notice-description p {
    margin-bottom: 0.75rem;
}
.ar-notice-description p:last-child {
    margin-bottom: 0;
}

/* Globale Helper-Klasse für Body-Text der Inline-Styles ersetzt.
   Desktop 0.9375rem (15px), Mobile 1rem (16px) — entspricht Skill-Body-Floor.
   Anwendung: ersetze `style="font-size:0.875rem; color:var(--gray-700); line-height:1.6"`
   durch `class="ar-body-text"`. */
.ar-body-text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.ar-body-text--small {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.55;
}

@media (max-width: 639px) {
    .ar-notice-description,
    .ar-analysis__body,
    .ar-body-text,
    .ar-body-text--small {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.ar-analysis__body p:last-child {
    margin-bottom: 0;
}

/* Analysis Preview with Blur Overlay */
.ar-analysis-preview {
    position: relative;
    margin-top: 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 240px;
}

.ar-analysis-preview__blurred {
    padding: 1.75rem 2rem 3.5rem;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    user-select: none;
    pointer-events: none;
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.7;
    min-height: 200px;
}

.ar-analysis-preview__blurred p {
    margin-bottom: 0.5rem;
}

.ar-analysis-preview__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.75rem 1.5rem;
    gap: 0;
}

.ar-analysis-preview__lock {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.ar-analysis-preview__overlay h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.ar-analysis-preview__overlay p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0 0 1.5rem 0;
    max-width: 340px;
    line-height: 1.5;
}

.ar-analysis-preview__cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--green-600);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.ar-analysis-preview__cta:hover {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.ar-analysis-preview__risk {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.ar-hero__title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.ar-hero__subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .ar-hero {
        padding: 2.5rem 2.5rem;
    }

    .ar-hero__title {
        font-size: 2.25rem;
    }
}


/* -- Breadcrumb -- */
.ar-breadcrumb {
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
}

.ar-breadcrumb a {
    color: var(--gray-500);
}

.ar-breadcrumb a:hover {
    color: var(--blue-600);
}


/* -- Section -- */
.ar-section {
    padding: 2rem 0;
    border-top: 1px solid var(--gray-100);
}

.ar-section:first-of-type {
    border-top: none;
}

.ar-section__heading {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin: 2.5rem 0 1.25rem;
}

/* Reset margin-top wenn die Headline das erste Element ihres Parents
   ist (z.B. direkt am Anfang einer <section class="ar-section"> die
   eigenes padding hat) — sonst doppelter Abstand zur Hero. */
.ar-section__heading:first-child {
    margin-top: 0;
}

/* -- Account Settings Grid (DSGVO Self-Service) -- */
.ar-account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.ar-account-card {
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.625rem;
    box-shadow: var(--shadow-xs);
}
.ar-account-card--danger {
    border-color: rgba(239, 68, 68, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%);
}
.ar-account-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.875rem 0;
    letter-spacing: -0.01em;
}
.ar-account-card--danger .ar-account-card__title {
    color: #b91c1c;
}
.ar-account-card p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin: 0 0 0.75rem 0;
}
.ar-account-card ul {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
    padding-left: 1.25rem;
    margin: 0.5rem 0 0.875rem 0;
}
.ar-account-card ul li {
    margin-bottom: 0.25rem;
}
@media (max-width: 639px) {
    .ar-account-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .ar-account-card {
        padding: 1.125rem 1.25rem;
    }
}


/* -- Stats Grid -- */
.ar-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Stat-Cards: zwei Naming-Varianten parallel unterstuetzen — die alte
   .ar-stat-card und die BEM-Variante .ar-stats-grid__item die in 4
   Templates vergessen wurde zu definieren (branche_detail, branchentrend,
   marktanalyse, vergabeanalyse). Beide bekommen denselben Card-Look. */
.ar-stat-card,
.ar-stats-grid__item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ar-stat-card:hover,
.ar-stats-grid__item:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 20px -8px rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.18);
}

.ar-stat-card__value,
.ar-stats-grid__value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blue-600);
    font-feature-settings: 'tnum' 1;
    letter-spacing: -0.025em;
    line-height: 1.1;
    white-space: nowrap;
}

.ar-stat-card__value--success {
    color: var(--green-600);
}

.ar-stat-card__value--sm,
.ar-stat-card__value--sm.ar-stat-card__value {
    font-size: 1.25rem;
}

.ar-stat-card__label,
.ar-stats-grid__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .ar-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ar-stat-card__value,
    .ar-stats-grid__value {
        font-size: 2rem;
    }
}

/* Mobile (≤639px): vertikales Stat-Card-Layout im echten Stripe-Stil.
   - Value HUGE und prominent center
   - Label center darunter, normal case (NICHT UPPERCASE — bricht
     deutsche Compound-Woerter wie "AUSSCHREIBUNGEN" nicht mehr)
   - Subtler gradient-Hintergrund (white -> gray-50)
   - Top-Color-Bar als Akzent (3px gradient) statt Left-Border
   - Hover/Active scale-Feedback */
@media (max-width: 639px) {
    .ar-stats-grid {
        gap: 0.875rem;
    }

    .ar-stat-card,
    .ar-stats-grid__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
        padding: 1.5rem 1rem 1.25rem;
        position: relative;
        overflow: hidden;
        min-height: 124px;
        background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -16px rgba(37, 99, 235, 0.12);
    }

    /* 3px Top-Akzent als Stripe-Wow */
    .ar-stat-card::before,
    .ar-stats-grid__item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue-600), #4f46e5);
        z-index: 1;
    }

    /* Sehr subtler Radial-Glow von oben fuer Tiefe */
    .ar-stat-card::after,
    .ar-stats-grid__item::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 60%;
        background: radial-gradient(ellipse at top, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    .ar-stat-card:active,
    .ar-stats-grid__item:active {
        transform: scale(0.985);
    }

    .ar-stat-card__value,
    .ar-stats-grid__value {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.035em;
        position: relative;
        z-index: 2;
    }

    /* Label: Mixed Case statt UPPERCASE — verhindert Wrap-Disaster bei
       langen deutschen Woertern. Etwas dunkler + bolder als urspruenglich
       fuer bessere Lesbarkeit ohne aufdringlich zu wirken. */
    .ar-stat-card__label,
    .ar-stats-grid__label {
        margin-top: 0;
        font-size: 0.9375rem;
        font-weight: 600;
        text-transform: none;
        letter-spacing: -0.005em;
        color: var(--gray-700);
        line-height: 1.35;
        position: relative;
        z-index: 2;
    }

    /* Color-Variants: Top-Bar matcht den Wert + matchende Glow */
    .ar-stats-grid__item:has(.ar-stats-grid__value--green)::before {
        background: linear-gradient(90deg, var(--green-600), #15803d);
    }
    .ar-stats-grid__item:has(.ar-stats-grid__value--green)::after {
        background: radial-gradient(ellipse at top, rgba(22, 163, 74, 0.08) 0%, transparent 70%);
    }
    .ar-stats-grid__item:has(.ar-stats-grid__value--red)::before {
        background: linear-gradient(90deg, var(--red-500), #b91c1c);
    }
    .ar-stats-grid__item:has(.ar-stats-grid__value--red)::after {
        background: radial-gradient(ellipse at top, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    }
    .ar-stats-grid__item:has(.ar-stats-grid__value--amber)::before {
        background: linear-gradient(90deg, var(--amber-500), #b45309);
    }
}


/* -- Data Table -- */
.ar-table-wrap {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.ar-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ar-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.ar-table thead {
    background: var(--gray-50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ar-table th {
    text-align: left;
    font-weight: 600;
    color: var(--gray-500);
    padding: 0.75rem 1.25rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.ar-table td {
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}

.ar-table tbody tr:last-child td {
    border-bottom: none;
}

.ar-table tbody tr {
    transition: background-color 0.15s ease;
}

.ar-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.015);
}

.ar-table tbody tr:hover {
    background: var(--blue-50);
}

.ar-table td:first-child {
    font-weight: 500;
    color: var(--gray-900);
}

.ar-table a {
    font-weight: 500;
}


/* -- Badges -- */
.ar-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 9999px;
    background: var(--gray-100);
    color: var(--gray-700);
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ar-badge--sector {
    background: var(--blue-50);
    color: var(--blue-600);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.ar-badge--blue {
    background: var(--blue-50);
    color: var(--blue-600);
}

.ar-badge--sme {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-600);
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.ar-badge--green {
    background: rgba(22, 163, 74, 0.08);
    color: #15803d;
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.ar-badge--eu {
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-600);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.ar-badge--national {
    background: rgba(107, 114, 128, 0.08);
    color: var(--gray-700);
    border: 1px solid rgba(107, 114, 128, 0.15);
}

.ar-badge--other {
    background: rgba(107, 114, 128, 0.06);
    color: var(--gray-500);
    border: 1px solid rgba(107, 114, 128, 0.12);
}

.ar-badge--warn {
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* Frist verlängert — sanftes Amber, soll Aufmerksamkeit ohne Alarm wecken */
.ar-badge--extended {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.25);
    font-weight: 600;
}

/* Stillhaltefrist-Card §134 GWB — Hinweis bei jungen result-Notices.
   Bewusst informativ, KEIN rechtsverbindlicher Countdown — die Frist beginnt
   mit der Information durch den Auftraggeber, die wir nicht kennen. */
.ar-standstill-card {
    margin-top: 1rem;
    padding: 1.125rem 1.25rem;
    background: linear-gradient(180deg, #fefce8 0%, #fffbeb 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.ar-standstill-card__header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}
.ar-standstill-card__icon {
    font-size: 1.25rem;
    line-height: 1;
}
.ar-standstill-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #92400e;
    letter-spacing: -0.01em;
}
.ar-standstill-card__lead {
    margin: 0 0 0.875rem 0;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}
.ar-standstill-card__dates {
    margin: 0 0 0.875rem 0;
    padding: 0.625rem 0.75rem;
    background: var(--white);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: var(--radius-sm);
}
.ar-standstill-card__dates > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.25rem 0;
}
.ar-standstill-card__dates > div + div {
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    margin-top: 0.25rem;
    padding-top: 0.5rem;
}
.ar-standstill-card__dates dt {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    margin: 0;
}
.ar-standstill-card__dates dd {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: right;
}
.ar-standstill-card__disclaimer {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--gray-600);
}
.ar-standstill-card__disclaimer strong {
    color: #92400e;
}
.ar-standstill-card__link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
}
.ar-standstill-card__link:hover {
    text-decoration: underline;
}
@media (max-width: 639px) {
    .ar-standstill-card {
        padding: 1rem 1.125rem;
    }
    .ar-standstill-card__lead {
        font-size: 0.8125rem;
    }
    .ar-standstill-card__dates dt,
    .ar-standstill-card__dates dd {
        font-size: 0.75rem;
    }
}

/* VEAT — Direktvergabe-Ankündigung, sehr auffaellig (rot-orange) */
.ar-badge--veat {
    background: rgba(239, 68, 68, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.25);
    font-weight: 700;
}

/* VEAT-Newsletter-CTA fuer anonyme User mit aktivem veat=1 Filter */
.ar-veat-cta {
    display: flex;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04), rgba(245, 158, 11, 0.04));
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
}

.ar-veat-cta__icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.ar-veat-cta__body {
    flex: 1;
}

.ar-veat-cta__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

.ar-veat-cta__sub {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin: 0 0 1rem;
    line-height: 1.55;
}

.ar-veat-cta__form {
    display: flex;
    gap: 0.5rem;
    margin: 0 0 0.5rem;
}

.ar-veat-cta__input {
    flex: 1;
    height: 42px;
    padding: 0 0.875rem;
    font-size: 0.9375rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.ar-veat-cta__input:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: var(--shadow-focus);
}

.ar-veat-cta__button {
    height: 42px;
    padding: 0 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--green-600);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.ar-veat-cta__button:hover {
    background: #15803d;
}

.ar-veat-cta__hint {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

@media (max-width: 639px) {
    .ar-veat-cta {
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    .ar-veat-cta__icon {
        font-size: 1.75rem;
    }
    .ar-veat-cta__form {
        flex-direction: column;
    }
    .ar-veat-cta__button {
        width: 100%;
    }
}

/* VEAT-Card in der Sidebar (Stillhaltefrist + geplanter Vertragspartner) */
.ar-veat-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04), rgba(245, 158, 11, 0.04));
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.ar-veat-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ar-veat-card__icon {
    font-size: 1.25rem;
    line-height: 1;
}

.ar-veat-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #b91c1c;
    margin: 0;
}

.ar-veat-card__lead {
    font-size: 0.8125rem;
    color: var(--gray-700);
    margin: 0 0 0.875rem;
    line-height: 1.5;
}

.ar-veat-card__countdown {
    display: flex;
    flex-direction: column;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.875rem;
}

.ar-veat-card__countdown--active {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.ar-veat-card__countdown--urgent {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.ar-veat-card__countdown--expired {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.ar-veat-card__countdown-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 0.125rem;
}

.ar-veat-card__countdown-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.ar-veat-card__winner {
    margin: 0 0 0.875rem;
    padding: 0.625rem 0.75rem;
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-sm);
}

.ar-veat-card__winner-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 0.125rem;
}

.ar-veat-card__winner strong {
    font-size: 0.875rem;
    color: var(--gray-900);
}

.ar-veat-card__link {
    display: block;
    font-size: 0.75rem;
    color: var(--blue-600);
    text-decoration: none;
}

.ar-veat-card__link:hover {
    text-decoration: underline;
}

@media (max-width: 639px) {
    .ar-veat-card {
        padding: 1rem 1.125rem;
    }
}

.ar-badge--match {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(22, 163, 74, 0.1));
    color: var(--blue-600);
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-weight: 600;
}


/* -- Deadline indicators -- */
.ar-deadline--ok {
    color: var(--green-600);
    font-weight: 500;
}

.ar-deadline--warning {
    color: var(--amber-500);
    font-weight: 600;
}

.ar-deadline--urgent {
    color: var(--red-500);
    font-weight: 700;
}


/* -- Premium Teaser (blurred overlay) -- */
.ar-premium-teaser {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.ar-premium-teaser__content {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
}

.ar-premium-teaser__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
}

.ar-premium-teaser__overlay h3 {
    margin-bottom: 0.5rem;
}

.ar-premium-teaser__overlay p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}


/* -- CTA Box -- */
.ar-cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 0.25rem 2.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin: 2.5rem 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.ar-cta-box__icon {
    grid-column: 1;
    font-size: 1.5rem;
    display: block;
    width: auto;
    height: auto;
    line-height: 1.4;
    background: none;
    border-radius: 0;
    margin: 0 0 0.125rem;
}

.ar-cta-box__title {
    grid-column: 1;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    margin: 0 0 0.375rem;
    text-align: left;
}

.ar-cta-box__sub {
    grid-column: 1;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.55;
    text-align: left;
}

.ar-cta-box__form {
    grid-column: 2;
    grid-row: 1 / 6;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 260px;
    margin: 0;
    align-items: stretch;
    align-self: center;
    position: relative;
}

.ar-cta-box__input {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 1rem;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-900);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-xs);
}

.ar-cta-box__input:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--white);
    outline: none;
}

.ar-cta-box__input::placeholder {
    color: var(--gray-400);
}

.ar-cta-box__button {
    height: 46px;
    padding: 0 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--white);
    background: linear-gradient(135deg, var(--green-600), #15803d);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(22, 163, 74, 0.2);
}

.ar-cta-box__button:hover {
    background: linear-gradient(135deg, var(--green-700), #166534);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
    transform: translateY(-1px);
}

.ar-cta-box a {
    color: var(--gray-500);
    font-size: 0.8125rem;
    transition: color var(--transition-fast);
}

.ar-cta-box a:hover {
    color: var(--blue-600);
}

.ar-cta-box .text-muted {
    color: var(--gray-400);
}

@media (max-width: 639px) {
    .ar-cta-box {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        margin: 2rem 0;
        border-radius: var(--radius-md);
        gap: 0.375rem 0;
    }

    .ar-cta-box__form {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        margin-top: 0.75rem;
    }

    .ar-cta-box__input {
        height: 52px;
        font-size: 1rem;
        padding: 0 1.25rem;
    }

    .ar-cta-box__button {
        height: 52px;
        font-size: 1rem;
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 4rem 0 2rem;
    font-size: 0.875rem;
}

.footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer__brand {
    margin-bottom: 2rem;
}

.footer__brand strong {
    color: var(--white);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer__brand p {
    max-width: 320px;
    line-height: 1.5;
}

.footer__signup {
    display: flex;
    gap: 0;
    margin-top: 1.25rem;
    max-width: 280px;
}

.footer__signup input {
    flex: 1;
    height: 40px;
    padding: 0 0.875rem;
    font-size: 0.8125rem;
    font-family: var(--font-sans);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    outline: none;
}

.footer__signup input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer__signup input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.footer__signup button {
    height: 40px;
    padding: 0 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--green-600);
    color: var(--white);
    border: 1px solid var(--green-600);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: background 0.15s;
}

.footer__signup button:hover {
    background: var(--green-700);
}

.footer__signup-legal {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
}

.footer__signup-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.footer__signup-legal a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer__stats {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    margin-bottom: 2.5rem;
}

.footer__links h4 {
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.footer__links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: color 0.15s ease;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__badges {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.footer__source {
    margin-top: 0.75rem;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__source a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__source a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .footer__links {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__inner {
        display: grid;
        grid-template-columns: 1fr 3fr;
        grid-template-rows: auto auto;
        gap: 0 3rem;
    }

    .footer__brand {
        grid-row: 1;
    }

    .footer__links {
        grid-row: 1;
        margin-bottom: 0;
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__bottom {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 2rem;
    }

    .footer__badges {
        margin-top: 0;
    }
}


/* --------------------------------------------------------------------------
   8. Shared Button Styles
   -------------------------------------------------------------------------- */
/* Unified Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}

.btn--primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.btn--secondary {
    background: var(--white);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.btn--secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300, #d1d5db);
}

.btn--outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.btn--outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-900);
    color: var(--gray-900);
}


/* --------------------------------------------------------------------------
   9. Responsive Overflow Handling
   -------------------------------------------------------------------------- */
.ar-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* Edge-to-edge Bleed nur fuer direct children von .container — verhindert
   Overflow wenn .ar-table-wrap innerhalb verschachtelter grid items wie
   .ar-notice-layout__main verwendet wird. */
.container > .ar-table-wrap,
.ar-page > .ar-table-wrap {
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container > .ar-table-wrap,
    .ar-page > .ar-table-wrap {
        margin: 0;
        padding: 0;
    }
}


/* --------------------------------------------------------------------------
   10. Accessibility — Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .lp-price-card--featured {
        transform: none;
    }
}


/* --------------------------------------------------------------------------
   11. FAQ (.lp-faq)
   -------------------------------------------------------------------------- */
.lp-faq {
    max-width: 720px;
    margin: 0 auto;
}

/* FAQ heading should be centered and constrained when used with .lp-faq */
.ar-section:has(.lp-faq) .ar-section__heading {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.lp-faq__item {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.75rem 0;
}

.lp-faq__item summary {
    padding: 0.5rem 0;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--gray-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-faq__item summary::-webkit-details-marker {
    display: none;
}

.lp-faq__item summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-500);
    flex-shrink: 0;
    margin-left: 1rem;
}

.lp-faq__item[open] summary::after {
    content: "\2212";
}

.lp-faq__item p {
    color: var(--gray-700);
    padding-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
}


/* --------------------------------------------------------------------------
   12. Problem Cards (.lp-problems)
   -------------------------------------------------------------------------- */
.lp-problems {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.lp-problems__card {
    text-align: center;
}

.lp-problems__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--blue-600);
    color: var(--blue-600);
    font-weight: 700;
    font-size: 1.125rem;
}

.lp-problems__heading {
    margin-bottom: 0.5rem;
}

.lp-problems__card p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .lp-problems {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-problems {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}


/* --------------------------------------------------------------------------
   13. Pricing Annual Price (.lp-pricing__annual)
   -------------------------------------------------------------------------- */
.lp-pricing__annual {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}


/* --------------------------------------------------------------------------
   14. Prose / Legal Pages (.prose)
   -------------------------------------------------------------------------- */
.prose {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

.prose h1 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.prose h2 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.prose h3 {
    font-size: 1.0625rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.prose ul, .prose ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.375rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.prose a {
    color: var(--blue-600);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: var(--blue-700);
}

.prose strong {
    font-weight: 600;
    color: var(--gray-900);
}


.ar-page {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.ar-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.ar-intro p {
    margin-bottom: 1rem;
}


/* --------------------------------------------------------------------------
   15. Search Form & Card Grids
   -------------------------------------------------------------------------- */

/* -- Search Form -- */
.ar-search-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .ar-search-form {
        flex-direction: row;
    }
}

.ar-search-form input[type="text"],
.ar-search-form input[type="search"] {
    flex: 1;
    height: 48px;
    padding: 0 1.25rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.ar-search-form input:focus {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-focus);
    outline: none;
}

.ar-search-form button {
    height: 48px;
    padding: 0 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-sans);
    background: var(--blue-600);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.ar-search-form button:hover {
    background: var(--blue-700);
}

@media (max-width: 639px) {
    .ar-search-form {
        max-width: none;
        margin-bottom: 1.5rem;
    }

    .ar-search-form input[type="text"],
    .ar-search-form input[type="search"] {
        min-height: 60px;
        font-size: 1.125rem;
        border-radius: var(--radius-lg);
        padding: 0.875rem 1.25rem;
        box-shadow: var(--shadow-sm);
        border: 2px solid var(--gray-200);
        box-sizing: border-box;
    }

    .ar-search-form input:focus {
        border-color: var(--blue-600);
    }

    .ar-search-form button {
        height: 56px;
        font-size: 1rem;
        border-radius: var(--radius-lg);
        width: 100%;
        background: var(--green-600);
    }

    .ar-search-form button:hover {
        background: var(--green-700);
    }
}

/* -- Semantic Search Badges -- */
.ar-semantic-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: var(--blue-50, #eff6ff);
    border-radius: var(--radius-md, 0.5rem);
    border: 1px solid var(--blue-100, #dbeafe);
}
.ar-semantic-badges__label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-right: 0.25rem;
}

/* -- Unified Card Base -- */
.ar-card {
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.ar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* -- Authority/Sector Card List -- */
.ar-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.ar-card-grid a {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    color: inherit;
    text-decoration: none;
}

/* Override: ar-card im ar-card-grid wrapper soll BLOCK-level sein, nicht
   horizontal-flex (vorher gab es einen Layout-Konflikt mit ar-card-grid a
   wenn glossar/ratgeber Templates <a class="ar-card"> innerhalb von
   ar-card-grid nutzten — title/desc/link landeten dann in 3 horizontalen
   Spalten statt vertikal gestackt). */
.ar-card-grid a.ar-card {
    display: block;
    padding: 1.25rem 1.5rem;
}

.ar-card-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 28px -12px rgba(37, 99, 235, 0.22);
    color: inherit;
}

.ar-card-grid h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ar-card-grid p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* Count: groß und prominent links wie ein "Stat" pro Card */
.ar-card-grid__count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-600);
    font-feature-settings: 'tnum' 1;
    letter-spacing: -0.025em;
    line-height: 1;
    flex-shrink: 0;
    min-width: 56px;
    text-align: center;
}


.ar-card-grid .ar-card-count {
    font-feature-settings: 'tnum' 1;
    font-weight: 600;
    color: var(--green-600);
}

@media (min-width: 640px) {
    .ar-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ar-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* -- Empty State -- */
.ar-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-500);
}

/* -- Search Result Card (Stripe) -- */
.ar-result-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem 1.25rem 1.625rem;
    margin-bottom: 0.625rem;
    box-shadow: none;
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Linker Status-Akzent-Streifen — pro status_kind eine Farbe.
   Gibt den Cards auf Authority/Branche/Bundesland einen Wow-Faktor ohne
   mehr Fläche zu brauchen. Default (kein data-status): grauer Streifen.
*/
.ar-result-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
    transition: background var(--transition-fast), width var(--transition-fast);
}
.ar-result-card[data-status="open"]::before { background: var(--blue-500); }
.ar-result-card[data-status="awarded"]::before { background: var(--green-500); }
.ar-result-card[data-status="closed"]::before { background: #f59e0b; }
.ar-result-card[data-status="expired"]::before { background: var(--gray-300); }
.ar-result-card[data-status="modified"]::before,
.ar-result-card[data-status="change"]::before { background: #8b5cf6; }
.ar-result-card[data-status="planning"]::before { background: #06b6d4; }

a.ar-result-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.ar-result-card:hover,
.ar-result-card:hover {
    color: inherit;
    border-color: var(--blue-300);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.09), 0 2px 6px rgba(37, 99, 235, 0.04);
    transform: translateY(-1px);
}
a.ar-result-card:hover::before,
.ar-result-card:hover::before {
    width: 4px;
}

.ar-result-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.375rem;
}

.ar-result-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.ar-result-card__meta {
    font-size: 0.8125rem;
    color: var(--gray-600);
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.ar-result-card__buyer {
    color: var(--gray-700);
    font-weight: 600;
}

.ar-result-card__value {
    font-weight: 700;
    color: var(--green-600);
    font-feature-settings: 'tnum' 1;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.9375rem;
}

.ar-result-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
}

.ar-result-card__tags .ar-badge {
    font-size: 0.6875rem;
}

/* Status-Badges pro status_kind — gleiche Farbfamilie wie Akzent-Streifen.
   Stripe-Wow: Dot-Indikator + subtile tint Hintergrund + starker Text. */
.ar-badge--status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}
.ar-badge--status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}
.ar-badge--status-open {
    color: var(--blue-700);
    background: var(--blue-50);
    border-color: rgba(37, 99, 235, 0.15);
}
.ar-badge--status-awarded {
    color: var(--green-700);
    background: #ecfdf5;
    border-color: rgba(22, 163, 74, 0.15);
}
.ar-badge--status-closed {
    color: #b45309;
    background: #fffbeb;
    border-color: rgba(245, 158, 11, 0.2);
}
.ar-badge--status-expired {
    color: var(--gray-600);
    background: var(--gray-50);
    border-color: var(--gray-200);
}
.ar-badge--status-modified,
.ar-badge--status-change {
    color: #6d28d9;
    background: #f5f3ff;
    border-color: rgba(139, 92, 246, 0.2);
}
.ar-badge--status-planning {
    color: #0e7490;
    background: #ecfeff;
    border-color: rgba(6, 182, 212, 0.2);
}

/* Result card as div with bookmark */
.ar-result-card--div {
    position: relative;
}

/* Preview text shown inline (no tooltip) */

/* Skeleton loading cards */
.ar-skeleton {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.625rem;
    animation: ar-pulse 1.5s ease-in-out infinite;
}

.ar-skeleton__line {
    height: 0.875rem;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.ar-skeleton__line--short { width: 60%; }
.ar-skeleton__line--xs { width: 35%; height: 0.625rem; }

@keyframes ar-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ar-result-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ar-result-card__link:hover {
    color: inherit;
}

.ar-result-card--div:hover {
    border-left-color: var(--blue-600);
}

.ar-result-card__bookmark {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.ar-bookmark-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-400);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.ar-bookmark-btn:hover {
    color: var(--blue-600);
    border-color: var(--blue-200);
    background: rgba(37, 99, 235, 0.04);
}

.ar-bookmark-btn--active {
    color: var(--blue-600);
    border-color: var(--blue-200);
    background: rgba(37, 99, 235, 0.06);
}

.ar-bookmark-btn--active:hover {
    color: var(--gray-400);
    border-color: var(--gray-200);
    background: var(--white);
}

/* ── Search Results Mobile Override (must come AFTER defaults) ── */
@media (max-width: 639px) {
    .ar-result-card,
    a.ar-result-card {
        padding: 0.875rem 1rem 0.875rem 1.125rem;
        margin-bottom: 0.625rem;
        border: none;
        border-left: 4px solid var(--blue-600);
        border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
        background: var(--white);
        box-shadow:
            0 1px 3px rgba(0, 0, 0, 0.04),
            0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .ar-result-card:hover,
    a.ar-result-card:hover {
        box-shadow:
            0 2px 8px rgba(0, 0, 0, 0.06),
            0 8px 24px rgba(0, 0, 0, 0.04);
        border-left-color: var(--green-600);
    }

    .ar-result-card__header {
        flex-direction: column;
        gap: 0.375rem;
        margin-bottom: 0.25rem;
    }

    .ar-result-card__title {
        font-size: 1.0625rem;
        line-height: 1.4;
    }

    .ar-result-card__value {
        font-size: 1rem;
        color: var(--green-600);
        background: rgba(22, 163, 74, 0.06);
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        align-self: flex-start;
    }

    .ar-result-card__meta {
        font-size: 0.875rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--gray-100);
        line-height: 1.45;
    }

    .ar-result-card__buyer {
        font-size: 0.9375rem;
    }

    .ar-result-card__tags {
        margin-top: 0.375rem;
    }

    /* (font-size fuer .ar-result-card__tags .ar-badge wird im
       Mobile-Floor-Block weiter unten auf 0.75rem gesetzt) */
    .ar-result-card__tags .ar-badge {
        padding: 0.25rem 0.5rem;
    }

    /* Mobile-Spacing-Floor: kompaktere Cards & Container — verhindert dass
       Seiten auf 375px wie hohle Boxen wirken (Audit 2026-04-07) */
    .ar-card {
        padding: 1rem 1.125rem;
    }
    .ar-gated-card {
        padding: 1.5rem 1.25rem;
        margin: 1rem 0;
    }
    .ar-notice-sidebar__card {
        padding: 1.125rem 1.25rem;
    }
}

.ar-similar-list {
    display: grid;
    gap: 0.75rem;
}


/* -- Sector Card — vertical card mit Count + h3 + optional Badge -- */
a.ar-sector-card,
.ar-sector-card {
    display: block;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.25rem 1.375rem;
    color: inherit;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
}

a.ar-sector-card:hover,
.ar-sector-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 28px -12px rgba(37, 99, 235, 0.22);
    color: inherit;
}

.ar-sector-card--active {
    border-color: var(--blue-600);
    background: rgba(37, 99, 235, 0.04);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.ar-sector-card__count {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-600);
    font-feature-settings: 'tnum' 1;
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ar-sector-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ar-sector-card .ar-badge {
    font-size: 0.6875rem;
}

/* -- Bundesland Grid (Screenshot-inspired Stat Cards) -- */
.ar-bl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
a.ar-bl-card,
.ar-bl-card {
    display: block;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: var(--transition-normal) transform, var(--transition-normal) box-shadow, var(--transition-normal) border-color;
}
a.ar-bl-card:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 16px 36px -12px rgba(37, 99, 235, 0.18);
    color: inherit;
}
.ar-bl-card__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.625rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.ar-bl-card__count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-600);
    font-feature-settings: 'tnum' 1;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.ar-bl-card__label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 400;
}
@media (max-width: 1023px) {
    .ar-bl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 639px) {
    .ar-bl-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .ar-bl-card { padding: 1.125rem; }
    .ar-bl-card__count { font-size: 1.625rem; }
    .ar-bl-card__name { font-size: 0.9375rem; }
    .ar-bl-card__label { font-size: 0.8125rem; }
}

/* -- Search Info -- */
.ar-search-info {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* -- Search Suggestions -- */
.ar-search-suggestions {
    text-align: center;
    padding: 2rem 0;
}

.ar-search-suggestions p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.ar-search-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.ar-search-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.ar-search-tag:hover {
    border-color: var(--blue-600);
    color: var(--blue-600);
    box-shadow: var(--shadow-sm);
}


/* --------------------------------------------------------------------------
   16. Premium Box & Intro
   -------------------------------------------------------------------------- */
.ar-premium-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.ar-premium-box h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.ar-premium-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ar-premium-box li {
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.ar-premium-box li:first-child {
    font-style: normal;
    border-bottom: none;
}

.ar-intro {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
}


/* --------------------------------------------------------------------------
   Founder Section
   -------------------------------------------------------------------------- */
.lp-founder {
    max-width: 720px;
}

.lp-founder__text {
    line-height: 1.7;
    color: var(--gray-700);
}

.lp-founder__text p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.lp-founder__title {
    text-align: left;
    margin: 0 0 1.25rem;
    max-width: none;
}

.lp-founder__signature {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* --------------------------------------------------------------------------
   Hero Branch Quick-Links
   -------------------------------------------------------------------------- */
.lp-hero__branches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.lp-hero__branch-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 9999px;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lp-hero__branch-tag:hover {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue-600);
    border-color: rgba(37, 99, 235, 0.2);
}

/* --------------------------------------------------------------------------
   Onboarding Steps (signup success)
   -------------------------------------------------------------------------- */
.lp-steps__item--done {
    border-color: var(--green-100);
    background: var(--green-50, #f0fdf4);
}

.lp-steps__number--done {
    background: var(--green-600);
    color: var(--white);
}

.lp-steps__item--active {
    border-color: var(--green-600);
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

.lp-steps__number--active {
    background: var(--green-600);
    color: var(--white);
}

.lp-steps__cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   16b. Notice Detail — Two-Column Layout
   -------------------------------------------------------------------------- */
.ar-notice-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ar-notice-layout {
        grid-template-columns: 1fr 340px;
    }
}

/* min-width:0 ist KRITISCH auf grid items damit Tabellen / lange Woerter
   nicht die Spalte ueber den Viewport hinaus expandieren. Default min-width
   eines grid items ist `min-content`, nicht 0. Beide Naming-Varianten
   (legacy ar-notice-main + BEM ar-notice-layout__main) hier abgedeckt. */
.ar-notice-main,
.ar-notice-layout__main {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Login-Gate-Zeile in Tabellen (verdeckt rows ab loop.index 4 fuer
   anonyme User mit Fade + CTA-Link). Ersetzt 130-Zeichen Inline-Style. */
.ar-table-gate-cell {
    padding: 1rem !important;
    text-align: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.02) 60%);
}

.ar-table-gate-cell__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    padding: 0.625rem 1.5rem;
    max-width: 100%;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 2px rgba(21, 128, 61, 0.4), 0 4px 12px rgba(22, 163, 74, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    text-wrap: balance;
}

.ar-table-gate-cell__link:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    color: var(--white);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 4px rgba(21, 128, 61, 0.4), 0 8px 20px rgba(22, 163, 74, 0.32);
}

/* Top-N List Component (ar-toplist) — Ranked list with prominent counts */
.ar-toplist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}
.ar-toplist__item {
    display: grid;
    grid-template-columns: 2.25rem 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.125rem;
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}
.ar-toplist__item:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 163, 74, 0.25);
}
.ar-toplist__rank {
    font-size: 1.25rem;
    font-weight: 700;
    font-feature-settings: 'tnum' 1;
    color: var(--gray-300);
    text-align: center;
    line-height: 1;
}
.ar-toplist__item--top .ar-toplist__rank {
    color: var(--green-600);
}
.ar-toplist__name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ar-toplist__count {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
}
.ar-toplist__count-num {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--green-600);
    font-feature-settings: 'tnum' 1;
}
.ar-toplist__count-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}
.ar-toplist__gate {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 4px rgba(21, 128, 61, 0.3), 0 6px 16px rgba(22, 163, 74, 0.25);
    transition: var(--transition-normal);
}
.ar-toplist__gate:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    color: var(--white);
}
@media (max-width: 639px) {
    .ar-toplist__item {
        grid-template-columns: 1.75rem 1fr auto;
        gap: 0.75rem;
        padding: 0.75rem 0.875rem;
    }
    .ar-toplist__rank {
        font-size: 1.0625rem;
    }
    .ar-toplist__name {
        font-size: 0.875rem;
    }
    .ar-toplist__count-num {
        font-size: 1.125rem;
    }
    .ar-toplist__count-label {
        font-size: 0.75rem;
    }
}

.ar-notice-sidebar {
    order: 1;
}

@media (min-width: 1024px) {
    .ar-notice-sidebar {
        order: 0;
        position: sticky;
        top: calc(var(--nav-height) + 2rem);
        align-self: start;
    }
}

/* Sidebar Card — Stripe-Wow Redesign 2026-04-10.
   Subtiler Accent-Stripe oben, bessere Shadow-Hierarchy,
   saubere Row-Struktur mit alternierenden Backgrounds. */
/* Default: dezenter grau-blauer Accent — harmoniert mit dem Hero-Gradient.
   Wenn ein Preis angezeigt wird, überschreibt --has-value den Stripe auf grün. */
.ar-notice-sidebar__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.03);
    transition: box-shadow var(--transition-normal);
}

/* Wenn ein Preis-Wert da ist → grüner Accent (passt zum grünen €-Text) */
.ar-notice-sidebar__card--has-value {
    border-top-color: var(--green-600);
}

.ar-notice-sidebar__card:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.05);
}

/* Hauptwert (Preis) — prominenter, mit leichtem Glow */
.ar-notice-sidebar__value {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--green-600);
    font-feature-settings: 'tnum' 1;
    margin-bottom: 0.125rem;
    letter-spacing: -0.01em;
}

.ar-notice-sidebar__label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ar-notice-sidebar__divider {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 0.875rem 0;
}

/* Rows — kompakter, saubere Ausrichtung, subtiler Hintergrund */
.ar-notice-sidebar__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4375rem 0.5rem;
    margin: 0 -0.5rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.ar-notice-sidebar__row:hover {
    background: var(--gray-50);
}

/* Status-Block: Vergabe-Status / Auftragnehmer mit optionalem Disclaimer.
   Eigene Komponente statt __row, weil lange Werte (Firmenname + Hinweis)
   in der schmalen Sidebar-Spalte zerbrechen wenn sie rechts ausgerichtet
   sind. Stattdessen vertikales Stacking. */
.ar-notice-sidebar__status {
    padding: 0.75rem 0.625rem;
    margin: 0 -0.5rem;
    font-size: 0.875rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}
.ar-notice-sidebar__status-label {
    color: var(--gray-400);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.375rem;
}
.ar-notice-sidebar__status-value {
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.35;
    word-break: break-word;
}
.ar-notice-sidebar__status-note {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
    line-height: 1.4;
}
.ar-notice-sidebar__status--cancelled .ar-notice-sidebar__status-value {
    color: #dc2626;
}
.ar-notice-sidebar__status--awarded_named .ar-notice-sidebar__status-value {
    color: var(--green-600);
}

.ar-notice-sidebar__row-label {
    color: var(--gray-500);
    flex-shrink: 0;
    margin-right: 0.75rem;
    font-size: 0.8125rem;
}

.ar-notice-sidebar__row-value {
    font-weight: 600;
    color: var(--gray-900);
    text-align: right;
    font-size: 0.8125rem;
}

/* Links in Row-Values */
.ar-notice-sidebar__row-value a {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
}

.ar-notice-sidebar__row-value a:hover {
    text-decoration: underline;
}

.ar-notice-sidebar__cta {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    background: var(--green-600);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 1.25rem;
    transition: background 0.15s ease;
    text-decoration: none;
}

.ar-notice-sidebar__cta:hover {
    background: var(--green-700);
    color: var(--white);
}

/* KI-Analyse with blue background */
.ar-analysis--prominent {
    background: var(--blue-50);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

/* --------------------------------------------------------------------------
   17. Pagination
   -------------------------------------------------------------------------- */
.ar-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.ar-pagination__link {
    color: var(--c-accent, #2563eb);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--c-accent, #2563eb);
    border-radius: 0.375rem;
    transition: background 0.15s, color 0.15s;
}

.ar-pagination__link:hover {
    background: var(--c-accent, #2563eb);
    color: #fff;
}

.ar-pagination__sep {
    color: var(--c-muted, #94a3b8);
}

/* --------------------------------------------------------------------------
   18. Alert Form Styles
   -------------------------------------------------------------------------- */

.ar-form-group {
    margin-bottom: 2rem;
}

.ar-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.ar-form-hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

/* Checkbox Grid */
.ar-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

@media (min-width: 640px) {
    .ar-checkbox-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .ar-checkbox-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ar-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.ar-checkbox-label:hover {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.ar-checkbox-label input[type="checkbox"],
.ar-checkbox-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue-600);
    flex-shrink: 0;
    cursor: pointer;
}

/* Select */
.ar-form-select {
    width: 100%;
    max-width: 300px;
    height: 48px;
    padding: 0 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-900);
    cursor: pointer;
    transition: border-color 0.15s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.ar-form-select:focus {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-focus);
    outline: none;
}

/* Radio Group */
.ar-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ar-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s ease;
}

.ar-radio-label:hover {
    background: var(--gray-50);
}

.ar-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue-600);
    flex-shrink: 0;
}

.ar-radio-label .ar-badge {
    margin-left: 0.25rem;
}

/* Submit button full width */
.ar-form-group .ar-cta-box__button {
    width: 100%;
    max-width: 300px;
    height: 52px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Email input in form */
.ar-form-group .ar-cta-box__input {
    width: 100%;
    max-width: 400px;
    height: 52px;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.ar-form-group .ar-cta-box__input:focus {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-focus);
    outline: none;
}


/* --------------------------------------------------------------------------
   Ratgeber Page
   -------------------------------------------------------------------------- */

.ar-ratgeber-grid {
    margin-bottom: 3rem;
}

/* Featured Article (first, large) */
.ar-ratgeber-featured {
    display: block;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e293b 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ar-ratgeber-featured::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ar-ratgeber-featured:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
    color: var(--white);
}

.ar-ratgeber-featured__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    display: block;
}

.ar-ratgeber-featured__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .ar-ratgeber-featured__title {
        font-size: 1.75rem;
    }

    .ar-ratgeber-featured {
        padding: 3rem;
    }
}

.ar-ratgeber-featured__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 1.5rem;
}

.ar-ratgeber-featured__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--green-600);
}

/* Remaining Articles List */
.ar-ratgeber-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ar-ratgeber-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}

.ar-ratgeber-card:first-child {
    border-top: 1px solid var(--gray-100);
}

.ar-ratgeber-card:hover {
    background: var(--gray-50);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: var(--radius-md);
}

.ar-ratgeber-card__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-200);
    flex-shrink: 0;
    width: 40px;
    font-feature-settings: 'tnum' 1;
}

.ar-ratgeber-card__content {
    flex: 1;
    min-width: 0;
}

.ar-ratgeber-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.ar-ratgeber-card__desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ar-ratgeber-card__arrow {
    font-size: 1.25rem;
    color: var(--gray-300);
    flex-shrink: 0;
    transition: color 0.15s ease, transform 0.15s ease;
}

.ar-ratgeber-card:hover .ar-ratgeber-card__arrow {
    color: var(--blue-600);
    transform: translateX(4px);
}

/* ===== Ratgeber Index — Category Grid (Stripe-style, 2026-04-11) ===== */

.ar-rg-hero {
    text-align: center;
    padding: 3rem 0 2.5rem;
}

.ar-rg-hero__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-600);
    margin-bottom: 1rem;
    display: block;
}

.ar-rg-hero__title {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--gray-950);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.ar-rg-hero__sub {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.ar-rg-hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.ar-rg-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.ar-rg-hero__stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    font-feature-settings: 'tnum' 1;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ar-rg-hero__stat-label {
    font-size: 0.6875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

/* Featured hero article — hell, kein dunkler Hintergrund */
.ar-rg-featured {
    display: grid;
    grid-template-columns: 3fr 2fr;
    background: linear-gradient(135deg, #eef2ff 0%, #f0fdf4 100%);
    border: 1px solid #c7d2fe;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3.5rem;
    text-decoration: none;
    color: var(--gray-900);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal), border-color var(--transition-normal);
    position: relative;
}

.ar-rg-featured::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue-600) 0%, var(--green-600) 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.ar-rg-featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: #a5b4fc;
    color: var(--gray-900);
}

.ar-rg-featured__body {
    padding: 2.75rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ar-rg-featured__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-600);
    margin-bottom: 0.875rem;
    display: block;
}

.ar-rg-featured__title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: var(--gray-950);
    margin-bottom: 0.875rem;
}

.ar-rg-featured__desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 520px;
}

.ar-rg-featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--blue-600);
    transition: gap var(--transition-fast);
}

.ar-rg-featured:hover .ar-rg-featured__cta {
    gap: 0.625rem;
}

/* Rechte Seite: abstrakte visuelle Dekoration, kein Emoji */
.ar-rg-featured__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.ar-rg-featured__visual::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
    top: 10%; right: 5%;
}

.ar-rg-featured__visual::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    bottom: 15%; left: 10%;
}

.ar-rg-featured__stat-block {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ar-rg-featured__stat-item {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 140px;
}

.ar-rg-featured__stat-item-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum' 1;
    line-height: 1;
}

.ar-rg-featured__stat-item-label {
    font-size: 0.6875rem;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.3;
}

/* Category sections */
.ar-rg-cats {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 0.5rem;
    margin-bottom: 4rem;
}

.ar-rg-cat {
    padding: 2rem 2.25rem;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.ar-rg-cat__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--gray-100);
}

.ar-rg-cat__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
}

.ar-rg-cat--blue  .ar-rg-cat__icon-wrap { background: rgba(37,99,235,0.08); }
.ar-rg-cat--green .ar-rg-cat__icon-wrap { background: rgba(22,163,74,0.08); }
.ar-rg-cat--purple .ar-rg-cat__icon-wrap { background: rgba(124,58,237,0.08); }

.ar-rg-cat__meta {
    flex: 1;
}

.ar-rg-cat__title {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ar-rg-cat__desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-top: 0.125rem;
    line-height: 1.5;
}

.ar-rg-cat__badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    flex-shrink: 0;
    font-feature-settings: 'tnum' 1;
    letter-spacing: 0.02em;
}

.ar-rg-cat--blue  .ar-rg-cat__badge { background: rgba(37,99,235,0.08); color: var(--blue-600); }
.ar-rg-cat--green .ar-rg-cat__badge { background: rgba(22,163,74,0.08); color: var(--green-600); }
.ar-rg-cat--purple .ar-rg-cat__badge { background: rgba(124,58,237,0.08); color: #7c3aed; }

/* Article card grid */
.ar-rg-cat__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ar-rg-article {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.375rem 1.5rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal), border-color var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.ar-rg-article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    opacity: 0;
    transition: opacity var(--transition-fast);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.ar-rg-article--blue::before  { background: var(--blue-600); }
.ar-rg-article--green::before { background: var(--green-600); }
.ar-rg-article--purple::before { background: #7c3aed; }

.ar-rg-article:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--gray-200);
}

.ar-rg-article:hover::before {
    opacity: 1;
}

.ar-rg-article__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.ar-rg-article__desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ar-rg-article__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.875rem;
    border-top: 1px solid var(--gray-100);
}

.ar-rg-article__readtime {
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ar-rg-article__link {
    font-size: 0.8125rem;
    font-weight: 600;
    transition: transform var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.ar-rg-article--blue  .ar-rg-article__link { color: var(--blue-600); }
.ar-rg-article--green .ar-rg-article__link { color: var(--green-600); }
.ar-rg-article--purple .ar-rg-article__link { color: #7c3aed; }

.ar-rg-article:hover .ar-rg-article__link {
    transform: translateX(3px);
}

/* Mobile */
@media (max-width: 639px) {
    .ar-rg-hero__title   { font-size: 1.875rem; }
    .ar-rg-hero__sub     { font-size: 1rem; }
    .ar-rg-hero__stats   { gap: 1.5rem; }
    .ar-rg-hero__stat-value { font-size: 1.375rem; }
    .ar-rg-featured      { grid-template-columns: 1fr; }
    .ar-rg-featured__visual { display: none; }
    .ar-rg-featured__body { padding: 1.75rem; }
    .ar-rg-featured__title { font-size: 1.375rem; }
    .ar-rg-cat__grid     { grid-template-columns: 1fr; gap: 0.75rem; }
    .ar-rg-cat__header   { flex-wrap: wrap; }
    .ar-rg-cat__badge    { order: -1; }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .ar-rg-cat__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Alert Page Layout */
.ar-alert-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ar-alert-layout {
        grid-template-columns: 1fr 320px;
    }
}

.ar-alert-preview {
    order: -1;
}

@media (min-width: 1024px) {
    .ar-alert-preview {
        order: 0;
    }

    .ar-alert-preview__sticky {
        position: sticky;
        top: calc(var(--nav-height) + 2rem);
    }
}

.ar-alert-error {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--red-500);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Form Steps */
/* Form-Steps — Stripe-Wow 2026-04-10 */
.ar-form-step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: box-shadow var(--transition-normal);
}

.ar-form-step:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ar-form-step__header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.ar-form-step__number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-600), #4f46e5);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8125rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.ar-form-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    margin: 0.125rem 0 0.125rem;
}

.ar-form-step__hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
}

/* Checkbox Cards */
.ar-checkbox-card {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.ar-checkbox-card:hover {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-sm);
}

.ar-checkbox-card:has(input:checked) {
    border-color: var(--blue-600);
    background: rgba(37, 99, 235, 0.06);
    color: var(--gray-900);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.ar-checkbox-card input {
    width: 16px;
    height: 16px;
    accent-color: var(--blue-600);
    flex-shrink: 0;
}

.ar-checkbox-card--sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
}

/* Updated checkbox grid for cards */
.ar-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .ar-checkbox-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .ar-checkbox-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Step 4: Email + Submit inline */
.ar-form-step__submit {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 480px;
}

@media (min-width: 640px) {
    .ar-form-step__submit {
        flex-direction: row;
    }
}

.ar-form-step__email {
    flex: 1;
    height: 52px;
    padding: 0 1.25rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ar-form-step__email:focus {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-focus);
    outline: none;
}

.ar-form-step__button {
    height: 52px;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--green-600), #15803d);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.ar-form-step__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

/* Upgrade CTA */
.ar-upgrade-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e293b 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2.5rem 0;
}

@media (min-width: 640px) {
    .ar-upgrade-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.ar-upgrade-cta__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.ar-upgrade-cta__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    max-width: 480px;
    line-height: 1.6;
}

.ar-upgrade-cta__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.ar-upgrade-cta__action {
    text-align: center;
    flex-shrink: 0;
}

.ar-upgrade-cta__button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--green-600);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

.ar-upgrade-cta__button:hover {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
    transform: translateY(-1px);
}

.ar-upgrade-cta__risk {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}


/* --------------------------------------------------------------------------
   Tender Prices
   -------------------------------------------------------------------------- */
.ar-tender-prices {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ar-tender-price {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.ar-tender-price__lot {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ar-tender-price__lot-label {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--gray-50);
    border: var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

.ar-tender-price__lot-title {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.ar-tender-price:last-child {
    border-bottom: none;
}

.ar-tender-price--winner {
    background: rgba(22, 163, 74, 0.04);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-bottom: none;
}

.ar-tender-price__rank {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-50);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-500);
    flex-shrink: 0;
}

.ar-tender-price--winner .ar-tender-price__rank {
    background: rgba(22, 163, 74, 0.1);
    font-size: 1.125rem;
}

/* ============================================================
   Admin Daten-Anfragen Dashboard
   ============================================================ */
.ar-admin-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
}
.ar-admin-header {
    margin-bottom: 2.5rem;
}
.ar-admin-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.25rem 0.625rem;
    border-radius: 99px;
    margin-bottom: 0.75rem;
}
.ar-admin-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    line-height: 1.1;
    margin: 0 0 0.5rem 0;
}
.ar-admin-sub {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}

/* KPI-Stats-Grid */
.ar-admin-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.875rem;
    margin-bottom: 2rem;
}
.ar-admin-stat {
    position: relative;
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.125rem 1rem;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-normal);
    overflow: hidden;
}
.ar-admin-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), transparent);
}
.ar-admin-stat:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.ar-admin-stat--alert::before {
    background: linear-gradient(90deg, #f59e0b, transparent);
}
.ar-admin-stat--info::before {
    background: linear-gradient(90deg, var(--blue-600), transparent);
}
.ar-admin-stat--success::before {
    background: linear-gradient(90deg, var(--green-600), transparent);
}
.ar-admin-stat__value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.ar-admin-stat--alert .ar-admin-stat__value { color: #d97706; }
.ar-admin-stat--info .ar-admin-stat__value { color: var(--blue-600); }
.ar-admin-stat--success .ar-admin-stat__value { color: var(--green-600); }
.ar-admin-stat__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Filter-Tabs */
.ar-admin-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    border-bottom: var(--border-subtle);
    padding-bottom: 0.5rem;
}
.ar-admin-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.ar-admin-filter:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}
.ar-admin-filter--active {
    background: var(--gray-900);
    color: var(--white);
}
.ar-admin-filter--active:hover {
    background: var(--gray-900);
    color: var(--white);
}
.ar-admin-filter__count {
    font-size: 0.6875rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.125rem 0.4375rem;
    border-radius: 99px;
}
.ar-admin-filter:not(.ar-admin-filter--active) .ar-admin-filter__count {
    background: var(--gray-100);
    color: var(--gray-700);
}

/* Request-Cards */
.ar-admin-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ar-admin-request {
    position: relative;
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-normal);
}
.ar-admin-request:hover {
    box-shadow: var(--shadow-md);
}
.ar-admin-request::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: var(--gray-200);
}
.ar-admin-request--pending::before { background: #f59e0b; }
.ar-admin-request--in_progress::before { background: var(--blue-600); }
.ar-admin-request--resolved::before { background: var(--green-600); }
.ar-admin-request--no_data::before { background: var(--gray-400); }

.ar-admin-request__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.ar-admin-request__meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    flex-wrap: wrap;
}
.ar-admin-request__id {
    font-weight: 700;
    color: var(--gray-700);
    font-family: 'Inter', monospace;
}
.ar-admin-request__status {
    display: inline-block;
    padding: 0.1875rem 0.625rem;
    border-radius: 99px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.6875rem;
}
.ar-admin-request__status--pending {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}
.ar-admin-request__status--in_progress {
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue-600);
}
.ar-admin-request__status--resolved {
    background: rgba(22, 163, 74, 0.1);
    color: var(--green-600);
}
.ar-admin-request__status--no_data {
    background: var(--gray-100);
    color: var(--gray-500);
}
.ar-admin-request__date {
    color: var(--gray-400);
}
.ar-admin-request__user {
    font-size: 0.8125rem;
    color: var(--gray-700);
    text-align: right;
}
.ar-admin-request__user strong {
    color: var(--gray-900);
}
.ar-admin-request__tier {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.0625rem 0.5rem;
    background: var(--gray-50);
    border: var(--border-subtle);
    border-radius: 99px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: capitalize;
}
.ar-admin-request__body {
    padding: 0.75rem 0;
}
.ar-admin-request__notice-title {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}
.ar-admin-request__notice-title:hover {
    color: var(--blue-600);
}
.ar-admin-request__buyer {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}
.ar-admin-request__user-note,
.ar-admin-request__resolution {
    background: var(--gray-50);
    border-left: 3px solid var(--gray-300);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}
.ar-admin-request__resolution {
    border-left-color: var(--green-600);
    background: rgba(22, 163, 74, 0.04);
}
.ar-admin-request__note-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 0.375rem;
}
.ar-admin-request__user-note p,
.ar-admin-request__resolution p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--gray-800);
    white-space: pre-wrap;
}

.ar-admin-request__actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: var(--border-subtle);
}
.ar-admin-request__actions-toggle {
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue-600);
    list-style: none;
    user-select: none;
}
.ar-admin-request__actions-toggle::-webkit-details-marker { display: none; }
.ar-admin-request__form {
    margin-top: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.ar-admin-request__textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: var(--border-default);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    line-height: 1.55;
    resize: vertical;
    min-height: 90px;
}
.ar-admin-request__form-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.ar-admin-request__btn {
    padding: 0.5rem 1rem;
    border: var(--border-default);
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-fast);
}
.ar-admin-request__btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}
.ar-admin-request__btn--primary {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}
.ar-admin-request__btn--primary:hover {
    background: #15803d;
    border-color: #15803d;
}
.ar-admin-request__btn--secondary {
    background: var(--blue-600);
    color: var(--white);
    border-color: var(--blue-600);
}
.ar-admin-request__btn--secondary:hover {
    background: #1d4ed8;
}

.ar-admin-empty {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
}
.ar-admin-empty__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.ar-admin-empty h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
}
.ar-admin-empty p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 900px) {
    .ar-admin-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 639px) {
    .ar-admin-page { padding: 1.5rem 1rem 3rem; }
    .ar-admin-title { font-size: 1.5rem; }
    .ar-admin-sub { font-size: 0.875rem; }
    .ar-admin-stats { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
    .ar-admin-stat { padding: 0.875rem 0.875rem; }
    .ar-admin-stat__value { font-size: 1.375rem; }
    .ar-admin-stat__label { font-size: 0.6875rem; }
    .ar-admin-filters { gap: 0.375rem; }
    .ar-admin-filter { padding: 0.4375rem 0.75rem; font-size: 0.75rem; }
    .ar-admin-request { padding: 1rem 1.125rem; }
    .ar-admin-request__header { flex-direction: column; gap: 0.5rem; }
    .ar-admin-request__user { text-align: left; font-size: 0.75rem; }
    .ar-admin-request__notice-title { font-size: 0.9375rem; }
    .ar-admin-request__form-actions { flex-direction: column; }
    .ar-admin-request__btn { width: 100%; }
}

/* Globaler Daten-Disclaimer (Jameda + §824 + UWG-Schutz) */
.ar-data-disclaimer {
    display: flex;
    gap: 0.875rem;
    margin: 2rem 0 1.5rem;
    padding: 1.125rem 1.375rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gray-400);
}
.ar-data-disclaimer__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: Georgia, serif;
    font-style: italic;
}
.ar-data-disclaimer__body { flex: 1; min-width: 0; }
.ar-data-disclaimer__title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}
.ar-data-disclaimer__text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--gray-600);
    margin: 0 0 0.625rem 0;
}
.ar-data-disclaimer__text a {
    color: var(--blue-600);
    text-decoration: none;
}
.ar-data-disclaimer__text a:hover { text-decoration: underline; }
.ar-data-disclaimer__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
}
.ar-data-disclaimer__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
}
.ar-data-disclaimer__link:hover { text-decoration: underline; }
.ar-data-disclaimer__link--secondary {
    color: var(--gray-500);
    font-weight: 500;
}
@media (max-width: 639px) {
    .ar-data-disclaimer { padding: 0.875rem 1rem; gap: 0.625rem; }
    .ar-data-disclaimer__text { font-size: 0.875rem; }
    .ar-data-disclaimer__actions { gap: 0.75rem; }
}


.ar-tender-price__info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ar-tender-price__name {
    font-weight: 500;
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.ar-tender-price--winner .ar-tender-price__name {
    font-weight: 600;
}

.ar-tender-price__value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
}

.ar-tender-price--winner .ar-tender-price__value {
    color: var(--green-600);
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   Change Warning
   -------------------------------------------------------------------------- */
.ar-change-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: #92400e;
    margin-bottom: 1rem;
}

.ar-change-warning__icon {
    flex-shrink: 0;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   19a. Sort Label
   -------------------------------------------------------------------------- */
.ar-sort-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: none;
    letter-spacing: 0;
    margin-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   19b. Active Search Tag
   -------------------------------------------------------------------------- */
.ar-search-tag--active {
    background: var(--blue-600);
    color: var(--white);
    border-color: var(--blue-600);
}

/* --------------------------------------------------------------------------
   19c. Mobile Hamburger Menu
   -------------------------------------------------------------------------- */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__hamburger span {
    width: 20px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 1px;
    transition: transform 0.2s ease;
}

/* Mobile-only items hidden on desktop */
.nav__mobile-only {
    display: none;
}

@media (max-width: 639px) {
    .nav__hamburger {
        display: flex;
        padding: 0.625rem;
    }

    .nav__hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .nav__login,
    .nav__cta {
        display: none;
    }

    /* Mobile menu: slide-down animation */
    .nav__links {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0;
        gap: 0;
        z-index: 99;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.2s ease;
        box-shadow: none;
    }

    .nav--open {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--white);
    }

    .nav--open .nav__links {
        max-height: calc(100vh - var(--nav-height));
        opacity: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav--open .nav__links a {
        padding: 0.875rem 1.5rem;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1rem;
        color: var(--gray-700);
        font-weight: 500;
    }

    .nav--open .nav__links a:last-child {
        border-bottom: none;
    }

    .nav--open .nav__mobile-only {
        display: block;
    }

    /* Divider between dropdowns and quick links */
    .nav__mobile-divider {
        height: 1px;
        background: var(--gray-200);
        margin: 0.5rem 1.5rem;
    }

    /* Highlighted quick links (Preise, Alerts, Dashboard) */
    .nav--open .nav__mobile-highlight {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        color: var(--blue-600) !important;
        font-weight: 600;
        border-bottom: none !important;
    }

    .nav--open .nav__mobile-highlight:hover {
        background: var(--gray-50);
    }

    /* Desktop-only links hidden on mobile */
    .nav__desktop-only {
        display: none;
    }

    /* Primary CTA */
    .nav--open .nav__mobile-cta {
        display: block;
        text-align: center;
        margin: 1rem 1.5rem 1.5rem;
        padding: 1rem;
        background: var(--green-600);
        color: #ffffff !important;
        border-radius: var(--radius-md);
        font-weight: 700;
        font-size: 1rem;
        border-bottom: none !important;
        box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
    }

    .nav--open .nav__mobile-cta:hover {
        background: var(--green-700);
        color: #ffffff !important;
    }

    /* Dropdown groups */
    .nav__dropdown-menu {
        position: static;
        transform: none;
        border: none;
        box-shadow: none;
        min-width: 0;
        padding: 0;
        display: none;
        background: transparent;
    }

    .nav__dropdown-menu::before {
        display: none;
    }

    .nav--open .nav__dropdown-menu {
        display: none;
    }

    .nav--open .nav__dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        display: block !important;
        background: var(--gray-50);
    }

    .nav--open .nav__dropdown--open .nav__dropdown-menu {
        max-height: 500px;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav--open .nav__dropdown-menu a {
        padding: 0.75rem 1.5rem 0.75rem 2.5rem;
        font-size: 0.9375rem;
        color: var(--gray-600);
        font-weight: 400;
        border-bottom: none;
    }

    .nav--open .nav__dropdown-menu a:hover {
        background: rgba(0, 0, 0, 0.02);
        color: var(--gray-900);
    }

    .nav--open .nav__dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.875rem 1.5rem;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1rem;
        color: var(--gray-900);
        font-weight: 600;
        width: 100%;
        text-align: left;
    }

    .nav--open .nav__dropdown-trigger::after {
        transition: transform 0.2s;
        border-top-color: var(--gray-400);
    }

    .nav--open .nav__dropdown--open .nav__dropdown-trigger {
        color: var(--blue-600);
        background: var(--gray-50);
        border-bottom-color: transparent;
    }

    .nav--open .nav__dropdown--open .nav__dropdown-trigger::after {
        transform: rotate(180deg);
        border-top-color: var(--blue-600);
    }

    /* Hamburger animation when open */
    .nav--open .nav__hamburger span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    .nav--open .nav__hamburger span:nth-child(2) {
        opacity: 0;
    }
    .nav--open .nav__hamburger span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    /* Hamburger → X animation */
    .nav--open .nav__hamburger span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav--open .nav__hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav--open .nav__hamburger span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* --------------------------------------------------------------------------
   19. Login & Dashboard
   -------------------------------------------------------------------------- */

.ar-login-form {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.ar-login-trust {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 1.5rem;
}

.ar-dashboard-greeting {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.ar-dashboard-sub {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.ar-profile-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--blue-600);
}

.ar-profile-card__name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.ar-profile-card__meta {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.ar-profile-card__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.ar-profile-card__delete {
    background: none;
    border: none;
    color: var(--red-500);
    font-size: 0.8125rem;
    cursor: pointer;
    font-family: var(--font-sans);
}

.ar-profile-card__delete:hover {
    text-decoration: underline;
}

.ar-tier-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ar-tier-badge--starter {
    background: var(--gray-100);
    color: var(--gray-500);
}

.ar-tier-badge--professional {
    background: var(--blue-50);
    color: var(--blue-600);
}

.ar-tier-badge--business {
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-600);
}

.ar-tier-badge--trial {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(245, 158, 11, 0.18));
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ============================================================
   Use-Case Landingpages (Phase B1 2026-04-08)
   Template: use_case.html
   ============================================================ */
.uc-pain {
    background: var(--gray-50);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    margin: 0 0 2rem;
}
.uc-pain__text {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: var(--gray-700);
    margin: 0 0 1.25rem;
    font-style: italic;
}
.uc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: var(--border-subtle);
}
.uc-stat { text-align: center; }
.uc-stat__value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--blue-600);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.uc-stat__label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
    line-height: 1.4;
}

.uc-benefits { margin: 2.5rem 0; }
.uc-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}
.uc-benefit {
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: var(--shadow-xs);
}
.uc-benefit__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue-600);
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 0.875rem;
}
.uc-benefit__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}
.uc-benefit__text {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--gray-600);
    margin: 0;
}

.uc-live { margin: 2.5rem 0; }

.uc-regions { margin: 2rem 0; }
.uc-region-pills {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}
.uc-region-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4375rem 0.875rem;
    background: var(--white);
    border: var(--border-subtle);
    border-radius: 99px;
    font-size: 0.8125rem;
    color: var(--gray-700);
}
.uc-region-pill strong {
    color: var(--blue-600);
    font-weight: 700;
}

.uc-cta { margin: 2.5rem 0 2rem; }
.uc-cta__inner {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.06);
}
.uc-cta__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.625rem;
    letter-spacing: -0.02em;
}
.uc-cta__sub {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0 0 1.25rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.uc-cta__form {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    max-width: 460px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.uc-cta__form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 0.75rem 1rem;
    border: var(--border-default);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: inherit;
}

@media (max-width: 639px) {
    .uc-pain { padding: 1.25rem 1.25rem; }
    .uc-pain__text { font-size: 1rem; }
    .uc-stats { grid-template-columns: 1fr; gap: 1rem; }
    .uc-stat__value { font-size: 1.5rem; }
    .uc-benefit-grid { grid-template-columns: 1fr; gap: 0.875rem; }
    .uc-benefit { padding: 1.125rem 1.25rem; }
    .uc-cta__inner { padding: 1.5rem 1.25rem; }
    .uc-cta__title { font-size: 1.125rem; }
    .uc-cta__sub { font-size: 0.875rem; }
}

/* ============================================================
   "Warum AusschreibungsRadar" Vergleichstabelle (Phase B2)
   Template: warum_ausschreibungsradar.html
   ============================================================ */
.warum-compare { margin: 2rem 0; }
.warum-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
    background: var(--white);
}
.warum-table th,
.warum-table td {
    padding: 0.75rem 0.75rem;
    border-bottom: 1px solid var(--gray-100);
    text-align: center;
    vertical-align: top;
}
.warum-table thead th {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-50);
    border-bottom: 2px solid var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
}
.warum-table__feature {
    text-align: left !important;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 180px;
}
.warum-table__alt {
    color: var(--gray-500);
}
.warum-table__us {
    background: rgba(37, 99, 235, 0.05);
    color: var(--gray-900);
    font-weight: 500;
}
.warum-table thead .warum-table__us {
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-600);
}
.warum-table__yes { color: var(--green-600); font-weight: 700; }
.warum-table__no { color: var(--gray-400); }

.warum-honest { margin: 3rem 0 2rem; }
.warum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}
.warum-card {
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-md);
    border: var(--border-subtle);
}
.warum-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.875rem;
    color: var(--gray-900);
}
.warum-card ul {
    margin: 0;
    padding-left: 1.125rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-700);
}
.warum-card ul li { margin-bottom: 0.5rem; }
.warum-card--green {
    background: #f0fdf4;
    border-color: rgba(22, 163, 74, 0.22);
}
.warum-card--amber {
    background: #fffbeb;
    border-color: rgba(245, 158, 11, 0.22);
}

.warum-boundaries {
    margin: 3rem 0 2rem;
    padding: 1.75rem 2rem;
    background: var(--gray-50);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
}
.warum-boundaries__list {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray-700);
    margin: 0;
    padding-left: 1.25rem;
}
.warum-boundaries__list li { margin-bottom: 0.75rem; }
.warum-boundaries__list strong { color: var(--gray-900); }

@media (max-width: 900px) {
    .warum-table { font-size: 0.75rem; }
    .warum-table th, .warum-table td { padding: 0.5rem 0.5rem; }
    .warum-grid { grid-template-columns: 1fr; }
}
@media (max-width: 639px) {
    .warum-compare { margin: 1.5rem -1rem; overflow-x: auto; }
    .warum-boundaries { padding: 1.25rem 1.25rem; }
    .warum-boundaries__list { font-size: 0.875rem; }
}

/* FOMO-Banner fuer Free-User: zeigt verpasste Notices seit Wochen-Alert
   (Phase A2 Conversion-Hebel 2026-04-08) */
.ar-fomo-banner {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.125rem 1.5rem;
    margin: 0 0 1.25rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(37, 99, 235, 0.28);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.08);
}
.ar-fomo-banner__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
}
.ar-fomo-banner__body { flex: 1; min-width: 0; }
.ar-fomo-banner__title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.375rem;
    line-height: 1.4;
}
.ar-fomo-banner__number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-600);
}
.ar-fomo-banner__text {
    font-size: 0.875rem;
    color: #1e40af;
    line-height: 1.55;
    margin: 0;
}
.ar-fomo-banner__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: var(--green-600);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: var(--transition-fast);
    white-space: nowrap;
}
.ar-fomo-banner__cta:hover {
    background: #15803d;
    color: var(--white);
    transform: translateY(-1px);
}
@media (max-width: 639px) {
    .ar-fomo-banner { flex-direction: column; align-items: flex-start; padding: 1rem 1.125rem; }
    .ar-fomo-banner__cta { width: 100%; justify-content: center; }
}

/* Trial-Banner im Dashboard (Phase A1 Conversion-Hebel) */
.ar-trial-banner {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.125rem 1.5rem;
    margin: 0 0 1.25rem 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 2px rgba(245, 158, 11, 0.08);
}
.ar-trial-banner__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
}
.ar-trial-banner__body { flex: 1; min-width: 0; }
.ar-trial-banner__title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.25rem;
}
.ar-trial-banner__text {
    font-size: 0.875rem;
    color: #78350f;
    line-height: 1.5;
    margin: 0;
}
.ar-trial-banner__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: var(--green-600);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: var(--transition-fast);
    white-space: nowrap;
}
.ar-trial-banner__cta:hover {
    background: #15803d;
    color: var(--white);
    transform: translateY(-1px);
}
@media (max-width: 639px) {
    .ar-trial-banner { flex-direction: column; align-items: flex-start; padding: 1rem 1.125rem; }
    .ar-trial-banner__cta { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   20. Bookmarks
   -------------------------------------------------------------------------- */
.ar-bookmark-form {
    display: inline;
}

.ar-bookmark-btn {
    background: none;
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-family: var(--font-sans);
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.15s ease;
}

.ar-bookmark-btn:hover {
    border-color: var(--blue-600);
    color: var(--blue-600);
}

.ar-bookmark-btn--active {
    background: var(--blue-50);
    border-color: var(--blue-600);
    color: var(--blue-600);
}

/* --------------------------------------------------------------------------
   21. New-Since-Login Badge
   -------------------------------------------------------------------------- */
.ar-new-badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.15);
    color: var(--green-600);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-feature-settings: 'tnum' 1;
}

/* Source Link */
.ar-source-link {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--blue-600);
    transition: color 0.15s ease;
}

.ar-source-link:hover {
    color: var(--blue-700);
}

.ar-source-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
    line-height: 1.5;
}

.ar-source-data {
    margin-top: 0.75rem;
    font-size: 0.6875rem;
    color: var(--gray-400);
}


/* --------------------------------------------------------------------------
   22. Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .nav,
    .nav__cta,
    .lp-hero__form,
    .lp-cta-final,
    .ar-premium-teaser__overlay,
    .ar-cta-box,
    .footer__badges {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .ar-premium-teaser__content {
        filter: none;
    }
}

/* Price Estimate */
.ar-price-estimate {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.ar-price-estimate__header p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.ar-price-estimate__range {
    margin-bottom: 1rem;
}

.ar-price-estimate__bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ar-price-estimate__segment {
    padding: 1rem 0.75rem;
    text-align: center;
}

.ar-price-estimate__segment--low {
    background: rgba(37, 99, 235, 0.06);
}

.ar-price-estimate__segment--mid {
    background: rgba(22, 163, 74, 0.08);
}

.ar-price-estimate__segment--high {
    background: rgba(245, 158, 11, 0.06);
}

.ar-price-estimate__label {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.ar-price-estimate__value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.ar-price-estimate__segment--mid .ar-price-estimate__value {
    color: var(--green-600);
}

.ar-price-estimate__disclaimer {
    font-size: 0.6875rem;
    color: var(--gray-400);
    text-align: center;
}

/* Competition Score */
.ar-competition-score {
    padding: 0.375rem 0.5rem;
    margin: 0 -0.5rem;
    border-radius: var(--radius-sm);
}

.ar-competition-score__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.ar-competition-score__label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Zahl neben dem Label — proportionaler zur Umgebung */
.ar-competition-score__header .tnum {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.ar-competition-score__level {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.ar-competition-score__level--low {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-600);
}

.ar-competition-score__level--medium {
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
}

.ar-competition-score__level--high {
    background: rgba(239, 68, 68, 0.08);
    color: var(--red-500);
}

.ar-competition-score__detail {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-feature-settings: 'tnum' 1;
}


/* --------------------------------------------------------------------------
   Branchentrend-Report
   -------------------------------------------------------------------------- */

.ar-report-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.ar-badge--outline {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.ar-badge--outline:hover {
    border-color: var(--blue-600);
    color: var(--blue-600);
}

.ar-badge--active {
    background: var(--blue-600);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ar-badge--blue {
    display: inline-block;
    background: var(--blue-50);
    color: var(--blue-600);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s;
}

.ar-badge--blue:hover {
    background: rgba(37, 99, 235, 0.12);
}

.ar-stats-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ar-trend-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.ar-trend-card {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.ar-trend-card__title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.ar-trend-card__list {
    list-style: none;
    counter-reset: trend;
}

.ar-trend-card__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    counter-increment: trend;
}

.ar-trend-card__list li::before {
    content: counter(trend) ".";
    color: var(--gray-500);
    font-size: 0.75rem;
    width: 1.25rem;
    flex-shrink: 0;
}

.ar-trend-card__sector {
    flex: 1;
    font-weight: 500;
    color: var(--gray-900);
}

.ar-trend-card__change {
    font-size: 0.8125rem;
    font-weight: 600;
    font-feature-settings: 'tnum' 1;
    margin-left: 0.5rem;
}

.ar-trend-card__change--up { color: var(--green-600); }
.ar-trend-card__change--down { color: var(--red-500); }

.ar-trend-card__value {
    font-size: 0.8125rem;
    color: var(--blue-600);
    font-weight: 500;
    font-feature-settings: 'tnum' 1;
    margin-left: 0.5rem;
}

.ar-trend-card--growth { border-top: 3px solid var(--green-600); }
.ar-trend-card--decline { border-top: 3px solid var(--red-500); }
.ar-trend-card--volume { border-top: 3px solid var(--blue-600); }

/* Difficulty badges */
.ar-difficulty {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ar-difficulty--low {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-600);
}

.ar-difficulty--mid {
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
}

.ar-difficulty--high {
    background: rgba(239, 68, 68, 0.08);
    color: var(--red-500);
}

/* Stat chips for regions */
.ar-card-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.ar-stat-chip {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.ar-stat-chip__label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-900);
}

.ar-stat-chip__value {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.125rem;
}

/* Text helpers */
.text-green { color: var(--green-600); font-weight: 600; }
.text-red { color: var(--red-500); font-weight: 600; }

/* Archive cards */
.ar-archive-card {
    display: block;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ar-archive-card:hover {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-md);
}

.ar-archive-card__week {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.ar-archive-card__year {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.ar-archive-card__meta {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Mobile responsive — auf Stripe-Floor 639px statt 768px (Tablets bekommen volle 4-Spalten) */
@media (max-width: 639px) {
    .ar-stats-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }

    .ar-trend-highlights {
        grid-template-columns: 1fr;
    }

    .ar-report-nav {
        padding: 0.75rem;
        gap: 0.375rem;
    }

    /* Tables auf Mobile als Card-Stack rendern: jedes <tr> wird ein
       block-level Card mit Name oben prominent und Meta-Werten darunter.
       Vorher: 700px min-width erzwang horizontales Scrolling und
       schnitt Spalten ab — auf 3-Spalten-Tabellen overkill, plus der
       Login-Gate-Button erbte die 700px und ragte aus der Karte. */
    .ar-table-wrap .ar-table {
        min-width: 0;
    }

    .ar-table-wrap .ar-table thead {
        display: none;
    }

    .ar-table-wrap .ar-table,
    .ar-table-wrap .ar-table tbody,
    .ar-table-wrap .ar-table tr {
        display: block;
        width: 100%;
    }

    .ar-table-wrap .ar-table tbody tr {
        padding: 1.125rem 1.125rem;
        border-bottom: 1px solid var(--gray-200);
        background: transparent;
    }

    .ar-table-wrap .ar-table tbody tr:nth-child(even) {
        background: rgba(0, 0, 0, 0.015);
    }

    .ar-table-wrap .ar-table tbody tr:last-child {
        border-bottom: none;
    }

    .ar-table-wrap .ar-table td {
        display: block;
        padding: 0;
        border: none;
        color: var(--gray-700);
        font-size: 0.875rem;
        line-height: 1.55;
        text-align: left;
    }

    /* Erste Spalte: name/headline — 16px + bold + softer gray-900 statt
       pures gray-950. Pure Schwarz wirkt auf Bold + mehrzeilige Passagen
       wie eine Textwand. line-height 1.5 fuer Atmung in langen
       Buyer-Namen (Bundesministerium-Bandwurmtitel etc.) */
    .ar-table-wrap .ar-table td:first-child {
        font-size: 1rem;
        font-weight: 700;
        color: var(--gray-900);
        line-height: 1.5;
        letter-spacing: -0.005em;
        margin-bottom: 0.5rem;
    }

    /* Folge-Spalten: inline mit data-label Praefix wo verfuegbar */
    .ar-table-wrap .ar-table td:nth-child(n+2) {
        display: inline-block;
        margin-right: 1rem;
    }

    /* Label deutlich heller/duenner als der Wert — visuelle Hierarchie
       damit das Auge sofort den Wert findet ohne erst den Label zu lesen */
    .ar-table-wrap .ar-table td[data-label] {
        color: var(--gray-900);
        font-weight: 600;
    }

    .ar-table-wrap .ar-table td[data-label]::before {
        content: attr(data-label) ": ";
        color: var(--gray-500);
        font-weight: 400;
    }

    /* text-right Modifier auf Mobile aufheben (wuerde mit inline-block
       collidieren) */
    .ar-table-wrap .ar-table td.text-right {
        text-align: left;
    }

    /* Gate-Row exempt von Card-Padding: hat eigene Hoehe + absolutes Layout */
    .ar-table-wrap .ar-table tbody tr.ar-table-gate-row,
    .ar-table-wrap .ar-table tbody tr:has(.ar-table-gate-cell) {
        padding: 0;
        background: transparent;
        border-bottom: none;
    }

    .ar-table-wrap .ar-table td.ar-table-gate-cell {
        display: block;
        padding: 1rem !important;
        margin-bottom: 0;
        font-weight: inherit;
        color: inherit;
    }

    /* Login-Gate-Button auf Mobile: groesserer Touch-Target, lesbarer Text,
       text-wrap balance damit Wraps symmetrisch sind. Max-width verhindert
       dass der Button die ganze Card-Breite einnimmt — sieht buttoniger aus. */
    .ar-table-gate-cell__link {
        display: inline-flex;
        width: auto;
        max-width: calc(100% - 1rem);
        height: auto;
        min-height: 52px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        line-height: 1.35;
        white-space: normal;
        text-wrap: balance;
    }
}


/* --------------------------------------------------------------------------
   Rejection Analysis Bars
   -------------------------------------------------------------------------- */
.ar-rejection-bars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 640px;
}

.ar-rejection-bar__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.375rem;
}

.ar-rejection-bar__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
}

.ar-rejection-bar__pct {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
    font-feature-settings: 'tnum' 1;
}

.ar-rejection-bar__track {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.ar-rejection-bar__fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--blue-600), #818cf8);
    transition: width 0.6s ease-out;
}

.ar-rejection-bar__count {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}


/* --------------------------------------------------------------------------
   Filter Bar
   -------------------------------------------------------------------------- */
.ar-filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.ar-filter-bar__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-right: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ar-filter-bar__tag {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    line-height: 1;
}

.ar-filter-bar__tag:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--blue-600);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 6px 16px -8px rgba(37, 99, 235, 0.25);
}

.ar-filter-bar__tag--active {
    color: var(--white);
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #1d4ed8;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 2px rgba(29, 78, 216, 0.3), 0 4px 12px rgba(37, 99, 235, 0.22);
}

.ar-filter-bar__tag--active:hover {
    color: var(--white);
    border-color: #1d4ed8;
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 4px rgba(29, 78, 216, 0.3), 0 8px 18px rgba(37, 99, 235, 0.3);
}

@media (max-width: 639px) {
    .ar-filter-bar {
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .ar-filter-bar__label {
        width: 100%;
        margin-bottom: 0.25rem;
        font-size: 0.75rem;
    }

    .ar-filter-bar__tag {
        height: 44px;
        padding: 0 1rem;
        font-size: 0.9375rem;
    }
}

/* Export button */
.ar-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue-600);
    background: var(--blue-50);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.ar-export-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--blue-600);
}

.ar-export-btn--sidebar {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    padding: 0.5rem;
}

.ar-search-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Table link style */
.ar-table__link {
    text-decoration: none;
    color: inherit;
}

.ar-table__link:hover strong {
    color: var(--blue-600);
}


/* --------------------------------------------------------------------------
   Deadline Calendar + Watch + Watchlist
   -------------------------------------------------------------------------- */
.ar-deadline-calendar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.ar-deadline-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.625rem 0.5rem;
    min-width: 56px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.ar-deadline-day--warm { border-color: var(--amber-500); background: rgba(245,158,11,0.04); }
.ar-deadline-day--hot  { border-color: var(--red-500); background: rgba(239,68,68,0.04); }

.ar-deadline-day__date { font-size: 0.8125rem; font-weight: 700; color: var(--gray-900); font-feature-settings: 'tnum' 1; }
.ar-deadline-day__count { font-size: 1.25rem; font-weight: 800; color: var(--blue-600); line-height: 1; margin: 0.125rem 0; }
.ar-deadline-day--hot .ar-deadline-day__count { color: var(--red-500); }
.ar-deadline-day--warm .ar-deadline-day__count { color: var(--amber-500); }
.ar-deadline-day__label { font-size: 0.625rem; color: var(--gray-500); text-transform: uppercase; }

.ar-deadline-badge { font-size: 0.75rem; font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 4px; font-feature-settings: 'tnum' 1; }
.ar-deadline-badge--red { background: rgba(239,68,68,0.08); color: var(--red-500); }
.ar-deadline-badge--amber { background: rgba(245,158,11,0.08); color: #b45309; }
.ar-deadline-badge--green { background: rgba(22,163,74,0.06); color: var(--green-600); }

/* Watch/Pipeline Buttons — Conversion-Hierarchie:
   Default (grau outline) → --blue (blau outline) → --primary (filled).
   Alert-CTA oben ist der echte Primary (grün, in Template via inline-style). */
.ar-watch-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
    font-size: 0.8125rem; font-weight: 600; font-family: var(--font-sans);
    color: var(--gray-600); background: var(--white);
    border: 1px solid var(--gray-200); padding: 0.5rem 1rem;
    border-radius: var(--radius-sm); cursor: pointer;
    transition: all var(--transition-fast);
}
.ar-watch-btn:hover { background: var(--gray-50); border-color: var(--gray-300); }
.ar-watch-btn--full { display: block; width: 100%; text-align: center; }

/* Blau-Outline Variante (sekundärer CTA, z.B. "Beobachten") */
.ar-watch-btn--blue {
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.04);
    border-color: rgba(37, 99, 235, 0.2);
}
.ar-watch-btn--blue:hover {
    background: rgba(37, 99, 235, 0.08);
    border-color: var(--blue-600);
}

.ar-watchlist-card { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: 1rem; }
.ar-watchlist-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; gap: 1rem; }
.ar-watchlist-card__name { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.ar-watchlist-card__actions { display: flex; align-items: center; gap: 0.75rem; }
.ar-watchlist-card__remove { font-size: 0.75rem; color: var(--red-500); background: none; border: none; cursor: pointer; font-family: var(--font-sans); }
.ar-watchlist-card__remove:hover { text-decoration: underline; }
.ar-watchlist-card__notices { display: flex; flex-direction: column; gap: 0.375rem; }
.ar-watchlist-card__notice { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0.75rem; background: var(--gray-50); border-radius: var(--radius-sm); text-decoration: none; font-size: 0.8125rem; transition: background 0.15s; }
.ar-watchlist-card__notice:hover { background: var(--gray-100); }
.ar-watchlist-card__notice-title { color: var(--gray-900); font-weight: 500; }
.ar-watchlist-card__notice-date { color: var(--gray-500); font-size: 0.75rem; font-feature-settings: 'tnum' 1; flex-shrink: 0; margin-left: 0.5rem; }

/* Competitor tracking cards */
.ar-competitor-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--white);
    transition: box-shadow 0.2s;
}
.ar-competitor-card:hover { box-shadow: var(--shadow-md); }

/* Compare form + grid */
.ar-compare-form { margin-bottom: 2.5rem; }
.ar-compare-form__inputs { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.ar-compare-form__input { width: 100%; height: 48px; padding: 0 1.25rem; font-size: 0.9375rem; font-family: var(--font-sans); border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); color: var(--gray-900); }
.ar-compare-form__input:focus { border-color: var(--blue-600); box-shadow: var(--shadow-focus); outline: none; }
.ar-compare-form__vs { font-size: 0.875rem; font-weight: 700; color: var(--gray-500); }
.ar-compare-form__btn { height: 48px; padding: 0 2rem; font-size: 0.9375rem; font-weight: 600; font-family: var(--font-sans); background: var(--blue-600); color: var(--white); border: none; border-radius: var(--radius-md); cursor: pointer; width: 100%; }
.ar-compare-form__btn:hover { background: var(--blue-700); }

@media (min-width: 640px) {
    .ar-compare-form__inputs { flex-direction: row; }
    .ar-compare-form__input { flex: 1; }
    .ar-compare-form__btn { width: auto; }
}

.ar-compare-grid { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.ar-compare-grid__header { display: grid; grid-template-columns: 160px 1fr 1fr; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.ar-compare-grid__name { padding: 1rem; font-weight: 700; font-size: 0.9375rem; color: var(--gray-900); }
.ar-compare-grid__row { display: grid; grid-template-columns: 160px 1fr 1fr; border-bottom: 1px solid var(--gray-100); }
.ar-compare-grid__row:last-child { border-bottom: none; }
.ar-compare-grid__label { padding: 0.75rem 1rem; font-size: 0.8125rem; font-weight: 500; color: var(--gray-500); background: var(--gray-50); border-right: 1px solid var(--gray-100); }
.ar-compare-grid__val { padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--gray-700); font-feature-settings: 'tnum' 1; }
.ar-compare-grid__row--wide .ar-compare-grid__val { display: flex; flex-wrap: wrap; gap: 0.25rem; }

@media (max-width: 639px) {
    .ar-compare-grid__header, .ar-compare-grid__row { grid-template-columns: 100px 1fr 1fr; }
    .ar-compare-grid__label { font-size: 0.75rem; padding: 0.5rem; }
    .ar-compare-grid__val { font-size: 0.75rem; padding: 0.5rem; }
    .ar-compare-grid__name { font-size: 0.8125rem; padding: 0.75rem 0.5rem; }
}

.ar-competitor-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.ar-competitor-card__name { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.375rem; }
.ar-competitor-card__meta { display: flex; gap: 0.375rem; flex-wrap: wrap; }

.ar-competitor-card__stats { display: flex; gap: 1.5rem; }
.ar-competitor-card__stat { text-align: center; }
.ar-competitor-card__stat-num { display: block; font-size: 1.125rem; font-weight: 700; color: var(--gray-900); font-feature-settings: 'tnum' 1; white-space: nowrap; }
.ar-competitor-card__stat-label { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); }

.ar-competitor-card__recent { border-top: 1px solid var(--gray-100); padding-top: 1rem; }
.ar-competitor-card__recent-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 0.5rem; }

.ar-competitor-card__win { display: flex; flex-direction: column; padding: 0.5rem 0; border-bottom: 1px solid var(--gray-100); text-decoration: none; transition: background 0.1s; }
.ar-competitor-card__win:last-child { border-bottom: none; }
.ar-competitor-card__win:hover { background: var(--gray-50); margin: 0 -0.5rem; padding-left: 0.5rem; padding-right: 0.5rem; border-radius: var(--radius-sm); }
.ar-competitor-card__win-title { font-size: 0.875rem; font-weight: 500; color: var(--gray-900); }
.ar-competitor-card__win-meta { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.125rem; }

.ar-competitor-card__footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--gray-100); padding-top: 1rem; margin-top: 1rem; }

@media (max-width: 639px) {
    .ar-competitor-card__header { flex-direction: column; }
    .ar-competitor-card__stats { gap: 1rem; }
}


/* --------------------------------------------------------------------------
   Duration Range Chart
   -------------------------------------------------------------------------- */
.ar-duration-chart {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ar-duration-chart__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ar-duration-chart__label {
    width: 200px;
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ar-duration-chart__bar-wrap {
    flex: 1;
    height: 12px;
    background: var(--gray-100);
    border-radius: 6px;
    position: relative;
    min-width: 80px;
}

.ar-duration-chart__range {
    position: absolute;
    top: 1px;
    height: 10px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.25));
    border-radius: 5px;
}

.ar-duration-chart__median {
    position: absolute;
    top: -2px;
    width: 4px;
    height: 14px;
    background: var(--blue-600);
    border-radius: 2px;
    transform: translateX(-2px);
}

.ar-duration-chart__value {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-900);
    min-width: 100px;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 639px) {
    .ar-duration-chart__label {
        width: 120px;
        font-size: 0.75rem;
    }

    .ar-duration-chart__value {
        font-size: 0.75rem;
        min-width: 80px;
    }
}


/* --------------------------------------------------------------------------
   Price Analysis — Sector × Procedure bars
   -------------------------------------------------------------------------- */
.ar-price-sector {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.ar-price-sector:last-child {
    border-bottom: none;
}

.ar-price-sector__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.ar-price-sector__bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ar-price-sector__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ar-price-sector__label {
    width: 200px;
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ar-price-sector__bar-wrap {
    flex: 1;
    height: 10px;
    background: var(--gray-100);
    border-radius: 5px;
    overflow: hidden;
    min-width: 60px;
}

.ar-price-sector__bar {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--blue-600), #818cf8);
    transition: width 0.6s ease-out;
}

.ar-price-sector__value {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-900);
    font-feature-settings: 'tnum' 1;
    min-width: 90px;
    text-align: right;
    white-space: nowrap;
}

.ar-price-sector__samples {
    min-width: 35px;
}

@media (max-width: 639px) {
    .ar-price-sector__label {
        width: 120px;
        font-size: 0.75rem;
    }

    .ar-price-sector__value {
        font-size: 0.75rem;
        min-width: 70px;
    }

    .ar-price-sector__samples {
        display: none;
    }
}

/* Procedure Timeline — lifecycle phases of a tender */
.ar-section__sub {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: -0.5rem 0 1.5rem;
    line-height: 1.5;
}

.ar-procedure-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.ar-procedure-timeline::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-200) 100%);
    border-radius: 1px;
    z-index: 0;
}

.ar-procedure-phase {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.ar-procedure-phase:last-child { margin-bottom: 0; }

.ar-procedure-phase__marker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.25rem;
}

.ar-procedure-phase__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-400);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

/* Phase kinds — idle color tokens */
.ar-procedure-phase--planning .ar-procedure-phase__icon { color: #6366f1; }
.ar-procedure-phase--competition .ar-procedure-phase__icon { color: #2563eb; }
.ar-procedure-phase--change .ar-procedure-phase__icon { color: #f59e0b; }
.ar-procedure-phase--result .ar-procedure-phase__icon { color: #16a34a; }
.ar-procedure-phase--cancelled .ar-procedure-phase__icon { color: #ef4444; }
.ar-procedure-phase--pending .ar-procedure-phase__icon { color: #6b7280; }
.ar-procedure-phase--past.ar-procedure-phase--cancelled .ar-procedure-phase__icon {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.28);
    color: #ef4444;
}
.ar-procedure-phase--current.ar-procedure-phase--cancelled .ar-procedure-phase__icon {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14), 0 8px 24px -8px rgba(239, 68, 68, 0.5);
}
.ar-procedure-phase--current.ar-procedure-phase--cancelled .ar-procedure-phase__body {
    background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%);
    border-color: rgba(239, 68, 68, 0.22);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 32px -12px rgba(239, 68, 68, 0.22);
}

/* Status styling: past = completed (full color, subtle), current = glowing */
.ar-procedure-phase--past.ar-procedure-phase--planning .ar-procedure-phase__icon {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
    color: #6366f1;
}
.ar-procedure-phase--past.ar-procedure-phase--competition .ar-procedure-phase__icon {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
    color: #2563eb;
}
.ar-procedure-phase--past.ar-procedure-phase--change .ar-procedure-phase__icon {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}
.ar-procedure-phase--past.ar-procedure-phase--result .ar-procedure-phase__icon {
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.25);
    color: #16a34a;
}

.ar-procedure-phase--current .ar-procedure-phase__icon {
    transform: scale(1.08);
    border-width: 2px;
}

.ar-procedure-phase--current.ar-procedure-phase--planning .ar-procedure-phase__icon {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12), 0 8px 24px -8px rgba(99, 102, 241, 0.5);
}
.ar-procedure-phase--current.ar-procedure-phase--competition .ar-procedure-phase__icon {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 8px 24px -8px rgba(37, 99, 235, 0.5);
}
.ar-procedure-phase--current.ar-procedure-phase--change .ar-procedure-phase__icon {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14), 0 8px 24px -8px rgba(245, 158, 11, 0.5);
}
.ar-procedure-phase--current.ar-procedure-phase--result .ar-procedure-phase__icon {
    border-color: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14), 0 8px 24px -8px rgba(22, 163, 74, 0.5);
}

/* Phase body — the card on the right */
.ar-procedure-phase__body {
    display: block;
    position: relative;
    padding: 1.125rem 1.375rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    color: inherit;
}

.ar-procedure-phase--current .ar-procedure-phase__body {
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 32px -12px rgba(37, 99, 235, 0.2);
}

.ar-procedure-phase--current.ar-procedure-phase--result .ar-procedure-phase__body {
    background: linear-gradient(180deg, #ffffff 0%, #f6fdf9 100%);
    border-color: rgba(22, 163, 74, 0.22);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 32px -12px rgba(22, 163, 74, 0.22);
}

.ar-procedure-phase--current.ar-procedure-phase--change .ar-procedure-phase__body {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
    border-color: rgba(245, 158, 11, 0.22);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 32px -12px rgba(245, 158, 11, 0.25);
}

.ar-procedure-phase__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.ar-procedure-phase__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.ar-procedure-phase--past .ar-procedure-phase__label {
    color: var(--gray-700);
}

.ar-procedure-phase__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    line-height: 1;
}

.ar-procedure-phase__badge--current {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(22, 163, 74, 0.12));
    color: var(--blue-600);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.ar-procedure-phase--current.ar-procedure-phase--result .ar-procedure-phase__badge--current {
    background: rgba(22, 163, 74, 0.12);
    color: var(--green-600);
    border-color: rgba(22, 163, 74, 0.25);
}

.ar-procedure-phase__badge--count {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.ar-procedure-phase__desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: 0 0 0.875rem 0;
    line-height: 1.5;
}

.ar-procedure-phase__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem 1rem;
}

.ar-procedure-phase__fact--wide {
    grid-column: 1 / -1;
}

.ar-procedure-phase__fact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 0.125rem;
}

.ar-procedure-phase__fact-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Versions-Liste innerhalb einer Phase */
.ar-procedure-versions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.ar-procedure-versions__title {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin: 0 0 0.625rem 0;
}

.ar-procedure-versions__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ar-procedure-version {
    position: relative;
}

.ar-procedure-version__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.ar-procedure-version__link:hover {
    background: var(--gray-50);
}

.ar-procedure-version__link:hover .ar-procedure-version__arrow {
    transform: translateX(3px);
    opacity: 1;
    color: var(--blue-600);
}

.ar-procedure-version--current {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.06), rgba(22, 163, 74, 0.04));
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.ar-procedure-phase--result .ar-procedure-version--current {
    background: linear-gradient(90deg, rgba(22, 163, 74, 0.08), rgba(22, 163, 74, 0.02));
    border-color: rgba(22, 163, 74, 0.2);
}

.ar-procedure-phase--change .ar-procedure-version--current {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
    border-color: rgba(245, 158, 11, 0.22);
}

.ar-procedure-version__bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--gray-300);
}

.ar-procedure-version--original .ar-procedure-version__bullet {
    background: var(--gray-400);
    box-shadow: 0 0 0 1px var(--gray-400);
}

.ar-procedure-version--deadline .ar-procedure-version__bullet {
    background: #f59e0b;
    box-shadow: 0 0 0 1px #f59e0b;
}

.ar-procedure-version--change .ar-procedure-version__bullet {
    background: #6366f1;
    box-shadow: 0 0 0 1px #6366f1;
}

.ar-procedure-version--current .ar-procedure-version__bullet {
    background: var(--blue-600);
    box-shadow: 0 0 0 1px var(--blue-600), 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.ar-procedure-phase--result .ar-procedure-version--current .ar-procedure-version__bullet {
    background: var(--green-600);
    box-shadow: 0 0 0 1px var(--green-600), 0 0 0 4px rgba(22, 163, 74, 0.18);
}

.ar-procedure-phase--change .ar-procedure-version--current .ar-procedure-version__bullet {
    background: #f59e0b;
    box-shadow: 0 0 0 1px #f59e0b, 0 0 0 4px rgba(245, 158, 11, 0.22);
}

.ar-procedure-version__main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.ar-procedure-version__deadline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    flex-shrink: 0;
}

.ar-procedure-version__reason {
    font-size: 0.8125rem;
    color: var(--gray-500);
    overflow: hidden;
    text-overflow: ellipsis;
}

.ar-procedure-version__pill {
    flex-shrink: 0;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.18);
    padding: 0.1875rem 0.5rem;
    border-radius: 999px;
}

.ar-procedure-phase--result .ar-procedure-version--current .ar-procedure-version__pill {
    color: var(--green-600);
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.2);
}

.ar-procedure-phase--change .ar-procedure-version--current .ar-procedure-version__pill {
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.25);
}

.ar-procedure-version__arrow {
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--gray-400);
    opacity: 0.5;
    transition: transform 0.15s ease, opacity 0.15s ease, color 0.15s ease;
}

@media (max-width: 639px) {
    .ar-procedure-timeline::before {
        left: 19px;
    }

    .ar-procedure-phase {
        grid-template-columns: 40px 1fr;
        gap: 0.875rem;
        margin-bottom: 1rem;
    }

    .ar-procedure-phase__icon {
        width: 40px;
        height: 40px;
    }

    .ar-procedure-phase__icon svg {
        width: 16px;
        height: 16px;
    }

    .ar-procedure-phase__body {
        padding: 1rem 1.125rem;
    }

    .ar-procedure-phase__label {
        font-size: 0.9375rem;
    }

    .ar-procedure-phase__desc {
        font-size: 0.9375rem;
    }

    .ar-procedure-phase__facts {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .ar-procedure-phase__fact-value {
        font-size: 0.9375rem;
    }

    .ar-procedure-version__link,
    .ar-procedure-version--current {
        padding: 0.5rem 0.625rem;
        gap: 0.5rem;
    }

    .ar-procedure-version__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.125rem;
    }

    .ar-procedure-version__deadline {
        font-size: 0.875rem;
    }

    .ar-procedure-version__reason {
        font-size: 0.75rem;
    }
}

/* Bid/No-Bid Match Badge */
.ar-badge--match {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(22, 163, 74, 0.1));
    color: var(--blue-600);
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-weight: 600;
}

/* Solution Grid — Quick Access Cards */
.lp-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 740px;
    margin: 0 auto;
}

.lp-solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
    text-decoration: none;
}

.lp-solution-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.lp-solution-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
    display: block;
}

.lp-solution-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    letter-spacing: -0.01em;
}

.lp-solution-card__sub {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0.25rem 0 0;
}

@media (max-width: 639px) {
    .lp-solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .lp-solution-card {
        padding: 1.5rem 0.75rem;
    }

    .lp-solution-card__icon {
        font-size: 1.5rem;
    }

    .lp-solution-card__title {
        font-size: 0.9375rem;
    }

    .lp-solution-card__sub {
        font-size: 0.8125rem;
    }
}


/* --------------------------------------------------------------------------
   Quick-Check: PDF Upload Dropzone + Result Cards
   -------------------------------------------------------------------------- */
.ar-qc-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
    position: relative;
}

.ar-qc-dropzone:hover {
    border-color: var(--blue-600);
    background: rgba(37, 99, 235, 0.03);
}

.ar-qc-dropzone__icon {
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.ar-qc-dropzone:hover .ar-qc-dropzone__icon {
    color: var(--blue-600);
}

.ar-qc-dropzone__text {
    font-size: 1rem;
    color: var(--gray-700);
    margin: 0 0 0.25rem;
}

.ar-qc-dropzone__hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
}

.ar-qc-results {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 720px;
}

.ar-qc-card {
    border-left: 4px solid var(--blue-600);
}

.ar-qc-card__body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-700);
}

/* ---------------------------------------------------------------------------
   Pipeline / CRM Kanban
   --------------------------------------------------------------------------- */
.ar-pipeline-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.ar-pipeline-col {
    min-width: 0;
}
.ar-pipeline-col__header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.5rem 0.75rem;
    background: var(--gray-100);
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ar-pipeline-col__count {
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
}
.ar-pipeline-col__body {
    background: var(--gray-50);
    border-radius: 0 0 8px 8px;
    padding: 0.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ar-pipeline-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.8125rem;
}
.ar-pipeline-card__title {
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
.ar-pipeline-card__title a {
    color: inherit;
    text-decoration: none;
}
.ar-pipeline-card__title a:hover {
    color: var(--blue-600);
}
.ar-pipeline-card__buyer {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}
.ar-pipeline-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.ar-pipeline-card__stage-select {
    width: 100%;
    padding: 0.25rem 0.375rem;
    font-size: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    background: var(--gray-50);
    cursor: pointer;
}
.ar-pipeline-card__notes {
    width: 100%;
    padding: 0.25rem 0.375rem;
    font-size: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    resize: vertical;
    min-height: 2rem;
    font-family: inherit;
}
.ar-pipeline-card__bid {
    width: 100%;
    padding: 0.25rem 0.375rem;
    font-size: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
}
.ar-pipeline-card__save {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
    background: var(--blue-600);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
}
.ar-pipeline-card__save:hover {
    background: var(--blue-700);
}
.ar-pipeline-card__remove {
    font-size: 0.6875rem;
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    align-self: flex-end;
}
.ar-pipeline-card__remove:hover {
    color: var(--red-600);
}

/* Pipeline col header color accents */
.ar-pipeline-col--interessant .ar-pipeline-col__header { border-bottom-color: var(--blue-400); }
.ar-pipeline-col--beobachte .ar-pipeline-col__header { border-bottom-color: var(--yellow-400, #facc15); }
.ar-pipeline-col--biete .ar-pipeline-col__header { border-bottom-color: var(--orange-400, #fb923c); }
.ar-pipeline-col--gewonnen .ar-pipeline-col__header { border-bottom-color: var(--green-500); }
.ar-pipeline-col--verloren .ar-pipeline-col__header { border-bottom-color: var(--red-400, #f87171); }

/* Pipeline mobile: tabs */
@media (max-width: 1023px) {
    .ar-pipeline-board {
        grid-template-columns: 1fr;
    }
    .ar-pipeline-col__body {
        min-height: auto;
    }
}
.ar-pipeline-tabs {
    display: none;
    gap: 0.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.ar-pipeline-tab {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    color: var(--gray-600);
}
.ar-pipeline-tab.active {
    background: var(--blue-600);
    color: #fff;
    border-color: var(--blue-600);
}
@media (max-width: 1023px) {
    .ar-pipeline-tabs {
        display: flex;
    }
    .ar-pipeline-col {
        display: none;
    }
    .ar-pipeline-col.active {
        display: block;
    }
}

/* ============================================================
   Utility & Component Classes (inline-style replacements)
   ============================================================ */

/* Badge Row (flex wrap for badge links) */
.ar-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Stats Row (used on bundesland, kmu, nachhaltigkeit) */
.ar-stats-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.ar-stats-row .ar-notice-sidebar__card {
    flex: 1;
    min-width: 140px;
}

@media (max-width: 639px) {
    .ar-stats-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    .ar-stats-row .ar-notice-sidebar__card {
        min-width: auto;
    }
}

/* Stat Card color variants */
.ar-stat-card--green  { border-left: 4px solid var(--green-600); }
.ar-stat-card--blue   { border-left: 4px solid var(--blue-600); }
.ar-stat-card--purple { border-left: 4px solid #818cf8; }

/* Sidebar Links */
.ar-sidebar-link {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* Price Calculator */
.ar-price-calc {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.ar-price-calc__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.ar-price-calc__value {
    color: var(--gray-700);
}

.ar-price-calc__highlight {
    font-weight: 600;
    color: var(--gray-900);
}

.ar-price-calc__footnote {
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    color: var(--gray-400);
}

/* Market Insights */
.ar-market-insights {
    font-size: 0.8125rem;
}

.ar-market-insights__title {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

/* Sibling Lots — verwandte Lose desselben Gesamtprojekts */
.ar-sibling-lots {
    font-size: 0.8125rem;
}

.ar-sibling-lots__label {
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.25rem 0;
}

.ar-sibling-lots__hint {
    color: var(--gray-500);
    margin: 0 0 0.5rem 0;
    font-size: 0.75rem;
}

.ar-sibling-lots__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ar-sibling-lots__list li a {
    display: block;
    color: var(--blue-600);
    text-decoration: none;
    padding: 0.5rem 0.625rem;
    border: var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.ar-sibling-lots__list li a:hover {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.ar-sibling-lots__title {
    color: var(--gray-700);
    font-weight: 400;
}

@media (max-width: 639px) {
    .ar-sibling-lots {
        font-size: 0.875rem;
    }
    .ar-sibling-lots__list li a {
        padding: 0.625rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* (alte .ar-version-history Komponente entfernt — durch
   .ar-procedure-timeline / .ar-procedure-versions ersetzt) */

/* Settings-Form Rows fuer Notification-Settings */
.ar-radio-row,
.ar-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border: var(--border-subtle);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.ar-radio-row:hover,
.ar-checkbox-row:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.ar-radio-row input,
.ar-checkbox-row input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ar-radio-row strong,
.ar-checkbox-row strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.ar-radio-row span,
.ar-checkbox-row span {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.125rem;
}

/* Site-wide Notification-Banner: zeigt unseen-update-count auf jeder Page */
.ar-update-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.06), rgba(37, 99, 235, 0.04));
    border-bottom: 1px solid rgba(22, 163, 74, 0.15);
    color: var(--gray-900);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background var(--transition-fast);
}

.ar-update-banner:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(37, 99, 235, 0.06));
}

.ar-update-banner__icon {
    font-size: 1.125rem;
    line-height: 1;
}

.ar-update-banner__text {
    flex: 1;
}

.ar-update-banner__text strong {
    color: var(--green-600);
    font-weight: 700;
}

.ar-update-banner__cta {
    color: var(--blue-600);
    font-weight: 600;
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .ar-update-banner {
        padding: 0.625rem 1rem;
        flex-wrap: wrap;
        font-size: 0.8125rem;
    }
    .ar-update-banner__cta {
        font-size: 0.75rem;
    }
}

/* Notice Updates — Dashboard-Block fuer Bookmark/Pipeline/Watchlist Updates */
.ar-notice-updates {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.ar-notice-updates__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ar-notice-updates__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.ar-notice-updates__count {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.ar-notice-updates__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ar-notice-updates__item {
    border: var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.ar-notice-updates__item:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-xs);
}

.ar-notice-updates__link {
    display: block;
    padding: 0.75rem 0.875rem;
    color: var(--gray-900);
    text-decoration: none;
}

.ar-notice-updates__main {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.ar-notice-updates__source {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.ar-notice-updates__source--bookmark {
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-600);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.ar-notice-updates__source--pipeline {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-600);
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.ar-notice-updates__source--watchlist {
    background: rgba(139, 92, 246, 0.08);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.ar-notice-updates__category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.ar-notice-updates__category--frist {
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.2);
}

.ar-notice-updates__category--unterlagen {
    background: rgba(37, 99, 235, 0.06);
    color: var(--blue-600);
    border-color: rgba(37, 99, 235, 0.15);
}

.ar-notice-updates__category--inhalt {
    background: rgba(107, 114, 128, 0.08);
    color: var(--gray-700);
    border-color: rgba(107, 114, 128, 0.15);
}

.ar-notice-updates__category--cancel {
    background: rgba(239, 68, 68, 0.08);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.25);
    font-weight: 700;
}

.ar-notice-updates__category--susp {
    background: rgba(249, 115, 22, 0.08);
    color: #c2410c;
    border-color: rgba(249, 115, 22, 0.2);
}

.ar-notice-updates__category--wert {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-600);
    border-color: rgba(22, 163, 74, 0.18);
}

.ar-notice-updates__category--vertrag_modif {
    background: rgba(139, 92, 246, 0.08);
    color: #7c3aed;
    border-color: rgba(139, 92, 246, 0.18);
}

.ar-notice-updates__new-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.125rem 0.4rem;
    border-radius: var(--radius-sm);
    background: var(--green-600);
    color: var(--white);
    flex-shrink: 0;
}

.ar-notice-updates__item--new {
    border-left: 3px solid var(--green-600);
    background: rgba(22, 163, 74, 0.02);
}

.ar-notice-updates__notice-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-900);
}

.ar-notice-updates__reason {
    font-size: 0.8125rem;
    color: var(--gray-700);
    margin: 0.375rem 0 0;
    line-height: 1.45;
}

.ar-notice-updates__meta {
    font-size: 0.6875rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.ar-notice-updates__upgrade {
    display: block;
    text-align: center;
    margin-top: 0.875rem;
    padding: 0.625rem;
    font-size: 0.8125rem;
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.04);
    border: 1px dashed rgba(37, 99, 235, 0.25);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.ar-notice-updates__upgrade:hover {
    background: rgba(37, 99, 235, 0.08);
}

@media (max-width: 639px) {
    .ar-notice-updates {
        padding: 1rem;
    }
    .ar-notice-updates__notice-title {
        font-size: 0.9375rem;
    }
    .ar-notice-updates__reason {
        font-size: 0.875rem;
    }
}

/* Welcome Card */
.ar-welcome-card {
    border-left: 4px solid var(--green-600);
    margin-bottom: 1.5rem;
}

.ar-welcome-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.ar-welcome-card__sub {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.ar-welcome-card__steps {
    font-size: 0.8125rem;
    color: var(--gray-700);
}

.ar-welcome-card__steps p {
    margin-bottom: 0.375rem;
}

.ar-welcome-card__steps p:last-child {
    margin-bottom: 0;
}

/* Upgrade Card */
.ar-upgrade-card {
    border-left: 4px solid var(--green-600);
    margin-bottom: 1.5rem;
}

.ar-upgrade-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.ar-upgrade-card__sub {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

/* Badge size variant for cross-link badges */
.ar-badge--lg {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
}

/* Badge size variant for CTA-like badges */
.ar-badge--xl {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Watch button primary variant */
.ar-watch-btn--primary {
    background: var(--blue-600);
    border-color: var(--blue-600);
    color: #fff;
}

/* Seasonal Chart */
.ar-season-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 200px;
    padding: 0.5rem 0;
}

.ar-season-chart__bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}

.ar-season-chart__fill {
    width: 100%;
    max-width: 48px;
    background: linear-gradient(180deg, var(--blue-600), rgba(37, 99, 235, 0.6));
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    transition: height 0.3s ease;
}

.ar-season-chart__bar:hover .ar-season-chart__fill {
    background: var(--blue-600);
}

.ar-season-chart__label {
    font-size: 0.6875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-weight: 500;
}

.ar-season-chart__value {
    position: absolute;
    top: -1.25rem;
    font-size: 0.625rem;
    color: var(--gray-400);
    font-feature-settings: 'tnum' 1;
    opacity: 0;
    transition: opacity 0.15s;
}

.ar-season-chart__bar:hover .ar-season-chart__value {
    opacity: 1;
}

/* Extended margin utilities */
.mb-4 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   Mobile Typography — minimum readable sizes
   Ensures no text is too small on phone screens (375px)
   Headlines are NOT touched — only body, labels, meta text
   -------------------------------------------------------------------------- */
@media (max-width: 639px) {
    /* Body text: minimum 0.9375rem (15px) */
    .ar-intro p,
    /* Body-Text Mobile-Floor: 1.0625rem (17px) — iOS San Francisco native
       Body-Text Default fuer maximale Lesbarkeit. 16px war immer noch zu
       klein laut User-Feedback 2026-04-09 (zweite Iteration). */
    .ar-faq__answer p,
    .prose p,
    .ar-source-hint,
    .lp-problem-card p,
    .lp-feat__desc,
    .lp-more-card p,
    .lp-feature-card p,
    .lp-hero__sub,
    .lp-hero__sub2,
    .lp-section__subtitle,
    .lp-steps__item p,
    .lp-problems__card p,
    .lp-founder__text p,
    .lp-cta-final p,
    .ar-hero__subtitle,
    body {
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    /* Sekundaere Metadaten: Card-Rows, Info-Fragmente — 1rem (war 0.9375rem) */
    .lp-feat__card-row,
    .lp-feat__alert-item,
    .lp-feat__winner-row,
    .ar-result-card__meta,
    .ar-notice-sidebar__row-label,
    .ar-notice-sidebar__row-value,
    .ar-notice-sidebar__label,
    .ar-competition-score__detail,
    .ar-market-insights,
    .ar-price-calc,
    .lp-price-card__features li {
        font-size: 1rem;
    }

    /* Landing problem cards — Mobile-Spacing-Floor (Skill: mobile-typography)
       Card-Padding max 1.125rem vertikal, Grid-Gap max 0.875rem. */
    .lp-problem-grid {
        gap: 0.75rem;
    }

    .lp-problem-card {
        padding: 1.125rem 1.25rem;
    }

    .lp-problem-card__unit {
        font-size: 0.8125rem;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.06em;
    }

    .lp-problem-card__num {
        font-size: 1.75rem;
    }

    /* Feature rows */
    .lp-feat__badge {
        font-size: 0.8125rem;
    }

    .lp-feat__link {
        font-size: 1.0625rem;
    }

    /* "Und außerdem" cards */
    .lp-more-card .lp-feat__link {
        font-size: 1.0625rem;
    }

    /* Pricing CTA + details */
    .lp-price-card__cta {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .lp-price-card__yearly {
        font-size: 0.875rem;
    }

    /* Final CTA */
    .lp-cta-final h2 {
        font-size: 1.375rem;
    }

    .lp-cta-final p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* ════════════════════════════════════════════════════════════════
       MOBILE TYPOGRAPHY FLOOR — siehe .claude/skills/mobile-typography
       Best Practices: iOS HIG, Material 3, WCAG 2.2.
       Im Zweifel immer 1 Stufe groesser, niemals kleiner. 12px ist der
       absolute Floor — alles darunter wird hier hochgestuft.
       ════════════════════════════════════════════════════════════════ */

    /* Body content / Buttons / Inputs: 16px Floor (verhindert iOS Zoom) */
    .lp-demo__submit,
    .ar-cta-box__button,
    .ar-cta-box__input,
    .ar-table-gate-cell__link,
    .btn--primary,
    .ar-result-action--bookmark,
    .ar-result-action--pipeline,
    .ar-inline-newsletter__input,
    .ar-inline-newsletter__button,
    .ar-faq__question,
    .lp-faq__item summary {
        font-size: 1rem;
    }

    /* Sekundaer-Buttons / Links: 0.9375rem (15px) Floor */
    .btn--outline,
    .btn--secondary,
    .ar-result-card__details-link,
    .ar-empty__action,
    .ar-search-toolbar__csv {
        font-size: 0.9375rem;
    }

    /* Labels / eyebrows / sidebar links: 0.8125rem (13px) Floor */
    .lp-section__eyebrow,
    .ar-badge,
    .ar-sidebar-link,
    .text-small,
    .ar-cta-box__sub,
    .ar-cta-box a,
    .lp-hero__metric-label,
    .ar-notice-sidebar__label,
    .ar-search-info,
    .ar-price-calc__footnote,
    .ar-source-link,
    .ar-breadcrumb,
    .ar-tool-group__label,
    .ar-discover__eyebrow,
    .ar-onboarding__eyebrow,
    .ar-procedure-phase__fact-label,
    .ar-profile-match__count-label,
    .ar-profile-match__freq,
    .ar-procedure-versions__title,
    .ar-search-toolbar__ai-label,
    .ar-result-card__tags,
    .ar-result-card__meta,
    .ar-notice-updates__meta {
        font-size: 0.8125rem;
    }

    /* Hard Floor 0.75rem (12px) — alles unter 0.75rem hochstufen.
       Diese Klassen waren <0.75rem auf Desktop und sind auf Mobile
       absolut unlesbar. Liste vollstaendig per /tmp/missing_floor.py
       Audit (20 zusaetzliche Klassen am 2026-04-07 ergaenzt). */
    .lp-hero__metric-label,
    .lp-feat__price-labels,
    .ar-deadline-day__label,
    .ar-deadline-day__count,
    .ar-deadline-day--warm,
    .ar-competitor-card__stat-label,
    .ar-competitor-card__stat-num,
    .ar-procedure-version__pill,
    .ar-notice-updates__new-badge,
    .ar-notice-updates__source,
    .ar-notice-updates__category,
    .ar-notice-updates__meta,
    .ar-season-chart__value,
    .ar-season-chart__label,
    .ar-tool__badge,
    .ar-tool__lock,
    .ar-tool__count,
    .ar-quick-strip__count,
    .ar-table-gate-cell,
    .ar-procedure-phase__badge,
    .ar-procedure-phase__fact-label,
    .ar-procedure-versions__title,
    .ar-chip--ai,
    .ar-pipeline-card__remove,
    .ar-pipeline-card__save,
    .ar-price-estimate__label,
    .ar-price-estimate__disclaimer,
    .ar-price-calc__footnote,
    .ar-pricing-matrix__category td,
    .ar-pricing-mobile__badge,
    .ar-ratgeber-featured__eyebrow,
    .ar-side-card__eyebrow,
    .ar-source-data,
    .ar-tier-badge,
    .ar-veat-card__countdown-label,
    .ar-veat-card__winner-label,
    .ar-match-demo__result-annual-label,
    .ar-match-demo__score-label,
    .ar-match-demo__demo-hint,
    .ar-onboarding__eyebrow,
    .ar-discover__eyebrow,
    .ar-tool-group__label,
    .ar-profile-match__freq,
    .ar-profile-match__count-label,
    .ar-search-toolbar__ai-label,
    .ar-search-toolbar__csv,
    .ar-match-pill,
    .lp-section__eyebrow,
    .lp-problem-card__unit,
    .lp-feat__badge,
    .lp-preview__status,
    .lp-preview__badge,
    .lp-preview__table th,
    .lp-stats-strip__label,
    .lp-demo__gate-cta p,
    .footer__source,
    .lp-price-card__risk,
    .lp-price-card__yearly a,
    .footer__stats span,
    .text-muted,
    .ar-table th,
    .ar-badge,
    .ar-result-card__tags .ar-badge {
        font-size: 0.75rem;
    }


    /* Table cells: readable */
    .ar-table td,
    .ar-table th {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
    }

    /* Notice detail sidebar: bigger on mobile */
    .ar-notice-sidebar__value {
        font-size: 1.25rem;
    }

    /* (font-size für .ar-result-card__title kommt aus dem Mobile-Override
       Block bei Zeile ~4814 — hier nicht überschreiben, sonst gewinnt
       diese spätere Regel bei gleicher Spezifität → Cascade-Bug 2026-04-15) */

    /* Sector Cards Mobile: horizontales Layout damit sie auf 360px nicht
       leer/schlicht wirken. Count links gross, Titel + Badge rechts
       gestapelt, Pfeil-Indikator + farbiger Left-Border-Akzent. */
    .ar-sector-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.125rem;
        position: relative;
        min-height: 64px;
        border-left: 3px solid var(--green-600);
        padding-left: calc(1.125rem - 3px);
        overflow: hidden;
    }

    .ar-sector-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background: radial-gradient(ellipse at right, rgba(22, 163, 74, 0.05) 0%, transparent 60%);
        pointer-events: none;
        z-index: 0;
    }

    .ar-sector-card::after {
        content: "→";
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.125rem;
        color: var(--gray-400);
        font-weight: 700;
        z-index: 1;
        transition: transform 0.15s ease, color 0.15s ease;
    }

    .ar-sector-card:active {
        transform: scale(0.985);
        background: var(--gray-50);
    }

    .ar-sector-card:active::after {
        transform: translateY(-50%) translateX(2px);
        color: var(--green-600);
    }

    .ar-sector-card__count {
        font-size: 1.625rem;
        margin: 0;
        flex-shrink: 0;
        min-width: 56px;
        text-align: left;
        position: relative;
        z-index: 1;
    }

    .ar-sector-card h3 {
        font-size: 0.9375rem;
        margin: 0 1.5rem 0 0;
        position: relative;
        z-index: 1;
        flex: 1;
        min-width: 0;
    }

    .ar-sector-card .ar-badge {
        display: none;
    }

    /* FAQ: easier to read */
    .ar-faq__question,
    .lp-faq__item summary {
        font-size: 1rem;
    }

    /* Pricing features */
    .lp-price-card__name {
        font-size: 1.125rem;
    }

    /* (font-size für .lp-price-card__price kommt aus dem früheren Mobile-
       Block bei L491 mit 2rem — hier nicht überschreiben, sonst gewinnt
       diese spätere Regel und schrumpft den Preis. Cascade-Bug 2026-04-15) */
}


/* ── Pricing Matrix (/preise/) ─────────────────────────── */

.ar-pricing-matrix {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.ar-pricing-matrix th {
    padding: 1rem 0.75rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid var(--gray-200);
    position: sticky;
    top: var(--nav-height);
    background: var(--white);
    z-index: 10;
}

/* Fix: beim sticky + border-collapse scheinen Content-Rows durch den
   Header durch wenn der Background irgendwo transparent ist. Deshalb
   MUSS der Business-Spalten-Tint (nth-child 4) im thead opak sein —
   ein rgba-Overlay auf weiss wirkt transparent und laesst die tbody-
   Zellen hindurchscheinen. #fafbff ≈ rgba(37,99,235,0.03) auf weiss.
   Bug: User-Screenshot 2026-04-09 zeigte erste tbody-Row "Ausschreibungs-
   suche..." halb-verdeckt hinter dem sticky Tabellenkopf. */
.ar-pricing-matrix thead th:nth-child(4) {
    background: #fafbff;
}

.ar-pricing-matrix th span {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.ar-pricing-matrix__feature {
    text-align: left !important;
    min-width: 240px;
}

.ar-pricing-matrix__tier--featured {
    background: rgba(37, 99, 235, 0.04);
}

.ar-pricing-matrix__category td {
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-900);
    padding: 1.25rem 0.75rem 0.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.ar-pricing-matrix td {
    padding: 0.625rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.ar-pricing-matrix td:first-child {
    text-align: left;
    color: var(--gray-700);
}

/* Highlight Business column (4th) */
.ar-pricing-matrix td:nth-child(4),
.ar-pricing-matrix th:nth-child(4) {
    background: rgba(37, 99, 235, 0.03);
}

/* Check / dash styling */
.ar-pm-yes {
    color: var(--green-600);
    font-weight: 600;
}

.ar-pm-no {
    color: var(--gray-300);
}

/* CTA row als <tfoot> innerhalb der Tabelle — erbt automatisch die
   Spaltenbreiten, kein Grid-Alignment-Problem mehr (Bug-Fix 2026-04-09).
   Jede Zelle uebernimmt den Background ihrer Spalte (transparent ausser
   Business-Featured). Die Buttons selbst bleiben neutral (weiss/transparent),
   die tfoot-Zellen erben den Spalten-Tint. */
.ar-pricing-matrix__ctas-row td {
    padding: 1.25rem 0.75rem 0.5rem;
    text-align: center;
    border-bottom: none;
    border-top: 2px solid var(--gray-200);
    background: transparent;
}

.ar-pricing-matrix__ctas-row td:first-child {
    border-top: none;
}

/* Featured-Spalte (Business, nth-child 4) bleibt auch im tfoot getint —
   identischer Background wie td:nth-child(4) im tbody oben. */
.ar-pricing-matrix__ctas-row td:nth-child(4) {
    background: rgba(37, 99, 235, 0.03);
}

.ar-pricing-matrix__ctas-row .btn {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    display: inline-block;
    white-space: nowrap;
}

/* FAQ on pricing page */
.ar-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ar-faq__item {
    border-bottom: var(--border-subtle);
    padding: 1.25rem 0;
}

.ar-faq__item summary {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ar-faq__item summary::-webkit-details-marker {
    display: none;
}

.ar-faq__item summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-400);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 1rem;
}

.ar-faq__item[open] summary::after {
    content: "−";
    color: var(--gray-700);
}

.ar-faq__item p {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Mobile: show plan cards, hide matrix */
.ar-pricing-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ar-pricing-mobile__card {
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xs);
    position: relative;
}

.ar-pricing-mobile__card--featured {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 1px var(--blue-600), var(--shadow-sm);
}

.ar-pricing-mobile__badge {
    position: absolute;
    top: -0.625rem;
    left: 1.5rem;
    background: var(--blue-600);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.125rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ar-pricing-mobile__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.25rem;
}

.ar-pricing-mobile__price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1rem;
}

.ar-pricing-mobile__price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-500);
}

.ar-pricing-mobile__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.ar-pricing-mobile__features li {
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.ar-pricing-mobile__features li::before {
    content: "✓";
    color: var(--green-600);
    font-weight: 700;
    flex-shrink: 0;
}

.ar-pricing-mobile__features li:first-child {
    font-style: italic;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 0.625rem;
    margin-bottom: 0.25rem;
}

.ar-pricing-mobile__features li:first-child::before {
    content: "";
}

.ar-pricing-mobile__cta {
    display: block;
    text-align: center;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    background: var(--white);
    transition: all var(--transition-fast);
}

.ar-pricing-mobile__cta:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.ar-pricing-mobile__cta--primary {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}

.ar-pricing-mobile__cta--primary:hover {
    background: var(--green-700);
    color: var(--white);
}

/* Desktop: show grid/matrix, hide mobile cards */
@media (min-width: 769px) {
    .ar-pricing-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .ar-pricing-desktop,
    .lp-pricing-desktop {
        display: none;
    }

    .ar-pricing-hint {
        display: none;
    }
}

@media (min-width: 769px) {
    .ar-pricing-hint {
        display: none;
    }
}

/* ── Utility classes (extracted from inline styles) ─────────────── */

/* Badge navigation row — "Weitere Analysen" / "Verwandte Seiten" link rows */
.ar-badge-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ar-badge--nav {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
}

.ar-badge--nav-lg {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Flex between — row with space-between alignment */
.ar-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Stats grid value color modifiers */
.ar-stats-grid__value--green { color: var(--green-600); }
.ar-stats-grid__value--red   { color: var(--red-500); }
.ar-stats-grid__value--amber { color: var(--amber-500); }

/* Narrow card container (premium features, quick-check) */
.ar-card--narrow {
    max-width: 640px;
}

/* Card accent border variants */
.ar-card--accent-blue   { border-left: 4px solid var(--blue-600); }
.ar-card--accent-green  { border-left: 4px solid var(--green-600); }
.ar-card--accent-red    { border-left: 4px solid var(--red-600); }

/* Filter form layout */
.ar-filter-form__row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.ar-filter-form__group {
    flex: 1;
    min-width: 220px;
}

.ar-filter-form__group--auto {
    flex: 0 0 auto;
}

.ar-filter-form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.ar-filter-form__label-hint {
    font-weight: 400;
    color: var(--gray-500);
}

.ar-filter-form__select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

/* Enterprise gate overlay */
.ar-gate-blur {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.ar-gate-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-gate-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem 3rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    max-width: 480px;
}

.ar-gate-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.ar-gate-card__desc {
    color: var(--gray-500);
    margin: 0 0 1.5rem;
}

/* Feature visual mock items (landing page) */
.lp-feat__check-item {
    padding: 0.375rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-feat__score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.lp-feat__score-row:last-child {
    border-bottom: none;
}

.lp-feat__score-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.lp-feat__score-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.lp-feat__score-value--lg {
    font-size: 1.125rem;
    font-weight: 700;
}

/* Quick-check status badges */
.ar-badge--status-done    { background: var(--green-100); color: var(--green-700); }
.ar-badge--status-pending { background: var(--amber-100); color: var(--amber-700); }
.ar-badge--status-failed  { background: var(--red-100); color: var(--red-700); }

/* Text amber (for medium-range values in tables) */
.text-amber { color: var(--amber-500); font-weight: 600; }

/* Loading Spinner */
.ar-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: ar-spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 0.375rem;
}

@keyframes ar-spin {
    to { transform: rotate(360deg); }
}

/* Lazy-load images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* ───────────────────────────────────────────────────────────
   Dashboard — komplett refaktoriert auf CSS-Klassen.
   Vorher: ~140 Zeilen Inline-Styles im Template.
   ─────────────────────────────────────────────────────────── */

.ar-dashboard {
    max-width: 960px;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}

/* Header — eine Zeile statt 150px */
.ar-dashboard__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.ar-dashboard__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin: 0 0 0.25rem 0;
}

.ar-dashboard__sub {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.ar-dashboard__sub-meta {
    color: var(--gray-400);
}

.ar-dashboard__header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;
}

.ar-dashboard__header-link {
    font-size: 0.8125rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.15s ease;
}

.ar-dashboard__header-link:hover {
    color: var(--blue-600);
}

.ar-dashboard__header-link--muted {
    color: var(--gray-400);
}

/* Quick-Strip — die 4 wichtigsten Tools direkt unter dem Header */
.ar-quick-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.ar-quick-strip__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-900);
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ar-quick-strip__item:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 20px -8px rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.18);
}

.ar-quick-strip__icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.ar-quick-strip__name {
    flex: 1;
    min-width: 0;
}

.ar-quick-strip__count {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    min-width: 1.5rem;
    text-align: center;
}

.ar-quick-strip__count--alert {
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.28);
}

/* Onboarding — persistent */
.ar-onboarding {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(22, 163, 74, 0.04));
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.ar-onboarding__head {
    margin-bottom: 1rem;
}
.ar-onboarding__head-text {
    margin-bottom: 0.75rem;
}
.ar-onboarding__progress {
    height: 6px;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 0.5rem;
}
.ar-onboarding__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-600), var(--green-600));
    border-radius: 99px;
    transition: width 0.4s ease-out;
}

.ar-onboarding__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    margin: 0 0 0.25rem 0;
}

.ar-onboarding__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.ar-onboarding__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
@media (max-width: 900px) {
    .ar-onboarding__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .ar-onboarding__steps { grid-template-columns: 1fr; gap: 0.625rem; }
}

.ar-onboarding__step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ar-onboarding__step:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.ar-onboarding__check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background: var(--gray-100);
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ar-onboarding__step--done .ar-onboarding__check {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    font-size: 1rem;
}

.ar-onboarding__step--done {
    opacity: 0.7;
}

.ar-onboarding__step-body {
    flex: 1;
    min-width: 0;
}

.ar-onboarding__step-body strong {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.ar-onboarding__step-body em {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: normal;
    line-height: 1.4;
}

/* Heute zu tun */
.ar-todo {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ar-todo__header {
    margin-bottom: 1.25rem;
}

.ar-todo__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.01em;
}

.ar-todo__sub {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.ar-todo__group {
    padding: 1rem 0;
    border-top: 1px solid var(--gray-100);
}

.ar-todo__group:first-of-type {
    border-top: none;
    padding-top: 0;
}

.ar-todo__group-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.625rem 0;
}

.ar-todo__group-icon {
    font-size: 1.125rem;
    line-height: 1;
}

.ar-todo__group--reminder .ar-todo__group-label { color: #b45309; }
.ar-todo__group--deadline .ar-todo__group-label { color: var(--blue-600); }
.ar-todo__group--review   .ar-todo__group-label { color: var(--gray-700); }

.ar-todo__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ar-todo__item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}

.ar-todo__item:hover {
    background: var(--gray-50);
}

.ar-todo__item-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.4;
}

.ar-todo__item-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.ar-todo__inline-link {
    display: inline-block;
    margin-left: 1.625rem;
    font-size: 0.8125rem;
    color: var(--blue-600);
    text-decoration: none;
}

.ar-todo__inline-link:hover { text-decoration: underline; }

/* Section wrappers */
.ar-dashboard__section {
    margin-bottom: 2rem;
}

.ar-dashboard__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.ar-dashboard__section-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    letter-spacing: -0.01em;
}

.ar-dashboard__section-link {
    font-size: 0.8125rem;
    color: var(--blue-600);
    text-decoration: none;
}

.ar-dashboard__section-link:hover { text-decoration: underline; }

.ar-dashboard__empty {
    text-align: center;
    padding: 2.5rem 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px dashed var(--gray-200);
}

.ar-dashboard__empty p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin: 0 0 1rem 0;
}

/* Profile-Match Cards */
.ar-profile-matches {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ar-profile-match {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ar-profile-match__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--gray-100);
}

.ar-profile-match__title-row {
    flex: 1;
    min-width: 0;
}

.ar-profile-match__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.25rem 0;
}

.ar-profile-match__freq {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
}

.ar-profile-match__count {
    flex-shrink: 0;
    text-align: right;
}

.ar-profile-match__count-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-600);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ar-profile-match__count-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.ar-profile-match__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ar-profile-match__item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}

.ar-profile-match__item:hover {
    background: var(--gray-50);
}

.ar-profile-match__item-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.4;
}

.ar-profile-match__item-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.ar-profile-match__more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--blue-600);
    text-decoration: none;
}

.ar-profile-match__more:hover { text-decoration: underline; }

.ar-profile-match__empty {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-style: italic;
    margin: 0;
    padding: 0.5rem 0.75rem;
}

/* Tools */
.ar-tool-groups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ar-tool-group__label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin: 0 0 0.625rem 0;
}

.ar-tool-group__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}

.ar-tool {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ar-tool:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--gray-900);
}

.ar-tool__icon {
    font-size: 1.125rem;
    line-height: 1;
}

.ar-tool__name {
    flex: 1;
    min-width: 0;
}

.ar-tool__count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
}

.ar-tool__badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 0.1875rem 0.4375rem;
    border-radius: 999px;
}

.ar-tool--locked {
    opacity: 0.55;
    cursor: not-allowed;
}

.ar-tool--locked:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--gray-700);
}

.ar-tool__lock {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.125rem 0.4375rem;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
}

/* Upgrade-Banner */
.ar-dashboard__upgrade {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.ar-dashboard__upgrade-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--gray-900);
    margin: 0 0 0.25rem 0;
}

.ar-dashboard__upgrade-sub {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
}

@media (max-width: 639px) {
    .ar-dashboard__header {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .ar-dashboard__header-actions {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .ar-quick-strip {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .ar-quick-strip__item {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .ar-onboarding {
        padding: 1.25rem;
    }

    .ar-onboarding__steps {
        grid-template-columns: 1fr;
    }

    .ar-todo,
    .ar-profile-match {
        padding: 1.25rem;
    }

    .ar-profile-match__header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .ar-profile-match__count {
        text-align: left;
    }

    .ar-tool-group__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ar-dashboard__upgrade {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }
}

/* ───────────────────────────────────────────────────────────
   Search-Page — Hero, Filter-Chips, Result-Card-Actions,
   Empty-State, Gated-Card. Komplett refaktoriert auf
   semantische Klassen (vorher: ~25 inline-style Stellen).
   ─────────────────────────────────────────────────────────── */

.ar-search-page {
    max-width: 960px;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}

/* Page Hero — generischer schlanker Header (h1 + sub, ohne Icon-Box).
   Ersetzt das alte Inline-Style-Pattern mit 56px Icon-Gradient-Box +
   centered h1 + p, das in 38 Templates kopiert war. ar-search-hero ist
   ein Alias mit demselben Styling für Such-Hero-Pages mit Form. */
/* Stripe-Wow Hero — wirkt auf alle 35 Seiten die ar-page-hero nutzen.
   Subtiler Gradient-Hintergrund + Bottom-Border wie auf notice_detail.
   2026-04-10: von ar-notice-hero auf alle Seiten ausgerollt. */
.ar-page-hero,
.ar-search-hero {
    text-align: center;
    padding: 2rem 1.5rem 1.75rem;
    margin: -1rem -1rem 2rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-100);
}

.ar-page-hero__title,
.ar-search-hero__title {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-950);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.ar-page-hero__sub,
.ar-search-hero__sub {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 auto 2rem;
    max-width: 640px;
}

.ar-page-hero__eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-600);
    margin-bottom: 0.625rem;
}

/* Frühwarnung Timeline */
.ar-fw-timeline {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 0 2.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ar-fw-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ar-fw-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
    flex-shrink: 0;
}

.ar-fw-timeline__dot--future {
    background: var(--gray-300);
    box-shadow: none;
}

.ar-fw-timeline__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.3;
}

.ar-fw-timeline__label span {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.6875rem;
    display: block;
}

.ar-fw-timeline__connector {
    flex: 1;
    height: 2px;
    background: var(--blue-600);
    margin: 0 0.25rem;
    margin-bottom: 1.35rem;
}

.ar-fw-timeline__connector--future {
    background: var(--gray-200);
}

.ar-fw-timeline__arrow {
    margin-left: auto;
    padding-left: 1.5rem;
    flex-shrink: 0;
}

.ar-fw-timeline__arrow-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-600);
    background: rgba(22,163,74,0.08);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(22,163,74,0.2);
    white-space: nowrap;
}

@media (max-width: 639px) {
    .ar-fw-timeline__arrow { display: none; }
    .ar-fw-timeline { gap: 0; padding: 1rem; }
    .ar-fw-timeline__label { font-size: 0.6875rem; }
}

/* Frühwarnung Filter Block */
.ar-fw-filter-block {
    background: var(--gray-50);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
}

.ar-fw-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ar-fw-search-form__input {
    flex: 1;
    min-width: 160px;
    height: 38px;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-900);
    background: var(--white);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ar-fw-search-form__input:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.ar-fw-search-form__select {
    height: 38px;
    padding: 0 0.625rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s ease;
    white-space: nowrap;
}

.ar-fw-search-form__select:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.ar-fw-search-form__btn {
    height: 38px;
    padding: 0 1.125rem;
    font-size: 0.875rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.ar-fw-search-form__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-400);
    text-decoration: none;
    border-radius: 50%;
    flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
}

.ar-fw-search-form__reset:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}

/* Frühwarnung List Header */
.ar-fw-list-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
}

.ar-fw-list-header__count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.ar-fw-list-header__tags {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

@media (max-width: 639px) {
    .ar-fw-filter-block { padding: 1rem; }
    .ar-fw-search-form__input { min-width: 100%; }
    .ar-fw-search-form__select { flex: 1; }
}

/* Frühwarnung Upgrade CTA Card */
.ar-fw-upgrade-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.ar-fw-upgrade-card--done {
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    border-color: #bbf7d0;
}

.ar-fw-upgrade-card__left {
    flex: 1;
    min-width: 0;
}

.ar-fw-upgrade-card__eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    margin-bottom: 0.375rem;
}

.ar-fw-upgrade-card--done .ar-fw-upgrade-card__eyebrow {
    color: var(--green-600);
}

.ar-fw-upgrade-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.ar-fw-upgrade-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ar-fw-upgrade-card__list li {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding-left: 1.25rem;
    position: relative;
}

.ar-fw-upgrade-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-600);
    font-weight: 700;
    font-size: 0.75rem;
    top: 0.1em;
}

.ar-fw-upgrade-card__sub {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.ar-fw-upgrade-card__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.ar-fw-upgrade-card__btn {
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
}

.ar-fw-upgrade-card__secondary {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-decoration: none;
    text-align: center;
}

.ar-fw-upgrade-card__secondary:hover {
    color: var(--blue-600);
    text-decoration: underline;
}

@media (max-width: 639px) {
    .ar-fw-upgrade-card {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem;
    }
    .ar-fw-upgrade-card__right {
        width: 100%;
    }
    .ar-fw-upgrade-card__btn {
        width: 100%;
    }
}

.ar-search-hero__form {
    margin-bottom: 0.5rem;
}

@media (max-width: 639px) {
    .ar-page-hero,
    .ar-search-hero {
        padding: 1.25rem 1rem 1.25rem;
        margin: -0.5rem -0.5rem 1.25rem;
    }
    .ar-page-hero__title,
    .ar-search-hero__title {
        font-size: 1.25rem;
    }
}

/* Toolbar mit Filter-Chips + Counter */
.ar-search-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1.25rem;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ar-search-toolbar__chips {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ar-search-toolbar__ai-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-left: 0.25rem;
}

.ar-search-toolbar__count {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ar-search-toolbar__count-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
}

.ar-search-toolbar__csv {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.3125rem 0.625rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.15s ease;
}

.ar-search-toolbar__csv:hover {
    background: rgba(37, 99, 235, 0.1);
}

/* Filter-Chips */
.ar-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    height: 32px;
    padding: 0 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ar-chip:hover {
    transform: translateY(-1px);
    background: var(--white);
    border-color: var(--gray-300);
}

.ar-chip__check {
    font-size: 0.75rem;
    line-height: 1;
}

.ar-chip--kmu.ar-chip--active {
    color: var(--green-700);
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.3);
}

.ar-chip--nobond.ar-chip--active {
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.22);
}

.ar-chip--veat.ar-chip--active {
    color: #b91c1c;
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
}

.ar-chip--ai {
    height: 26px;
    padding: 0 0.625rem;
    font-size: 0.6875rem;
    color: var(--blue-600);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(99, 102, 241, 0.06));
    border-color: rgba(37, 99, 235, 0.18);
    cursor: default;
}

.ar-chip--ai:hover {
    transform: none;
}

/* Match-Score Pill */
.ar-match-pill {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.1875rem 0.5rem;
    border-radius: 999px;
    line-height: 1;
}

.ar-match-pill--high {
    color: var(--green-600);
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.ar-match-pill--mid {
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.ar-match-pill--low {
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

/* Result-Card head-aside (right side: match + value) */
.ar-result-card__head-aside {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ar-result-card__preview {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0.375rem 0 0;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Deadline-Badge */
.ar-badge--deadline {
    font-weight: 700;
}

.ar-badge--deadline-urgent {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.22);
}

.ar-badge--deadline-soon {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.25);
}

/* Result-Card-Actions Row */
.ar-result-card__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.625rem;
    margin-top: 0.625rem;
    border-top: 1px solid var(--gray-100);
}

.ar-result-card__action-form {
    margin: 0;
}

.ar-result-action {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    height: 30px;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.ar-result-action:hover {
    color: var(--blue-600);
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.04);
}

.ar-result-action--active {
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.ar-result-action--pipeline-done {
    color: var(--green-600);
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.2);
    cursor: default;
}

.ar-result-action--pipeline-done:hover {
    color: var(--green-600);
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.2);
}

.ar-result-card__details-link {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
}

.ar-result-card__details-link:hover {
    text-decoration: underline;
}

/* Empty-State */
.ar-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border: 1px dashed var(--gray-200);
    border-radius: 14px;
    margin: 1.5rem 0;
}

.ar-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.ar-empty__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
}

.ar-empty__sub {
    font-size: 0.875rem;
    color: var(--gray-500);
    max-width: 440px;
    margin: 0 auto 1.25rem;
    line-height: 1.6;
}

.ar-empty__actions {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ar-empty__action {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    text-decoration: none;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.ar-empty__action:hover {
    transform: translateY(-1px);
    border-color: var(--gray-300);
}

.ar-empty__action--blue {
    color: var(--blue-600);
    background: rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.18);
}

.ar-empty__action--green {
    color: var(--green-700);
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.22);
}

/* Gated-Card */
.ar-gated-card {
    text-align: center;
    padding: 2.5rem 2rem;
    margin: 1.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ar-gated-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
}

.ar-gated-card__sub {
    font-size: 0.9375rem;
    color: var(--gray-500);
    max-width: 440px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.ar-gated-card__hint {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.75rem;
}

/* Feature-Variante mit Icon, Features-Liste, prominent CTA */
.ar-gated-card--feature {
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafd 100%);
    border-color: rgba(37, 99, 235, 0.12);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 40px -16px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.ar-gated-card--feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-600), var(--blue-600), #4f46e5);
}

.ar-gated-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    font-size: 1.875rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 50%;
    line-height: 1;
}

.ar-gated-card--feature .ar-gated-card__title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.ar-gated-card--feature .ar-gated-card__sub {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.ar-gated-card__features {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.75rem;
    max-width: 360px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ar-gated-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
    font-weight: 500;
}

.ar-gated-card__feature-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ar-gated-card__cta {
    height: 48px;
    padding: 0 1.75rem;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.ar-gated-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.32);
}

/* Inline Newsletter CTA — low-commitment alternative */
.ar-inline-newsletter {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.04), rgba(37, 99, 235, 0.04));
    border: 1px solid rgba(22, 163, 74, 0.14);
    border-radius: 14px;
}

.ar-inline-newsletter__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid rgba(22, 163, 74, 0.18);
    border-radius: 12px;
    font-size: 1.375rem;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.12);
}

.ar-inline-newsletter__body {
    flex: 1;
    min-width: 0;
}

.ar-inline-newsletter__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.01em;
}

.ar-inline-newsletter__sub {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.ar-inline-newsletter__form {
    display: flex;
    gap: 0.5rem;
}

.ar-inline-newsletter__input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--gray-900);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ar-inline-newsletter__input:focus {
    outline: none;
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.ar-inline-newsletter__button {
    flex-shrink: 0;
    height: 44px;
    padding: 0 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--white);
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(21, 128, 61, 0.3), 0 4px 12px rgba(22, 163, 74, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ar-inline-newsletter__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(21, 128, 61, 0.3), 0 8px 18px rgba(22, 163, 74, 0.28);
}

@media (max-width: 639px) {
    .ar-gated-card--feature {
        padding: 2rem 1.25rem 1.5rem;
    }

    .ar-gated-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .ar-gated-card--feature .ar-gated-card__title {
        font-size: 1.125rem;
    }

    .ar-gated-card__features li {
        font-size: 0.875rem;
    }

    .ar-inline-newsletter {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
    }

    .ar-inline-newsletter__form {
        flex-direction: column;
    }

    .ar-inline-newsletter__button {
        width: 100%;
    }
}

@media (max-width: 639px) {
    .ar-search-toolbar {
        padding: 0.75rem;
    }

    .ar-search-toolbar__chips {
        gap: 0.375rem;
    }

    .ar-chip {
        height: 30px;
        padding: 0 0.75rem;
        font-size: 0.75rem;
    }

    .ar-result-card__head-aside {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
    }

    .ar-result-card__actions {
        flex-wrap: wrap;
    }

    .ar-empty {
        padding: 2rem 1rem;
    }
}

/* ───────────────────────────────────────────────────────────
   Discover-Section auf der leeren Such-Seite — Branchen-Cards
   und Filter-Cards im Stripe-Stil. Ersetzt die alte
   .ar-search-suggestions / .ar-search-tag Pill-Wolke.
   ─────────────────────────────────────────────────────────── */

.ar-discover {
    margin: 2.5rem 0;
}

.ar-discover__header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.ar-discover__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    margin: 0 0 0.375rem 0;
}

.ar-discover__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    margin: 0;
}

.ar-discover__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.ar-discover__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.ar-discover-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.125rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    color: var(--gray-900);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ar-discover-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 28px -12px rgba(37, 99, 235, 0.22);
    border-color: rgba(37, 99, 235, 0.2);
}

.ar-discover-card__icon {
    font-size: 1.375rem;
    line-height: 1;
    flex-shrink: 0;
}

.ar-discover-card__name {
    flex: 1;
    min-width: 0;
}

.ar-discover-card__arrow {
    flex-shrink: 0;
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: transform 0.2s ease, color 0.2s ease;
}

.ar-discover-card:hover .ar-discover-card__arrow {
    transform: translateX(3px);
    color: var(--blue-600);
}

/* Feature-Variante mit größerem Body + Description */
.ar-discover-card--feature {
    padding: 1.25rem 1.375rem;
    align-items: flex-start;
}

.ar-discover-card--feature .ar-discover-card__icon {
    font-size: 1.625rem;
    margin-top: 0.125rem;
}

.ar-discover-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ar-discover-card__body strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.ar-discover-card__body em {
    font-style: normal;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray-500);
    line-height: 1.4;
}

.ar-discover-card--feature .ar-discover-card__arrow {
    margin-top: 0.25rem;
}

/* Color-themed feature cards on hover */
.ar-discover-card--kmu:hover {
    border-color: rgba(22, 163, 74, 0.25);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 28px -12px rgba(22, 163, 74, 0.25);
}
.ar-discover-card--kmu:hover .ar-discover-card__arrow { color: var(--green-600); }

.ar-discover-card--nobond:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 28px -12px rgba(37, 99, 235, 0.28);
}

.ar-discover-card--veat:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 28px -12px rgba(245, 158, 11, 0.3);
}
.ar-discover-card--veat:hover .ar-discover-card__arrow { color: #f59e0b; }

@media (max-width: 880px) {
    .ar-discover__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ar-discover__grid--3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .ar-discover__grid {
        grid-template-columns: 1fr;
    }
    .ar-discover-card {
        padding: 0.875rem 1rem;
    }
}

/* ───────────────────────────────────────────────────────────
   Side-Card — Sidebar Komponente fuer Kennzahlen, Branchen-
   Navigation, Auftraggeber-Stats etc. Stripe-Card mit Eyebrow,
   Title, Body und optionalem CTA. Konsistent mit ar-page-hero,
   ar-discover und Dashboard-Pattern.
   ─────────────────────────────────────────────────────────── */

.ar-side-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.ar-side-card:last-child {
    margin-bottom: 0;
}

/* Subtle theme-glow am rechten Rand fuer Tiefe */
.ar-side-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.ar-side-card > * {
    position: relative;
    z-index: 1;
}

.ar-side-card__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    margin: 0 0 0.375rem 0;
}

.ar-side-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.015em;
    margin: 0 0 1.125rem 0;
    line-height: 1.3;
}

.ar-side-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 48px;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 2px rgba(21, 128, 61, 0.4), 0 4px 12px rgba(22, 163, 74, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.ar-side-card__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 4px rgba(21, 128, 61, 0.4), 0 8px 20px rgba(22, 163, 74, 0.32);
    color: var(--white);
}

.ar-side-card__cta-arrow {
    transition: transform 0.2s ease;
    font-size: 1rem;
}

.ar-side-card__cta:hover .ar-side-card__cta-arrow {
    transform: translateX(3px);
}

/* Stat-Rows: Key-Value Liste mit Color-Akzenten und Dividers.
   Ersetzt das alte dl/dt/dd Browser-Default-Layout. */
.ar-stat-rows {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.ar-stat-rows__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    gap: 1rem;
}

.ar-stat-rows__row:last-child {
    border-bottom: none;
}

/* Highlight-Row: subtle background tint + thicker border-bottom */
.ar-stat-rows__row--highlight {
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.04));
    margin: 0 -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 8px;
    border-bottom-color: transparent;
}

.ar-stat-rows__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
    margin: 0;
}

.ar-stat-rows__value {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: right;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1;
}

.ar-stat-rows__suffix {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-left: 0.125rem;
}

.ar-stat-rows__value--green { color: var(--green-600); }
.ar-stat-rows__value--blue  { color: var(--blue-600); }
.ar-stat-rows__value--red   { color: var(--red-500); }
.ar-stat-rows__value--amber { color: var(--amber-500); }

/* Side-Pills: pill-Navigation Liste fuer "Weitere Branchen" etc.
   Stripe-styled mit hover-lift und theme-color border. */
.ar-side-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ar-side-pill {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ar-side-pill:hover {
    transform: translateY(-1px);
    color: var(--blue-600);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 6px 16px -8px rgba(37, 99, 235, 0.25);
}

@media (max-width: 639px) {
    .ar-side-card {
        padding: 1.25rem;
    }

    .ar-side-card__title {
        font-size: 1rem;
    }

    .ar-stat-rows__row {
        padding: 0.625rem 0;
    }

    .ar-stat-rows__label {
        font-size: 0.875rem;
    }

    .ar-stat-rows__value {
        font-size: 1rem;
    }

    .ar-side-pill {
        height: 32px;
        font-size: 0.8125rem;
    }
}

/* ───────────────────────────────────────────────────────────
   BEM-Aliase + Missing Sub-Klassen — gleiches Bug-Pattern wie
   ar-stats-grid__item / ar-notice-layout__main / ar-notice-
   sidebar__title: historische Templates nutzen Naming-Variants
   die nie in CSS gelandet sind. Hier alle 22 echten Luecken
   geschlossen die der Scan vom 2026-04-07 gefunden hat.
   ─────────────────────────────────────────────────────────── */

/* ar-result-list — Container fuer ar-result-card Listen.
   Nutzen 8 Templates: bundesland_detail, fruehwarnung, kmu_landing,
   nachhaltigkeit, prognose, search, umkreissuche, sector_index */
.ar-result-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

/* ar-result-card__main — wrapper fuer title+meta in der Result-Card,
   geschwister von __value rechts. Nutzen 5 Templates. */
.ar-result-card__main {
    flex: 1;
    min-width: 0;
}

/* ar-result-card__badges — alias fuer __tags */
.ar-result-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
}

/* ar-card__title/__desc/__link — Subkomponenten fuer ar-card
   Nutzen glossar_detail, glossar_index, ratgeber_detail */
.ar-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.ar-card__desc {
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin: 0 0 0.875rem 0;
    line-height: 1.55;
}

.ar-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue-600);
}

.ar-card__link::after {
    content: " →";
    transition: transform 0.15s ease;
}

a.ar-card:hover .ar-card__link::after {
    transform: translateX(2px);
}

/* ar-notice-layout__sidebar — alias fuer ar-notice-sidebar */
.ar-notice-layout__sidebar {
    order: 1;
}

@media (min-width: 1024px) {
    .ar-notice-layout__sidebar {
        order: 0;
        position: sticky;
        top: calc(var(--nav-height) + 2rem);
        align-self: start;
    }
}

/* ar-tool-group — singular alias fuer .ar-tool-groups > .ar-tool-group
   pattern (2 Stellen in dashboard.html) */
.ar-tool-group {
    margin-bottom: 0;
}

.ar-tool-group + .ar-tool-group {
    margin-top: 1.25rem;
}

/* ar-rejection-bar — Container fuer einzelne Rejection-Bar mit
   __header/__label/__pct/__track/__fill/__count children. War nur
   als plural .ar-rejection-bars definiert. */
.ar-rejection-bar {
    display: flex;
    flex-direction: column;
}

/* ar-pricing-matrix__wrap — Overflow-Wrapper fuer breite Tabellen.
   ar-pricing-matrix__tier — Header-Cell pro Tier. */
.ar-pricing-matrix__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
}

.ar-pricing-matrix__tier {
    text-align: center;
    font-weight: 700;
    color: var(--gray-900);
    padding: 1rem 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.ar-pricing-matrix__tier span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.ar-pricing-matrix__tier--featured {
    background: rgba(37, 99, 235, 0.04);
    border-bottom-color: var(--blue-600);
    color: var(--blue-600);
}

.ar-pricing-matrix__feature {
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.625rem 0.75rem;
}

.ar-pricing-matrix__category td {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--gray-900);
    padding: 0.75rem;
    text-transform: uppercase;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
}

/* Kleine harmlose layout-wrapper die Browser-Default OK rendern
   aber semantisch in CSS dokumentiert sein sollten */
.ar-alert-form,
.ar-dashboard__hello,
.ar-page-hero__action,
.ar-notice-updates__actions,
.ar-notice-updates__settings,
.ar-checkbox-card__text,
.ar-upgrade-cta__content,
.ar-alert-preview__sticky,
.ar-pagination__info,
.ar-analysis,
.ar-tag,
.ar-result-action--pipeline {
    /* No-op: existieren als Wrapper / JS-Hooks / dynamische Modifier.
       Hier explizit selektiert damit der mobile-typography Skill und
       andere Audits sie kennen. */
}

/* ───────────────────────────────────────────────────────────
   Match-Score-Demo — Interactive Value-Prover fuer anonyme User.
   Ersetzt auf content-heavy Pages die Blur-Paywall-Versuchung:
   User gibt 2 Felder ein, bekommt sofort personalisierte Zahlen
   + 3 Live-Treffer + simulierten Match-Score. Laut B2B-Research
   +52% bessere Lead-Conversion als statische Content-Gates.
   Erstes Rollout: branche_detail.html (2026-04-07).
   ─────────────────────────────────────────────────────────── */

.ar-match-demo {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafd 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    padding: 1.75rem 1.75rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 40px -20px rgba(37, 99, 235, 0.2);
    overflow: hidden;
}

.ar-match-demo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-600), var(--blue-600), #4f46e5);
}

.ar-match-demo__header {
    margin-bottom: 1.25rem;
}

.ar-match-demo__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    margin: 0 0 0.5rem 0;
}

.ar-match-demo__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.015em;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    text-wrap: balance;
}

.ar-match-demo__sub {
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.5;
}

.ar-match-demo__form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.75rem;
    align-items: end;
}

.ar-match-demo__field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    min-width: 0;
}

.ar-match-demo__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ar-match-demo__select {
    height: 48px;
    padding: 0 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.ar-match-demo__select:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.ar-match-demo__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 48px;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--white);
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 2px rgba(29, 78, 216, 0.3), 0 4px 12px rgba(37, 99, 235, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.ar-match-demo__submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 4px rgba(29, 78, 216, 0.3), 0 8px 20px rgba(37, 99, 235, 0.3);
}

.ar-match-demo__submit svg {
    transition: transform 0.2s ease;
}

.ar-match-demo__submit:hover svg {
    transform: translateX(2px);
}

/* Result-State */
.ar-match-demo__result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(37, 99, 235, 0.2);
    animation: ar-match-fade 0.4s ease;
}

@keyframes ar-match-fade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.ar-match-demo__loading {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9375rem;
    padding: 1rem 0;
}

.ar-match-demo__result-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.ar-match-demo__result-count {
    display: flex;
    flex-direction: column;
}

.ar-match-demo__result-num {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--green-600);
    letter-spacing: -0.035em;
    line-height: 1;
}

.ar-match-demo__result-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 0.375rem;
}

.ar-match-demo__result-period {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.125rem;
}

.ar-match-demo__result-annual {
    text-align: right;
    padding: 0.75rem 1rem;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 10px;
}

.ar-match-demo__result-annual-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

.ar-match-demo__result-annual-num {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--blue-600);
    letter-spacing: -0.02em;
    margin-top: 0.125rem;
}

.ar-match-demo__result-subhead {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin: 1.25rem 0 0.75rem;
}

.ar-match-demo__demo-hint {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gray-400);
    font-style: italic;
}

.ar-match-demo__examples {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* List-Item Wrapper — no list bullet, semantischer Container */
.ar-match-demo__example {
    list-style: none;
}

/* Submit-Button Text-Span — wird auf Mobile via display:none ausgeblendet
   wenn Platz knapp ist (Pfeil bleibt sichtbar) */
.ar-match-demo__submit-text {
    /* Default: sichtbar */
}

.ar-match-demo__example-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.125rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ar-match-demo__example-link:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 8px 20px -8px rgba(37, 99, 235, 0.22);
    color: inherit;
}

.ar-match-demo__example-main {
    flex: 1;
    min-width: 0;
}

.ar-match-demo__example-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.35;
    margin-bottom: 0.125rem;
}

.ar-match-demo__example-meta {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.ar-match-demo__example-score {
    flex-shrink: 0;
    text-align: center;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 10px;
    min-width: 64px;
}

.ar-match-demo__score-num {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--green-600);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ar-match-demo__score-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-top: 0.125rem;
}

.ar-match-demo__cta-box {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.04), rgba(37, 99, 235, 0.04));
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: 12px;
}

.ar-match-demo__cta-headline {
    font-size: 1rem;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.ar-match-demo__cta-sub {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin: 0 0 1.25rem 0;
    line-height: 1.55;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.ar-match-demo__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 2px rgba(21, 128, 61, 0.4), 0 4px 14px rgba(22, 163, 74, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.ar-match-demo__cta-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    color: var(--white);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 4px rgba(21, 128, 61, 0.4), 0 8px 22px rgba(22, 163, 74, 0.36);
}

.ar-match-demo__cta-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0.875rem 0 0 0;
}

@media (max-width: 639px) {
    .ar-match-demo {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 14px;
    }

    .ar-match-demo__title {
        font-size: 1.0625rem;
    }

    .ar-match-demo__sub {
        font-size: 0.875rem;
    }

    .ar-match-demo__form {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .ar-match-demo__submit {
        width: 100%;
    }

    .ar-match-demo__result-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .ar-match-demo__result-num {
        font-size: 2.25rem;
    }

    .ar-match-demo__result-annual {
        text-align: center;
    }

    .ar-match-demo__example-link {
        padding: 0.875rem 1rem;
        gap: 0.625rem;
    }

    .ar-match-demo__example-title {
        font-size: 1rem;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .ar-match-demo__example-meta {
        font-size: 0.875rem;
    }

    /* Score-Pill kompakter — verhindert dass der Title-Spalte nur wenig
       Platz bleibt (deutsche Compound-Woerter brechen sonst mid-word) */
    .ar-match-demo__example-score {
        padding: 0.4375rem 0.5rem;
        min-width: 56px;
    }
    .ar-match-demo__score-num {
        font-size: 1rem;
    }

    .ar-match-demo__cta-btn {
        width: 100%;
    }
}

/* ──────────────────────────────────────────────────────────
   Fact-Sheet: strukturierte eForms-Pflichtangaben
   ────────────────────────────────────────────────────────── */

.ar-factsheet {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
    padding: 2rem 2.25rem 1.75rem 2.25rem;
    margin: 2rem 0;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ar-factsheet::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 50%, #84cc16 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ar-factsheet:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(22, 163, 74, 0.08);
    transform: translateY(-1px);
}

.ar-factsheet__header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.ar-factsheet__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(132, 204, 22, 0.1) 100%);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ar-factsheet__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
}

.ar-factsheet__badges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.ar-factsheet-badge {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
}

.ar-factsheet-badge__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ar-factsheet-badge__icon {
    font-size: 1.125rem;
}

.ar-factsheet-badge__title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ar-factsheet-badge__labels {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ar-factsheet-badge__labels li {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.45;
}

.ar-factsheet-badge__labels li::before {
    content: "✓ ";
    color: var(--green-600);
    font-weight: 700;
    margin-right: 0.25rem;
}

.ar-factsheet-badge__criteria {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0.5rem 0 0 0;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--gray-200);
    font-style: italic;
    line-height: 1.5;
}

.ar-factsheet__row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.ar-factsheet__row:last-of-type {
    border-bottom: none;
}

.ar-factsheet__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ar-factsheet__value {
    font-size: 0.9375rem;
    color: var(--gray-900);
    line-height: 1.55;
    margin: 0;
}

.ar-factsheet__footer {
    margin-top: 1rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.ar-factsheet__footer a {
    color: var(--gray-500);
    text-decoration: underline;
    text-decoration-color: var(--gray-300);
}

/* Mobile: Fact-Sheet kompakter */
@media (max-width: 639px) {
    .ar-factsheet {
        padding: 1rem 1.125rem;
        margin: 1rem 0;
    }

    .ar-factsheet__header {
        margin-bottom: 0.875rem;
        padding-bottom: 0.625rem;
    }

    .ar-factsheet__title {
        font-size: 0.9375rem;
    }

    .ar-factsheet__badges {
        grid-template-columns: 1fr;
        gap: 0.625rem;
        margin-bottom: 0.875rem;
    }

    .ar-factsheet-badge {
        padding: 0.75rem 0.875rem;
    }

    .ar-factsheet-badge__labels li {
        font-size: 0.8125rem;
    }

    .ar-factsheet__value {
        font-size: 0.875rem;
    }
}

/* ──────────────────────────────────────────────────────────
   Zitate-Extraktor: woertliche Zitate aus Bekanntmachungen
   ────────────────────────────────────────────────────────── */

/* Stripe-Wow: Card mit Gradient-Top-Bar, Icon-Circle, Glow-Hover */
.ar-quotes {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
    padding: 2rem 2.25rem 1.75rem 2.25rem;
    margin: 2rem 0;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ar-quotes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-600) 0%, #6366f1 50%, #8b5cf6 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ar-quotes:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}

.ar-quotes__header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

.ar-quotes__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ar-quotes__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
}

.ar-quotes__intro {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0 0 1.75rem 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.ar-quote-cat {
    margin-bottom: 1.75rem;
}

.ar-quote-cat:last-of-type {
    margin-bottom: 0;
}

.ar-quote-cat__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ar-quote-cat__icon {
    font-size: 0.9375rem;
    line-height: 1;
}

.ar-quote-cat__title {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.ar-quote-cat__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ar-quote-card {
    position: relative;
    background: linear-gradient(135deg, var(--gray-50) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 1px solid var(--gray-100);
    border-left: 3px solid var(--blue-600);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem 1.25rem 0.875rem 1.25rem;
    margin: 0;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.ar-quote-card:hover {
    background: linear-gradient(135deg, #fafbff 0%, rgba(37, 99, 235, 0.04) 100%);
    border-left-color: #6366f1;
}

.ar-quote-card__text {
    font-size: 1rem;
    color: var(--gray-900);
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    quotes: none;
}

.ar-quote-card__mark {
    color: var(--blue-600);
    font-weight: 700;
    font-size: 1.25rem;
    font-style: normal;
    line-height: 0;
    position: relative;
    top: 0.1em;
}

.ar-quote-card__source {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    color: var(--gray-400);
    margin-top: 0.625rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.ar-quote-card__source::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 1px;
    background: var(--gray-300);
}

.ar-quotes__gate {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.25rem 0 0 0;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(22, 163, 74, 0.04) 100%);
    border: 1px dashed var(--blue-600);
    border-radius: var(--radius-md);
}

.ar-quotes__gate-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ar-quotes__gate-body {
    flex: 1;
}

.ar-quotes__gate-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.375rem 0;
}

.ar-quotes__gate-sub {
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
}

.ar-quotes__gate-cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--green-600);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.ar-quotes__gate-cta:hover {
    background: var(--green-700, #15803d);
}

.ar-quotes__gate-risk {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
}

.ar-quotes__footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.6875rem;
    color: var(--gray-500);
    line-height: 1.55;
}

.ar-quotes__footer a {
    color: var(--gray-500);
    text-decoration: underline;
    text-decoration-color: var(--gray-300);
}

/* Mobile: Zitate kompakter */
@media (max-width: 639px) {
    .ar-quotes {
        padding: 1rem 1.125rem;
        margin: 1rem 0;
    }

    .ar-quotes__title {
        font-size: 0.9375rem;
    }

    .ar-quotes__intro {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.75rem;
    }

    .ar-quote-card {
        padding: 0.75rem 0.875rem;
    }

    .ar-quote-card__text {
        font-size: 1rem;
    }

    .ar-quotes__gate {
        flex-direction: column;
        padding: 1rem;
    }
}

/* ──────────────────────────────────────────────────────────
   Match-Score 2.0: Quote-basierter Bid/No-Bid-Check
   ────────────────────────────────────────────────────────── */

.ar-match-check {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
    padding: 2rem 2.25rem 1.75rem 2.25rem;
    margin: 2rem 0;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ar-match-check::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b 0%, #fb923c 50%, #ef4444 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ar-match-check:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(245, 158, 11, 0.08);
    transform: translateY(-1px);
}

.ar-match-check__header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

.ar-match-check__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ar-match-check__title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
}

.ar-match-check__verdict {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

.ar-match-check__verdict--match {
    background: rgba(22, 163, 74, 0.1);
    color: var(--green-600);
    border-color: rgba(22, 163, 74, 0.25);
}

.ar-match-check__verdict--fail {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.25);
}

.ar-match-check__verdict--partial {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.3);
}

.ar-match-check__verdict--unknown {
    background: var(--gray-100);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.ar-match-check__intro {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0 0 1.25rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.ar-match-check__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ar-match-check__item {
    display: flex;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.ar-match-check__item--match {
    background: rgba(22, 163, 74, 0.04);
    border-color: rgba(22, 163, 74, 0.15);
}

.ar-match-check__item--fail {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.15);
}

.ar-match-check__item--unknown {
    background: var(--gray-50);
    border-color: var(--gray-100);
}

.ar-match-check__icon-col {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 700;
}

.ar-match-check__item--match .ar-match-check__icon-col {
    background: var(--green-600);
    color: var(--white);
}

.ar-match-check__item--fail .ar-match-check__icon-col {
    background: #ef4444;
    color: var(--white);
}

.ar-match-check__item--unknown .ar-match-check__icon-col {
    background: var(--gray-300);
    color: var(--gray-700);
}

.ar-match-check__body {
    flex: 1;
    min-width: 0;
}

.ar-match-check__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.ar-match-check__quote {
    margin: 0 0 0.5rem 0;
    padding: 0.5rem 0.75rem;
    background: var(--white);
    border-left: 2px solid var(--gray-300);
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.5;
    font-style: italic;
}

.ar-match-check__quote-mark {
    color: var(--gray-400);
    font-weight: 700;
    font-style: normal;
}

.ar-match-check__detail {
    font-size: 0.875rem;
    color: var(--gray-900);
    line-height: 1.5;
    font-weight: 500;
}

.ar-match-check__item--fail .ar-match-check__detail {
    color: #991b1b;
}

.ar-match-check__item--match .ar-match-check__detail {
    color: #15803d;
}

.ar-match-check__cta {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(22, 163, 74, 0.04) 100%);
    border-radius: var(--radius-sm);
    text-align: center;
}

.ar-match-check__cta-link {
    color: var(--blue-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.ar-match-check__cta-link:hover {
    text-decoration: underline;
}

.ar-match-check__footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.6875rem;
    color: var(--gray-500);
    line-height: 1.55;
}

/* Mobile: Match-Check kompakter */
@media (max-width: 639px) {
    .ar-match-check {
        padding: 1rem 1.125rem;
        margin: 1rem 0;
    }

    .ar-match-check__title {
        font-size: 0.9375rem;
    }

    .ar-match-check__intro {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.75rem;
    }

    .ar-match-check__item {
        padding: 0.75rem 0.875rem;
        gap: 0.625rem;
    }

    .ar-match-check__icon-col {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8125rem;
    }

    .ar-match-check__quote {
        font-size: 0.75rem;
    }

    .ar-match-check__detail {
        font-size: 0.8125rem;
    }
}

/* ============================================================================
   Landing v2 — Live-Strip, Match-Showcase, Steps, Value-Grid, Final CTA
   ============================================================================ */

/* Live-Strip — schmaler Status-Strip direkt unter Hero */
.lp-live-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 0.75rem 0;
}
.lp-live-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-700);
    flex-wrap: wrap;
}
.lp-live-strip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-600);
    flex-shrink: 0;
    animation: lp-live-pulse 2.4s infinite;
}
@keyframes lp-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.lp-live-strip__text strong {
    color: var(--gray-900);
    font-weight: 600;
}
.lp-live-strip__dim { color: var(--gray-500); }
.lp-live-strip__sep { color: var(--gray-300); margin: 0 0.1875rem; }
@media (max-width: 639px) {
    .lp-live-strip { padding: 0.625rem 0; }
    .lp-live-strip .container { font-size: 0.8125rem; gap: 0.375rem; }
    .lp-live-strip__sep { display: none; }
    .lp-live-strip__dim { display: none; }
}

/* Match-Check Showcase — Wow-Section direkt nach Hero */
.lp-match-showcase {
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}
.lp-match-showcase::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.09) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.lp-match-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.lp-match-showcase__text { max-width: 500px; }
.lp-match-showcase__h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--gray-900);
    margin: 0.625rem 0 1.25rem;
}
.lp-match-showcase__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-700);
    margin: 0 0 1.5rem;
}
.lp-match-showcase__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.lp-match-showcase__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.4375rem 0;
    font-size: 0.9375rem;
    color: var(--gray-800);
    line-height: 1.5;
}
.lp-match-showcase__bullets svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green-600);
}
.lp-match-showcase__cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.lp-match-showcase__cta .btn--lg {
    padding: 0.875rem 1.625rem;
    font-size: 1rem;
    height: auto;
    box-shadow: 0 8px 24px -10px rgba(22, 163, 74, 0.5);
}

/* Match-Showcase demo card — Stripe-wow visual */
.lp-match-showcase__demo {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 30px 80px -30px rgba(15, 23, 42, 0.25), 0 1px 2px rgba(15, 23, 42, 0.04);
    padding: 1.5rem;
    position: relative;
}
.lp-match-showcase__demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
    gap: 1rem;
}
.lp-match-showcase__demo-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    display: block;
    margin-bottom: 0.1875rem;
}
.lp-match-showcase__demo-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}
.lp-match-showcase__rows {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.lp-match-showcase__row {
    padding: 0.8125rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    background: var(--gray-50);
    border-left: 3px solid var(--gray-300);
    transition: var(--transition-fast);
}
.lp-match-showcase__row:hover {
    border-color: var(--gray-200);
    background: var(--white);
}
.lp-match-showcase__row--ok { border-left-color: var(--green-600); }
.lp-match-showcase__row--warn { border-left-color: #f59e0b; }
.lp-match-showcase__row--check { border-left-color: var(--blue-600); }
.lp-match-showcase__row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}
.lp-match-showcase__row-cat {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
}
.lp-match-showcase__row blockquote {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--gray-600);
    font-style: italic;
    margin: 0.3125rem 0;
    padding: 0;
    border: none;
}
.lp-match-showcase__row-user {
    font-size: 0.75rem;
    color: var(--gray-500);
}
.lp-match-showcase__row-user strong {
    color: var(--gray-900);
    font-feature-settings: 'tnum' 1;
    font-weight: 600;
}
.lp-match-showcase__footnote {
    font-size: 0.6875rem;
    color: var(--gray-500);
    margin: 1.125rem 0 0;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 899px) {
    .lp-match-showcase__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .lp-match-showcase__text { max-width: none; }
    .lp-match-showcase::before { width: 400px; height: 400px; }
}
@media (max-width: 639px) {
    .lp-match-showcase__grid { gap: 2rem; }
    .lp-match-showcase__h2 { font-size: 1.625rem; line-height: 1.2; }
    .lp-match-showcase__lead { font-size: 0.9375rem; }
    .lp-match-showcase__bullets li { font-size: 0.9375rem; }
    .lp-match-showcase__demo { padding: 1.125rem; }
    .lp-match-showcase__row { padding: 0.75rem 0.875rem; }
    .lp-match-showcase__cta { flex-direction: column; align-items: stretch; gap: 1rem; }
    .lp-match-showcase__cta .btn--lg { width: 100%; text-align: center; }
    .lp-match-showcase__cta .lp-feat__link { text-align: center; }
}

/* Steps — 3-Step-Flow zwischen Match-Showcase und Value-Grid */
.lp-steps {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.lp-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-600) 0%, var(--blue-600) 100%);
    opacity: 0.22;
    z-index: 0;
}
.lp-steps__item {
    position: relative;
    z-index: 1;
    text-align: left;
}
.lp-steps__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green-600);
    color: var(--green-600);
    font-weight: 700;
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    font-feature-settings: 'tnum' 1;
}
.lp-steps__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.4375rem;
    letter-spacing: -0.01em;
}
.lp-steps__desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0 0 1.125rem;
}
.lp-steps__mock {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0.875rem;
    box-shadow: var(--shadow-xs);
    font-size: 0.8125rem;
}
.lp-steps__mock--form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.lp-steps__mock-input {
    padding: 0.5rem 0.625rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    font-size: 0.75rem;
}
.lp-steps__mock-btn {
    background: var(--green-600);
    color: var(--white);
    padding: 0.5rem 0.625rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
}
.lp-steps__mock-query {
    font-style: italic;
    color: var(--gray-700);
    padding-bottom: 0.625rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.lp-steps__mock-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.lp-steps__mock--email {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lp-steps__mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.75rem;
}
.lp-steps__mock-row:last-child { border-bottom: none; }
.lp-steps__mock-title {
    color: var(--gray-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}
@media (max-width: 899px) {
    .lp-steps { grid-template-columns: 1fr; gap: 2rem; }
    .lp-steps::before { display: none; }
}
@media (max-width: 639px) {
    .lp-steps { margin-top: 2rem; }
    .lp-steps__num { width: 40px; height: 40px; font-size: 1rem; }
    .lp-steps__title { font-size: 1.0625rem; }
    .lp-steps__desc { font-size: 1rem; }
}

/* Value-Grid — 6 kompakte Feature-Cards mit mono-SVG */
.lp-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}
.lp-value-card {
    display: block;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xs);
}
.lp-value-card:hover {
    border-color: var(--green-600);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.lp-value-card__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
    border: 1px solid rgba(22, 163, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    margin-bottom: 1rem;
}
.lp-value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.375rem;
    letter-spacing: -0.01em;
}
.lp-value-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 899px) {
    .lp-value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
    .lp-value-grid { gap: 0.75rem; margin-top: 2rem; }
    .lp-value-card { padding: 1.125rem; }
    .lp-value-card__icon { width: 38px; height: 38px; margin-bottom: 0.75rem; }
    .lp-value-card h3 { font-size: 1rem; }
    .lp-value-card p { font-size: 1rem; }
}

/* Final CTA Trust row */
.lp-cta-final__trust {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.25rem 0 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}
.lp-cta-final__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
@media (max-width: 639px) {
    .lp-cta-final__trust {
        gap: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
}

/* ============================================================================
   Landing v5 — Final CTA, standard-section-konform
   ============================================================================ */
.lp-final-cta__inner {
    text-align: center;
    max-width: 640px;
}
.lp-final-cta .lp-section__title {
    margin-bottom: 2rem;
    max-width: 640px;
}
.lp-final-cta__form {
    display: flex;
    gap: 0.625rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}
.lp-final-cta__form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    background: var(--white);
    color: var(--gray-900);
    transition: var(--transition-fast);
    font-family: inherit;
    box-shadow: var(--shadow-xs);
}
.lp-final-cta__form input[type="email"]::placeholder { color: var(--gray-400); }
.lp-final-cta__form input[type="email"]:focus {
    outline: none;
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.lp-final-cta__form button {
    padding: 0.875rem 1.5rem;
    background: var(--green-600);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    font-family: inherit;
}
.lp-final-cta__form button:hover {
    background: #15803d;
    transform: translateY(-1px);
}
.lp-final-cta__trust {
    display: flex;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
}
.lp-final-cta__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.lp-final-cta__legal .ar-signup-legal {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin: 0;
}

@media (max-width: 639px) {
    .lp-final-cta__form { flex-direction: column; gap: 0.5rem; }
    .lp-final-cta__form button { width: 100%; }
    .lp-final-cta__trust { gap: 0.625rem 1rem; }
}

/* ============================================================================
   Onboarding-Wizard — 3-Step Form nach Signup
   ============================================================================ */
.ar-onboard {
    max-width: 680px;
}
.ar-onboard .lp-section__subtitle {
    margin-bottom: 2.5rem;
}
.ar-onboard__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.ar-onboard__step {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.5rem 1.625rem;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-fast);
}
.ar-onboard__step:focus-within {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.ar-onboard__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.ar-onboard__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green-600);
    color: var(--green-600);
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-feature-settings: 'tnum' 1;
}
.ar-onboard__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.ar-onboard__hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.45;
}

/* Chip-Grid für Sektor-Auswahl */
.ar-onboard__chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.ar-onboard__chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 0.75rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    line-height: 1.3;
    min-height: 44px;
    user-select: none;
}
.ar-onboard__chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ar-onboard__chip:hover {
    border-color: var(--gray-300);
    background: var(--white);
}
.ar-onboard__chip:has(input:checked) {
    background: rgba(22, 163, 74, 0.08);
    border-color: var(--green-600);
    color: #15803d;
    font-weight: 600;
}

/* Select + Input */
.ar-onboard__select,
.ar-onboard__input {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    background: var(--white);
    color: var(--gray-900);
    font-family: inherit;
    transition: var(--transition-fast);
}
.ar-onboard__select:focus,
.ar-onboard__input:focus {
    outline: none;
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.ar-onboard__input-wrap {
    position: relative;
}
.ar-onboard__input-suffix {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9375rem;
    color: var(--gray-500);
    pointer-events: none;
}
.ar-onboard__input { padding-right: 2.25rem; }

/* Actions: submit + skip */
.ar-onboard__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}
.ar-onboard__submit {
    padding: 0.875rem 1.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}
.ar-onboard__skip {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease;
}
.ar-onboard__skip:hover {
    color: var(--gray-700);
    text-decoration: underline;
}

@media (max-width: 639px) {
    .ar-onboard__step { padding: 1.25rem; }
    .ar-onboard__head { gap: 0.75rem; margin-bottom: 1rem; }
    .ar-onboard__num { width: 28px; height: 28px; font-size: 0.875rem; }
    .ar-onboard__title { font-size: 1rem; }
    .ar-onboard__hint { font-size: 0.875rem; }
    .ar-onboard__chips { grid-template-columns: repeat(2, 1fr); }
    .ar-onboard__chip { font-size: 0.8125rem; min-height: 48px; }
    .ar-onboard__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .ar-onboard__submit { width: 100%; }
    .ar-onboard__skip { text-align: center; padding: 0.5rem 0; }
}

/* ============================================================================
   Landing v3 — Email-Alert Showcase (Starter-Pitch)
   ============================================================================ */
.lp-email-showcase {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.lp-email-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.lp-email-showcase__text { max-width: 500px; }
.lp-email-showcase__h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--gray-900);
    margin: 0.625rem 0 1.25rem;
}
.lp-email-showcase__lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-700);
    margin: 0 0 1.5rem;
}
.lp-email-showcase__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.lp-email-showcase__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.4375rem 0;
    font-size: 0.9375rem;
    color: var(--gray-800);
    line-height: 1.5;
}
.lp-email-showcase__bullets svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green-600);
}
.lp-email-showcase__cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
}
.lp-email-showcase__cta .btn--lg {
    padding: 0.875rem 1.625rem;
    font-size: 1rem;
    height: auto;
    box-shadow: 0 8px 24px -10px rgba(22, 163, 74, 0.5);
}
.lp-email-showcase__microcopy {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

/* Email mockup — Mac-window-style wie Stripe product shots */
.lp-email-showcase__mockup {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 40px 100px -40px rgba(15, 23, 42, 0.3), 0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    max-width: 560px;
    margin-left: auto;
    position: relative;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.4s ease;
}
.lp-email-showcase__mockup:hover {
    transform: perspective(1200px) rotateY(0) rotateX(0);
}
.lp-email-showcase__window {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.lp-email-showcase__window-dots {
    display: flex;
    gap: 0.375rem;
}
.lp-email-showcase__window-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.lp-email-showcase__window-dots span:nth-child(1) { background: #ff5f57; }
.lp-email-showcase__window-dots span:nth-child(2) { background: #febc2e; }
.lp-email-showcase__window-dots span:nth-child(3) { background: #28c840; }
.lp-email-showcase__window-title {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    flex: 1;
    text-align: center;
    margin-right: 57px;
    letter-spacing: 0.01em;
}
.lp-email-showcase__head {
    padding: 1rem 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}
.lp-email-showcase__head-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.1875rem 0;
    font-size: 0.8125rem;
}
.lp-email-showcase__head-label {
    font-weight: 600;
    color: var(--gray-400);
    min-width: 52px;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.lp-email-showcase__head-value {
    color: var(--gray-700);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.lp-email-showcase__head-subject {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.875rem;
}
.lp-email-showcase__body {
    padding: 1.25rem;
}
.lp-email-showcase__intro {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin: 0 0 1rem;
}
.lp-email-showcase__intro strong {
    color: var(--gray-900);
    font-weight: 600;
}
.lp-email-showcase__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.lp-email-showcase__item {
    padding: 0.8125rem 1rem;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    border-left: 3px solid var(--green-600);
    transition: var(--transition-fast);
}
.lp-email-showcase__item:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-xs);
}
.lp-email-showcase__item-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lp-email-showcase__item-meta {
    font-size: 0.6875rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
    overflow: hidden;
}
.lp-email-showcase__item-buyer {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}
.lp-email-showcase__item-dot { color: var(--gray-300); }
.lp-email-showcase__cta-inline {
    text-align: center;
    font-size: 0.75rem;
    color: var(--blue-600);
    font-weight: 600;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

@media (max-width: 899px) {
    .lp-email-showcase__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .lp-email-showcase__text { max-width: none; }
    .lp-email-showcase__mockup {
        margin: 0 auto;
        transform: none;
    }
    .lp-email-showcase::before { width: 400px; height: 400px; }
}
@media (max-width: 639px) {
    .lp-email-showcase__grid { gap: 2rem; }
    .lp-email-showcase__h2 { font-size: 1.625rem; line-height: 1.2; }
    .lp-email-showcase__lead { font-size: 0.9375rem; }
    .lp-email-showcase__bullets li { font-size: 0.9375rem; }
    .lp-email-showcase__body { padding: 1rem; }
    .lp-email-showcase__head { padding: 0.75rem 1rem; }
    .lp-email-showcase__cta { flex-direction: column; align-items: stretch; gap: 0.875rem; }
    .lp-email-showcase__cta .btn--lg { width: 100%; text-align: center; }
    .lp-email-showcase__cta .lp-feat__link { text-align: center; }
    .lp-email-showcase__item-buyer { max-width: 130px; }
}

/* ============================================================================
   Landing v3 — Finale CTA mit Gradient-Number Wow
   ============================================================================ */
.lp-finale {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    background:
        radial-gradient(ellipse at top, #f0fdf4 0%, transparent 50%),
        radial-gradient(ellipse at bottom, #eff6ff 0%, transparent 50%),
        linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.lp-finale__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.lp-finale__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}
.lp-finale__orb--green {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.45), transparent 70%);
    top: -180px;
    left: -160px;
}
.lp-finale__orb--blue {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
    bottom: -220px;
    right: -200px;
}
.lp-finale__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}
.lp-finale__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
}
.lp-finale__eyebrow {
    color: var(--green-600) !important;
    margin-bottom: 0.5rem;
}
.lp-finale__number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    margin: 0.875rem 0 0.375rem;
}
.lp-finale__number {
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.055em;
    background: linear-gradient(135deg, #16a34a 0%, #0891b2 50%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-feature-settings: 'tnum' 1;
    text-shadow: 0 8px 40px rgba(22, 163, 74, 0.12);
    position: relative;
}
.lp-finale__number::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 60%;
    height: 12px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(22, 163, 74, 0.25), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}
.lp-finale__number-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.lp-finale__h2 {
    font-size: clamp(1.875rem, 3.8vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--gray-900);
    margin: 1.5rem 0 2.25rem;
}
.lp-finale__h2-grad {
    background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.lp-finale__card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow:
        0 50px 120px -30px rgba(15, 23, 42, 0.25),
        0 20px 40px -20px rgba(22, 163, 74, 0.12),
        0 1px 2px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    max-width: 580px;
    margin: 0 auto;
}
.lp-finale__card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.4), rgba(37, 99, 235, 0.4));
    -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.lp-finale__form {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}
.lp-finale__form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 0.9375rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    background: var(--white);
    color: var(--gray-900);
    transition: var(--transition-fast);
    font-family: inherit;
}
.lp-finale__form input[type="email"]::placeholder { color: var(--gray-400); }
.lp-finale__form input[type="email"]:focus {
    outline: none;
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.lp-finale__form button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9375rem 1.5rem;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 10px 28px -10px rgba(22, 163, 74, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    font-family: inherit;
}
.lp-finale__form button svg {
    transition: transform 0.2s ease;
}
.lp-finale__form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -10px rgba(22, 163, 74, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.lp-finale__form button:hover svg {
    transform: translateX(3px);
}
.lp-finale__trust {
    display: flex;
    justify-content: center;
    gap: 1rem 1.25rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.8125rem;
    color: var(--gray-700);
    font-weight: 500;
}
.lp-finale__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.lp-finale__legal {
    margin-top: 1.5rem;
    opacity: 0.85;
}

@media (max-width: 639px) {
    .lp-finale { padding: 4rem 0 3.5rem; }
    .lp-finale__number { font-size: 5rem; }
    .lp-finale__h2 { font-size: 1.75rem; line-height: 1.2; margin: 1.25rem 0 1.75rem; }
    .lp-finale__card { padding: 1.25rem; border-radius: 16px; }
    .lp-finale__form { flex-direction: column; gap: 0.5rem; }
    .lp-finale__form button { justify-content: center; padding: 0.875rem 1rem; }
    .lp-finale__trust {
        gap: 0.625rem 1rem;
        justify-content: flex-start;
        font-size: 0.8125rem;
    }
    .lp-finale__orb--green { width: 320px; height: 320px; top: -80px; left: -80px; }
    .lp-finale__orb--blue { width: 380px; height: 380px; bottom: -120px; right: -120px; }
    .lp-finale__grid { background-size: 32px 32px; }
}

/* ============================================================================
   MOBILE CASCADE-FIX BLOCK (2026-04-15)
   Re-asserts intended mobile values that were overridden by later global
   rules. Cascade-Bug pattern: mobile @media early in file → later global
   rule with same specificity overrides on mobile too. Keep this block as
   the LAST mobile override so it wins.
   ============================================================================ */
@media (max-width: 639px) {
    .lp-hero__proof { gap: 0.125rem; }
    .lp-hero__branches { gap: 0.375rem; }
    .lp-hero__branch-tag { padding: 0.3rem 0.625rem; }
    .lp-hero__urgency { padding: 0.3rem 0.75rem; }
    .lp-section { padding: 3rem 0; }
    .lp-feature-card { padding: 1.75rem 1.25rem; }
    .lp-price-card { padding: 1.75rem; }
    .lp-steps { gap: 1rem; }
    .lp-steps__item { padding: 1.5rem 1.25rem; }
    .footer__links { gap: 1.5rem; }
    .ar-hero { padding: 1.25rem 1.25rem; }
    .ar-section { padding: 1.75rem 0; }
    .ar-analysis-preview__blurred { padding: 1.5rem 1.25rem 3rem; }
    .ar-analysis-preview__overlay { padding: 1.5rem 1.125rem; }
    .ar-analysis-preview__cta { padding: 0.75rem 1.5rem; }
    .ar-card-grid { gap: 0.5rem; }
    .ar-email-preview__body { padding: 0.75rem; }
    .ar-premium-box { padding: 1.5rem; }
    .ar-notice-badges { gap: 0.375rem; }
    .ar-gated-card { padding: 1.5rem 1.25rem; }
    .ar-notice-sidebar__card { padding: 1.125rem 1.25rem; }

    /* Notice-Detail Sidebar — Mobile Lesbarkeit (2026-04-15)
       Ziele: Helper-Text und Disclaimer ≥ 14px, Row-Label/Value ≥ 16px,
       Status-Block-Komponenten gut lesbar. Uppercase-Labels bleiben bei
       12px (Floor) — die werden durch letter-spacing präsent. */
    .ar-notice-sidebar__row { font-size: 1rem; }
    .ar-notice-sidebar__row-label,
    .ar-notice-sidebar__row-value { font-size: 1rem; }
    .ar-notice-sidebar__label,
    .ar-notice-sidebar__status-label { font-size: 0.75rem; }
    .ar-notice-sidebar__status { font-size: 1rem; }
    .ar-notice-sidebar__status-value { font-size: 1.0625rem; }
    .ar-notice-sidebar__status-note { font-size: 0.9375rem; line-height: 1.5; }
    .ar-competition-score__label { font-size: 0.9375rem; }
    .ar-competition-score__header .tnum { font-size: 1.25rem; }
    .ar-competition-score__detail { font-size: 0.9375rem; line-height: 1.55; color: var(--gray-600); }

    /* Notice-Detail Hero — Mobile Lesbarkeit (2026-04-15) */
    .ar-notice-hero { padding: 1.5rem 1rem 1.5rem; }
    .ar-notice-hero__title { font-size: 1.375rem; line-height: 1.25; }
    .ar-notice-hero__buyer { font-size: 1.0625rem; }
    .ar-notice-hero__badges { gap: 0.4375rem; margin-bottom: 1rem; }
    .ar-notice-hero__badges .ar-badge,
    .ar-notice-hero__badges .ar-badge--status { font-size: 0.8125rem; padding: 0.3125rem 0.625rem; }
    .ar-notice-hero__action { width: 40px; height: 40px; }

    /* Page-Hero / Search-Hero — Mobile-Proportionen konsistent zum
       Notice-Hero (User-validiert 2026-04-15: "viel besser") */
    .ar-page-hero,
    .ar-search-hero { padding: 1.5rem 1rem 1.5rem; }
    .ar-page-hero__title,
    .ar-search-hero__title { font-size: 1.375rem; line-height: 1.25; }
    .ar-page-hero__sub,
    .ar-search-hero__sub { font-size: 1.0625rem; line-height: 1.5; }
    .ar-page-hero__eyebrow { font-size: 0.75rem; }
}
