/* ===== GarageBuddy Racing Theme ===== */
:root {
    --racing-black: #0a0a0a;
    --racing-dark: #1a1a1a;
    --racing-gray: #2d2d2d;
    --racing-silver: #c0c0c0;
    --racing-silver-light: #e8e8e8;
    --racing-orange: #ff6b00;
    --racing-orange-light: #ff8c42;
    --racing-orange-dark: #cc5500;
    --racing-green: #00ff41;
    --racing-red: #ff0000;
    --racing-yellow: #ffd700;
    --border-color: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html { font-size: 16px; }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

/* ===== NAVBAR – compact & punchy ===== */
.gabu-navbar {
    background: #000000;
    border-bottom: 2px solid rgba(255, 107, 0, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
    padding: 0.25rem 0;
    min-height: auto;
}

.gabu-navbar .navbar-logo {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.5));
    transition: transform 0.3s ease;
}

.gabu-navbar .navbar-logo:hover {
    transform: scale(1.1) rotate(3deg);
}

.gabu-navbar .brand-text {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-text-sm {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.brand-silver {
    color: var(--racing-silver);
}

.brand-accent {
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav links – visible pills */
.gabu-navbar .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.9rem !important;
    border-radius: 6px;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
}

.gabu-navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.5);
    transform: translateY(-1px);
}

/* CTA pill button in navbar */
.btn-gabu-sm {
    display: inline-block;
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-dark));
    color: #fff !important;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.45rem 1.2rem;
    border: 2px solid var(--racing-orange);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 14px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-gabu-sm:hover {
    background: linear-gradient(135deg, var(--racing-orange-light), var(--racing-orange));
    border-color: var(--racing-orange-light);
    color: #fff !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 24px rgba(255, 107, 0, 0.65);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 14px rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 0 22px rgba(255, 107, 0, 0.7); }
}

/* ===== HERO ===== */
.gabu-hero {
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 0, 0.18) 0%, rgba(10, 10, 10, 0.95) 50%, #0a0a0a 100%);
    border-bottom: 4px solid var(--racing-orange);
    position: relative;
    overflow: hidden;
}

.gabu-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0, rgba(255, 255, 255, 0.015) 20px, transparent 20px, transparent 40px);
    pointer-events: none;
}

.gabu-hero-content {
    position: relative;
    z-index: 1;
}

.gabu-logo-hero {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
}

.gabu-brand-hero {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.gabu-brand-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gabu-brand-main {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gabu-brand-sub {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #000000;
    text-transform: uppercase;
}

.gabu-orange { color: var(--racing-orange); }
.gabu-silver { color: var(--racing-silver); }
.gabu-muted  { color: #cfd3d7; }

.gabu-title {
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.gabu-urgency {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--racing-orange);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    color: var(--racing-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.gabu-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: var(--racing-silver);
    font-size: 0.88rem;
    font-weight: 600;
}

.gabu-trust-row span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gabu-trust-check {
    color: var(--racing-green);
    font-weight: 900;
}

/* Hero badges */
.gabu-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.5rem;
    padding-bottom: 1rem;
}

.gabu-hero-badges .badge {
    background: rgba(255, 107, 0, 0.12);
    color: var(--racing-orange);
    border: 1px solid rgba(255, 107, 0, 0.5);
    padding: 0.45rem 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

/* Hero stat card */
.gabu-hero-card {
    background: rgba(17, 17, 17, 0.9);
    border: 2px solid var(--racing-orange);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.gabu-stat {
    text-align: center;
}

.gabu-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--racing-orange);
    line-height: 1.1;
}

.gabu-stat-label {
    font-size: 0.78rem;
    color: var(--racing-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* ===== BUTTONS ===== */
.btn-gabu {
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-dark));
    border: 2px solid var(--racing-orange);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gabu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-gabu:hover::before {
    left: 100%;
}

.btn-gabu:hover {
    background: linear-gradient(135deg, var(--racing-orange-light), var(--racing-orange));
    border-color: var(--racing-orange-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45);
}

.btn-gabu-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-gabu-outline:hover {
    border-color: var(--racing-orange);
    color: var(--racing-orange);
    transform: translateY(-2px);
    background: rgba(255, 107, 0, 0.08);
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--racing-black);
}

.section-heading .heading-accent {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--racing-orange), var(--racing-yellow));
    border-radius: 2px;
    margin-top: 0.75rem;
}

/* ===== FEATURE CARDS ===== */
.gabu-feature-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.gabu-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--racing-orange), var(--racing-yellow), var(--racing-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.gabu-feature-card:hover::before {
    transform: scaleX(1);
}

.gabu-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--racing-orange);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.18);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.gabu-feature-card h5 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* ===== VORTEILE / BENEFITS ===== */
.gabu-benefits {
    background: linear-gradient(135deg, var(--racing-black), var(--racing-dark));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gabu-benefits::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0, rgba(255, 255, 255, 0.01) 20px, transparent 20px, transparent 40px);
    pointer-events: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}

