/* ==========================================================================
   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-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;
}

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-950);
    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-950);
    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-950); }
.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-950);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

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

.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-950);
}

/* 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-950);
}

.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-950);
}

/* 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-950);
}

.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: 0.9375rem;
    }

    /* 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: 0.9375rem;
    }

    .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: 0.875rem;
        line-height: 1.5;
    }

    .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-bottom: 1rem;
    }

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

    .ar-cta-box {
        padding: 2rem 1.25rem;
        margin: 2rem 0;
        border-radius: var(--radius-md);
    }

    .ar-cta-box__title {
        font-size: 1.125rem;
    }

    .ar-cta-box__sub {
        font-size: 0.875rem;
    }

    .ar-cta-box__input {
        height: 52px;
        font-size: 1rem;
        border-radius: var(--radius-md);
        padding: 0 1.25rem;
    }

    .ar-cta-box__button {
        height: 52px;
        font-size: 1rem;
        border-radius: var(--radius-md);
        width: 100%;
    }

    /* Breadcrumb: truncate long names */
    .ar-breadcrumb {
        font-size: 0.75rem;
    }

    .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__overlay {
        padding: 1.5rem 1rem;
    }

    .ar-analysis-preview__overlay h3 {
        font-size: 1rem;
    }

    /* 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 {
        font-size: 0.625rem;
        padding: 0.1875rem 0.5rem;
    }

    /* 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-950);
}

.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-950);
    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-950);
    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: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
}

@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-950);
    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: 0.875rem;
    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-950); }
.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-950); 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-950);
    margin-bottom: 0.5rem;
}

.lp-more-card p {
    font-size: 0.875rem;
    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-950) 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-950);
    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-950);
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--gray-950) 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-950);
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum' 1;
    white-space: nowrap;
}

.lp-hero__metric-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400, #9ca3af);
    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-950);
    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: 540px;
    margin: 0 auto 2.5rem;
}

.lp-demo__search {
    position: relative;
    display: flex;
    align-items: center;
}

.lp-demo__icon {
    position: absolute;
    left: 1rem;
    color: var(--gray-500);
    pointer-events: none;
}

.lp-demo__input {
    width: 100%;
    height: 56px;
    padding: 0 1.25rem 0 2.75rem;
    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-950);
    transition: border-color 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-demo__input:focus {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-xs), var(--shadow-focus);
    outline: none;
}

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

.lp-demo__results {
    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-950);
    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 {
    display: flex;
    align-items: stretch;
    margin-top: 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    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.6875rem;
    color: var(--gray-500);
    margin-bottom: 0.375rem;
}

.lp-demo__gate-btn {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    background: var(--green-600);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.lp-demo__gate-btn:hover {
    background: var(--green-700);
}

@media (max-width: 639px) {
    .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-950);
    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-md);
    overflow: hidden;
    margin-top: 1rem;
}

.ar-email-preview__header {
    background: var(--gray-950);
    padding: 0.75rem 1rem;
    text-align: center;
    color: var(--white);
    font-size: 0.875rem;
}

.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-950);
    max-width: 280px;
}

.lp-preview__table td:nth-child(3) {
    font-feature-settings: 'tnum' 1;
    font-weight: 600;
    color: var(--gray-950);
    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: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
}

@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 (3-column grid) -- */
.lp-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.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-950);
    margin-bottom: 0.5rem;
}

.lp-price-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-950);
    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-950);
    color: var(--gray-950);
}

.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(5, 1fr);
        gap: 1rem;
    }

    .lp-pricing .lp-price-card {
        padding: 2rem 1.5rem;
    }
}


/* -- 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: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@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;
}

.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: 0.75rem;
}

.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;
}

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

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

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

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

.ar-analysis-preview__blurred {
    padding: 2rem 2rem 4rem;
    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.88);
    padding: 1.5rem;
}

.ar-analysis-preview__lock {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.ar-analysis-preview__overlay h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-950);
    margin-bottom: 0.375rem;
}

.ar-analysis-preview__overlay p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    max-width: 340px;
}

.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-950);
    margin-bottom: 0.375rem;
}

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

@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-950);
    margin-bottom: 1.25rem;
}


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

.ar-stat-card {
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ar-stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}

.ar-stat-card__value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blue-600);
    font-feature-settings: 'tnum' 1;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.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 {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

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

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


/* -- 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-950);
}

.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);
}

.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 {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.ar-cta-box::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(circle at 30% 40%, rgba(22, 163, 74, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ar-cta-box::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ar-cta-box__icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: var(--radius-md);
}

.ar-cta-box__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-950);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.ar-cta-box__sub {
    color: var(--gray-500);
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.ar-cta-box__form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
}

.ar-cta-box__input {
    width: 100%;
    min-width: 0;
    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: 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: 52px;
    padding: 0 2rem;
    font-size: 0.9375rem;
    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 (min-width: 640px) {
    .ar-cta-box__form {
        flex-direction: row;
    }

    .ar-cta-box__input {
        flex: 1;
    }

    .ar-cta-box {
        padding: 3.5rem 3rem;
    }
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--gray-950);
    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__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-950);
    color: var(--gray-950);
}


/* --------------------------------------------------------------------------
   9. Responsive Overflow Handling
   -------------------------------------------------------------------------- */
