:root {
    color-scheme: light;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(14px);
}

.site-header > div {
    position: relative;
}

.site-header > div::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(196, 0, 16, 0.18), rgba(148, 163, 184, 0.22), rgba(196, 0, 16, 0.18));
    pointer-events: none;
}

.site-brand {
    transition: transform 0.22s ease;
}

.site-brand:hover {
    transform: translateY(-1px);
}

.site-brand-logo {
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 10px 22px -16px rgba(15, 23, 42, 0.35);
}

.site-brand-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    letter-spacing: 0.34em;
}

.site-nav-link {
    position: relative;
    padding-bottom: 0.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.22s ease;
}

.site-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #c40010, #8b000c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.site-nav-link:hover::after,
.site-nav-link[aria-current="page"]::after {
    transform: scaleX(1);
}

.site-header-cta {
    background: linear-gradient(135deg, #c40010 0%, #8b000c 100%);
    box-shadow: 0 12px 24px -14px rgba(196, 0, 16, 0.72);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.site-header-cta:hover {
    transform: translateY(-1px);
    filter: saturate(1.06);
    box-shadow: 0 18px 30px -16px rgba(196, 0, 16, 0.72);
}

.site-header [data-mobile-toggle] {
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 8px 22px -18px rgba(15, 23, 42, 0.38);
    background: rgba(255, 255, 255, 0.9);
}

body {
    font-family: "Plus Jakarta Sans", "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(196, 0, 16, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(15, 23, 42, 0.06), transparent 20%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 38%, #f8fafc 100%);
}

body.mobile-menu-open {
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 80;
    transform: translateY(-180%);
    border-radius: 9999px;
    background: #c40010;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.85rem 1.15rem;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid rgba(196, 0, 16, 0.22);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(196, 0, 16, 0.16);
}

main:focus {
    outline: none;
}

body.motion-enabled .motion-ready {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-enabled .motion-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.motion-enabled .motion-ready.motion-delay-1 {
    transition-delay: 0.06s;
}

body.motion-enabled .motion-ready.motion-delay-2 {
    transition-delay: 0.12s;
}

body.motion-enabled .motion-ready.motion-delay-3 {
    transition-delay: 0.18s;
}

.motion-card,
.motion-button {
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.motion-card.is-hovered {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px -34px rgba(15, 23, 42, 0.28);
}

.motion-button {
    position: relative;
    overflow: hidden;
}

.motion-button::after {
    content: "";
    position: absolute;
    inset: -30% auto auto -30%;
    width: 60%;
    height: 160%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-120%) rotate(18deg);
}

.motion-button.is-glinting::after {
    opacity: 1;
    transition: transform 0.7s ease, opacity 0.4s ease;
    transform: translateX(220%) rotate(18deg);
}

.motion-button .button-ripple {
    position: absolute;
    border-radius: 9999px;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.26);
    animation: buttonRipple 0.65s ease-out forwards;
    pointer-events: none;
}

.mobile-menu-panel {
    transition: opacity 0.28s ease, transform 0.28s ease;
    transform-origin: top center;
}

.mobile-menu-panel.is-open {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-panel.is-closed {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.status-pulse {
    position: relative;
    overflow: hidden;
}

.status-pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    animation: statusSweep 1.15s linear infinite;
}

.tracking-stage {
    position: relative;
    overflow: hidden;
}

.tracking-stage::after {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 3px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #c40010 0%, rgba(196, 0, 16, 0.18) 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px -42px rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(18px);
}

.glass-surface {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 30px 72px -44px rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(20px);
}

.glass-dark-panel {
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 80px -48px rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(18px);
}

.stat-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-chip {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.proof-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.84) 100%);
    border: 1px solid rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(14px);
}

.core-value-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 46px -32px rgba(15, 23, 42, 0.34);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.core-value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 42%);
}

.core-value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 56px -38px rgba(15, 23, 42, 0.44);
}

.core-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.7);
    color: #0f172a;
    box-shadow: 0 10px 22px -16px rgba(15, 23, 42, 0.5);
}

