:root {
    --bg: #f4f5f7;
    --surface: #ffffff;
    --surface-2: #f8f9fb;
    --text: #1f2937;
    --text-soft: #5f6b7a;
    --line: #e5e7eb;
    --dark: #111827;
    --dark-2: #0f172a;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-soft: #fff3d6;
    --success-bg: #ecfdf3;
    --success-border: #a7f3d0;
    --success-text: #166534;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1360px;
    --anchor-offset: 130px;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background-color: #f2f4f700;
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 28%),
        linear-gradient(180deg, #f8f9fb 0%, #f2f4f7 100%);
}

main {
    position: relative;
    z-index: 1;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/navigation styles removed per user request */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, rgba(245, 158, 11, 0.88), rgba(217, 119, 6, 0.82));
    color: #fffdf8;
    font-weight: 700;
    letter-spacing: -0.01em;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
        0 10px 24px rgba(217, 119, 6, 0.22),
        0 18px 40px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0.00));
    pointer-events: none;
    z-index: -1;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 46%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.26),
        transparent
    );
    transform: skewX(-22deg);
    transition: left 0.65s ease;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.015);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow:
        0 14px 30px rgba(217, 119, 6, 0.28),
        0 24px 50px rgba(15, 23, 42, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 -1px 0 rgba(255, 255, 255, 0.10);
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:active {
    transform: translateY(0) scale(0.99);
    box-shadow:
        0 8px 18px rgba(217, 119, 6, 0.20),
        0 12px 24px rgba(15, 23, 42, 0.14),
        inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

.btn-primary:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(245, 158, 11, 0.18),
        0 14px 30px rgba(217, 119, 6, 0.28),
        0 24px 50px rgba(15, 23, 42, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-secondary {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: #f9fafb;
}

.btn-full {
    width: 100%;
}


.brand{width: fit-content; display: flex; align-items: center; gap: 12px;}

/* Logo container */
.brand-mark {
    max-width: 250px;
    width: auto;
    height: auto;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.brand-mark img {
    width: 100%;
    height: auto;
    max-height: 30px;
    object-fit: contain;
    display: block;
    -webkit-font-smoothing: antialiased;
    image-rendering: -webkit-optimize-contrast;
}

.inline-link {
    font-weight: 700;
    color: var(--accent-dark);
}

.inline-link:hover {
    text-decoration: underline;
}

/* Messages */
.messages-wrap {
    padding-top: 20px;
}

.messages {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--success-text);
    box-shadow: var(--shadow-sm);
}

.message-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-item + .message-item {
    margin-top: 8px;
}

/* Hero */
.hero {
    padding: 56px 0 48px;
    transform: scale(0.9);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 42px;
    align-items: center;
    margin-top: 21px;
}

.eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    background: var(--accent-soft);
    border-radius: 999px;
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--dark-2);
}

.hero-text {
    max-width: 680px;
    margin: 0 0 28px;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.stat-card strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 6px;
}

.stat-card span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.hero-visual {
    position: relative;
    min-height: 468px;
    transform: scale(0.92);
    transform-origin: center center;
}

.hero-image-card {
    height: 100%;
    max-width: 92%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #d1d5db;
    box-shadow: var(--shadow-lg);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    max-width: 230px;
}

.hero-badge span {
    display: block;
    font-size: 0.82rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.hero-badge strong {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
}

.hero-badge--dark {
    top: 26px;
    left: 8px;
    background: rgba(17, 24, 39, 0.92);
    color: #fff;
}

.hero-badge--accent {
    right: 8px;
    bottom: 28px;
    background: rgba(245, 158, 11, 0.96);
    color: #111827;
}

/* Sections */
.section {
    padding: 88px 0;
    scroll-margin-top: var(--anchor-offset);
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
    flex-direction: column;
    position: relative;
}

.section-head.center {
    display: block;
    text-align: center;
}

.section-title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--dark-2);
}

.section-text {
    max-width: 540px;
    margin: 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Cards common */
.service-card,
.equipment-card,
.asphalt-card,
.advantage-card,
.blog-card,
.process-step {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover,
.equipment-card:hover,
.asphalt-card:hover,
.advantage-card:hover,
.blog-card:hover,
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 158, 11, 0.34);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    padding: 28px;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(245, 158, 11, 0.28));
    color: var(--accent-dark);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.service-card p {
    margin: 0;
    color: var(--text-soft);
}

