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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    color: #333;
}

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

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-tagline {
    font-size: 12px;
    color: #7a8496;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 2px;
}

.signup-agree {
    margin-top: 12px;
    font-size: 13px;
    color: #8b96a8;
    line-height: 1.5;
    text-align: center;
}

.signup-agree a {
    color: #0066cc;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

/* Pages */
.page {
    display: block;
}

.page.hidden {
    display: none;
}

/* Landing */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.features {
    padding: 60px 0;
}

.features h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0066cc;
}

.feature p {
    line-height: 1.6;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 60px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 30px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea, select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-link {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-link {
    background: none;
    color: #0066cc;
    padding: 8px 0;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Dashboard */
.dashboard {
    display: block;
    padding: 40px 0;
}

.dashboard.hidden {
    display: none;
}

.dashboard h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section h3 {
    margin-bottom: 20px;
    color: #0066cc;
}

/* Lists */
.shipment-card, .inquiry-card, .company-card {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    background: #f9f9f9;
}

.shipment-card h4, .inquiry-card h4, .company-card h4 {
    margin-bottom: 10px;
    color: #0066cc;
}

.shipment-card p, .inquiry-card p, .company-card p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.company-card--pending {
    border-style: dashed;
    background: #fbfcfe;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    color: #0b0e14;
}

.company-name--masked {
    color: #5a6474;
    font-weight: 600;
}

.company-meta {
    margin-top: 4px;
    color: #5a6474;
    font-size: 14px;
}

.company-dba {
    color: #5a6474;
    font-weight: 400;
}

.company-detail {
    margin-top: 4px;
    color: #5a6474;
    font-size: 14px;
}

.company-badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.company-badge--verified {
    color: #0f6e56;
    background: #e1f5ee;
    border: 1px solid #9fe1cb;
}

.company-badge--pending {
    color: #854f0b;
    background: #faeeda;
    border: 1px solid #fac775;
}

.company-badge--removed {
    color: #791f1f;
    background: #fcebeb;
    border: 1px solid #f09595;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.card-actions button {
    padding: 8px 16px;
    font-size: 12px;
}

/* Errors & Alerts */
.error {
    color: #cc0000;
    font-size: 14px;
    margin-top: 10px;
}

.success {
    color: #00cc00;
    font-size: 14px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .form-container {
        margin: 30px auto;
        padding: 20px;
    }

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



.hero-title {
    font-size: clamp(26px, 3.4vw, 46px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #f4f6fa;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}

.hero-title-accent {
    background: linear-gradient(120deg, #38bdf8, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #38bdf8;
}

.hero-sub {
    max-width: 620px;
    margin: 16px auto 0;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.5;
    color: #cdd8e8;
    text-shadow: 0 1px 14px rgba(0,0,0,0.7);
}


.btn-on-dark {
    background: rgba(255,255,255,0.08);
    color: #f4f6fa;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
}



/* ===== Compact static hero (Option C) ===== */
.hero-screen {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 66px);
}

.hero-compact {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    background: #0b0e14;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    filter: grayscale(45%);
    transition: opacity 1.6s ease-in-out;
}

.hero-bg.active {
    opacity: 0.42;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(11,14,20,0.5) 0%, rgba(11,14,20,0.3) 45%, rgba(11,14,20,0.85) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 44px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-inner .hero-sub {
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 640px) {
    .hero-screen { min-height: calc(100vh - 60px); }
    .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
    .hero-actions .btn-large { width: 100%; }
}

.hero-howlink {
    background: none;
    border: none;
    color: #cdd8e8;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 4px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.hero-howlink:hover {
    color: #fff;
}

/* ===== Landing: trust bar ===== */
.trustbar {
    background: #0b0e14;
    border-top: 1px solid #1f2a3d;
}

.trustbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 140px;
}

.trust-val {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f4f6fa;
}

.trust-label {
    color: #93a1b8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

@media (max-width: 640px) {
    .trust-stat { flex: 1 1 40%; }
}

/* ===== Landing: pricing path cards ===== */

.paths-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.paths-eyebrow {
    color: #0066cc;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.paths-title {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b0e14;
    line-height: 1.1;
}

.paths-lead {
    color: #5a6474;
    font-size: 17px;
    margin-top: 14px;
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.path-card {
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.path-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0b0e14;
}

.path-price {
    margin: 14px 0 6px;
    color: #5a6474;
    font-size: 15px;
}

.path-price-big {
    font-size: 34px;
    font-weight: 800;
    color: #0b0e14;
}

.path-price-unit {
    font-size: 16px;
    font-weight: 600;
    color: #0b0e14;
}

.path-steps {
    list-style: none;
    margin: 18px 0 26px;
    padding: 0;
}

.path-steps li {
    position: relative;
    padding: 10px 0 10px 26px;
    color: #5a6474;
    font-size: 15px;
    line-height: 1.5;
    border-top: 1px solid #f0f2f6;
}

.path-steps li:first-child {
    border-top: 0;
}

.path-steps li strong {
    color: #0b0e14;
    font-weight: 600;
}

.path-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #1d9e75;
    font-weight: 700;
}

.path-card .btn-block {
    margin-top: auto;
}

@media (max-width: 720px) {
    .paths-grid { grid-template-columns: 1fr; }
    .path-card { padding: 26px; }
}

/* ===== Carrier claim page ===== */
.claim-intro {
    color: #5a6474;
    margin-bottom: 18px;
}

.claim-readonly {
    background: #f7f9fc;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.claim-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0;
    font-size: 14px;
}

.claim-label {
    color: #8b96a8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
}

.claim-sub {
    color: #5a6474;
    font-size: 14px;
    margin: 12px 0 8px;
}

.claim-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.signup-disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: #8b96a8;
    line-height: 1.5;
}

/* ===== Admin panel ===== */
.admin-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: #0066cc;
    padding: 2px 8px;
    border-radius: 6px;
    vertical-align: middle;
    margin-left: 6px;
}

.admin-summary {
    color: #5a6474;
    font-size: 14px;
    margin: 6px 0 18px;
}

.admin-count {
    color: #8b96a8;
    font-weight: 400;
    font-size: 14px;
}

.admin-tabs {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #e3e8ef;
    margin: 8px 0 18px;
}

.admin-tab {
    background: none;
    border: none;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #5a6474;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.admin-tab:hover {
    color: #0b0e14;
}

.admin-tab.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

.admin-search {
    width: 100%;
    max-width: 360px;
    padding: 10px 14px;
    border: 1px solid #d7deea;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 14px;
}

.admin-search:focus {
    outline: none;
    border-color: #0066cc;
}

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.filter-row .admin-search {
    margin-bottom: 0;
    flex: 1 1 220px;
}

.admin-select {
    padding: 10px 12px;
    border: 1px solid #d7deea;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #0b0e14;
    cursor: pointer;
}

.filter-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #5a6474;
    white-space: nowrap;
    cursor: pointer;
}

.admin-table.sortable th {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.admin-table.sortable th.sorted-asc::after {
    content: ' ▲';
    font-size: 9px;
    color: #fff;
}

.admin-table.sortable th.sorted-desc::after {
    content: ' ▼';
    font-size: 9px;
    color: #fff;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid #e3e8ef;
    border-radius: 10px;
    background:
        linear-gradient(to right, #fff 30%, rgba(255,255,255,0)) left center,
        linear-gradient(to left, #fff 30%, rgba(255,255,255,0)) right center,
        radial-gradient(farthest-side at left center, rgba(0,0,0,0.12), rgba(0,0,0,0)) left center,
        radial-gradient(farthest-side at right center, rgba(0,0,0,0.12), rgba(0,0,0,0)) right center;
    background-repeat: no-repeat;
    background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-attachment: local, local, scroll, scroll;
}

.table-hint {
    font-size: 12px;
    color: #8b96a8;
    margin: -6px 0 10px;
}

/* Wide tables: size columns to content (no stretching) and cap any single column. */
.admin-table.admin-table--wide {
    width: auto;
}

.admin-table--wide th,
.admin-table--wide td {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid #eef1f5;
    white-space: nowrap;
}

.admin-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: #0066cc;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table td.col-company {
    white-space: normal;
    max-width: 220px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.form-note {
    font-size: 14px;
    margin-top: 8px;
    min-height: 18px;
}

.section--danger {
    border: 1px solid #f4c0c0;
    background: #fdf6f6;
}

.danger-text {
    color: #a32d2d;
    font-size: 14px;
    margin-bottom: 12px;
}

.btn-danger {
    background: #e24b4a;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.btn-danger:hover {
    background: #c93b3a;
}

/* ===== Legal pages (Terms / Privacy) ===== */
.legal-page {
    max-width: 760px;
    padding-top: 48px;
    padding-bottom: 64px;
    color: #33404f;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0b0e14;
    letter-spacing: -0.02em;
}

.legal-updated {
    color: #8b96a8;
    font-size: 14px;
    margin: 6px 0 28px;
}

.legal-page h2 {
    font-size: 19px;
    font-weight: 700;
    color: #0b0e14;
    margin: 28px 0 8px;
}

.legal-page p {
    margin-bottom: 14px;
    font-size: 15px;
}

/* ===== Site footer ===== */
.site-footer {
    background: #0b0e14;
    color: #93a1b8;
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: #6b7688;
}

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

.footer-links a {
    color: #cdd8e8;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ===== How-it-works modal ===== */
.howmodal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.howmodal.open {
    display: flex;
}

.howmodal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 9, 14, 0.72);
    backdrop-filter: blur(3px);
}

.howmodal-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    max-width: 940px;
    width: 100%;
    padding: 44px 40px 36px;
    margin: auto;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.howmodal-card-narrow {
    max-width: 520px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d7deea;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #0b0e14;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.contact-note {
    font-size: 14px;
    color: #1d9e75;
    margin-top: 4px;
    min-height: 18px;
}

.howmodal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #8b96a8;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.howmodal-close:hover {
    background: #f0f2f6;
    color: #0b0e14;
}

.howmodal .paths-head {
    margin-bottom: 32px;
}

.howmodal-verify {
    margin-top: 26px;
    padding: 16px 20px;
    background: #f0f7f3;
    border: 1px solid #cdeadd;
    border-radius: 10px;
    color: #35505f;
    font-size: 14px;
    line-height: 1.55;
}

.howmodal-verify strong {
    color: #0b0e14;
    font-weight: 700;
}

.howmodal-verify a {
    color: #0f6e56;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.howmodal-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eef1f5;
    color: #5a6474;
    font-size: 14px;
}

.howmodal-trust strong {
    color: #0b0e14;
    font-weight: 700;
}

@media (max-width: 640px) {
    .howmodal { padding: 20px 12px; }
    .howmodal-card { padding: 40px 22px 28px; }
}

/* ===== Signup: role info panel + form ===== */
.signup-card {
    display: flex;
    max-width: 900px;
    margin: 60px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.signup-info {
    flex: 1 1 44%;
    background: #0b0e14;
    color: #f4f6fa;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: radial-gradient(circle at 20% 20%, rgba(249,115,22,0.15) 0%, transparent 60%);
}

.role-kicker {
    font-family: 'SF Mono', ui-monospace, Menlo, monospace;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 12px;
}

.signup-info h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.role-steps {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.role-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 52px;
}

.role-steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 2px;
    font-family: 'SF Mono', ui-monospace, Menlo, monospace;
    font-size: 14px;
    color: #f97316;
    border: 1px solid rgba(249,115,22,0.4);
    padding: 4px 7px;
}

.role-steps li strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.role-steps li span {
    font-size: 14px;
    line-height: 1.5;
    color: #9aa4b2;
}

.signup-card .signup-form {
    flex: 1 1 56%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 768px) {
    .signup-card {
        flex-direction: column;
        margin: 20px auto;
    }
    .signup-info {
        padding: 32px 24px;
    }
}


.role-note {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.5;
    color: #cbd5e1;
    background: rgba(249,115,22,0.08);
    border-left: 2px solid #f97316;
    padding: 10px 14px;
}


/* Location field groups (shipper dashboard) */
.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.field-row {
    display: flex;
    gap: 10px;
}

.field-row input {
    flex: 1;
    min-width: 0;
}

.field-row select {
    flex: 1;
    min-width: 0;
}

.field-hint {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #94a3b8;
    font-size: 11px;
}
