.transport-pricing {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 48px;
}

.transport-pricing section {
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.transport-pricing .hero {
    padding: 32px 0 16px;
    background: linear-gradient(135deg, rgba(4, 38, 89, 0.92), rgba(13, 103, 177, 0.88));
    color: #fff;
}

.transport-pricing .hero .container {
    display: grid;
    gap: 24px;
}

.transport-pricing .hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.2;
}

.transport-pricing .hero p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    max-width: 38ch;
}

.transport-pricing .hero .metrics {
    display: grid;
    gap: 16px;
}

.transport-pricing .hero .metric-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(6px);
}

.transport-pricing .hero .metric-card strong {
    font-size: 1.5rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #fff;
    color: #042659;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
    background: rgba(255, 255, 255, 0.9);
    color: rgba(4, 38, 89, 0.95);
}

.rates-section .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rates-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rates-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-field {
    position: relative;
}

.search-field input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(4, 38, 89, 0.14);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-field input:focus {
    outline: none;
    border-color: rgba(13, 103, 177, 0.65);
    box-shadow: 0 0 0 4px rgba(13, 103, 177, 0.1);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    border: 1px solid rgba(4, 38, 89, 0.18);
    background: #fff;
    color: #042659;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip[aria-pressed="true"] {
    background: rgba(13, 103, 177, 1);
    color: #fff;
    border-color: rgba(13, 103, 177, 1);
}

.rates-table-wrapper {
    border-radius: 18px;
    border: 1px solid rgba(4, 38, 89, 0.1);
    overflow: hidden;
    background: #fff;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table thead {
    display: none;
}

.rates-table tr {
    display: block;
    border-bottom: 1px solid rgba(4, 38, 89, 0.08);
}

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

.rates-table th,
.rates-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
}

.rates-table td::before,
.rates-table th::before {
    content: attr(data-label);
    font-weight: 600;
    color: rgba(4, 38, 89, 0.65);
}

.rates-table a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(13, 103, 177, 1);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(13, 103, 177, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.rates-table a:hover,
.rates-table a:focus-visible {
    background: rgba(13, 103, 177, 0.16);
    color: rgba(13, 103, 177, 0.95);
}

.empty-state {
    padding: 24px;
    border-radius: 16px;
    background: rgba(13, 103, 177, 0.08);
    text-align: center;
    display: none;
}

.empty-state[aria-hidden="false"] {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .filter-chip,
    .search-field input,
    .rates-table a,
    .hero-cta {
        transition: none;
    }
}

@media (min-width: 521px) {
    .rates-table thead {
        display: table-header-group;
        background: rgba(4, 38, 89, 0.04);
    }

    .rates-table tr {
        display: table-row;
        border-bottom: none;
    }

    .rates-table th,
    .rates-table td {
        display: table-cell;
        padding: 14px 18px;
        text-align: left;
        border-bottom: 1px solid rgba(4, 38, 89, 0.06);
    }

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

    .rates-table td::before,
    .rates-table th::before {
        content: none;
    }
}

@media (min-width: 640px) {
    .rates-controls {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
    }

    .rates-controls > * {
        flex-shrink: 0;
    }

    .search-field {
        flex: 1 1 240px;
    }
}

@media (min-width: 768px) {
    .transport-pricing {
        gap: 48px;
        padding-bottom: 64px;
    }

    .transport-pricing .hero {
        padding: 48px 0 24px;
    }

    .transport-pricing .hero .container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        align-items: center;
        gap: 40px;
    }

    .rates-section .container {
        gap: 32px;
    }

    .rates-header {
        gap: 12px;
    }
}

