:root {
    --primary: #ff6b00;
    --primary-dark: #e85d00;
    --primary-soft: #fff1e7;
    --navy: #0b2f66;
    --navy2: #071f49;
    --dark: #101828;
    --text: #1f2937;
    --muted: #667085;
    --line: #e6ebf2;
    --bg: #f6f8fb;
    --white: #fff;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
    --shadow2: 0 8px 28px rgba(16, 24, 40, 0.1);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Prompt", system-ui, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: auto;
}

.btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), #ff9a3d);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 107, 0, 0.28);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(255, 107, 0, 0.34);
}

.btn-outline {
    background: #fff;
    color: var(--navy);
    border: 2px solid #d8e0ec;
}

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

.section-title {
    text-align: center;
    margin: 0 0 28px;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    font-weight: 800;
}

.orange {
    color: var(--primary);
}

.site-header {
    height: 76px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
}

.nav-shell {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.logo-image {
    display: block;
    height: 46px;
    width: auto;
}

.logo-mark {
    width: 42px;
    height: 34px;
    position: relative;
}

.logo-mark::before,
.logo-mark::after {
    content: "";
    position: absolute;
    left: 0;
    border-radius: 7px;
    background: var(--primary);
    transform: skewX(-22deg);
}

.logo-mark::before {
    top: 0;
    width: 36px;
    height: 12px;
}

.logo-mark::after {
    bottom: 0;
    width: 28px;
    height: 12px;
    background: var(--navy);
}

.logo small {
    display: block;
    color: var(--navy);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.nav-link {
    position: relative;
    padding: 8px 0;
    transition: color 0.25s ease;
}

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

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-link.is-active::after,
.nav-link:hover::after {
    width: 46px;
}

.nav-cta {
    margin-left: 10px;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--primary-soft);
    padding: 10px;
    gap: 5px;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 465px;
    background: linear-gradient(90deg, #fff 0%, #f7fbff 52%, #fff 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 6% 70%, rgba(11, 47, 102, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -170px;
    top: 0;
    width: 680px;
    height: 520px;
    background: linear-gradient(135deg, var(--primary), #ff7a16 45%, var(--navy) 46%, var(--navy2));
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 16% 54%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 40px;
    padding: 58px 0 72px;
}

.hero h1 {
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.16;
    margin: 0 0 18px;
    color: var(--navy);
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    max-width: 540px;
    color: #26364d;
    font-size: 18px;
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    min-height: 360px;
}

.main-photo {
    width: min(700px, 100%);
    height: 380px;
    object-fit: cover;
    border-radius: 36px;
    filter: drop-shadow(0 18px 30px rgba(16, 24, 40, 0.18));
    transform: rotate(-1.5deg);
}

.circle-badge {
    position: absolute;
    left: 48%;
    bottom: 38px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    font-weight: 800;
    color: #e31d24;
    font-size: 30px;
    border: 7px solid #fff;
}

.circle-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.truck {
    position: absolute;
    right: 0;
    bottom: 15px;
    width: 250px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(16, 24, 40, 0.22));
}

.float {
    animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
    50% {
        transform: translateY(-12px);
    }
}

.feature-row {
    position: relative;
    margin-top: -42px;
    z-index: 5;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow2);
    transition: 0.25s;
}

.feature:hover {
    transform: translateY(-6px);
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 27px;
    flex: 0 0 auto;
}

.icon i,
.step-icon i {
    line-height: 1;
}

.icon-danger {
    background: #ef233c;
    font-size: 15px;
    font-weight: 700;
}

.icon-navy {
    background: var(--navy);
}

.feature b {
    color: var(--navy);
    line-height: 1.35;
}

section {
    padding: 72px 0;
}

.section-anchor {
    scroll-margin-top: 96px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.round-img {
    height: 310px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow2);
}

.about h2,
.why h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.25;
    margin: 0 0 18px;
    color: var(--navy);
    font-weight: 800;
}

.about p {
    margin: 0 0 14px;
    color: #344054;
}

.services {
    background: linear-gradient(#fff, #f8fafc);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(16, 24, 40, 0.06);
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow2);
}

.card .icon {
    margin: 0 auto 18px;
}

.card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 20px;
}

.card p {
    margin: 0;
    color: #475467;
    font-size: 14px;
}