/* Equipment */
.equipment-grid,
.asphalt-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.asphalt-grid {
    display: flex;
}

.equipment-card,
.asphalt-card,
.blog-card {
    overflow: hidden;
}

.equipment-media,
.asphalt-media,
.blog-media {
    aspect-ratio: 16 / 10;
    background: #e5e7eb;
}

.equipment-media img,
.asphalt-media img,
.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, #d1d5db, #9ca3af);
    color: #ffffff;
    font-size: 2rem;
}

.media-placeholder--road {
    background: linear-gradient(135deg, #1f2937, #4b5563);
}

.media-placeholder--blog {
    background: linear-gradient(135deg, #374151, #6b7280);
}

.media-placeholder--evacuator {
    background:
        radial-gradient(circle at top, rgba(245, 158, 11, 0.32), transparent 38%),
        linear-gradient(135deg, #111827, #334155);
}

.equipment-body,
.asphalt-body,
.blog-body {
    padding: 22px;
}

.equipment-body h3,
.asphalt-body h3,
.blog-body h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.equipment-body p,
.asphalt-body p,
.blog-body p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

.equipment-meta,
.asphalt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.equipment-price,
.asphalt-price {
    font-weight: 800;
    color: var(--dark);
}

/* Advantages */
.section-advantages {
    background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.6));
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.advantage-card {
    padding: 28px;
    text-align: center;
}

.advantage-card i {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: #111827;
    color: var(--accent);
    font-size: 1.35rem;
}

.advantage-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.advantage-card p {
    margin: 0;
    color: var(--text-soft);
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    padding: 10px 0 0;
    align-items: stretch;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 28px;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.05),
        0 22px 54px rgba(15, 23, 42, 0.07);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.process-step-media {
    position: relative;
    min-height: 220px;
    padding: 28px 24px 14px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 38%),
        linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.process-step-media img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.10),
        0 8px 18px rgba(15, 23, 42, 0.06);
    position: relative;
    z-index: 2;
}

.process-step-placeholder {
    width: 180px;
    height: 180px;
    min-height: 180px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(17, 24, 39, 0.14));
    color: var(--dark);
    font-size: 2rem;
    border: 8px solid #fff;
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.10),
        0 8px 18px rgba(15, 23, 42, 0.06);
    position: relative;
    z-index: 2;
}

.process-step-index {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(17, 24, 39, 0.94);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    z-index: 3;
}

.process-step-body {
    padding: 20px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-step h3 {
    margin: 0;
    font-size: 1.14rem;
    line-height: 1.22;
    color: var(--dark-2);
    text-align: center;
    letter-spacing: -0.02em;
}

.process-step-short {
    margin: 0;
    text-align: center;
    font-size: 0.97rem;
    line-height: 1.55;
    color: var(--dark);
    font-weight: 700;
}

.process-step-full {
    margin: 0;
    text-align: center;
    font-size: 0.94rem;
    line-height: 1.68;
    color: var(--text-soft);
}

/* Evacuator */
.section-evacuator {
    position: relative;
    padding-top: 24px;
}

.evacuator-shell {
    position: relative;
    padding: 42px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 26%),
        radial-gradient(circle at bottom right, rgba(217, 119, 6, 0.10), transparent 22%),
        linear-gradient(180deg, #fff8ec 0%, #fffdf8 52%, #ffffff 100%);
    color: var(--text);
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.14);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.evacuator-shell::after {
    content: "";
    position: absolute;
    top: 0;
    left: 42px;
    width: 220px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.96), rgba(217, 119, 6, 0.56), transparent);
}

.evacuator-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.38;
    pointer-events: none;
}

.evacuator-head,
.evacuator-grid {
    position: relative;
    z-index: 1;
}

.evacuator-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    grid-template-areas:
        "title copy"
        "title tags";
    column-gap: 28px;
    row-gap: 16px;
    align-items: start;
    margin-bottom: 34px;
}

.evacuator-title {
    grid-area: title;
    color: var(--dark-2);
    max-width: 780px;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.04;
}

.evacuator-copy {
    grid-area: copy;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 22px 20px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(255, 255, 255, 0.98));
    color: var(--text);
    border: 1px solid rgba(245, 158, 11, 0.12);
    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.evacuator-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 42%);
    pointer-events: none;
}

