:root {
    --bg: #fdf8f8;
    --bg-dark: #081426;
    --surface: #ffffff;
    --text: #132238;
    --muted: #607086;
    --primary: #ea1d2f;
    --primary-dark: #b81223;
    --line: #f0dfe3;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 20px 40px rgba(60, 12, 18, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.section-space {
    padding: 64px 0;
}

.about.section-space {
    padding-top: 30px;
    padding-bottom: 50px;
}

.services.section-space {
    padding-top: 30px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 14px;
    line-height: 1.2;
    font-weight: 800;
}

p {
    margin: 0 0 14px;
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(234, 29, 47, 0.2);
}

.site-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand img {
    height: 45px;
    width: auto;
    image-rendering: auto;
    backface-visibility: hidden;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
}

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

.mobile-toggle {
    border: none;
    background: transparent;
    font-size: 20px;
    color: var(--text);
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    padding: 11px 20px;
}

.track-btn-icon {
    margin-right: 8px;
}

.btn-primary-main {
    background: var(--primary);
    color: #fff;
}

.btn-primary-main:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-secondary-main {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
}

.btn-secondary-main:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary-soft {
    background: rgba(231, 35, 42, 0.12);
    color: var(--primary);
}

.btn-primary-soft:hover {
    background: rgba(231, 35, 42, 0.2);
    color: var(--primary);
}

.hero {
    position: relative;
    padding: 38px 0 72px;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    inset: -180px -120px auto auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 29, 47, 0.32), rgba(234, 29, 47, 0));
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 18px;
}

.hero p {
    max-width: 620px;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hero-trust div {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px 16px;
}

.hero-trust strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text);
}

.hero-trust span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-card {
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #ffffff 0%, #f0f4fb 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 24px;
}

.hero-truck-motion {
    animation: truckMove 3.6s ease-in-out infinite;
    will-change: transform;
}

@keyframes truckMove {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(16px);
    }
}

.section-head {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-head h2 {
    color: #7e1321;
}

.about h2,
.process .section-head h2,
.services .section-head h2 {
    color: #7e1321;
}

.about-image-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 420px;
}

.about.section-space,
.services.section-space,
.process.section-space,
.stats.section-space,
.cta.section-space {
    border-top: 1px solid rgba(234, 29, 47, 0.16);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    margin-top: 20px;
}

.feature-list div {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--primary);
    margin-right: 8px;
}

.about-block {
    margin-top: 24px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 20px;
}

.about-block h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.directors-section {
    margin-top: 24px;
}

.director-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    background: #fbfdff;
    height: 100%;
}

.director-card h4 {
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.director-card p {
    margin-bottom: 0;
}

.director-bio {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.director-card.is-expanded .director-bio {
    -webkit-line-clamp: unset;
    line-clamp: none;
    overflow: visible;
}

.director-toggle {
    margin-top: 10px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    padding: 0;
}

.director-toggle:hover {
    color: var(--primary-dark);
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-grid-five {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(234, 29, 47, 0.35);
}

.service-card i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(231, 35, 42, 0.1);
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-card__media {
    position: relative;
    width: 140px;
    height: 84px;
    margin: 0 0 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #eef3fb;
}

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

.service-card__index {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--primary);
    border: 2px solid #fff;
    color: #fff;
}

.service-card h3 {
    font-size: 1.2rem;
    min-height: 56px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-card p {
    margin-bottom: 0;
    line-height: 1.55;
}

.service-desc {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card.is-expanded .service-desc {
    -webkit-line-clamp: unset;
    line-clamp: none;
    overflow: visible;
}

.service-read-toggle {
    margin-top: 10px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    padding: 0;
}

.service-read-toggle:hover {
    color: var(--primary-dark);
}

.process {
    background: linear-gradient(180deg, rgba(8, 20, 38, 0.02) 0%, rgba(8, 20, 38, 0.05) 100%);
}

.process-stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 22px;
}

.process-stepper::before {
    content: "";
    position: absolute;
    top: 43px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(234, 29, 47, 0.55), rgba(234, 29, 47, 0.18));
}

.process-step {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.process-step__node {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: 0 auto 14px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #fff;
    background: #8f9bad;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px rgba(19, 34, 56, 0.15);
}

.process-step__node i {
    font-size: 0.95rem;
}

.process-step.is-active .process-step__node,
.process-step__node:hover {
    background: var(--primary);
}

.process-step__card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 35, 62, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.process-step:hover .process-step__card {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(60, 12, 18, 0.12);
    border-color: rgba(234, 29, 47, 0.32);
}

.process-step.is-active .process-step__card {
    border-color: rgba(234, 29, 47, 0.4);
    background: linear-gradient(180deg, #fff5f6 0%, #ffffff 100%);
    box-shadow: 0 16px 32px rgba(60, 12, 18, 0.14);
}

.process-step__card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.process-step__card p {
    margin-bottom: 0;
}

.stats {
    background: linear-gradient(180deg, #fff7f8 0%, #ffffff 100%);
    padding-top: 36px;
    padding-bottom: 36px;
}

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

.stats-card {
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    padding: 22px 16px;
}

.stats-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(234, 29, 47, 0.2);
    color: var(--primary);
    font-size: 1.2rem;
}

.stats-card h3 {
    margin-bottom: 4px;
    font-size: 2rem;
}

.stats-card p {
    margin-bottom: 0;
    font-weight: 600;
    color: #2f3d52;
}

.cta-panel {
    background: linear-gradient(130deg, #9d1220 0%, #dc2338 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.82);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    width: 105px;
    height: auto;
    margin-bottom: 14px;
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 18px 0 24px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

@media (max-width: 991px) {
    .nav-links {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-bottom: 1px solid rgba(19, 34, 56, 0.08);
        background: #fff;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .hero-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .about-image-wrap {
        min-height: 320px;
    }

    .process-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 22px;
    }

    .process-stepper::before {
        display: none;
    }

    .services-grid-five {
        grid-template-columns: repeat(5, 240px);
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .section-space {
        padding: 72px 0;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .process-stepper {
        grid-template-columns: 1fr;
    }

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

@media (prefers-reduced-motion: reduce) {
    .hero-truck-motion {
        animation: none;
    }
}