.equipment {
    background:
        radial-gradient(circle at top left, rgba(255, 169, 80, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.equipment-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.equipment-head h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
}

.equipment-head p {
    margin: 0;
    color: #475467;
}

.equipment-highlight {
    color: var(--primary);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.equipment-card {
    padding: 28px 22px 26px;
    border-radius: 24px;
    border: 1px solid #e7edf5;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 32px rgba(16, 24, 40, 0.06);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.1);
}

.equipment-icon {
    width: 132px;
    height: 132px;
    margin: 0 auto 22px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    font-size: 56px;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.equipment-icon-computer {
    background: linear-gradient(145deg, #6d57ff, #c56df2);
}

.equipment-icon-scale {
    background: linear-gradient(145deg, #ffb548, #ff7a18);
}

.equipment-icon-printer {
    background: linear-gradient(145deg, #64748b, #111827);
}

.equipment-icon-wifi {
    background: linear-gradient(145deg, #ffb347, #ff6b00);
}

.equipment-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 20px;
}

.equipment-card p {
    margin: 0;
    color: #475467;
    font-size: 15px;
    line-height: 1.75;
}

.area {
    padding: 0;
    background: var(--navy2);
    color: #fff;
    overflow: hidden;
}

.area-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    align-items: center;
    min-height: 330px;
}

.area-text {
    padding: 42px 0;
}

.area h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.25;
    margin: 0 0 12px;
}

.area h3 {
    color: #ff9a3d;
    margin: 0 0 6px;
    font-size: 28px;
}

.area ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.area li {
    margin: 12px 0;
    color: #eaf0f9;
}

.area-list-icon {
    color: #ff8d57;
    margin-right: 8px;
}

.area li b {
    color: #ff9a3d;
}

.map-box {
    width: min(760px, 100%);
    justify-self: end;
}

.map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.pin {
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.25));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    50% {
        transform: translateY(-5px);
    }
}

.steps {
    background: #fff;
}

.partners {
    background: linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
}

.partners-head {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partners-intro {
    margin: 0 auto;
    color: #475467;
    max-width: 700px;
}

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

.partner-card {
    grid-column: 2 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    min-height: 100%;
    padding: 28px 24px;
    border: 1px solid #ffd9bf;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(255, 107, 0, 0.08);
    text-align: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 18px;
    border-radius: 20px;
    background: #fff8f3;
}

.partner-logo img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
}

.partner-copy {
    display: grid;
    gap: 8px;
}

.partner-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 24px;
}

.partner-card p {
    margin: 0;
    color: #475467;
}

.steps-line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -14px;
    top: 40px;
    color: #b5bdc9;
    font-size: 34px;
}

.step-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid #edf1f6;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    font-size: 34px;
    color: var(--navy);
    position: relative;
}

.step-num {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    display: grid;
    place-items: center;
}

.step b {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.35;
    display: block;
}

.why {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
}

.benefit i {
    font-style: normal;
    color: var(--primary);
    font-size: 28px;
}

.benefit b {
    color: var(--navy);
    font-size: 15px;
    line-height: 1.4;
}

.cta {
    padding: 0;
    background: linear-gradient(90deg, var(--primary), #ff7a16);
    color: #fff;
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.7fr;
    gap: 24px;
    align-items: center;
    min-height: 190px;
}

.shop-illus {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    align-self: end;
    justify-self: center;
    filter: drop-shadow(0 20px 28px rgba(16, 24, 40, 0.22));
}

.cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.22;
    margin: 0 0 8px;
}

.cta p {
    margin: 0;
    color: #fff8f0;
}

.cta-actions {
    display: grid;
    gap: 12px;
}

.cta .btn-outline {
    border: 0;
    background: #fff;
    color: var(--navy);
}

.faq {
    background: #f8fafc;
}

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

.faq-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.faq-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 17px;
}

.faq-card p {
    margin: 0;
    color: #475467;
    font-size: 14px;
}

.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-head {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.contact-intro {
    margin: 0 auto;
    max-width: 720px;
    color: #475467;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-panel,
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.06);
}

.contact-panel h3,
.contact-card h3 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 24px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    border-color: #ffd9bf;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), #ff9a3d);
    color: #fff;
    flex: 0 0 auto;
}

.contact-item span:last-child {
    display: grid;
    gap: 2px;
}

.contact-item b {
    color: var(--navy);
}

.contact-item small {
    color: #667085;
    font-size: 13px;
}

.contact-meta {
    display: grid;
    gap: 18px;
}

.contact-meta-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-meta-row > i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff4eb;
    color: var(--primary);
    flex: 0 0 auto;
}