.evacuator-text {
    max-width: none;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.evacuator-tags {
    grid-area: tags;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: start;
}

.evacuator-tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 243, 214, 0.88);
    border: 1px solid rgba(245, 158, 11, 0.16);
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.evacuator-copy .btn-primary {
    width: auto;
    position: relative;
    z-index: 1;
}

.evacuator-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.evacuator-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.evacuator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
    border-color: rgba(245, 158, 11, 0.28);
}

.evacuator-card--featured {
    background:
        linear-gradient(180deg, rgba(255, 246, 228, 0.96), rgba(255, 255, 255, 1)),
        #fff;
    border-color: rgba(245, 158, 11, 0.24);
}

.evacuator-card--lead {
    min-height: 0;
}

.evacuator-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 0;
    background: linear-gradient(180deg, #000000, #ffffff);
    padding: 14px 14px 0;
}

.evacuator-card--lead .evacuator-card__media {
    min-height: 0;
}

.evacuator-card__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px 22px 0 0;
}

.evacuator-card--lead .evacuator-card__media img {
    min-height: 0;
}

.evacuator-card__media::after {
    content: "";
    position: absolute;
    inset: 14px 14px 0;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(15, 23, 42, 0.05) 100%);
    pointer-events: none;
}

.evacuator-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    z-index: 1;
}

.evacuator-card__body {
    padding: 24px 24px 26px;
}

.evacuator-card:not(.evacuator-card--lead) {
    display: flex;
}

.evacuator-card--lead .evacuator-card__body {
    position: static;
    padding: 24px 24px 26px;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.evacuator-card__head h3 {
    margin: 0 0 8px;
    font-size: 1.24rem;
    color: var(--dark-2);
    letter-spacing: -0.02em;
}

.evacuator-card--lead .evacuator-card__head h3 {
    color: var(--dark-2);
    font-size: 1.24rem;
}

.evacuator-card__subtitle {
    margin: 0 0 14px;
    color: var(--accent-dark);
    font-weight: 700;
}

.evacuator-card--lead .evacuator-card__subtitle {
    color: var(--accent-dark);
}

.evacuator-card__description {
    margin: 0 0 18px;
    color: var(--text-soft);
    line-height: 1.7;
}

.evacuator-card--lead .evacuator-card__description {
    max-width: none;
    color: var(--text-soft);
}

.evacuator-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.evacuator-card__price {
    font-size: 1rem;
    font-weight: 900;
    color: var(--dark-2);
}

.evacuator-card--lead .evacuator-card__price,
.evacuator-card--lead .inline-link {
    color: inherit;
}

.evacuator-card--lead .inline-link {
    color: var(--accent-dark);
}

/* Contact */
.section-contact {
    padding-top: 85px;
    padding-bottom: 96px;
    scroll-margin-top: 118px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
    transform: scale(0.9);
    transform-origin: center top;
    margin: 0 auto;
}

.contact-panel,
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    padding: 34px;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.contact-list-item i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--dark);
    color: var(--accent);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-list-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-list-item span {
    color: var(--text-soft);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-status {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 600;
}

.form-status--success {
    background: #ecfdf3;
    border-color: #86efac;
    color: #166534;
}

.form-status--error {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

.form-status--info {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row label {
    font-weight: 700;
    color: var(--dark);
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid #d8dde5;
    border-radius: 16px;
    padding: 15px 16px;
    background: #fff;
    color: var(--text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #94a3b8;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.65);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

/* Blog */
.blog-body h3 a:hover {
    color: var(--accent-dark);
}

/* Footer */
.site-footer {
    position: relative;
    padding: 72px 0 28px;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 28%),
        linear-gradient(180deg, #101927 0%, #0b1220 100%);
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
}
hr{
      border: none;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 204, 34, 0.8),
        rgba(255, 204, 34, 1),
        rgba(255, 204, 34, 0.8),
        transparent
    );
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.14;
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    gap: 22px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
    gap: 22px;
}

.footer-brand-wrap,
.footer-contacts-row {
    min-width: 0;
}

.footer-contacts-row {
    display: grid;
    grid-template-columns: 1fr;
}

.footer-brand {
    position: relative;
    padding: 22px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 38%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 24px 50px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    height: fit-content;
}

.footer-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%);
    pointer-events: none;
}

.footer-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 42%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 18px 34px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.footer-logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5));
}

.footer-text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.74);
    max-width: 440px;
    font-size: 0.98rem;
    line-height: 1.75;
}



