:root {
    --ink: #172019;
    --muted: #667069;
    --green: #174e35;
    --green-dark: #0d3423;
    --lime: #d7f04b;
    --cream: #f5f4ec;
    --line: #dfe3dc;
    --white: #fff;
    --shadow: 0 18px 50px rgba(20, 46, 32, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid rgba(215, 240, 75, .8);
    outline-offset: 3px;
}
.container { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--green-dark); color: var(--white); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: var(--lime); content: ""; }
.section-dark .eyebrow { color: var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 78px); line-height: 1.04; letter-spacing: -.055em; }
h2 { margin-bottom: 20px; font-size: clamp(30px, 4vw, 48px); line-height: 1.13; letter-spacing: -.04em; }
h3 { line-height: 1.3; }
.lead { color: var(--muted); font-size: 18px; }
.section-dark .lead { color: #c9d5ce; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background: var(--lime);
    color: #162012;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .15); }
.btn:active { transform: translateY(0); }
.btn-outline { border: 1px solid rgba(255,255,255,.4); background: transparent; color: var(--white); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 13px; }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(20, 40, 25, .08);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; min-height: 78px; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-logo { width: 48px; height: 48px; flex: 0 0 48px; }
.brand-copy, .brand strong, .brand small { display: block; }
.brand strong { color: var(--green-dark); font-size: 18px; line-height: 1.2; letter-spacing: -.02em; }
.brand small { color: #718077; font-size: 10px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #566159; font-size: 14px; font-weight: 700; }
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; border-radius: 7px; background: none; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--green-dark);
    color: var(--white);
}
.hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,31,21,.98) 0%, rgba(8,31,21,.82) 42%, rgba(8,31,21,.2) 75%),
        url("../images/hero-industrial.jpg") center/cover;
    content: "";
}
.hero-inner { position: relative; display: flex; min-height: 680px; align-items: center; padding: 90px 0; }
.hero-content { width: min(690px, 67%); }
.hero h1 span { color: var(--lime); }
.hero .lead { max-width: 610px; color: #d6dfda; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 50px; color: #d7dfda; font-size: 13px; font-weight: 700; }
.hero-trust span::before { margin-right: 8px; color: var(--lime); content: "\2713"; }

.stats { position: relative; z-index: 2; margin-top: -48px; }
.stats-grid {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.stat { padding: 28px 34px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--green); font-size: 28px; }
.stat span { color: var(--muted); font-size: 13px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.visual-panel {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 16px;
    background: url("../images/hero-industrial.jpg") center/cover;
}
.visual-panel::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,45,30,.5), transparent 65%); content: ""; }
.visual-badge {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 22px;
    border-radius: 10px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(8px);
}
.visual-badge strong { display: block; color: var(--green); font-size: 22px; }
.check-list { display: grid; gap: 14px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; }
.check-list li::before {
    display: grid;
    flex: 0 0 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: #edf5d1;
    color: var(--green);
    content: "\2713";
    font-size: 12px;
    font-weight: 800;
}

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-head > div { max-width: 690px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-5px); border-color: #aebc9e; box-shadow: var(--shadow); }
.service-image { width: 100%; height: 190px; object-fit: cover; }
.service-content { padding: 24px 26px 26px; }
.service-number { color: var(--green); font-size: 12px; font-weight: 800; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.reason-card {
    padding: 28px;
    border: 1px solid #355d48;
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}
.reason-card strong {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 9px;
    background: var(--lime);
    color: var(--green-dark);
    font-size: 15px;
}
.reason-card h3 { margin-bottom: 9px; }
.reason-card p { margin-bottom: 0; color: #becbc4; font-size: 14px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
    position: relative;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}
.testimonial-card::before {
    display: block;
    margin-bottom: 15px;
    color: var(--lime);
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 62px;
    font-weight: 700;
    line-height: .6;
}
.testimonial-card blockquote { margin: 0 0 25px; color: #49534c; font-size: 15px; }
.testimonial-card strong, .testimonial-card span { display: block; }
.testimonial-card span { color: var(--muted); font-size: 12px; }
.testimonial-note { max-width: 620px; margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: steps; }
.step { position: relative; padding: 26px 0; border-top: 1px solid #50705f; counter-increment: steps; }
.step::before { color: var(--lime); content: "0" counter(steps); font-size: 13px; font-weight: 800; }
.step h3 { margin: 20px 0 10px; }
.step p { color: #becbc4; font-size: 14px; }
.section:not(.section-dark) .step { border-color: var(--line); }
.section:not(.section-dark) .step p { color: var(--muted); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.post-image {
    display: grid;
    height: 210px;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(12,56,37,.12), rgba(216,240,75,.2)),
        url("../images/hero-industrial.jpg") center/cover;
}
.post-body { padding: 24px; }
.post-meta { margin-bottom: 12px; color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.post-card h3 { margin-bottom: 12px; font-size: 20px; }
.post-card p { color: var(--muted); font-size: 14px; }
.text-link { color: var(--green); font-size: 14px; font-weight: 800; }

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 54px;
    border-radius: 18px;
    background: var(--green);
    color: var(--white);
}
.cta-box h2 { max-width: 680px; margin-bottom: 8px; }
.cta-box p { margin-bottom: 0; color: #d1ddd6; }

.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 115px 0 98px;
    background: var(--green-dark) center/cover;
    color: var(--white);
}
.page-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,31,20,.96), rgba(7,31,20,.77) 50%, rgba(7,31,20,.2));
    content: "";
}
.page-hero-about { background-image: url("../images/service-warehouse.jpg"); }
.page-hero-services { background-image: url("../images/service-heavy-lift.jpg"); }
.page-hero-blog { background-image: url("../images/service-industrial.jpg"); }
.page-hero-contact { background-image: url("../images/service-generator.jpg"); }
.page-hero h1 { max-width: 830px; margin-bottom: 18px; font-size: clamp(42px, 5vw, 66px); }
.page-hero p { max-width: 690px; color: #cbd6d0; font-size: 18px; }
.breadcrumb { margin-bottom: 28px; color: var(--lime); font-size: 13px; font-weight: 800; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 30px; border-radius: 12px; background: var(--white); }
.value-card strong { display: block; margin-bottom: 12px; color: var(--green); font-size: 30px; }
.services-full { grid-template-columns: repeat(4, 1fr); }
.services-full .service-image { height: 170px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.contact-card { padding: 34px; border-radius: 14px; background: var(--cream); }
.contact-item { padding: 22px 0; border-bottom: 1px solid #d8ddd4; }
.contact-item:last-child { border: 0; }
.contact-item small { display: block; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field-full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
input, textarea, select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #ccd3ca;
    border-radius: 7px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}
input:focus, textarea:focus, select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(23,78,53,.1); outline: 0; }
textarea { min-height: 130px; resize: vertical; }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 1fr; gap: 60px; align-items: start; }
.article-content { font-size: 17px; }
.article-content p { margin-bottom: 24px; }
.sidebar { padding: 28px; border-radius: 12px; background: var(--cream); }
.sidebar h3 { margin-bottom: 8px; }
.sidebar p { color: var(--muted); font-size: 14px; }

.site-footer { padding-top: 72px; background: #0b281b; color: #dce5df; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr 1fr; gap: 55px; padding-bottom: 55px; }
.brand-light { margin-bottom: 20px; color: var(--white); }
.brand-light strong { color: var(--white); }
.brand-light small { color: #9bb0a4; }
.site-footer p { color: #9fb0a6; font-size: 14px; }
.site-footer h3 { margin-bottom: 18px; color: var(--white); font-size: 14px; }
.site-footer > .container a:not(.brand) { display: block; margin: 9px 0; font-size: 14px; }
.footer-phone { color: var(--lime); font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid #264334; color: #82968a; font-size: 12px; }
.wa-float {
    position: fixed;
    z-index: 60;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 50px;
    background: #25d366;
    color: #083f21;
    box-shadow: 0 10px 30px rgba(0,0,0,.23);
    font-size: 12px;
    font-weight: 800;
}
.wa-float svg { width: 24px; height: 24px; fill: currentColor; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.28); }

@media (max-width: 900px) {
    .nav-cta { display: none; }
    .menu-toggle { display: block; order: 3; }
    .main-nav {
        position: absolute;
        top: 78px;
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: var(--white);
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px; }
    .hero-content { width: 85%; }
    .two-col, .contact-grid, .article-layout { grid-template-columns: 1fr; }
    .service-grid, .services-full, .blog-grid, .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, 1140px); }
    .section { padding: 70px 0; }
    .brand small { display: none; }
    .brand-logo { width: 44px; height: 44px; flex-basis: 44px; }
    .brand strong { font-size: 16px; }
    .hero, .hero-inner { min-height: 650px; }
    .hero::before { background: linear-gradient(90deg, rgba(8,31,21,.97), rgba(8,31,21,.68)), url("../images/hero-industrial.jpg") 62% center/cover; }
    .hero-content { width: 100%; }
    .hero h1 { font-size: 45px; }
    .hero-trust { gap: 12px; }
    .stats { margin-top: 0; }
    .stats-grid, .service-grid, .services-full, .blog-grid, .steps, .values-grid, .footer-grid, .form-grid, .reasons-grid { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .section-head, .cta-box { align-items: flex-start; flex-direction: column; }
    .cta-box { padding: 34px 26px; }
    .visual-panel { min-height: 390px; }
    .page-hero { padding: 82px 0 72px; }
    .page-hero h1 { font-size: 40px; }
    .page-hero::before { background: linear-gradient(90deg, rgba(7,31,20,.96), rgba(7,31,20,.78)); }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    .wa-float span { display: none; }
    .wa-float { width: 52px; height: 52px; justify-content: center; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