.ar-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .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-950);
    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: 0.9375rem;
    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: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@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-950);
}


.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-950);
    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"] {
        height: 56px;
        font-size: 1.0625rem;
        border-radius: var(--radius-lg);
        padding: 0 1.25rem;
        box-shadow: var(--shadow-sm);
        border: 2px solid var(--gray-200);
    }

    .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: block;
    background: var(--gray-50);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
    color: inherit;
}

.ar-card-grid a:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.ar-card-grid h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-950);
    margin-bottom: 0.25rem;
}

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

.ar-card-grid__count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-600);
    font-feature-settings: 'tnum' 1;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.ar-card-grid .ar-card-count {
    font-feature-settings: 'tnum' 1;
    font-weight: 600;
    color: var(--blue-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 -- */
.ar-result-card {
    display: block;
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal), border-left-color var(--transition-normal);
    border-left: 3px solid transparent;
}

a.ar-result-card {
    text-decoration: none;
    color: inherit;
    display: block;
    border-left: 3px solid transparent;
}

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

.ar-result-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    border-left-color: var(--blue-600);
}

.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: 1rem;
    font-weight: 600;
    color: var(--gray-950);
}

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

.ar-result-card__value {
    font-weight: 700;
    color: var(--blue-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.625rem;
}

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

.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: 1.25rem 1rem 1.25rem 1.25rem;
        margin-bottom: 1rem;
        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);
        border: none;
        border-left: 4px solid var(--blue-600);
    }

    .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.5rem;
    }

    .ar-result-card__title {
        font-size: 1rem;
        line-height: 1.45;
    }

    .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.8125rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--gray-100);
    }

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

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

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


/* -- Sector Card -- */
a.ar-sector-card,
.ar-sector-card {
    display: block;
    background: var(--gray-50);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: inherit;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}

a.ar-sector-card:hover,
.ar-sector-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    color: inherit;
}

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

.ar-sector-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-950);
    margin-bottom: 0.5rem;
}

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

/* -- 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.875rem;
    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-950);
}

.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;
    }
}

.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;
    }
}

.ar-notice-sidebar__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);
}

.ar-notice-sidebar__value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-600);
    font-feature-settings: 'tnum' 1;
    margin-bottom: 0.25rem;
}

.ar-notice-sidebar__label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.ar-notice-sidebar__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

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

.ar-notice-sidebar__row-value {
    font-weight: 500;
    color: var(--gray-950);
    text-align: right;
}

.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-950);
    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-950);
    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-950) 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-950);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.ar-ratgeber-card__desc {
    font-size: 0.8125rem;
    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);
}

/* 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 */
.ar-form-step {
    margin-bottom: 2.5rem;
}

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

.ar-form-step__number {
    width: 36px;
    height: 36px;
    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-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.ar-form-step__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-950);
    margin: 0 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: var(--blue-50);
    color: var(--gray-950);
    font-weight: 500;
}

.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-950);
    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: var(--green-600);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

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

/* Upgrade CTA */
.ar-upgrade-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--gray-950) 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: 0.9375rem;
    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;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.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;
}

.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-950);
    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-950);
}

.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-950);
    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-950);
    }

    .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-950);
        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-950);
    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-950);
    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--enterprise {
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-600);
}

/* --------------------------------------------------------------------------
   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.875rem;
    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-950);
}

.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.5rem 0;
}

.ar-competition-score__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.ar-competition-score__label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.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-950);
}

.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-950);
}

.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-950);
}

.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 */
@media (max-width: 768px) {
    .ar-stats-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ar-trend-highlights {
        grid-template-columns: 1fr;
    }

    .ar-report-nav {
        padding: 0.75rem;
        gap: 0.375rem;
    }

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

    .ar-table-wrap .ar-table {
        min-width: 700px;
    }
}