.footer-column h3 {
    margin: 0 0 16px;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-links span {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.74);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 24px rgba(0, 0, 0, 0.10);
    transition:
        color 0.22s ease,
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
    overflow: hidden;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.10);
    transform: translateY(-50%);
}

.footer-links a {
    padding-left: 30px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at left center, rgba(245, 158, 11, 0.12), transparent 40%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 16px 32px rgba(0, 0, 0, 0.14);
}

.footer-links a:hover::before {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.14);
}

.footer-card--nav .footer-links,
.footer-card--services .footer-links {
    gap: 10px;
}

.footer-card--nav {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.10), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.footer-card {
    height: 100%;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 18px 42px rgba(0, 0, 0, 0.10);
}

.footer-card--contact {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.footer-card--nav,
.footer-card--services,
.footer-card--contact {
    position: relative;
    overflow: hidden;
}

.footer-card--nav::before,
.footer-card--services::before,
.footer-card--contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
    pointer-events: none;
}

.footer-links--chips {
    grid-template-columns: 1fr;
}

.footer-links--chips span {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.footer-contact-item {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-contact-list strong {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.98);
}

.footer-contact-list a,
.footer-contact-list span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a {
    transition: color 0.22s ease;
}

.footer-contact-list a:hover {
    color: #ffc65c;
}

.footer-media-links {
    display: grid;
    gap: 10px;
    margin-top: 6px;
    grid-auto-flow: column;
}

.footer-contact-item--media {
    grid-column: span 2;
}

.footer-media-cta-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.footer-media-block {
    min-width: 0;
    flex: 1 1 auto;
}

.footer-media-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 24px rgba(0, 0, 0, 0.10);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.footer-media-link:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at left center, rgba(245, 158, 11, 0.12), transparent 42%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 16px 30px rgba(0, 0, 0, 0.14);
}

.footer-media-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(217, 119, 6, 0.92));
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

.footer-media-link__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-media-link__label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(217, 119, 6, 0.92));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(217, 119, 6, 0.22);
}

.footer-cta--inline {
    margin-top: 0;
    flex-shrink: 0;
    min-width: 220px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    padding: 0 8px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
}

.footer-meta-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-meta-links a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-meta-links a:hover {
    color: #fff;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-credit span {
    color: #ffc65c;
    font-weight: 800;
}

/* Empty state */
.empty-state {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 22px;
    padding: 34px 24px;
    text-align: center;
    color: var(--text-soft);
    box-shadow: var(--shadow-sm);
}