.benefit-item h6 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
    color: #fff;
}

.benefit-item p {
    color: var(--racing-silver);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== PRICING CARDS ===== */
.gabu-pricing-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gabu-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.gabu-pricing-card.featured {
    border-color: var(--racing-orange);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.2);
    transform: scale(1.03);
}

.gabu-pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 107, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-dark));
    color: #fff;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border-radius: 0 0 8px 8px;
}

.pricing-name {
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.pricing-price {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--racing-orange);
    line-height: 1.1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-yearly {
    font-size: 0.82rem;
    color: var(--text-light);
}

.pricing-yearly strong {
    color: var(--racing-orange-dark);
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    flex: 1;
}

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--racing-orange);
    font-weight: 900;
    font-size: 0.95rem;
}

.btn-pricing {
    width: 100%;
    padding: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-dark));
    border-color: var(--racing-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-pricing-primary:hover {
    background: linear-gradient(135deg, var(--racing-orange-light), var(--racing-orange));
    border-color: var(--racing-orange-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.btn-pricing-outline {
    background: transparent;
    border-color: var(--racing-orange);
    color: var(--racing-orange);
}

.btn-pricing-outline:hover {
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-dark));
    border-color: var(--racing-orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45);
}

/* ===== CTA BANNER ===== */
.gabu-cta {
    background: linear-gradient(135deg, var(--racing-black), var(--racing-dark));
    border-top: 3px solid var(--racing-orange);
    position: relative;
    overflow: hidden;
}

.gabu-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 107, 0, 0.08), transparent 60%);
    pointer-events: none;
}

/* ===== FOOTER ===== */
.gabu-footer {
    background: #000;
    color: var(--racing-silver);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid rgba(255, 107, 0, 0.4);
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.6));
}

.footer-heading {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-links a {
    color: var(--racing-silver);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--racing-orange);
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 1.5rem 0 1rem;
}

/* ===== UTILITIES ===== */
.btn:focus, .btn:active:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.35);
}

/* ===== CHECKOUT PAGE ===== */
.checkout-hero {
    background: linear-gradient(135deg, var(--racing-black), var(--racing-dark));
    border-bottom: 3px solid var(--racing-orange);
    padding: 2.5rem 0 2rem;
}

.checkout-back {
    display: inline-block;
    color: var(--racing-silver);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.checkout-back:hover {
    color: var(--racing-orange);
    transform: translateX(-4px);
}

.checkout-hero-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.checkout-hero-sub {
    color: var(--racing-silver);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Summary card */
.checkout-summary {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: sticky;
    top: 5rem;
}

.checkout-summary-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.checkout-plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-dark));
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
}

.checkout-plan-sub {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.checkout-price-block {
    margin-bottom: 1.5rem;
}

.checkout-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--racing-orange);
    line-height: 1.1;
}

.checkout-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.checkout-price-yearly {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.checkout-price-yearly strong {
    color: var(--racing-orange-dark);
}

.checkout-includes-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.checkout-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.checkout-includes li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.checkout-includes li::before {
    content: "✓";
    color: var(--racing-orange);
    font-weight: 900;
}

.checkout-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 107, 0, 0.06);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.85rem;
}

.checkout-guarantee span:first-child {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Form card */
.checkout-form-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.checkout-form-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.checkout-section-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.82rem;
    color: var(--racing-orange);
    border-bottom: 2px solid rgba(255, 107, 0, 0.15);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.checkout-form-card .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    transition: all 0.25s ease;
}

