/* ===== 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: var(--racing-silver);
    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: #ffffff;
    border: 2px solid #c8c8c8;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    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.15);
}

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

/* ===== LOGIN PAGE ===== */
.login-logo {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
}

/* ===== RESPONSIVE – Tablet (iPad) ===== */
@media (max-width: 991.98px) {
    .gabu-brand-main {
        font-size: 1.8rem;
    }

    .gabu-logo-hero {
        height: 70px;
    }

    .checkout-hero-title {
        font-size: 1.6rem;
    }

    .pricing-price {
        font-size: 2.2rem;
    }

    .gabu-hero-card {
        padding: 1.5rem;
    }

    .gabu-stat-number {
        font-size: 1.8rem;
    }

    .section-heading h2 {
        font-size: 1.6rem;
    }

    /* Navbar collapsed menu adjustments */
    .navbar-collapse .nav-link-user {
        border-radius: 8px;
        justify-content: flex-start;
        width: 100%;
        margin-top: 0.25rem;
    }

    .navbar-collapse .btn-gabu-sm {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
        width: 100%;
    }

    .gabu-hero .display-5 {
        font-size: 2rem;
    }

    .gabu-cta h2 {
        font-size: 1.5rem;
    }

    .checkout-price {
        font-size: 2rem;
    }

    /* Tablet: Navbar mobile menu padding */
    .gabu-navbar .navbar-collapse {
        padding: 0.75rem 0;
        border-top: 1px solid rgba(255,107,0,0.2);
        margin-top: 0.5rem;
    }

    .gabu-navbar .nav-item {
        width: 100%;
    }

    .gabu-navbar .nav-link {
        padding: 0.6rem 0.9rem !important;
        border-radius: 8px;
        margin-bottom: 0.15rem;
    }

    /* Tablet: Hero columns */
    .gabu-hero .col-lg-7 {
        text-align: center;
    }

    .gabu-brand-hero {
        justify-content: center;
    }

    .gabu-trust-row {
        justify-content: center;
    }

    .d-flex.flex-wrap.gap-3 {
        justify-content: center;
    }
}