.core-value-icon svg {
    width: 3rem;
    height: 3rem;
}

.core-value-card--integrity {
    background: linear-gradient(160deg, rgba(255, 247, 247, 0.94) 0%, rgba(255, 255, 255, 0.86) 58%, rgba(248, 250, 252, 0.92) 100%);
}

.core-value-card--integrity .core-value-icon {
    color: #a21caf;
}

.core-value-card--accountability {
    background: linear-gradient(160deg, rgba(239, 246, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(241, 245, 249, 0.9) 100%);
}

.core-value-card--accountability .core-value-icon {
    color: #0369a1;
}

.core-value-card--customer {
    background: linear-gradient(160deg, rgba(240, 253, 250, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(236, 253, 245, 0.9) 100%);
}

.core-value-card--customer .core-value-icon {
    color: #0f766e;
}

.core-value-card--efficiency {
    background: linear-gradient(160deg, rgba(239, 246, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(219, 234, 254, 0.84) 100%);
}

.core-value-card--efficiency .core-value-icon {
    color: #0c4a6e;
}

.core-value-card--safety {
    background: linear-gradient(160deg, rgba(255, 251, 235, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(254, 249, 195, 0.82) 100%);
}

.core-value-card--safety .core-value-icon {
    color: #b45309;
}

.core-value-card--agility {
    background: linear-gradient(160deg, rgba(238, 242, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(224, 231, 255, 0.84) 100%);
}

.core-value-card--agility .core-value-icon {
    color: #4f46e5;
}

.core-value-card--improvement {
    background: linear-gradient(160deg, rgba(240, 249, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(219, 234, 254, 0.85) 100%);
}

.core-value-card--improvement .core-value-icon {
    color: #1d4ed8;
}

.core-value-card--reliability {
    background: linear-gradient(160deg, rgba(255, 251, 235, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(254, 243, 199, 0.85) 100%);
}

.core-value-card--reliability .core-value-icon {
    color: #b45309;
}

.core-value-card--innovation {
    background: linear-gradient(160deg, rgba(238, 242, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(224, 231, 255, 0.85) 100%);
}

.core-value-card--innovation .core-value-icon {
    color: #4f46e5;
}

.service-badge {
    background: linear-gradient(135deg, #c40010 0%, #8b000c 100%);
}

.contact-highlight {
    background: linear-gradient(180deg, #fff7f7 0%, #ffffff 100%);
}

.premium-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.78) 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 28px 64px -44px rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(18px);
}

.premium-dark-panel {
    background: linear-gradient(135deg, #0f172a 0%, #172032 55%, #0b1018 100%);
}

.metric-pill {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(248, 250, 252, 0.84);
}

.admin-message-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, 0.72);
    background: linear-gradient(175deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.88) 100%);
    box-shadow: 0 16px 34px -24px rgba(15, 23, 42, 0.3);
}

.admin-message-card__bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 9999px;
    background: linear-gradient(180deg, #c40010 0%, #7f1d1d 100%);
}

.admin-message-card__stamp {
    flex-shrink: 0;
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 9999px;
    padding: 0.28rem 0.58rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    background: rgba(248, 250, 252, 0.9);
}

.team-member-photo-wrap {
    width: 100%;
    height: 22rem;
    overflow: hidden;
    background: #e2e8f0;
}

.team-member-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.editorial-card {
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04), 0 24px 48px -16px rgba(15, 23, 42, 0.10);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.editorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c40010 0%, #e8001a 60%, rgba(196,0,16,0.18) 100%);
}

.editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px -2px rgba(15, 23, 42, 0.06), 0 32px 56px -16px rgba(15, 23, 42, 0.16);
}

.service-spotlight-card {
    background:
        radial-gradient(circle at top right, rgba(196, 0, 16, 0.1), transparent 34%),
        linear-gradient(165deg, #ffffff 0%, #f8fafc 48%, #f1f5f9 100%);
    border: 1px solid rgba(203, 213, 225, 0.8);
    box-shadow: 0 12px 22px -10px rgba(15, 23, 42, 0.08), 0 30px 60px -24px rgba(15, 23, 42, 0.16);
}

.service-spotlight-card::before {
    height: 4px;
    background: linear-gradient(90deg, #a4000d 0%, #d60012 52%, rgba(164, 0, 13, 0.15) 100%);
}

.service-spotlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 26px -12px rgba(15, 23, 42, 0.12), 0 34px 70px -26px rgba(15, 23, 42, 0.2);
}

.service-icon-wrap {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.service-cta {
    white-space: nowrap;
}

.logo-tile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 58px -42px rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(16px);
}

.avatar-frame {
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
}

.timeline-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.86) 100%);
    box-shadow: 0 24px 56px -42px rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(16px);
}

.timeline-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 9999px;
    background: linear-gradient(180deg, #c40010 0%, #7f1d1d 100%);
}

.spotlight-panel {
    background:
        radial-gradient(circle at top right, rgba(196, 0, 16, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 247, 247, 0.88) 0%, rgba(255, 255, 255, 0.78) 70%);
    backdrop-filter: blur(18px);
}

.empty-state-card {
    border: 1px dashed #cbd5e1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.84) 100%);
    backdrop-filter: blur(16px);
}

.operation-gallery-shell {
    background:
        radial-gradient(circle at top left, rgba(196, 0, 16, 0.2), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(140deg, #0f172a 0%, #192234 52%, #0b1018 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 36px 82px -48px rgba(15, 23, 42, 0.82);
}

.gallery-expand-hint__mobile {
    display: none;
}

.operation-gallery-carousel {
    width: min(500px, 100%);
    margin: 0 auto;
}

.gallery-lightbox-open {
    overflow: hidden;
}

@keyframes galleryLightboxIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes galleryDialogIn {
    from { opacity: 0; transform: scale(0.97) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.operation-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    animation: galleryLightboxIn 200ms ease both;
}

.operation-gallery-lightbox[hidden] {
    display: none;
    animation: none;
}

.operation-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(20px);
}

.operation-gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
    animation: galleryDialogIn 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.operation-gallery-lightbox__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.operation-gallery-lightbox__meta {
    flex: 1;
    min-width: 0;
}

.operation-gallery-lightbox__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    border-radius: 9999px;
    border: 1px solid rgba(248, 250, 252, 0.14);
    background: rgba(255, 255, 255, 0.07);
    color: #f8fafc;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transition: background 200ms ease, border-color 200ms ease;
}

.operation-gallery-lightbox__nav:hover {
    background: rgba(196, 0, 16, 0.6);
    border-color: rgba(196, 0, 16, 0.45);
}

.operation-gallery-lightbox__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    border-radius: 9999px;
    border: 1px solid rgba(248, 250, 252, 0.14);
    background: rgba(255, 255, 255, 0.07);
    color: #f8fafc;
    cursor: pointer;
    font-size: 1rem;
    transition: background 200ms ease, border-color 200ms ease;
}

.operation-gallery-lightbox__close:hover {
    background: rgba(196, 0, 16, 0.6);
    border-color: rgba(196, 0, 16, 0.45);
}

.gallery-lightbox-video {
    display: block;
    width: 100%;
    max-height: 74vh;
    border-radius: 1.25rem;
    background: #000;
}

.gallery-lightbox-img {
    display: block;
    width: 100%;
    max-height: 74vh;
    object-fit: contain;
    border-radius: 1.25rem;
}

.operation-gallery-lightbox__media {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #000;
}

/* Gallery card grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: #0f172a;
    padding: 0;
    transition: border-color 280ms ease, box-shadow 280ms ease;
}

.gallery-card--featured {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
    border-radius: 1.1rem;
}

.gallery-card:hover {
    border-color: rgba(196, 0, 16, 0.55);
    box-shadow:
        0 0 0 1px rgba(196, 0, 16, 0.2),
        0 28px 52px -22px rgba(196, 0, 16, 0.3);
}

.gallery-card:focus-visible {
    outline: 2px solid rgba(196, 0, 16, 0.9);
    outline-offset: 3px;
}

.gallery-card__asset {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover .gallery-card__asset {
    transform: scale(1.07);
}

.gallery-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.66);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f8fafc;
    pointer-events: none;
    transition: background 240ms ease, transform 240ms ease;
}

.gallery-card--featured .gallery-card__play {
    width: 3.6rem;
    height: 3.6rem;
}

.gallery-card:hover .gallery-card__play {
    background: rgba(196, 0, 16, 0.72);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0.9rem;
    gap: 0.5rem;
    background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0) 35%,
        rgba(2, 6, 23, 0.68) 72%,
        rgba(2, 6, 23, 0.96) 100%
    );
    opacity: 0;
    transition: opacity 260ms ease;
}

.gallery-card:hover .gallery-card__overlay,
.gallery-card:focus-visible .gallery-card__overlay {
    opacity: 1;
}

@media (hover: none) {
    .gallery-card__overlay {
        opacity: 1;
    }
}

.gallery-card__meta {
    flex: 1;
    min-width: 0;
}

.gallery-card__tag {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(248, 250, 252, 0.18);
    background: rgba(196, 0, 16, 0.42);
    backdrop-filter: blur(4px);
    padding: 0.2rem 0.58rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f8fafc;
}

.gallery-card__title {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.95);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-card--featured .gallery-card__title {
    font-size: 0.9rem;
    white-space: normal;
}

.gallery-card__expand {
    flex-shrink: 0;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(248, 250, 252, 0.8);
    pointer-events: none;
    transition: background 240ms ease;
}

.gallery-card:hover .gallery-card__expand {
    background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card--featured {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.625rem;
    }

    .gallery-card--featured {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 4 / 3;
        border-radius: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-grid {
        background-position: 58% center;
    }

    .hero-slides {
        min-height: 0 !important;
        height: auto !important;
        transition: none !important;
        overflow: visible;
    }

    .hero-slide {
        position: static !important;
        opacity: 1 !important;
        display: none !important;
        transform: none !important;
        filter: none !important;
        pointer-events: auto !important;
        width: 100%;
    }

    .hero-slide.is-active {
        display: block !important;
    }

    /* Add breathing room between the active slide CTAs and the
       response-standard line / stat-card grid that follow. */
    .hero-slider > p,
    .hero-slider > .grid {
        margin-top: 1.5rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gallery-card {
        min-height: clamp(14rem, 64vw, 19rem);
    }

    .gallery-card--featured {
        min-height: clamp(16rem, 78vw, 22rem);
    }

    .gallery-card__overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            rgba(2, 6, 23, 0.2) 26%,
            rgba(2, 6, 23, 0.78) 68%,
            rgba(2, 6, 23, 0.98) 100%
        );
    }

    .gallery-card__tag {
        letter-spacing: 0.1em;
        font-size: 0.56rem;
    }

    .gallery-card__title {
        white-space: normal;
        font-size: 0.82rem;
        line-height: 1.35;
        text-shadow: 0 1px 2px rgba(2, 6, 23, 0.7);
    }

    .gallery-expand-hint {
        letter-spacing: 0.12em;
        color: #334155;
    }

    .gallery-expand-hint__desktop {
        display: none;
    }

    .gallery-expand-hint__mobile {
        display: inline;
    }

    .operation-gallery-lightbox__topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.95rem;
    }

    .operation-gallery-lightbox__topbar > .flex {
        width: 100%;
        justify-content: flex-end;
    }

    .operation-gallery-lightbox__controls {
        gap: 0.55rem;
    }

    .operation-gallery-lightbox__controls [data-lightbox-counter] {
        margin-right: auto;
    }

    .operation-gallery-lightbox__nav,
    .operation-gallery-lightbox__close {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.05rem;
    }

    .operation-gallery-lightbox__dialog {
        width: 100%;
    }

    .gallery-lightbox-video,
    .gallery-lightbox-img {
        max-height: 58vh;
    }
}

