:root {
    --brand: #c61e22;
    --brand-dark: #95161a;
    --brand-soft: #f8d9da;
    --brand-glow: rgba(198, 30, 34, 0.18);
    --ink: #17181c;
    --muted: #636872;
    --line: #e8eaee;
    --surface: #ffffff;
    --surface-alt: #f5f6f8;
    --surface-strong: #fbfbfc;
    --shadow-lg: 0 30px 60px rgba(17, 19, 24, 0.12);
    --shadow-md: 0 18px 40px rgba(17, 19, 24, 0.08);
    --shadow-sm: 0 12px 24px rgba(17, 19, 24, 0.06);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body.site-body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(198, 30, 34, 0.05) 0%, rgba(198, 30, 34, 0) 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    line-height: 1.7;
    overflow-x: hidden;
    transition: opacity 0.45s ease, transform 0.45s ease;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.site-body.is-loading {
    overflow: hidden;
}

body.site-body.is-transitioning {
    opacity: 0.82;
    transform: translateY(8px);
}

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

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

::selection {
    color: #fff;
    background: var(--brand);
}

:focus-visible {
    outline: 3px solid rgba(198, 30, 34, 0.22);
    outline-offset: 3px;
}

.container {
    max-width: 1240px;
}

.site-loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2000;
    background:
        radial-gradient(circle at top left, rgba(198, 30, 34, 0.14) 0%, rgba(198, 30, 34, 0) 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.site-loader-mark {
    display: grid;
    gap: 16px;
    justify-items: center;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-loader-mark span {
    width: 22px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ef4a4f 0%, var(--brand) 100%);
    box-shadow: 0 0 0 10px rgba(198, 30, 34, 0.1);
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.site-loader-logo {
    max-width: 240px;
    max-height: 80px;
    width: auto;
}

.page-transition-layer {
    position: fixed;
    inset: 0;
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(198, 30, 34, 0.05) 100%);
    transition: opacity 0.35s ease;
}

body.site-body.is-transitioning .page-transition-layer {
    opacity: 1;
}

.flash-wrapper {
    padding-top: 18px;
    position: relative;
    z-index: 30;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 234, 238, 0.8);
    transition: box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(17, 19, 24, 0.08);
}

.navbar {
    min-height: 92px;
}

.navbar-toggler {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(198, 30, 34, 0.06);
}

.site-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1;
}

.site-brand-has-logo {
    align-items: center;
    justify-content: flex-start;
}

.site-brand-logo {
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

.site-brand-logo-footer {
    max-height: 72px;
}

.site-brand-main {
    color: var(--brand);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-brand-sub {
    width: fit-content;
    padding-left: 46px;
    border-top: 2px solid rgba(198, 30, 34, 0.28);
    color: #4e5058;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.site-nav .nav-link {
    position: relative;
    padding: 10px 18px !important;
    color: #2e3139;
    font-weight: 600;
}

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

.site-nav .nav-link.active::after,
.site-nav .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
}

.btn-brand,
.btn-outline-dark,
.btn-ghost-light,
.sector-card,
.category-card,
.why-card,
.testimonial-card,
.gallery-card,
.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.btn-brand {
    border: 0;
    border-radius: 16px;
    padding: 14px 24px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand) 0%, #dc3136 100%);
    box-shadow: 0 16px 32px rgba(198, 30, 34, 0.22);
}

.btn-brand:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(198, 30, 34, 0.24);
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.btn:focus-visible,
.form-control:focus-visible {
    box-shadow: 0 0 0 0.3rem rgba(198, 30, 34, 0.16);
}

.btn-xl {
    display: inline-flex;
    min-height: 56px;
    padding-inline: 28px;
    align-items: center;
    justify-content: center;
}

.btn-ghost-light {
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-ghost-light:hover,
.btn-outline-dark:hover,
.sector-card:hover,
.category-card:hover,
.why-card:hover,
.testimonial-card:hover,
.gallery-card:hover,
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(17, 19, 24, 0.12);
}

.btn-ghost-light:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-kicker-light {
    color: rgba(255, 255, 255, 0.86);
}

.hero-banner {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    padding-top: 92px;
    overflow: hidden;
}

.hero-banner-media,
.hero-banner-media img,
.hero-banner-overlay {
    position: absolute;
    inset: 0;
}

.hero-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-overlay {
    background:
        radial-gradient(circle at 16% 18%, rgba(198, 30, 34, 0.18) 0%, rgba(198, 30, 34, 0) 22%),
        linear-gradient(90deg, rgba(19, 21, 27, 0.94) 0%, rgba(19, 21, 27, 0.76) 38%, rgba(19, 21, 27, 0.16) 68%, rgba(19, 21, 27, 0.05) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.08) 100%);
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 92px);
}