.contact-meta-row b {
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

.contact-meta-row p {
    margin: 0;
    color: #475467;
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.site-footer {
    background: var(--navy2);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr 0.8fr;
    gap: 34px;
    padding: 38px 0;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo-image {
    height: 52px;
    width: auto;
}

.footer-copy-text {
    color: #d5deec;
    font-size: 14px;
    margin: 0;
}

.site-footer h4 {
    margin: 0 0 12px;
    color: #fff;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    color: #d5deec;
    font-size: 14px;
}

.contact p {
    margin: 5px 0;
    color: #d5deec;
    font-size: 14px;
}

.contact i {
    width: 16px;
    margin-right: 8px;
    color: #ffb061;
    text-align: center;
}

.qr-image {
    width: 126px;
    height: 126px;
    border-radius: 14px;
    object-fit: cover;
    background: #fff;
}

.qr-caption {
    font-size: 13px;
    color: #d5deec;
    margin: 8px 0 0;
}

.copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px;
    color: #cbd5e1;
    font-size: 13px;
}

.backtop {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy2);
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 30;
    box-shadow: var(--shadow2);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .hamburger {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 8px;
        padding: 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow2);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .menu-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(10px);
    }

    .nav-link::after,
    .nav-link.is-active::after,
    .nav-link:hover::after {
        display: none;
    }

    .nav-link,
    .nav-cta {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .nav-link.is-active {
        background: var(--primary-soft);
    }

    .nav-cta {
        margin-left: 0;
    }

    .hero-grid,
    .about-grid,
    .area-wrap,
    .why-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero::after {
        opacity: 0.18;
        right: -320px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .main-photo {
        height: 320px;
    }

    .truck {
        width: 170px;
    }

    .features,
    .cards,
    .equipment-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .partner-card {
        grid-column: 1 / -1;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .steps-line {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
    }

    .step:nth-child(3)::after {
        display: none;
    }

    .area-text {
        padding: 42px 0 0;
    }

    .map-box {
        width: 100%;
    }

    .cta-grid {
        padding-top: 28px;
    }

    .shop-illus {
        display: none;
    }

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

@media (max-width: 620px) {
    .site-header,
    .nav-shell {
        height: 66px;
    }

    .container {
        width: min(100% - 22px, var(--max));
    }

    .site-nav {
        left: 11px;
        right: 11px;
    }

    .logo-image {
        height: 40px;
    }

    .section-anchor {
        scroll-margin-top: 84px;
    }

    .hero-grid {
        padding: 36px 0 70px;
    }

    .hero p {
        font-size: 15px;
    }

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

    .hero-visual {
        min-height: 260px;
    }

    .main-photo {
        height: 270px;
        border-radius: 24px;
    }

    .circle-badge {
        width: 88px;
        height: 88px;
        font-size: 22px;
        left: 45%;
        bottom: 30px;
    }

    .circle-badge small {
        font-size: 11px;
    }

    .truck {
        width: 150px;
        height: 86px;
    }

    .features,
    .cards,
    .equipment-grid,
    .faq-grid,
    .benefits {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 16px;
    }

    .section-title {
        text-align: left;
    }

    .services .section-title,
    .steps .section-title,
    .faq .section-title {
        text-align: center;
    }

    .partners-head {
        text-align: left;
        margin-bottom: 24px;
    }

    .equipment-head {
        text-align: left;
        margin-bottom: 24px;
    }

    .contact-head {
        text-align: left;
        margin-bottom: 24px;
    }

    .equipment-icon {
        width: 104px;
        height: 104px;
        margin-bottom: 18px;
        border-radius: 24px;
        font-size: 44px;
    }

    .equipment-card {
        padding: 24px 18px 22px;
    }

    .contact-panel,
    .contact-card {
        padding: 22px 18px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .partner-card {
        grid-column: auto;
        padding: 22px 18px;
        gap: 18px;
    }

    .partner-logo {
        min-height: 120px;
        padding: 14px;
    }

    .partner-card h3 {
        font-size: 24px;
    }

    .map-box {
        width: 100%;
    }

    .about,
    .services,
    section {
        padding: 48px 0;
    }

    .steps-line {
        grid-template-columns: 1fr;
    }

    .step:not(:last-child)::after {
        content: "↓";
        right: 50%;
        transform: translateX(50%);
        top: 88px;
        font-size: 24px;
    }

    .step {
        padding-bottom: 22px;
    }

    .why-grid {
        gap: 10px;
    }

    .cta-actions {
        margin-bottom: 28px;
    }

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

    .area h3 {
        font-size: 22px;
    }
}