.empty-state i {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: var(--accent-dark);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid,
    .advantages-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .equipment-grid,
    .asphalt-grid,
    .blog-grid,
    .evacuator-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .evacuator-head {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "copy"
            "tags";
        row-gap: 14px;
    }

    .evacuator-card--lead {
        min-height: 0;
    }

    .evacuator-card:not(.evacuator-card--lead) {
        grid-template-columns: 1fr;
    }

    .contact-layout,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-wrap {
        grid-column: 1 / -1;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-image-card {
        max-height: 50vh;
    }

    .hero-badge--dark {
        left: 14px;
    }

    .hero-badge--accent {
        right: 14px;
    }

    .process-step--featured {
        grid-column: span 2;
    }
}

@media (max-width: 980px) {
    /* removed mobile nav/header rules */
}

@media (max-width: 768px) {
    :root {
        --anchor-offset: 110px;
    }

    .section,
    .section-contact {
        padding: 68px 0;
        padding-top: 20px;
    }

    .section-contact {
        padding-top: 88px;
    }

    .section-contact .container,
    .section-evacuator .container {
        width: min(100% - 12px, var(--container));
        padding: 0 6px;
    }

    .contact-layout {
        transform: scale(1);
    }

    .hero {
        padding-top: 30px;
        transform: scale(1);
    }

    .hero-stats,
    .services-grid,
    .advantages-grid,
    .process-grid,
    .equipment-grid,
    .asphalt-grid,
    .blog-grid,
    .evacuator-grid {
        grid-template-columns: 1fr;
    }

    .evacuator-card--lead {
        min-height: 0;
    }

    .evacuator-card:not(.evacuator-card--lead) {
        grid-column: auto;
    }

    .section-head {
        display: block;
    }

    .section-head .section-text {
        margin-top: 14px;
    }

    .contact-panel,
    .contact-form-wrap {
        padding: 24px;
        border-radius: 22px;
        width: 100%;
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .footer-top,
    .footer-contact-list {
        grid-template-columns: 1fr;
    }

    .footer-contact-item--media {
        grid-column: auto;
    }

    .footer-media-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-cta--inline {
        width: 100%;
        min-width: 0;
    }

    .evacuator-shell {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .evacuator-copy {
        margin-top: 10px;
        padding: 24px 22px 22px;
        border-radius: 24px;
    }

    .evacuator-card--lead .evacuator-card__body {
        padding: 22px 20px 24px;
    }

    .evacuator-card--lead .evacuator-card__description {
        max-width: none;
    }

    .evacuator-card {
        border-radius: 24px;
    }

    .evacuator-card__media {
        aspect-ratio: 1.18 / 1;
        padding: 12px 12px 0;
    }

    .evacuator-card__media img,
    .evacuator-card--lead .evacuator-card__media img {
        border-radius: 18px 18px 0 0;
    }

    .evacuator-card__media::after {
        inset: 12px 12px 0;
        border-radius: 18px 18px 0 0;
    }

    .evacuator-card__body {
        padding: 20px 20px 22px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-list {
        margin-top: 22px;
    }

    .contact-list-item {
        padding: 14px 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .footer-meta-links {
        gap: 12px;
        justify-content: center;
    }

    .hero-image-card {
        min-height: 320px;
    }

    .hero-badge {
        position: static;
        margin-top: 14px;
        max-width: none;
    }

    .process-step--featured {
        grid-column: span 1;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 20px, var(--container));
    }

    .section-contact .container,
    .section-evacuator .container {
        width: min(100% - 8px, var(--container));
        padding: 0 4px;
    }

    .header-inner {
        min-height: 74px;
    }


    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .feature-chip {
        width: 100%;
        justify-content: center;
    }

    .stat-card {
        padding: 16px;
    }

    .evacuator-card__badge {
        top: 12px;
        left: 12px;
    }

    .evacuator-shell::after {
        left: 24px;
        width: 160px;
    }

    .evacuator-shell {
        padding: 18px 14px;
    }

    .evacuator-head {
        margin-bottom: 22px;
        row-gap: 12px;
    }

    .evacuator-copy {
        margin-top: 12px;
        padding: 18px 16px 16px;
        border-radius: 20px;
        gap: 14px;
    }

    .evacuator-card {
        border-radius: 20px;
    }

    .evacuator-card__media {
        padding: 10px 10px 0;
    }

    .evacuator-card__media::after {
        inset: 10px 10px 0;
    }

    .evacuator-card__body,
    .evacuator-card--lead .evacuator-card__body {
        padding: 18px 16px 20px;
    }

    .section-contact {
        padding-top: 35px;
    }

    .contact-panel,
    .contact-form-wrap {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .contact-list {
        gap: 12px;
    }

    .footer-card {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .footer-contact-list {
        gap: 12px;
    }

    .evacuator-tags {
        gap: 8px;
    }

    .evacuator-tag {
        width: 100%;
        justify-content: center;
    }

    .evacuator-card--lead {
        min-height: 0;
    }

    .evacuator-card--lead .evacuator-card__body {
        margin: 0;
        border-radius: 0;
    }

    .evacuator-card--lead .evacuator-card__description {
        color: var(--text-soft);
    }
}

/* Fullscreen nav overlay styles */
/* Fullscreen nav overlay styles removed per user request */

/* line-clamp helper */
.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}


/* Blog detail and additional blog styles */
.blog-section { padding: 36px 0; }
.blog-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.blog-card { border-radius: 14px; overflow: hidden; }
.blog-image { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 16px; }
.blog-title { margin: 0 0 8px; font-size: 1.15rem; }
.blog-title a { color: var(--dark-2); }
.blog-excerpt { color: var(--text-soft); margin: 0; }
.blog-meta { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:12px; color:var(--text-soft); }
.read-more { color: var(--accent); font-weight:700; text-decoration:none; }
.read-more:hover { text-decoration: underline; }

.blog-detail-section { padding: 36px 0; }
.blog-detail { background: var(--surface); padding: 24px; border-radius: 14px; box-shadow: var(--shadow-md); }
.blog-detail-image { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; display:block; margin-bottom: 18px; }
.blog-detail-title { font-size: 1.8rem; margin: 10px 0; color: var(--dark-2); }
.blog-detail-meta { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 18px; }
.blog-detail-content { color: var(--dark); line-height: 1.8; font-size: 1rem; }
.blog-detail-footer { margin-top: 20px; }
.back-to-blog { color: var(--dark); text-decoration: none; padding: 8px 12px; border: 1px solid #ececec; border-radius: 8px; background: #ffffff; }
.back-to-blog:hover { background: linear-gradient(90deg,var(--surface-2),#ffffff); color: var(--accent-dark); border-color: #f0a04a; }

.empty-message { grid-column: 1/-1; text-align: center; color: var(--text-soft); font-size: 1.05rem; padding: 18px 0; }


/* =========================
   Header adaptation: 981px — 1420px
========================= */
@media (min-width: 981px) and (max-width: 1420px) {
    /* removed header/navigation adaptation styles */
}

/* =========================
   Narrow desktop refinement: 981px — 1180px
========================= */
@media (min-width: 981px) and (max-width: 1180px) {
    /* removed narrow desktop header styles */
}

/* =========================
   Wide desktop refinement: 1181px — 1420px
========================= */
@media (min-width: 1181px) and (max-width: 1420px) {
    /* removed wide desktop header styles */
}

/* Calculator styles */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

.calc-controls .form-row {
    margin-bottom: 12px;
}

.calc-controls label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.calc-controls input[type="number"],
.calc-controls select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-2);
}

.calc-summary-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.calc-summary strong {
    display: block;
    margin-bottom: 10px;
}

.calc-line { margin-bottom: 8px; }
.calc-total { font-size: 1.15rem; color: var(--dark-2); }

@media (max-width: 880px) {
    .calculator-grid { grid-template-columns: 1fr; }
}

/* Custom mode segmented control */
.calc-mode { display: inline-flex; gap: 8px; background: transparent; }
.mode-btn {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-soft);
    transition: all 0.18s ease;
}
.mode-btn:hover { transform: translateY(-2px); color: var(--dark-2); }
.mode-btn.selected {
    color: #fff;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    box-shadow: 0 8px 20px rgba(217,119,6,0.14);
    border-color: rgba(255,255,255,0.08);
}

/* Option cards */
.calc-asphalt-options, .calc-equipment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.calc-asphalt-options .option, .calc-equipment-options .option {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.calc-asphalt-options .option:hover, .calc-equipment-options .option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(15,23,42,0.06);
}
.calc-asphalt-options .option.selected, .calc-equipment-options .option.selected {
    border-color: rgba(245,158,11,0.28);
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}
.option-title { font-weight: 800; color: var(--dark-2); }
.option-sub { font-size: 0.92rem; color: var(--text-soft); margin-top: 6px; }

.calc-selected-equipment {
    display: grid;
    gap: 12px;
}

.calc-selected-card {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.calc-selected-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.calc-selected-title {
    font-weight: 800;
    color: var(--dark-2);
}

.calc-selected-remove {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text-soft);
    border-radius: 999px;
    padding: 6px 10px;
    cursor: pointer;
    font-weight: 700;
}

.calc-selected-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.calc-selected-meta {
    margin-top: 8px;
    font-size: 0.92rem;
    color: var(--text-soft);
}

/* Slight polish for calc buttons */
.calculator-grid .btn { min-height: 44px; }

@media (max-width: 880px) {
    .calc-selected-grid { grid-template-columns: 1fr; }
}

/* Process layout restore */
@media (min-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px;
    }

    .process-grid > .process-step:nth-child(1),
    .process-grid > .process-step:nth-child(5) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr);
        align-items: center;
        min-height: 300px;
    }

    .process-grid > .process-step:nth-child(1) .process-step-media,
    .process-grid > .process-step:nth-child(5) .process-step-media {
        min-height: 100%;
        height: 100%;
        padding: 28px 18px 28px 28px;
        justify-content: center;
        align-items: center;
    }

    .process-grid > .process-step:nth-child(1) .process-step-media img,
    .process-grid > .process-step:nth-child(5) .process-step-media img,
    .process-grid > .process-step:nth-child(1) .process-step-placeholder,
    .process-grid > .process-step:nth-child(5) .process-step-placeholder {
        width: 160px;
        height: 160px;
        min-height: 160px;
        max-width: 160px;
    }

    .process-grid > .process-step:nth-child(1) .process-step-body,
    .process-grid > .process-step:nth-child(5) .process-step-body {
        padding: 28px 32px 28px 8px;
        justify-content: center;
    }

    .process-grid > .process-step:nth-child(1) h3,
    .process-grid > .process-step:nth-child(5) h3,
    .process-grid > .process-step:nth-child(1) .process-step-short,
    .process-grid > .process-step:nth-child(5) .process-step-short,
    .process-grid > .process-step:nth-child(1) .process-step-full,
    .process-grid > .process-step:nth-child(5) .process-step-full {
        text-align: left;
    }

    .process-grid > .process-step:nth-child(2) .process-step-media,
    .process-grid > .process-step:nth-child(3) .process-step-media,
    .process-grid > .process-step:nth-child(4) .process-step-media {
        min-height: 210px;
        padding: 26px 22px 12px;
        justify-content: center;
        align-items: flex-start;
    }

    .process-grid > .process-step:nth-child(2) .process-step-media img,
    .process-grid > .process-step:nth-child(3) .process-step-media img,
    .process-grid > .process-step:nth-child(4) .process-step-media img,
    .process-grid > .process-step:nth-child(2) .process-step-placeholder,
    .process-grid > .process-step:nth-child(3) .process-step-placeholder,
    .process-grid > .process-step:nth-child(4) .process-step-placeholder {
        width: 150px;
        height: 150px;
        min-height: 150px;
        max-width: 150px;
    }

    .process-grid > .process-step:nth-child(2) .process-step-body,
    .process-grid > .process-step:nth-child(3) .process-step-body,
    .process-grid > .process-step:nth-child(4) .process-step-body {
        padding: 20px 22px 24px;
    }
}

@media (min-width: 993px) and (max-width: 1249px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .process-grid > .process-step:nth-child(5) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        align-items: center;
        min-height: 300px;
    }

    .process-grid > .process-step:nth-child(5) .process-step-media {
        min-height: 100%;
        height: 100%;
        padding: 24px 16px 24px 24px;
        justify-content: center;
        align-items: center;
    }

    .process-grid > .process-step:nth-child(5) .process-step-media img,
    .process-grid > .process-step:nth-child(5) .process-step-placeholder {
        width: 150px;
        height: 150px;
        min-height: 150px;
        max-width: 150px;
    }

    .process-grid > .process-step:nth-child(5) .process-step-body {
        padding: 24px 28px 24px 6px;
    }

    .process-grid > .process-step:nth-child(5) h3,
    .process-grid > .process-step:nth-child(5) .process-step-short,
    .process-grid > .process-step:nth-child(5) .process-step-full {
        text-align: left;
    }
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .process-grid > .process-step:nth-child(5) {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 190px minmax(0, 1fr);
        align-items: center;
    }

    .process-grid > .process-step:nth-child(5) .process-step-media {
        min-height: 100%;
        padding: 22px 14px 22px 22px;
        justify-content: center;
        align-items: center;
    }

    .process-grid > .process-step:nth-child(5) .process-step-media img,
    .process-grid > .process-step:nth-child(5) .process-step-placeholder {
        width: 140px;
        height: 140px;
        min-height: 140px;
        max-width: 140px;
    }

    .process-grid > .process-step:nth-child(5) .process-step-body {
        padding: 22px 24px 22px 4px;
    }

    .process-grid > .process-step:nth-child(5) h3,
    .process-grid > .process-step:nth-child(5) .process-step-short,
    .process-grid > .process-step:nth-child(5) .process-step-full {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero h1{
        font-size: clamp(1.6rem, 5vw, 4.3rem);
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/static/images/bxdvvdxvvddxvvv32rr.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
        height: 390px;
        border-radius: 16px;
        display: flex;
        align-items: flex-end;
        padding: 20px;
        box-sizing: border-box;
        }
    .hero-image-card{display: none;}

    .process-grid > .process-step,
    .process-grid > .process-step:nth-child(1),
    .process-grid > .process-step:nth-child(2),
    .process-grid > .process-step:nth-child(5) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
    }
    
    .hero-grid{margin-top: 0px;}
    .asphalt-grid{flex-direction: column;}

    .process-grid > .process-step:nth-child(5) .process-step-media,
    .process-grid > .process-step:nth-child(1) .process-step-media,
    .process-step-media {
        min-height: 185px !important;
        height: auto !important;
        padding: 22px 20px 12px !important;
        justify-content: center !important;
        align-items: flex-start !important;
        width: 100%;
    }
    
    #btnMarg{margin-top:30px;}
    
    .calc-mode{justify-content: center;}
    .mode-btn{font-size: 11px;}

    .process-step-media img,
    .process-step-placeholder,
    .process-grid > .process-step:nth-child(1) .process-step-media img,
    .process-grid > .process-step:nth-child(5) .process-step-media img,
    .process-grid > .process-step:nth-child(1) .process-step-placeholder,
    .process-grid > .process-step:nth-child(5) .process-step-placeholder {
        width: 132px !important;
        height: 132px !important;
        min-height: 132px !important;
        max-width: 132px !important;
    }

    .process-step-body,
    .process-grid > .process-step:nth-child(5) .process-step-body,
    .process-grid > .process-step:nth-child(1) .process-step-body {
        padding: 18px 18px 22px !important;
    }

    .process-step h3 {
        font-size: 1.06rem;
    }

    .process-step-short {
        font-size: 0.94rem;
    }

    .process-step-full {
        font-size: 0.91rem;
    }

    .process-step h3,
    .process-step-short,
    .process-step-full,
    .process-grid > .process-step:nth-child(1) h3,
    .process-grid > .process-step:nth-child(5) h3,
    .process-grid > .process-step:nth-child(1) .process-step-short,
    .process-grid > .process-step:nth-child(5) .process-step-short,
    .process-grid > .process-step:nth-child(1) .process-step-full,
    .process-grid > .process-step:nth-child(5) .process-step-full {
        text-align: center !important;
    }

    .process-step-index {
        top: 14px;
        left: 14px;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 0.84rem;
    }
}

/* Equipment image modal restore */
.equipment-image-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}