.checkout-form-card .form-control:focus {
    border-color: var(--racing-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.15);
}

.checkout-form-card .form-check-input:checked {
    background-color: var(--racing-orange);
    border-color: var(--racing-orange);
}

/* Billing toggle */
.checkout-billing-toggle {
    display: flex;
    gap: 1rem;
}

.checkout-billing-option {
    flex: 1;
    cursor: pointer;
}

.checkout-billing-option input[type="radio"] {
    display: none;
}

.checkout-billing-box {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
}

.checkout-billing-box strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.checkout-billing-box span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.checkout-billing-option input[type="radio"]:checked + .checkout-billing-box {
    border-color: var(--racing-orange);
    background: rgba(255, 107, 0, 0.04);
    box-shadow: 0 0 0 1px var(--racing-orange);
}

.checkout-save-badge {
    display: inline-block;
    background: var(--racing-orange);
    color: #fff !important;
    font-size: 0.7rem !important;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    margin-top: 0.35rem;
}

.checkout-submit {
    font-size: 1.05rem;
    padding: 0.85rem;
}

@media (max-width: 767.98px) {
    .checkout-billing-toggle {
        flex-direction: column;
    }
}

/* ===== LOGIN NAV LINK ===== */
.nav-link-login {
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 6px;
}

.nav-link-login:hover {
    border-color: var(--racing-orange) !important;
}

/* Nav user link (logged in) */
.nav-link-user {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    border: 1.5px solid rgba(255, 107, 0, 0.35) !important;
    border-radius: 50px;
    padding: 0.25rem 0.8rem 0.25rem 0.3rem !important;
}

.nav-link-user:hover {
    border-color: var(--racing-orange) !important;
    background: rgba(255, 107, 0, 0.1);
}

.nav-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--racing-orange);
}

.nav-avatar-emoji {
    font-size: 1.1rem;
    line-height: 1;
}

/* ===== DASHBOARD PROFILE ===== */
.dashboard-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--racing-orange);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.3);
}

.dashboard-avatar-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--racing-dark);
    border: 3px solid var(--racing-orange);
    font-size: 1.8rem;
}

.dashboard-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--racing-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
}

.dashboard-profile-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border: 3px solid var(--racing-orange);
    font-size: 2.5rem;
}

.dashboard-firma-logo {
    height: 22px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    border-radius: 3px;
}

.table-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

/* ===== DASHBOARD ===== */
.dashboard-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.dashboard-info-row:last-child {
    border-bottom: none;
}

.dashboard-info-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-mitarbeiter-count {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--racing-orange);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
}

.mitarbeiter-progress {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.mitarbeiter-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--racing-orange), var(--racing-orange-light));
    border-radius: 3px;
    transition: width 0.4s ease;
}

.badge-rolle {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-rolle.admin {
    background: linear-gradient(135deg, var(--racing-orange), var(--racing-orange-dark));
    color: #fff;
}

.badge-rolle.mitarbeiter {
    background: rgba(108, 117, 125, 0.12);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-outline-danger {
    color: var(--racing-red);
    border-color: var(--racing-red);
    font-size: 0.78rem;
    font-weight: 700;
    border-width: 1.5px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.btn-outline-danger:hover {
    background: var(--racing-red);
    border-color: var(--racing-red);
    color: #fff;
}

.mitarbeiter-limit-box {
    background: rgba(255, 107, 0, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.25);
    border-radius: 12px;
    padding: 1.25rem;
}

.plan-limits-info {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
}

.plan-limit-box {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    transition: all 0.25s ease;
}

.plan-limit-box.active {
    border-color: var(--racing-orange);
    background: rgba(255, 107, 0, 0.04);
}

.plan-limit-name {
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.plan-limit-count {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--racing-orange);
    line-height: 1.1;
}

.plan-limit-label {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-success {
    background: rgba(0, 255, 65, 0.08);
    border: 1px solid rgba(0, 200, 50, 0.3);
    border-radius: 10px;
    color: #155724;
}

.alert-danger {
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.25);
    border-radius: 10px;
    color: #721c24;
}

.table th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
}

.table td {
    vertical-align: middle;
    font-size: 0.9rem;
}
