:root {
    --brand-primary: #1a6b5c;
    --brand-primary-dark: #134f44;
    --brand-primary-light: #e6f3f0;
    --brand-accent: #e8913a;
    --text-dark: #15202b;
    --text-muted: #5a6578;
    --surface: #ffffff;
    --surface-alt: #f4f7f6;
    --surface-dark: #0f1a24;
    --border: #dde5e2;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--surface);
    line-height: 1.65;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .page-hero-title,
.footer-title, .stat-value, .stat-number, .process-step {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.btn-primary {
    --bs-btn-bg: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-bg: var(--brand-primary-dark);
    --bs-btn-hover-border-color: var(--brand-primary-dark);
    --bs-btn-active-bg: var(--brand-primary-dark);
    --bs-btn-active-border-color: var(--brand-primary-dark);
    --bs-btn-disabled-bg: var(--brand-primary);
    --bs-btn-disabled-border-color: var(--brand-primary);
}

.btn-outline-primary {
    --bs-btn-color: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-bg: var(--brand-primary);
    --bs-btn-hover-border-color: var(--brand-primary);
    --bs-btn-active-bg: var(--brand-primary-dark);
    --bs-btn-active-border-color: var(--brand-primary-dark);
}

.text-primary {
    color: var(--brand-primary) !important;
}

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

.bg-dark {
    background: var(--surface-dark) !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.brand-logo {
    width: 38px;
    height: 38px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    font-size: 0.95rem;
}

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

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero,
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.page-hero {
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 26, 36, 0.9) 0%, rgba(15, 26, 36, 0.55) 55%, rgba(15, 26, 36, 0.75) 100%);
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-eyebrow,
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-accent);
    margin-bottom: 0.85rem;
}

.section-eyebrow {
    color: var(--brand-primary);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    max-width: 720px;
}

.hero-lead {
    font-size: 1.12rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 2rem;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
}

.hero-panel-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.hero-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-panel-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-panel-list strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-panel-list span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.stats-bar {
    background: var(--brand-primary);
    color: #fff;
    margin-top: -1px;
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.1;
}

.stat-desc {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

.section-padding {
    padding: 5.5rem 0;
}

.section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.bg-light {
    background: var(--surface-alt) !important;
}

.feature-card,
.service-card,
.value-card,
.stat-card,
.info-panel,
.form-card,
.process-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 26, 36, 0.08);
    border-color: var(--brand-primary-light);
}

.process-card {
    position: relative;
    padding-top: 2rem;
    transition: transform 0.2s ease;
}

.process-card:hover {
    transform: translateY(-3px);
}

.process-step {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-primary-light);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--brand-primary-light);
    margin-bottom: 1.15rem;
    position: relative;
}

.feature-icon::after {
    content: "";
    position: absolute;
    inset: 13px;
    background: var(--brand-primary);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.icon-truck::after,
.icon-route::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M9 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M20 8h-3V4H3v13h1.05a2.5 2.5 0 0 1 4.9 0h2.1a2.5 2.5 0 0 1 4.9 0H20v-5l-2-4M6 13V6h8v7H6m9 0V9h2l2 4h-4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M9 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M20 8h-3V4H3v13h1.05a2.5 2.5 0 0 1 4.9 0h2.1a2.5 2.5 0 0 1 4.9 0H20v-5l-2-4M6 13V6h8v7H6m9 0V9h2l2 4h-4'/%3E%3C/svg%3E");
}

.icon-map::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5'/%3E%3C/svg%3E");
}

.icon-headset::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 1a9 9 0 0 0-9 9v7c0 1.66 1.34 3 3 3h1v-8H5v-2a7 7 0 0 1 14 0v2h-2v8h1c1.66 0 3-1.34 3-3v-7a9 9 0 0 0-9-9'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 1a9 9 0 0 0-9 9v7c0 1.66 1.34 3 3 3h1v-8H5v-2a7 7 0 0 1 14 0v2h-2v8h1c1.66 0 3-1.34 3-3v-7a9 9 0 0 0-9-9'/%3E%3C/svg%3E");
}

.icon-clock::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m1 11h-4V7h2v4h2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m1 11h-4V7h2v4h2'/%3E%3C/svg%3E");
}

.icon-check::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.industry-tag {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

.industry-tag-light {
    background: var(--brand-primary-light);
    border-color: transparent;
    color: var(--brand-primary-dark);
}

.cta-band {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 60%, #1f8573 100%);
    padding: 4rem 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.7rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--brand-accent);
}

.process-list {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.process-list li {
    margin-bottom: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.plain-list {
    padding-left: 1.2rem;
}

.plain-list li {
    margin-bottom: 0.55rem;
}

.stat-card {
    text-align: center;
    background: var(--brand-primary-light);
    border: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--brand-primary-dark);
    line-height: 1.15;
}

.stat-label {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.contact-block {
    margin-bottom: 1.5rem;
}

.contact-block a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-block a:hover {
    text-decoration: underline;
}

.form-card {
    box-shadow: 0 12px 40px rgba(15, 26, 36, 0.07);
    border: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 107, 92, 0.15);
}

.site-footer {
    background: var(--surface-dark);
    color: #fff;
    padding: 4rem 0 0;
    margin-top: 0;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-heading {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links a,
.footer-link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer-links a:hover,
.footer-link:hover {
    color: #fff;
}

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

.footer-hours li {
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
    }

    .hero-panel {
        margin-top: 0.5rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 1.5rem 1rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }

    .navbar-nav .btn {
        margin-top: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:nth-child(even) {
        border-right: none;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}
