/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A90E2;
    --primary-dark: #357ABD;
    --primary-light: #E3F2FD;
    --secondary-color: #f0f0f0;
    --accent-color: #FF4081;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --border-radius: 8px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: #f5f5f5;
    color: #333;
    padding: 60px 20px;
    min-height: 600px;
    margin-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.8;
    color: #666;
}

.hero-content-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 16px;
}

.signup-role-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.signup-role-btn {
    appearance: none;
    border: 1px solid #c8deef;
    border-radius: 8px;
    padding: 9px 12px;
    background: #f5fbff;
    color: #365a70;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.signup-role-btn.active {
    background: linear-gradient(135deg, #3ea3e4, #2d8cc9);
    color: #fff;
    border-color: #2d8cc9;
    box-shadow: 0 6px 14px rgba(45, 140, 201, 0.22);
}

.custom-dropdown-wrapper {
    position: relative;
}

.custom-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-family: inherit;
}

.dropdown-toggle:hover {
    border-color: var(--primary-color);
}

.dropdown-toggle.active {
    border-color: var(--primary-color);
    background: #f9f9f9;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 6px 6px;
    display: none;
    flex-direction: row;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-menu.active {
    display: flex;
}

.dropdown-col {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-col:first-child {
    border-right: 1px solid #e0e0e0;
}

.dropdown-divider {
    width: 1px;
    background: #e0e0e0;
}

.dropdown-more-header {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    padding: 8px 0;
    margin-bottom: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
    color: #666;
    font-size: 0.95rem;
    border: none;
    background: none;
}

.dropdown-item:hover {
    background: #f0f7ff;
    color: var(--primary-color);
}

.dropdown-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #999;
    transition: color 0.2s;
}

.dropdown-item:hover svg {
    color: var(--primary-color);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.location-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.trustpilot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #00b67a;
    border-radius: 6px;
    margin-bottom: 20px;
}

.trustpilot-logo {
    height: 20px;
}

.trustpilot-text {
    color: white;
    font-weight: 600;
}

.stars {
    color: white;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.btn-cta {
    background: linear-gradient(135deg, #FF4081 0%, #F50057 100%);
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.3);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 12px;
    font-style: italic;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* How We Work Section */
.how-we-work {
    padding: 80px 20px;
    background: #f9f9f9;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
    color: #333;
    font-weight: 700;
}

.work-steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.work-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #666;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-text {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.work-step-connector {
    flex: 0 0 60px;
    height: 2px;
    background: #999;
    position: relative;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: white;
}

.service-examples-section {
    padding: 28px 20px 88px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.service-examples-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 28px;
}

.service-examples-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #4a90e2;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.service-examples-subtitle {
    max-width: 760px;
    color: #5b6b7a;
    font-size: 1.02rem;
    line-height: 1.6;
}

.service-examples-note {
    background: #eff6ff;
    border: 1px solid #cfe3fb;
    color: #1d4ed8;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 16px;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(74, 144, 226, 0.12);
}

.service-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-example-card {
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 18px;
    box-shadow: 0 16px 34px rgba(20, 60, 100, 0.08);
    position: relative;
    overflow: hidden;
}

.service-example-card::after {
    content: '';
    position: absolute;
    inset: auto -24px -24px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.12), rgba(74, 144, 226, 0));
    pointer-events: none;
}

.service-example-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.service-example-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    background: #ecf4ff;
    border: 1px solid #d4e7ff;
    flex: 0 0 auto;
}

.service-example-top h3 {
    font-size: 1.08rem;
    margin: 0 0 4px;
    color: #16324f;
}

.service-example-top p {
    margin: 0;
    color: #6b7f92;
    font-size: 0.92rem;
}

.service-example-form {
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
    border: 1px solid #dbe7f4;
    border-radius: 14px;
    padding: 14px;
}

.service-example-field {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e7eef7;
}

.service-example-field:last-of-type {
    border-bottom: none;
    padding-bottom: 4px;
}

.service-example-label {
    color: #587086;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-example-value {
    color: #0f172a;
    font-weight: 600;
    line-height: 1.45;
}

.service-example-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.service-example-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #155e92;
    font-weight: 700;
    font-size: 0.8rem;
}

.service-example-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e62f7a, #cc1d67);
    color: white;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(230, 47, 122, 0.22);
}

.service-example-family .service-example-icon { background: #eff8ff; }
.service-example-creative .service-example-icon { background: #fff4e8; }
.service-example-vehicle .service-example-icon { background: #eefbf1; }
.service-example-music .service-example-icon { background: #f5efff; }
.service-example-road .service-example-icon { background: #fff7ea; }
.service-example-speed .service-example-icon { background: #eefcff; }
.service-example-premium .service-example-icon { background: #fff7f3; }
.service-example-industrial .service-example-icon { background: #edf1f7; }
.service-example-freight .service-example-icon { background: #eff6ff; }
.service-example-clearance .service-example-icon { background: #eefaf2; }
.service-example-water .service-example-icon { background: #ecf8ff; }
.service-example-office .service-example-icon { background: #eef4ff; }
.service-example-heavy .service-example-icon { background: #f1f5f9; }
.service-example-support .service-example-icon { background: #f3f7ff; }
.service-example-friendly .service-example-icon { background: #f0fff4; }
.service-example-other .service-example-icon { background: #f7f7ff; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    align-items: flex-end;
}

.service-overlay h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    border-radius: 6px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-newsletter {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-newsletter {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .location-inputs {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        flex-direction: column;
    }

    .service-examples-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-examples-grid {
        grid-template-columns: 1fr;
    }

    .service-example-field {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-xl);
}

.container.dashboard-container {
    padding-top: calc(70px + var(--spacing-xl));
}

.container.create-job-container {
    grid-template-columns: 1fr;
    padding-top: calc(70px + var(--spacing-xl));
    max-width: 800px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #f9f9f9;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

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

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-2xl);
    font-size: 1rem;
}

/* Forms */
input, textarea, select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.2s ease;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-cta-group .btn {
    width: 100%;
    justify-content: center;
}

.btn-hero-cta {
    width: 100%;
}

.btn-hero-cta-secondary {
    background: #ffffff;
    color: #f50057;
    border: 2px solid #f50057;
    box-shadow: none;
}

.btn-hero-cta-secondary:hover {
    background: #fff1f6;
    box-shadow: 0 4px 12px rgba(245, 0, 87, 0.2);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

textarea {
    resize: vertical;
}

/* Password field with toggle button */
.password-field {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: var(--spacing-lg);
}

.password-field input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    padding-right: 4rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color 0.2s ease;
}

.password-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-toggle-password {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    color: var(--primary-color);
    transition: opacity 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.btn-toggle-password:hover {
    opacity: 0.8;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group small {
    display: block;
    margin-top: var(--spacing-xs);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.input-with-currency {
    position: relative;
}

.input-with-currency .currency {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-weight: 600;
}

.input-with-currency input {
    padding-left: 2.5rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.2s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content.modal-large {
    max-width: 600px;
}

.modal-content h2 {
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.modal-content button {
    margin-top: var(--spacing-md);
}

.close {
    position: absolute;
    right: var(--spacing-lg);
    top: var(--spacing-lg);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: var(--text-primary);
}

/* Radio Buttons */
.radio-label {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: var(--spacing-md);
    cursor: pointer;
}

/* Checkboxes */
.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: var(--spacing-md);
    cursor: pointer;
    min-width: 18px;
}

.role-checkboxes {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 100%;
        padding: var(--spacing-xl);
    }
}