.admin-form-shell {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.82) 100%);
    backdrop-filter: blur(18px);
}

.section-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.68) 100%);
    box-shadow: 0 34px 80px -50px rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(22px);
}

.section-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(196, 0, 16, 0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.05), transparent 22%);
    pointer-events: none;
}

.profile-excerpt-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 34px 80px -50px rgba(15, 23, 42, 0.38);
    backdrop-filter: blur(20px);
}

.profile-excerpt-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-wordmark {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 58px -42px rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(16px);
}

.initial-medallion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #c40010 0%, #7f1d1d 100%);
    color: #ffffff;
    box-shadow: 0 18px 36px -24px rgba(127, 29, 29, 0.72);
}

.admin-helper {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.7;
}

.admin-kicker {
    color: #c40010;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.flash-banner {
    border: 1px solid transparent;
}

.flash-banner-success {
    border-color: #a7f3d0;
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 100%);
    color: #047857;
}

.flash-banner-error {
    border-color: #fecaca;
    background: linear-gradient(180deg, #fef2f2 0%, #fff1f2 100%);
    color: #b91c1c;
}

.hero-grid {
    background:
        linear-gradient(115deg, rgba(7, 11, 18, 0.82) 0%, rgba(12, 25, 46, 0.76) 45%, rgba(9, 15, 24, 0.86) 100%),
        radial-gradient(circle at top left, rgba(196, 0, 16, 0.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%),
        var(--hero-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-slider {
    position: relative;
}

.hero-slides {
    position: relative;
    min-height: clamp(20rem, 34vw, 26rem);
    transition: height 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translate3d(26px, 16px, 0) scale(0.985);
    filter: blur(1.2px);
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

/* Keep hero slide visibility deterministic even with global motion classes. */
body.motion-enabled .hero-slide {
    opacity: 0;
    transform: translate3d(26px, 16px, 0) scale(0.985);
}

body.motion-enabled .hero-slide.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.hero-dot {
    height: 0.7rem;
    width: 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(248, 250, 252, 0.45);
    background: rgba(15, 23, 42, 0.24);
    transition: all 260ms ease;
}

.hero-dot:hover {
    border-color: rgba(252, 165, 165, 0.8);
}

.hero-dot.is-active {
    width: 3.1rem;
    border-color: rgba(248, 113, 113, 0.9);
    background: linear-gradient(90deg, rgba(196, 0, 16, 0.95) 0%, rgba(239, 68, 68, 0.85) 100%);
    box-shadow: 0 8px 24px -10px rgba(248, 113, 113, 0.85);
}

.hero-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(248, 250, 252, 0.45);
    background: rgba(15, 23, 42, 0.38);
    color: #f8fafc;
    font-size: 1rem;
    line-height: 1;
    transition: all 220ms ease;
}

.hero-arrow:hover {
    border-color: rgba(252, 165, 165, 0.9);
    background: rgba(196, 0, 16, 0.35);
    transform: translateY(-1px);
}

/* Mobile tap-target enlargement: keep visual size but expand hit area */
@media (hover: none) and (pointer: coarse) {
    .hero-arrow,
    .hero-dot,
    .about-media-arrow,
    .about-media-dot,
    .gallery-card__play,
    .operation-gallery-lightbox__nav,
    .operation-gallery-lightbox__close {
        position: relative;
    }

    .hero-arrow::after,
    .hero-dot::after,
    .about-media-arrow::after,
    .about-media-dot::after,
    .gallery-card__play::after,
    .operation-gallery-lightbox__nav::after,
    .operation-gallery-lightbox__close::after {
        content: "";
        position: absolute;
        inset: 50% 50% auto auto;
        translate: 50% -50%;
        min-width: 44px;
        min-height: 44px;
        width: 100%;
        height: 100%;
    }
}

.about-media-shell {
    border: 1px solid rgba(226, 232, 240, 0.9);
    background:
        radial-gradient(circle at top right, rgba(196, 0, 16, 0.1), transparent 36%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.88) 100%);
    box-shadow: 0 30px 72px -46px rgba(15, 23, 42, 0.4);
}

.about-media-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #0f172a;
}

.about-media-viewport::-webkit-scrollbar {
    height: 0.45rem;
}

.about-media-viewport::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 9999px;
}

.about-media-track {
    display: flex;
    width: 100%;
}

.about-media-shell.is-enhanced .about-media-viewport {
    overflow: hidden;
}

.about-media-shell.is-enhanced .about-media-track {
    transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-media-slide {
    position: relative;
    flex: 0 0 100%;
    min-height: clamp(19rem, 38vw, 25rem);
    scroll-snap-align: start;
}

.about-media-slide--expandable {
    cursor: zoom-in;
    outline: none;
}

.about-media-slide--expandable:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(248, 250, 252, 0.85);
}

.about-media-slide--lightbox {
    cursor: default;
}

.about-media-asset {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-media-play {
    position: absolute;
    inset: auto auto 1.2rem 1.2rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: rgba(15, 23, 42, 0.72);
    color: #f8fafc;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.56rem 0.9rem;
    cursor: pointer;
    transition: opacity 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.about-media-play:hover {
    background: rgba(196, 0, 16, 0.82);
    transform: translateY(-1px);
}

.about-media-expand-chip {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(248, 250, 252, 0.28);
    background: rgba(15, 23, 42, 0.78);
    color: #f8fafc;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 0.48rem 0.76rem;
    text-transform: uppercase;
}

.about-media-slide.is-video-playing .about-media-play,
.about-media-slide[aria-hidden="true"] .about-media-play {
    opacity: 0;
    pointer-events: none;
}

.about-media-caption {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.84) 56%, rgba(2, 6, 23, 0.95) 100%);
}

.about-media-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(248, 250, 252, 0.32);
    background: rgba(15, 23, 42, 0.34);
    padding: 0.28rem 0.7rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f8fafc;
}

