/* =========================================================================
   ALCAR WARSZTAT SAMOCHODOWY - CSS STYLESHEET
   ========================================================================= */

/* --- 1. SETTINGS & VARIABLES --- */
:root {
    /* Colors - Light Mode (Default) */
    --color-primary: #DC2626;
    --color-primary-light: #EF4444;
    --color-accent: #111827;
    --color-accent-dark: #000000;
    --color-bg-base: #F8FAFC;
    --color-bg-surface: #FFFFFF;
    --color-bg-alt: #F1F5F9;
    --color-text-main: #0F172A;
    --color-text-muted: #475569;
    --color-border: #E2E8F0;
    --color-nav-bg: rgba(255, 255, 255, 0.9);
    --color-glass-bg: rgba(255, 255, 255, 0.7);

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --container-padding: 2rem;
    --section-padding: 100px 0;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 25px 50px -12px rgb(0 0 0 / 0.15);

    --border-radius: 12px;
    --border-radius-lg: 20px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        /* Colors - Dark Mode Override */
        --color-primary: #EF4444;
        --color-primary-light: #F87171;
        --color-accent: #374151;
        --color-accent-dark: #1F2937;
        --color-bg-base: #0F172A;
        --color-bg-surface: #1E293B;
        --color-bg-alt: #0B1120;
        --color-text-main: #F8FAFC;
        --color-text-muted: #CBD5E1;
        --color-border: #334155;
        --color-nav-bg: rgba(15, 23, 42, 0.9);
        --color-glass-bg: rgba(30, 41, 59, 0.7);

        /* Explicit Gradients for Dark Mode Fallback */
        --gradient-brand: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    background-color: var(--color-bg-base);
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

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

/* --- 3. TYPOGRAPHY & UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

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

.text-accent {
    color: var(--color-accent);
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.font-bold {
    font-weight: 700;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.section {
    padding: var(--section-padding);
}

.section-bg-light {
    background-color: var(--color-bg-alt);
}

.rounded-xl {
    border-radius: var(--border-radius-lg);
}

.shadow-premium {
    box-shadow: var(--shadow-premium);
}

.d-none-mobile {
    display: none !important;
}

@media (min-width: 768px) {
    .d-none-mobile {
        display: inline-flex;
    }
}

/* Custom Gradients for Services */
.bg-gradient-brand {
    background: var(--gradient-brand);
    color: white;
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: white;
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
    color: white;
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: white;
}

.bg-gradient-4 {
    background: linear-gradient(135deg, #4B5563 0%, #1F2937 100%);
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: var(--color-bg-surface);
    color: var(--color-text-main);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
    color: var(--color-primary);
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary) !important;
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: white;
}

/* Animations & Micro-interactions */
.hover-lift {
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

@media (max-width: 768px) {

    .reveal-left,
    .reveal-right {
        transform: translateY(40px);
    }

    .reveal-left.active,
    .reveal-right.active {
        transform: translate(0);
    }
}

/* Glassmorphism */
.glass-panel {
    background: var(--color-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-glass {
    background: var(--color-nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- 4. HEADER & NAV --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-normal), padding var(--transition-normal), box-shadow var(--transition-normal);
    padding: 1rem 0;
}

.header.scrolled {
    padding: 0.5rem 0;
    background: var(--color-nav-bg);
    box-shadow: var(--shadow-md);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
}

/* --- 5. HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for fixed header */
    background: url('../assets/img/hero-bg.jpg') center/cover no-repeat;
    isolation: isolate;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-bg-base) 0%, var(--color-glass-bg) 50%, transparent 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-bg-overlay {
        background: var(--color-nav-bg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
        /* Hide visual floating badges on mobile to save space */
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 138, 0.1);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    position: absolute;
    background: var(--color-nav-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-badge {
    top: 20%;
    left: 10%;
}

.exp-badge {
    bottom: 20%;
    right: 10%;
    flex-direction: column;
    text-align: center;
    background: var(--gradient-brand);
    color: white;
    border: none;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-title {
    display: block;
    font-weight: 700;
    color: var(--color-text-main);
}

.trust-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* --- 6. ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.decor-blob {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: var(--gradient-brand);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    z-index: -1;
}

.section-badge {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--color-text-main);
    font-weight: 500;
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.feature-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* --- 7. SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--color-bg-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: transparent;
}

.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon-box svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* --- 8. GLOBAL REVIEWS --- */
.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .reviews-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-wrapper {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: var(--color-bg-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 6rem;
    line-height: 1;
    color: var(--color-bg-alt);
    font-family: serif;
    z-index: 0;
    pointer-events: none;
}

.review-card:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.reviewer-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    color: var(--color-text-main);
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: #FFC107;
    color: #FFC107;
}

.google-logo {
    margin-left: auto;
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.review-text {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* --- 9. CONTACT SECTION --- */
.contact-info-block {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem;
    background: var(--color-bg-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    /* Equal heights via grid stretch */
    height: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

.link-unstyled {
    display: flex;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.contact-details p {
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-map-col {
    height: 100%;
    min-height: 420px;
}

.map-container {
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-map-col {
        grid-column: 1 / -1;
        min-height: 300px;
    }
}

@media (max-width: 650px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* --- 10. FOOTER --- */
.footer {
    background: #0B1120;
    color: white;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 48px;
    margin-bottom: 1rem;
}

.footer-text {
    color: #94A3B8;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #94A3B8;
}

.footer-links ul li a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94A3B8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-text {
        margin: 0 auto;
    }

    .footer-logo {
        margin: 0 auto;
        display: block;
    }

    .footer-links ul {
        padding-left: 0;
    }
}

/* --- 11. MOBILE MENU REPLACEMENTS --- */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-bg-surface);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.25rem;
    }
}

/* --- 10. CONTACT FORM --- */
.contact-form-block {
    height: 100%;
}

.form-container {
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    background: var(--color-bg-surface);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }
}

.form-title {
    font-size: 1.5rem;
    color: var(--color-text-main);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-main);
    background: var(--color-bg-base);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
}

/* Contact form status message */
.form-status-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: none;
}

.form-status-message:not(:empty) {
    display: block;
}

.form-status-message.error {
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* File input styling */
input[type="file"].form-control {
    padding: 0.5rem;
    cursor: pointer;
}

/* --- 12. ADVANCED FORM STYLES --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group-full {
    grid-column: 1 / -1;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.checkbox-input {
    margin-top: 0.15rem;
    accent-color: var(--color-primary);
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}