.equipment-image-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.equipment-image-trigger:hover img {
    transform: scale(1.04);
}

.equipment-image-trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 24, 39, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.equipment-image-trigger:hover::after {
    opacity: 1;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.image-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.08), transparent 28%),
        radial-gradient(circle at 70% 65%, rgba(251, 146, 60, 0.10), transparent 32%),
        rgba(8, 12, 20, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.image-modal__dialog {
    position: relative;
    width: auto;
    max-width: min(92vw, 1400px);
    max-height: 86vh;
    margin-top: 78px;
    padding: 20px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255,255,255,0.14);
    z-index: 2;
}

.image-modal__glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    filter: blur(55px);
    pointer-events: none;
    opacity: 0.28;
    z-index: 0;
}

.image-modal__glow--left {
    left: 0;
    bottom: 0;
    background: rgba(245, 158, 11, 0.30);
    transform: translate(-20%, 20%);
}

.image-modal__glow--right {
    right: 0;
    top: 0;
    background: rgba(251, 146, 60, 0.26);
    transform: translate(20%, -20%);
}

.image-modal__media-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    max-width: 100%;
}

.image-modal__media-wrap img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(88vw, 1200px);
    max-height: 70vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.image-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08)),
        linear-gradient(135deg, rgba(245, 158, 11, 0.94), rgba(217, 119, 6, 0.88));
    box-shadow:
        0 14px 34px rgba(217, 119, 6, 0.28),
        0 10px 24px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    z-index: 3;
}

.image-modal__close:hover {
    transform: scale(1.05) rotate(90deg);
}

.image-modal__close span {
    position: absolute;
    width: 18px;
    height: 2.5px;
    border-radius: 999px;
    background: #fff;
}

.image-modal__close span:first-child {
    transform: rotate(45deg);
}

.image-modal__close span:last-child {
    transform: rotate(-45deg);
}

.site-header,
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    width: 100%;
}

body {
    padding-top: 92px;
}

@media (max-width: 768px) {
    .image-modal {
        padding: 12px;
    }

    .image-modal__dialog {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        padding: 14px;
        border-radius: 22px;
    }

    .image-modal__media-wrap img {
        max-width: 100%;
        max-height: 68vh;
        border-radius: 14px;
    }

    .image-modal__close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }

    .image-modal__glow {
        width: 120px;
        height: 120px;
        filter: blur(40px);
        opacity: 0.22;
    }

    .site-footer {
        padding-bottom: 22px;
        background: #0b1220;
    }

    .footer-grid {
        border-radius: 24px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    }

    .footer-brand,
    .footer-logo {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .footer-bottom {
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 4px);
    }
}