.hero-banner-copy {
    max-width: 660px;
    padding: 56px 0 74px;
    color: #fff;
}

.hero-banner-copy h1 {
    margin: 0 0 24px;
    font-size: clamp(3.1rem, 5.8vw, 5.8rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.hero-banner-copy p {
    max-width: 24ch;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.34rem;
}

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

.stat-ribbon {
    position: relative;
    z-index: 10;
    margin-top: -56px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(232, 234, 238, 0.9);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.stat-card {
    padding: 30px 20px;
    border-right: 1px solid rgba(232, 234, 238, 0.9);
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card i {
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 1.5rem;
}

.stat-card strong,
.stat-card span,
.stat-card small {
    display: block;
}

.stat-card strong {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.stat-card span {
    font-weight: 700;
}

.stat-card small {
    color: var(--muted);
}

.section-block {
    padding: 100px 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

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

.section-heading {
    margin-bottom: 34px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.between {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
}

.section-heading h2,
.about-copy h2,
.logistics-copy h2,
.contact-panel h2,
.form-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 2.7vw, 3.2rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.section-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--ink);
    font-weight: 700;
}

.about-grid,
.contact-grid,
.content-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 52px;
    align-items: center;
}

.about-grid-premium {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.about-visual {
    position: relative;
    padding-bottom: 56px;
}

.about-image-card,
.about-floating-card {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.about-image-card img {
    width: 100%;
    min-height: 540px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.about-floating-card {
    position: absolute;
    right: 24px;
    bottom: 0;
    width: 44%;
    border: 6px solid #fff;
}

.about-floating-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.about-copy p,
.logistics-copy p,
.content-body,
.content-body p,
.contact-panel p,
.form-panel p {
    color: var(--muted);
    font-size: 1.08rem;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
    margin: 32px 0;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.check-item i {
    color: var(--brand);
}

.sector-grid,
.category-grid,
.why-grid,
.testimonial-grid,
.blog-grid {
    display: grid;
    gap: 24px;
}

.sector-grid,
.category-grid,
.why-grid,
.testimonial-grid,
.blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-card,
.category-card,
.why-card,
.testimonial-card,
.blog-card,
.aside-card,
.contact-panel,
.form-panel,
.content-shell-single {
    border: 1px solid rgba(232, 234, 238, 0.9);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.sector-card,
.category-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.sector-media {
    height: 220px;
    background:
        linear-gradient(145deg, rgba(198, 30, 34, 0.06) 0%, rgba(17, 19, 24, 0.16) 100%),
        linear-gradient(135deg, #ffffff 0%, #eceef3 100%);
    background-position: center;
    background-size: cover;
}

.sector-media-overlay {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 75% 20%, rgba(198, 30, 34, 0.24) 0, rgba(198, 30, 34, 0) 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0, rgba(17, 19, 24, 0.12) 100%);
}

.sector-icon,
.category-icon {
    position: absolute;
    left: 24px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #fff;
    color: var(--brand);
    box-shadow: 0 18px 30px rgba(17, 19, 24, 0.12);
    font-size: 1.3rem;
}

.sector-icon {
    top: 196px;
}

.category-icon {
    top: 192px;
}

.sector-body,
.category-body {
    padding: 42px 24px 24px;
}

.sector-body h3,
.category-body h3,
.why-card h3 {
    margin: 0 0 12px;
    font-size: 1.32rem;
    line-height: 1.2;
    font-weight: 800;
}

.sector-body p,
.category-body p,
.why-card p,
.testimonial-card p {
    margin: 0;
    color: var(--muted);
}

.category-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.why-card {
    padding: 32px 28px;
    text-align: center;
}

.why-icon {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(198, 30, 34, 0.06) 0%, rgba(198, 30, 34, 0.12) 100%);
    color: var(--brand);
    font-size: 2rem;
}

.logistics-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
    align-items: center;
}

.logistics-points {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.logistics-points div {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(232, 234, 238, 0.9);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(17, 19, 24, 0.05);
}

.logistics-points i {
    color: var(--brand);
    font-size: 1.3rem;
}

.logistics-map {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(232, 234, 238, 0.9);
    border-radius: 28px;
    background:
        radial-gradient(circle at center, rgba(198, 30, 34, 0.12) 0, rgba(198, 30, 34, 0) 30%),
        linear-gradient(180deg, #f7f8fa 0%, #f2f4f7 100%);
}

.logistics-map img {
    width: 100%;
    max-width: 760px;
    object-fit: contain;
}

.testimonial-card {
    padding: 28px;
}

.testimonial-mark {
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 4rem;
    line-height: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-top: 24px;
}

.testimonial-footer span,
.testimonial-person small {
    display: block;
    color: var(--muted);
}

.testimonial-footer strong,
.testimonial-person strong {
    display: block;
    font-weight: 800;
}

.testimonial-person {
    text-align: right;
}

.testimonial-person small {
    color: var(--brand);
    font-size: 0.92rem;
    letter-spacing: 0.16em;
}

.satisfaction-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
    border: 1px solid rgba(232, 234, 238, 0.9);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.satisfaction-bar div {
    padding: 24px 20px;
    border-right: 1px solid rgba(232, 234, 238, 0.9);
    text-align: center;
}

.satisfaction-bar div:last-child {
    border-right: 0;
}

.satisfaction-bar strong,
.satisfaction-bar span {
    display: block;
}

.satisfaction-bar strong {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.satisfaction-bar span {
    color: var(--muted);
    font-weight: 600;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1.15fr 0.72fr 1fr;
    grid-auto-rows: 148px;
    gap: 18px;
}

.gallery-card,
.gallery-note {
    overflow: hidden;
    border: 1px solid rgba(232, 234, 238, 0.9);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-1,
.gallery-card-3,
.gallery-card-4,
.gallery-note {
    grid-row: span 2;
}

.gallery-card-6 {
    grid-column: 2 / span 2;
}

.gallery-note {
    display: grid;
    place-content: center;
    padding: 28px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.gallery-note strong {
    margin-bottom: 14px;
    font-size: 1.6rem;
    line-height: 1.15;
}

.gallery-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.cta-ribbon {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.cta-ribbon-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 38px 0;
}

.cta-ribbon-label {
    display: block;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cta-ribbon p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer {
    padding: 64px 0 24px;
    color: rgba(255, 255, 255, 0.76);
    background: #1c1f26;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
    gap: 32px;
}

.site-brand-footer .site-brand-main,
.site-brand-footer .site-brand-sub {
    color: #fff;
}

.footer-about {
    max-width: 320px;
    margin: 20px 0 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

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

.site-footer ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 2px;
    color: var(--brand);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-banner {
    position: relative;
    overflow: hidden;
    padding: 144px 0 84px;
    color: #fff;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--page-banner-overlay), var(--page-banner-image);
    background-position: center center, var(--page-banner-position);
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-breadcrumb {
    margin-bottom: 24px;
}

.page-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.page-breadcrumb li + li::before {
    content: "/";
    color: rgba(255, 255, 255, 0.42);
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-breadcrumb .is-current {
    color: #fff;
}

.page-banner-copy {
    max-width: 720px;
}

.page-banner-copy h1 {
    max-width: 12ch;
    margin: 0 0 24px;
    font-size: clamp(2.6rem, 4vw, 4.7rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.page-banner-copy p {
    max-width: 52ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.inner-hero {
    padding: 144px 0 44px;
    background:
        linear-gradient(180deg, rgba(198, 30, 34, 0.06) 0%, rgba(198, 30, 34, 0) 100%),
        #fff;
}

.inner-hero h1 {
    max-width: 12ch;
    margin: 0 0 24px;
    font-size: clamp(2.6rem, 4vw, 4.7rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.inner-hero p {
    color: var(--muted);
    font-size: 1.08rem;
}

.content-shell {
    align-items: start;
}

.content-body {
    padding: 34px;
    border: 1px solid rgba(232, 234, 238, 0.9);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.content-body > :first-child {
    margin-top: 0;
}

.content-body h2,
.content-body h3 {
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.content-body ul {
    padding-left: 18px;
}

.content-card-grid,
.content-metric-grid,
.content-step-grid,
.content-image-grid {
    display: grid;
    gap: 22px;
    margin: 26px 0;
}

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

.content-card,
.content-step-card {
    padding: 24px;
    border: 1px solid rgba(232, 234, 238, 0.9);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: 0 14px 30px rgba(17, 19, 24, 0.06);
}

.content-card h3,
.content-step-card h3,
.content-note-panel h3 {
    margin-top: 0;
}

.content-media-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin: 28px 0;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    border: 1px solid rgba(232, 234, 238, 0.9);
}

.content-media-panel img {
    width: 100%;
    height: 320px;
    border-radius: 24px;
    object-fit: cover;
}

.content-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-metric-grid div {
    padding: 22px 24px;
    border-radius: 22px;
    background: var(--surface-alt);
    border: 1px solid rgba(232, 234, 238, 0.9);
}

.content-metric-grid strong,
.content-metric-grid span {
    display: block;
}

.content-metric-grid strong {
    margin-bottom: 6px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.content-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand) 0%, #dc3136 100%);
}

.content-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-image-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
}

.content-image-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.content-note-panel {
    padding: 28px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, #c61e22 0%, #8d1619 100%);
    box-shadow: 0 24px 40px rgba(198, 30, 34, 0.18);
}

.content-aside {
    position: sticky;
    top: 114px;
}

.aside-card {
    padding: 28px;
}

.aside-card ul {
    display: grid;
    gap: 16px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.aside-card li {
    display: flex;
    gap: 12px;
}

.aside-card i {
    color: var(--brand);
}

.content-cover {
    width: 100%;
    height: 380px;
    margin-bottom: 26px;
    border-radius: 24px;
    object-fit: cover;
}

.content-shell-single {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.contact-panel,
.form-panel {
    padding: 32px;
}

.contact-grid-wide {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
    align-items: start;
}

.contact-card-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.info-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 20px;
    background: var(--surface-alt);
}

.info-card i {
    color: var(--brand);
    font-size: 1.3rem;
}

.contact-form .form-control {
    min-height: 56px;
    padding-inline: 18px;
    border-color: #dadde4;
    border-radius: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    background: #fff;
}

.contact-form .form-control:focus {
    border-color: rgba(198, 30, 34, 0.42);
    box-shadow: 0 0 0 0.28rem rgba(198, 30, 34, 0.12);
}

.contact-form textarea.form-control {
    min-height: 140px;
    padding-top: 14px;
}

.hero-title-accent {
    display: block;
    color: #fff3f3;
}

.product-mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.product-mini-list span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(198, 30, 34, 0.08);
    color: var(--brand);
    font-size: 0.92rem;
    font-weight: 600;
}

.region-grid {
    display: grid;
    gap: 14px;
}

.region-card {
    padding: 20px 22px;
    border-radius: 22px;
    background: var(--surface-alt);
    box-shadow: var(--shadow-md);
}

.region-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.contact-map-panel {
    margin-top: 24px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-map-panel iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
}

.page-module-block {
    margin-top: 48px;
}

.page-module-block h2 {
    margin-bottom: 20px;
}

.content-module-image {
    width: 100%;
    height: 220px;
    margin-bottom: 18px;
    border-radius: 20px;
    object-fit: cover;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.82);
        opacity: 0.85;
    }
}

@media (max-width: 1199px) {
    .about-grid,
    .logistics-shell,
    .contact-grid,
    .content-shell,
    .content-media-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip,
    .satisfaction-bar,
    .sector-grid,
    .category-grid,
    .why-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
    }

    .content-card-grid,
    .content-metric-grid,
    .content-step-grid,
    .content-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card-1,
    .gallery-card-3,
    .gallery-card-4,
    .gallery-note,
    .gallery-card-6 {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 12px;
        padding: 18px;
        border: 1px solid rgba(232, 234, 238, 0.92);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
    }

    .site-nav .nav-link.active::after,
    .site-nav .nav-link:hover::after {
        left: 0;
        right: auto;
        width: 36px;
    }

    .site-nav-cta {
        margin-top: 16px;
    }

    .stats-strip,
    .satisfaction-bar,
    .sector-grid,
    .category-grid,
    .why-grid,
    .testimonial-grid,
    .blog-grid,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        min-height: auto;
    }

    .hero-banner-content {
        min-height: 700px;
    }

    .page-banner {
        padding: 132px 0 76px;
    }

    .cta-ribbon-inner,
    .footer-bottom,
    .section-heading.between,
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .content-card-grid,
    .content-metric-grid,
    .content-step-grid,
    .content-image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .navbar {
        min-height: 78px;
    }

    .hero-banner,
    .section-block,
    .site-footer {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero-banner-copy {
        padding-top: 34px;
    }

    .hero-banner-copy h1,
    .page-banner-copy h1 {
        max-width: none;
    }

    .hero-banner-copy p {
        max-width: none;
        font-size: 1.08rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .about-image-card img {
        min-height: 360px;
    }

    .about-floating-card {
        right: 10px;
        width: 54%;
    }

    .content-body,
    .aside-card,
    .contact-panel,
    .form-panel {
        padding: 24px;
    }

    .stats-strip {
        border-radius: 22px;
    }

    .stat-card {
        border-right: 0;
        border-bottom: 1px solid rgba(232, 234, 238, 0.9);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}