/* ===== RESPONSIVE – Mobile ===== */
@media (max-width: 575.98px) {
    /* === LAYOUT / SPACING === */
    .gabu-hero {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* === HERO TEXT === */
    .gabu-brand-main {
        font-size: 1.4rem;
    }

    .gabu-brand-sub {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .gabu-logo-hero {
        height: 52px;
    }

    .gabu-brand-hero {
        gap: 10px;
        justify-content: center;
        text-align: center;
    }

    .gabu-hero .display-5 {
        font-size: 1.45rem;
        line-height: 1.3;
    }

    .gabu-hero .lead {
        font-size: 0.95rem;
    }

    /* === HERO BUTTONS – Stack statt nebeneinander === */
    .gabu-hero .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        align-items: stretch;
    }

    .gabu-hero .btn-gabu,
    .gabu-hero .btn-gabu-outline {
        width: 100%;
        text-align: center;
    }

    /* === HERO TRUST ROW === */
    .gabu-trust-row {
        flex-direction: column;
        gap: 0.4rem;
        font-size: 0.82rem;
        align-items: flex-start;
    }

    /* === HERO STAT CARD === */
    .gabu-hero-card {
        padding: 1rem 0.75rem;
        margin-top: 1.5rem;
    }

    .gabu-stat-number {
        font-size: 1.4rem;
    }

    .gabu-stat-label {
        font-size: 0.65rem;
    }

    /* === HERO BADGES === */
    .gabu-urgency {
        font-size: 0.72rem;
        padding: 0.25rem 0.7rem;
    }

    .gabu-hero-badges {
        justify-content: center;
        gap: 6px;
    }

    .gabu-hero-badges .badge {
        font-size: 0.68rem;
        padding: 0.3rem 0.5rem;
    }

    /* === NAVBAR === */
    .gabu-navbar .brand-text {
        font-size: 0.95rem;
    }

    .gabu-navbar .navbar-logo {
        height: 30px;
    }

    .gabu-navbar .navbar-collapse {
        padding: 0.75rem 0;
        border-top: 1px solid rgba(255,107,0,0.2);
        margin-top: 0.5rem;
    }

    .gabu-navbar .nav-item {
        width: 100%;
    }

    .gabu-navbar .nav-link {
        font-size: 0.85rem;
        padding: 0.65rem 0.9rem !important;
        border-radius: 8px;
        margin-bottom: 0.2rem;
    }

    .gabu-navbar .btn-gabu-sm {
        display: block;
        text-align: center;
        width: 100%;
        padding: 0.65rem 1rem;
        margin-top: 0.5rem;
    }

    /* Navbar collapse: spacing für den ganzen Block */
    .navbar-collapse .ms-lg-2 {
        margin-left: 0 !important;
    }

    /* === SECTION HEADINGS === */
    .section-heading h2 {
        font-size: 1.2rem;
        line-height: 1.35;
    }

    .section-heading {
        margin-bottom: 1.75rem;
    }

    .section-heading p {
        font-size: 0.88rem;
    }

    /* === FEATURE CARDS === */
    .gabu-feature-card {
        padding: 1.25rem 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .gabu-feature-card h5 {
        font-size: 0.92rem;
    }

    /* === BENEFITS === */
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .benefit-item {
        gap: 0.75rem;
    }

    .benefit-item h6 {
        font-size: 0.9rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    /* === PRICING CARDS – Mobile: 1 Spalte, kein scale === */
    .gabu-pricing-card {
        padding: 1.25rem 1rem;
    }

    .gabu-pricing-card.featured {
        transform: scale(1);
        border-width: 2px;
        box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
    }

    .gabu-pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    .pricing-name {
        font-size: 1rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .btn-pricing {
        font-size: 0.82rem;
        padding: 0.65rem;
    }

    /* === CTA SECTION === */
    .gabu-cta h2 {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    .gabu-cta p {
        font-size: 0.88rem;
    }

    .gabu-cta .btn-lg {
        font-size: 0.88rem;
        padding: 0.6rem 1.5rem;
        width: 100%;
    }

    .btn-gabu.btn-lg,
    .btn-gabu-outline.btn-lg {
        font-size: 0.88rem;
        padding: 0.6rem 1.2rem;
    }

    /* === ACCORDION / FAQ === */
    .accordion-button {
        font-size: 0.88rem;
        padding: 0.85rem 1rem;
    }

    .accordion-body {
        font-size: 0.85rem;
    }

    /* === FOOTER === */
    .gabu-footer {
        padding: 1.75rem 0 1rem;
    }

    .gabu-footer .row > div {
        text-align: center;
    }

    .gabu-footer .d-flex.align-items-center.gap-2 {
        justify-content: center;
    }

    .gabu-footer .d-flex.flex-wrap.justify-content-between {
        flex-direction: column;
        align-items: center !important;
        gap: 0.4rem;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem 1rem;
        justify-content: center;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    /* === CHECKOUT === */
    .checkout-hero-title {
        font-size: 1.2rem;
        word-break: break-word;
    }

    .checkout-hero-sub {
        font-size: 0.85rem;
    }

    .checkout-hero {
        padding: 1.5rem 0;
    }

    .checkout-summary {
        position: static;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .checkout-form-card {
        padding: 1.25rem;
    }

    .checkout-price {
        font-size: 1.8rem;
    }

    .checkout-billing-toggle {
        flex-direction: column;
    }

    .checkout-form-title {
        font-size: 1.1rem;
    }

    .checkout-section-label {
        font-size: 0.75rem;
    }

    .checkout-form-card a,
    .checkout-form-card p {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Checkout: Formular auf Mobile besser lesbar */
    .checkout-form-card .form-control {
        font-size: 1rem; /* prevents iOS zoom on focus */
        padding: 0.65rem 0.85rem;
    }

    .checkout-form-card .form-label {
        font-size: 0.88rem;
    }

    .checkout-submit {
        font-size: 1rem;
        padding: 0.85rem;
    }

    /* === DASHBOARD === */
    .dashboard-avatar {
        width: 40px;
        height: 40px;
    }

    .dashboard-avatar-emoji {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .dashboard-profile-img {
        width: 64px;
        height: 64px;
    }

    .dashboard-profile-emoji {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .dashboard-info-row {
        flex-direction: column;
        gap: 0.15rem;
        font-size: 0.85rem;
    }

    .dashboard-info-row span {
        word-break: break-all;
    }

    /* Plan Limit Boxes */
    .plan-limit-box {
        padding: 0.5rem 0.35rem;
    }

    .plan-limit-count {
        font-size: 1.2rem;
    }

    .plan-limit-name {
        font-size: 0.7rem;
    }

    .mitarbeiter-limit-box {
        padding: 1rem;
    }

    /* === LOGIN PAGE === */
    .login-logo {
        height: 48px;
    }

    /* === TABLE === */
    .table {
        font-size: 0.8rem;
    }

    .table th {
        font-size: 0.7rem;
    }

    .table td {
        font-size: 0.82rem;
        padding: 0.4rem;
    }

    /* Table horizontal scroll on mobile */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== RESPONSIVE – Small Mobile (≤399px) ===== */
@media (max-width: 399.98px) {
    .gabu-brand-main {
        font-size: 1.15rem;
    }

    .gabu-logo-hero {
        height: 44px;
    }

    .gabu-hero .display-5 {
        font-size: 1.25rem;
    }

    .checkout-hero-title {
        font-size: 1.05rem;
    }

    .pricing-price {
        font-size: 1.5rem;
    }

    .gabu-stat-number {
        font-size: 1.2rem;
    }

    .gabu-stat-label {
        font-size: 0.62rem;
        letter-spacing: 0.5px;
    }

    .gabu-hero-badges .badge {
        font-size: 0.68rem;
        padding: 0.3rem 0.5rem;
    }

    .gabu-navbar .brand-text {
        font-size: 0.95rem;
    }

    .gabu-navbar .navbar-logo {
        height: 28px;
    }

    .section-heading h2 {
        font-size: 1.1rem;
    }

    .btn-pricing {
        font-size: 0.78rem;
        padding: 0.6rem;
    }
}

/* ====================================================
   14-TAGE TRIAL – Styles
   ==================================================== */

/* Trial-Banner oben über Pricing */
.trial-banner {
    background: linear-gradient(135deg, rgba(0,200,100,0.08), rgba(0,150,70,0.12));
    border: 1px solid rgba(0,200,100,0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}
.trial-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.trial-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.trial-banner-text {
    flex: 1;
    min-width: 180px;
}
.trial-banner-text strong {
    display: block;
    color: #1a7a3a;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.trial-banner-text span {
    color: #3a6a4a;
    font-size: 0.88rem;
}
.btn-trial-banner {
    background: linear-gradient(135deg, #00c864, #00e070);
    color: #000 !important;
    font-weight: 700;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.btn-trial-banner:hover { opacity: 0.85; }

/* Trial-Tag auf Pricing-Cards */
.trial-tag {
    display: inline-block;
    background: rgba(0,200,100,0.15);
    border: 1px solid rgba(0,200,100,0.4);
    color: #00e070;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* "14 Tage gratis testen" Button in Cards */
.btn-trial-card {
    display: block;
    text-align: center;
    margin-top: 0.6rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(0,200,100,0.4);
    background: rgba(0,200,100,0.07);
    color: #00e070 !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, border-color 0.2s;
}
.btn-trial-card:hover {
    background: rgba(0,200,100,0.15);
    border-color: rgba(0,200,100,0.7);
}
.btn-trial-card-featured {
    border-color: rgba(0,200,100,0.6);
    background: rgba(0,200,100,0.12);
}

/* Trial-Formular */
.trial-form-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    scroll-margin-top: 80px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.trial-form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.trial-form-header h3 {
    color: #1a1a1a;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.trial-form-header p {
    color: #777;
    font-size: 0.95rem;
}

/* Paket-Auswahl */
.trial-plan-select {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.trial-plan-option {
    flex: 1;
    min-width: 130px;
    max-width: 180px;
    padding: 1rem;
    border: 2px solid #d4d4d4;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.trial-plan-option:hover {
    border-color: #ff6b00;
    background: rgba(255,107,0,0.04);
}
.trial-plan-option.active {
    border-color: #ff6b00;
    background: rgba(255,107,0,0.08);
}
.trial-plan-star {
    font-size: 0.72rem;
    color: #ff6b00;
    margin-bottom: 0.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.trial-plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}
.trial-plan-desc {
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.2rem;
}

/* Formularfelder – helle Variante */
.trial-input {
    background: #ffffff !important;
    border: 1px solid #d4d4d4 !important;
    color: #1a1a1a !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
}
.trial-input::placeholder { color: #aaa; }
.trial-input:focus {
    border-color: #ff6b00 !important;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.15) !important;
    background: #ffffff !important;
    outline: none;
}

/* Submit-Zeile */
.trial-submit-row {
    text-align: center;
}
.btn-trial-submit {
    background: linear-gradient(135deg, #ff6b00, #ff8c42);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(255,107,0,0.4);
    transition: opacity 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-trial-submit:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}
.btn-trial-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.trial-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}
.trial-trust-badges span {
    font-size: 0.83rem;
    color: #888;
}
.trial-trust-badges span::before { content: ''; }

.trial-error {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.4);
    color: #f08090;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 576px) {
    .trial-banner-inner { flex-direction: column; text-align: center; }
    .trial-plan-select { gap: 0.5rem; }
    .trial-plan-option { min-width: 100px; padding: 0.75rem 0.5rem; }
    .trial-form-section { padding: 1.5rem 1rem; }
}

/* Checkout Trial-Hinweis */
.checkout-trial-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: rgba(0,200,100,0.08);
    border: 1px solid rgba(0,200,100,0.25);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #bbb;
}
.checkout-trial-link {
    color: #00e070 !important;
    font-weight: 600;
    text-decoration: none;
}
.checkout-trial-link:hover { text-decoration: underline; }
.checkout-trial-sub { color: #888; font-size: 0.82rem; }

/* ====================================================
   TRIAL SUCCESS PAGE
   ==================================================== */
.trial-success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}
.trial-success-card {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
}
.trial-success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.trial-success-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}
.trial-success-sub {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.trial-success-steps {
    text-align: left;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.trial-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}
.trial-step-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b00, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.trial-step-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.trial-step-text strong {
    color: #fff;
    font-size: 0.95rem;
}
.trial-step-text span {
    color: #999;
    font-size: 0.85rem;
}
.trial-success-hint {
    background: rgba(255,200,0,0.07);
    border: 1px solid rgba(255,200,0,0.2);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    font-size: 0.87rem;
    color: #aaa;
    margin-bottom: 2rem;
}
.trial-success-hint a { color: #ff8c42; }
.trial-success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-trial-back {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ccc !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-trial-back:hover { background: rgba(255,255,255,0.12); }
.btn-trial-app {
    background: linear-gradient(135deg, #ff6b00, #ff8c42);
    color: #fff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255,107,0,0.35);
    transition: opacity 0.2s;
}
.btn-trial-app:hover { opacity: 0.9; }

@media (max-width: 576px) {
    .trial-success-card { padding: 2rem 1.25rem; }
    .trial-success-title { font-size: 1.5rem; }
}

/* ========================================
   ADMIN PANEL – RESPONSIVE
   ======================================== */

/* Sidebar Toggle Button */
.admin-toggle-btn {
    display: none;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1100;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}
.admin-toggle-btn:hover { transform: scale(1.1); }
.admin-toggle-btn:active { transform: scale(0.95); }

/* Sidebar Overlay (mobile) */
.admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}

/* Responsive Admin Sidebar */
@media (max-width: 991.98px) {
    .admin-toggle-btn { display: flex; }

    .admin-sidebar {
        position: fixed !important;
        left: -280px !important;
        top: 0 !important;
        width: 260px !important;
        z-index: 1050;
        transition: left 0.3s ease !important;
        box-shadow: 4px 0 20px rgba(0,0,0,0.3);
    }

    .admin-sidebar.open {
        left: 0 !important;
    }

    .admin-sidebar-overlay.show {
        display: block;
    }

    .admin-content {
        margin-left: 0 !important;
        padding: 20px 12px !important;
    }
}

/* Responsive Admin Cards (mobile table replacement) */
@media (max-width: 767.98px) {
    .user-table thead { display: none; }

    .user-table,
    .user-table tbody,
    .user-table tr,
    .user-table td {
        display: block;
        width: 100%;
    }

    .user-table tr {
        background: white;
        border-radius: 10px;
        padding: 14px;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border: 1px solid #eee;
    }

    .user-table td {
        padding: 6px 0 !important;
        border: none !important;
        text-align: left !important;
        font-size: 13px;
        white-space: normal !important;
    }

    .user-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #999;
        margin-bottom: 1px;
    }

    .user-table td:first-child {
        padding-top: 0 !important;
    }

    .user-table tr:hover {
        background: #fafafa;
    }

    /* Action buttons stack on mobile */
    .user-table td:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
        padding-top: 8px !important;
        border-top: 1px solid #f0f0f0 !important;
    }

    /* Dashboard stat cards */
    .admin-content .stat-card {
        margin: 6px 0 !important;
        padding: 16px !important;
    }
    .stat-value { font-size: 28px !important; }
}

/* Very small screens */
@media (max-width: 399.98px) {
    .admin-content { padding: 14px 8px !important; }
    .user-table tr { padding: 10px !important; }
    .user-table td { font-size: 12px; }
}

/* Responsive Search Form */
@media (max-width: 575.98px) {
    .admin-search-form {
        flex-direction: column !important;
    }
    .admin-search-form input[type="text"] {
        width: 100% !important;
        box-sizing: border-box;
    }
    .admin-search-form button,
    .admin-search-form a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.release-countdown-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid var(--racing-orange);
    border-radius: 16px;
    padding: 40px 20px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}

.release-countdown-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    animation: pulse-orange 4s ease-in-out infinite;
}

.release-countdown-banner .container {
    position: relative;
    z-index: 1;
}

.release-badge {
    display: inline-block;
    background: var(--racing-orange);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--racing-orange);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-item small {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.release-subtitle {
    color: #aaa;
    margin-top: 20px;
    font-size: 0.95rem;
}

.unlock-input-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.unlock-input {
    min-width: 280px;
    max-width: 360px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0.85rem 1rem;
    outline: none;
}

.unlock-input::placeholder {
    color: #9d9d9d;
}

.unlock-input:focus {
    border-color: rgba(255, 107, 0, 0.8);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.18);
}

.unlock-btn {
    min-width: 180px;
}

.unlock-error,
.unlock-success {
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 600;
}

.unlock-error {
    color: #ff8e8e;
}

.unlock-success {
    color: #95e7b5;
}

.pricing-lock-target {
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease;
}

.pricing-lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pricing-lock-content {
    max-width: 520px;
    width: 100%;
    text-align: center;
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.pricing-lock-content h3 {
    color: #fff;
    margin-bottom: 10px;
}

.pricing-lock-content p {
    color: #c8c8c8;
    margin-bottom: 0.5rem;
}

.pricing-lock-content .small {
    color: #9f9f9f;
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

@keyframes pulse-orange {
    0%, 100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .release-countdown-banner {
        padding: 32px 16px;
        margin-bottom: 28px;
    }

    .countdown {
        gap: 14px;
    }

    .countdown-item {
        min-width: 64px;
    }

    .countdown-item span:first-child {
        font-size: 2rem;
    }

    .unlock-input {
        min-width: 0;
    }

    .unlock-btn {
        width: 100%;
    }

    .pricing-lock-content {
        padding: 24px 20px;
    }
}

/* ===== Pre-Release Newsletter ===== */
.pre-release-newsletter {
    margin-top: 24px;
    padding-top: 8px;
}

.newsletter-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-headline {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.newsletter-sub {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.newsletter-inputs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-inputs .unlock-input {
    min-width: 200px;
    max-width: 280px;
}

@media (max-width: 575.98px) {
    .newsletter-inputs {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-inputs .unlock-input {
        min-width: 0;
        max-width: 100%;
    }
}