/* --------------------------------------------------------------------------
   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-950);
}

.ar-rejection-bar__pct {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-950);
    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: 1rem 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;
}

.ar-filter-bar__tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
}

.ar-filter-bar__tag:hover {
    border-color: var(--blue-600);
    color: var(--blue-600);
}

.ar-filter-bar__tag--active {
    background: var(--blue-600);
    border-color: var(--blue-600);
    color: var(--white);
}

.ar-filter-bar__tag--active:hover {
    background: var(--blue-700);
    border-color: var(--blue-700);
    color: var(--white);
}

/* 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-950); 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); }

.ar-watch-btn {
    display: inline-flex; align-items: center; gap: 0.375rem;
    font-size: 0.8125rem; font-weight: 600; font-family: var(--font-sans);
    color: var(--blue-600); background: var(--blue-50);
    border: 1px solid rgba(37,99,235,0.15); padding: 0.5rem 1rem;
    border-radius: var(--radius-sm); cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.ar-watch-btn:hover { background: rgba(37,99,235,0.1); border-color: var(--blue-600); }
.ar-watch-btn--full { display: block; width: 100%; text-align: center; }

.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-950); }
.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-950); 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-950); }
.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-950); }
.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-950); 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-950); 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-950); }
.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-950);
    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-950);
    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-950);
    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;
    }
}

/* Timeline */
.ar-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.ar-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.ar-timeline__item {
    display: block;
    position: relative;
    padding: 0.75rem 0 0.75rem 1rem;
    text-decoration: none;
    transition: background 0.1s;
    border-radius: var(--radius-sm);
}

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

.ar-timeline__dot {
    position: absolute;
    left: -1.5rem;
    top: 1.125rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 2px solid var(--white);
    z-index: 1;
}

.ar-timeline__dot--green { background: var(--green-600); }
.ar-timeline__dot--orange { background: #f59e0b; }
.ar-timeline__dot--blue { background: var(--blue-600); }

.ar-timeline__title {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin: 0.25rem 0 0;
    line-height: 1.4;
}

.ar-timeline__date {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-feature-settings: 'tnum' 1;
}

/* 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-950);
    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: 0.9375rem;
    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: 0.875rem;
    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: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.ar-stats-row .ar-notice-sidebar__card {
    flex: 1;
    min-width: 180px;
}

/* 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-950);
}

.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-weight: 600;
    color: var(--gray-950);
    margin-bottom: 0.5rem;
}

/* 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-950);
    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-950);
    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,
    .ar-faq__answer p,
    .prose p,
    .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,
    .ar-source-hint,
    .lp-problem-card p,
    .lp-feat__desc,
    .lp-price-card__features li {
        font-size: 0.9375rem;
    }

    /* Landing problem cards */
    .lp-problem-card__unit {
        font-size: 0.8125rem;
    }

    .lp-problem-card__num {
        font-size: 2.25rem;
    }

    /* Feature rows */
    .lp-feat__badge {
        font-size: 0.8125rem;
    }

    .lp-feat__link {
        font-size: 0.9375rem;
    }

    /* "Und außerdem" cards */
    .lp-more-card p,
    .lp-more-card .lp-feat__link {
        font-size: 0.9375rem;
    }

    /* 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: 0.9375rem;
    }

    /* Labels / eyebrows: minimum 0.8125rem (13px) */
    .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 {
        font-size: 0.8125rem;
    }

    /* Tiny text: minimum 0.75rem (12px) — nothing smaller on mobile */
    .lp-price-card__risk,
    .lp-price-card__yearly a,
    .footer__stats span,
    .text-muted,
    .ar-breadcrumb,
    .ar-season-chart__label,
    .ar-timeline__date {
        font-size: 0.8125rem;
    }

    /* 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;
    }

    /* Cards: larger touch targets */
    .ar-result-card__title {
        font-size: 0.9375rem;
    }

    .ar-sector-card h3 {
        font-size: 0.9375rem;
    }

    /* FAQ: easier to read */
    .ar-faq__question,
    .lp-faq__item summary {
        font-size: 1rem;
    }

    /* Pricing features */
    .lp-price-card__name {
        font-size: 1.125rem;
    }

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


/* ── 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;
}

.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-950);
    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 under table */
.ar-pricing-matrix__ctas {
    display: grid;
    grid-template-columns: 240px repeat(5, 1fr);
    gap: 0;
    margin-top: 1rem;
}

.ar-pricing-matrix__ctas-spacer {
    display: block;
}

.ar-pricing-matrix__ctas-btn {
    text-align: center;
}

.ar-pricing-matrix__ctas-btn .btn {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
}

/* 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-950);
    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: 0.9375rem;
    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-950);
    margin: 0 0 0.25rem;
}

.ar-pricing-mobile__price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-950);
    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-950);
}

.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;
}