.about-media-arrow {
    display: inline-flex;
    height: 2.15rem;
    width: 2.15rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.48);
    background: rgba(255, 255, 255, 0.85);
    color: #0f172a;
    font-size: 1.18rem;
    line-height: 1;
    cursor: pointer;
    transition: all 220ms ease;
}

.about-media-arrow:hover {
    border-color: rgba(196, 0, 16, 0.75);
    background: rgba(254, 242, 242, 0.95);
    color: #b91c1c;
    transform: translateY(-1px);
}

.about-media-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-media-dot {
    height: 0.58rem;
    width: 1.6rem;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    background: rgba(148, 163, 184, 0.22);
    cursor: pointer;
    transition: all 220ms ease;
}

.about-media-dot.is-active {
    width: 2.4rem;
    border-color: rgba(196, 0, 16, 0.88);
    background: linear-gradient(90deg, #c40010 0%, #ef4444 100%);
    box-shadow: 0 10px 20px -12px rgba(196, 0, 16, 0.85);
}

.section-pattern {
    background-image: linear-gradient(rgba(15, 23, 32, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 32, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.prose-copy p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

    .prose-copy h2 {
        margin-bottom: 1rem;
    }

.prose-copy ul {
    margin: 1.25rem 0;
    padding-left: 1.25rem;
}

.prose-copy li {
    margin-bottom: 0.75rem;
}

.fade-up {
    animation: fadeUp 0.7s ease both;
}

.fade-delay-1 {
    animation-delay: 0.08s;
}

.fade-delay-2 {
    animation-delay: 0.16s;
}

.fade-delay-3 {
    animation-delay: 0.24s;
}

.client-logo-marquee-shell {
    background:
        radial-gradient(circle at top left, rgba(196, 0, 16, 0.07), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.client-logo-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.client-logo-strip {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    animation: clientLogoScroll 34s linear infinite;
}

.client-logo-marquee:hover .client-logo-strip {
    animation-play-state: paused;
}

.client-logo-tile {
    min-width: clamp(11rem, 18vw, 14rem);
    min-height: clamp(8rem, 16vw, 10.5rem);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 45px -36px rgba(15, 23, 42, 0.5);
}

.client-logo-image {
    filter: saturate(1.06) contrast(1.02);
}

.whatsapp-float-widget {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.65rem;
    width: 3.65rem;
    border-radius: 9999px;
    background: linear-gradient(150deg, #16a34a 0%, #128c3a 100%);
    color: #ffffff;
    box-shadow: 0 20px 42px -18px rgba(18, 140, 58, 0.72);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float-widget:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 26px 54px -22px rgba(18, 140, 58, 0.78);
}

.whatsapp-float-widget__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
}

.whatsapp-float-widget__icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-float-widget__text {
    display: none;
}

@media (min-width: 1024px) {
    .whatsapp-float-widget {
        right: 1.5rem;
        bottom: 1.5rem;
        height: auto;
        width: auto;
        border-radius: 9999px;
        gap: 0.75rem;
        padding: 0.7rem 1rem 0.7rem 0.8rem;
    }

    .whatsapp-float-widget__text {
        display: inline-flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .whatsapp-float-widget__eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        opacity: 0.9;
    }

    .whatsapp-float-widget__title {
        font-size: 0.86rem;
        font-weight: 700;
    }
}

@media (max-width: 767px) {
    .operation-gallery-lightbox {
        padding: 0.65rem;
    }

    .operation-gallery-lightbox__header {
        align-items: stretch;
        flex-direction: column;
    }

    .operation-gallery-lightbox__close {
        width: 100%;
    }

    .team-member-photo-wrap {
        height: 18rem;
    }

    .service-cta {
        white-space: normal;
    }

    .hero-dot {
        width: 1.5rem;
    }

    .hero-dot.is-active {
        width: 2.2rem;
    }

    .client-logo-strip {
        gap: 0.85rem;
        animation-duration: 26s;
    }

    .client-logo-tile {
        min-width: 9rem;
        min-height: 6.75rem;
    }

    .about-media-slide {
        min-height: clamp(15rem, 72vw, 19rem);
    }

    .operation-gallery-lightbox__shell .about-media-slide {
        min-height: 18rem;
    }

    .whatsapp-float-widget {
        right: 0.85rem;
        bottom: 0.85rem;
        height: 3.25rem;
        width: 3.25rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes clientLogoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes buttonRipple {
    from {
        opacity: 0.4;
        width: 0;
        height: 0;
    }

    to {
        opacity: 0;
        width: 260px;
        height: 260px;
    }
}

@keyframes statusSweep {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .motion-card.is-hovered,
    .motion-button,
    .motion-button.is-glinting::after,
    .motion-ready,
    .fade-up {
        transform: none !important;
        box-shadow: inherit;
    }

    .hero-slides {
        min-height: auto;
        height: auto !important;
    }

    .hero-slide {
        position: static;
        opacity: 1;
        transform: none;
        filter: none;
        display: none;
    }

    .hero-slide.is-active {
        display: block;
    }

    .about-media-track {
        transition: none;
    }
}

.tracking-status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tracking-status-pill--green {
    background: #065f46;
    color: #ecfdf5;
}

.tracking-status-pill--yellow {
    background: #92400e;
    color: #fffbeb;
}

.tracking-status-pill--red {
    background: #991b1b;
    color: #fef2f2;
}

.tracking-progress {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tracking-progress {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.tracking-progress-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 0.45rem 0.8rem;
    background: #f8fafc;
}

.tracking-progress-dot {
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 9999px;
    background: #cbd5e1;
}

.tracking-progress-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #334155;
}

.tracking-progress-step--done {
    border-color: #10b981;
    background: #ecfdf5;
}

.tracking-progress-step--done .tracking-progress-dot {
    background: #059669;
}

.tracking-progress-step--done .tracking-progress-label {
    color: #065f46;
}

.tracking-progress-step--current {
    border-color: #c40010;
    background: #fff1f2;
}

.tracking-progress-step--current .tracking-progress-dot {
    background: #c40010;
}

.tracking-progress-step--current .tracking-progress-label {
    color: #7f1d1d;
}

.shipments-workspace {
    background:
        radial-gradient(circle at top right, rgba(196, 0, 16, 0.22), transparent 34%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.12), transparent 30%),
        linear-gradient(135deg, #0b1220 0%, #172033 52%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 38px 84px -48px rgba(15, 23, 42, 0.86);
}

.shipments-dossier {
    border: 1px solid rgba(248, 250, 252, 0.16);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.88) 0%, rgba(23, 32, 50, 0.82) 100%);
}

.shipments-progress {
    position: relative;
    height: 0.85rem;
    width: 100%;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.28);
}

.shipments-progress > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #c40010 0%, #ef4444 45%, #fb7185 100%);
    box-shadow: 0 12px 26px -14px rgba(251, 113, 133, 0.72);
}

.shipments-metric {
    border: 1px solid rgba(226, 232, 240, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.86) 100%);
}

.shipments-launchpad {
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 20px 44px -24px rgba(15, 23, 42, 0.26);
}

.shipments-launch-item {
    border: 1px solid rgba(226, 232, 240, 0.84);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.shipments-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.72rem 1.15rem;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.shipments-btn:hover {
    transform: translateY(-1px);
}

.shipments-btn--dark {
    background: #0f172a;
    color: #f8fafc;
    box-shadow: 0 14px 24px -18px rgba(15, 23, 42, 0.9);
}

.shipments-btn--accent {
    background: linear-gradient(135deg, #c40010 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 16px 28px -20px rgba(196, 0, 16, 0.85);
}

.shipments-btn--danger {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #ffffff;
    box-shadow: 0 16px 28px -20px rgba(153, 27, 27, 0.88);
}

.shipments-timeline-item {
    position: relative;
    overflow: hidden;
}

.shipments-timeline-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 9999px;
    background: linear-gradient(180deg, #c40010 0%, #7f1d1d 100%);
}

.shipments-filter-shell {
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 1rem;
}

.shipments-filter-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.shipments-filter-input:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.12);
}

.shipments-row {
    transition: background-color 0.2s ease;
}

.shipments-row:hover {
    background: #f8fafc;
}

body.shipments-modal-open {
    overflow: hidden;
}

.shipments-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.shipments-modal.is-open {
    display: flex;
}

.shipments-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(3px);
}

.shipments-modal__panel {
    position: relative;
    z-index: 1;
    width: min(860px, 100%);
    max-height: calc(100vh - 2.5rem);
    overflow: auto;
    border-radius: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 35px 85px -35px rgba(15, 23, 42, 0.5);
    padding: 1.5rem;
}

.shipments-modal--manage {
    z-index: 80;
}

.shipments-modal__panel--manage {
    width: min(1220px, 100%);
    padding: 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.shipments-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shipments-modal__close {
    border: 1px solid rgba(203, 213, 225, 0.9);
    background: #ffffff;
    color: #0f172a;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    font-size: 1.3rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .shipments-workspace {
        border-radius: 1.5rem;
    }

    .shipments-modal {
        padding: 1rem;
    }

    .shipments-modal__panel {
        border-radius: 1.25rem;
        padding: 1.2rem;
    }
}

/* ===== Mobile-specific overrides (added) ===== */
@media (max-width: 767px) {
    /* Drop expensive backdrop blur on small screens for scroll perf */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 6px 20px -16px rgba(15, 23, 42, 0.3);
    }

    /* Reserve space at the bottom so the floating WhatsApp bubble
       does not overlap final CTAs / form submit buttons */
    main {
        padding-bottom: 5rem;
    }

    /* Slightly enlarge dots/arrows for visual + tap clarity */
    .hero-dot { height: 0.8rem; }
}
