* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f1419;
    color: #eef2f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    width: 100%;
}

h1,
h2,
h3 {
    color: #ff8a00;
}

a {
    color: #7fd3ff;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 24px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    transition: transform 0.26s ease, opacity 0.26s ease;
    z-index: 50;
}

.site-header.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.section-scroll-nav {
    position: fixed;
    top: 50%;
    right: 24px;
    display: grid;
    gap: 14px;
    transform: translateY(-50%);
    z-index: 95;
}

.section-scroll-link {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: transform 0.22s ease;
}

.section-scroll-link:hover,
.section-scroll-link:focus-visible,
.section-scroll-link.is-active {
    transform: scale(1.08);
}

.section-scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.section-scroll-link.is-active .section-scroll-dot,
.section-scroll-link:hover .section-scroll-dot,
.section-scroll-link:focus-visible .section-scroll-dot {
    background: #ff8a00;
    transform: scale(1.22);
    box-shadow: 0 0 0 6px rgba(255, 138, 0, 0.16);
}

.brand {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    height: 24px;
    width: auto;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 138, 0, 0.4);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.72);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.submenu-toggle {
    display: none;
}

.main-nav a {
    color: #dbe6ef;
    font-size: 0.95rem;
    display: block;
    padding: 10px 12px;
    border-radius: 0;
    transform: translateY(0);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.22s ease;
}

.main-nav li:hover > a,
.main-nav a:hover {
    background: #ff8a00;
    color: #000;
}

.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 8px;
    background: #0f1419;
    border: 1px solid #2f3a45;
    border-radius: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 80;
    text-align: left;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.main-nav .has-submenu:hover > .submenu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .submenu .submenu {
    top: -8px;
    left: 100%;
}

.main-nav .submenu a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 0;
    text-align: left;
}

.main-nav .submenu li {
    width: 100%;
    text-align: left;
}

.main-nav .submenu li:hover > a,
.main-nav .submenu a:hover {
    background: #ff8a00;
    color: #000;
}

.main-nav li:hover > a {
    transform: translateY(-2px);
}

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video video::-webkit-media-controls {
    display: none !important;
}

.hero-video video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(120deg, #1f2f3d 0%, #0f1419 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: clamp(110px, 24vh, 180px) 24px 42px;
}

.hero-copy {
    max-width: min(640px, 92vw);
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid #ff8a00;
    padding: 18px 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    opacity: 1;
    transform: translateX(0);
}

.hero-copy-cycle {
    animation:
        heroPanelIn 0.9s ease forwards 0.2s,
        heroPanelOut 0.8s ease forwards 10s;
}

.hero-overlay h1 {
    margin: 0;
    font-size: 2rem;
}

.hero-overlay p {
    margin: 10px 0 0;
}

.hero-info {
    max-width: 100%;
    margin-top: 14px;
    padding: 0;
    background: transparent;
    border-left: 0;
}

.hero-info p {
    margin: 0 0 8px;
    line-height: 1.45;
}

.hero-info p:last-child {
    margin-bottom: 0;
}

.hero-anim {
    opacity: 1;
    transform: none;
}

.hero-anim-1 {
    animation-delay: 0s;
}

.hero-anim-2 { animation-delay: 0s; }
.hero-anim-3 { animation-delay: 0s; }

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroPanelIn {
    from {
        opacity: 0;
        transform: translateX(-48px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroPanelOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-48px);
    }
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 24px;
}

.top-space {
    margin-top: 30px; /* Original:70px */
}

.section-heading {
    display: table;
    margin: 0 0 24px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 2rem;
    color: #eef2f5;
    position: relative;
    padding-bottom: 14px;
}

.section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 81, 0, 0.65);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.page-gallery {
    margin-top: 24px;
}

.page-media-grid {
    margin-top: 16px;
}

.page-section {
    margin-top: 28px;
}

.page-section-heading {
    display: table;
    margin-right: auto;
    text-align: left;
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.page-section-heading::after {
    left: 0;
    width: 100%;
}

.machine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

@media (min-width: 1200px) {
    .machine-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.machine-card {
    background: #1a2128;
    border: 1px solid #2f3a45;
    border-radius: 12px;
    overflow: hidden;
}

.machine-card img,
.machine-card video,
.machine-placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #0b0f13;
}

.machine-card img,
.machine-card video,
.gallery-item img,
.gallery-item video {
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.38s ease;
    will-change: transform;
}

.machine-card:hover img,
.machine-card:hover video,
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.machine-placeholder {
    display: grid;
    place-items: center;
}

.machine-meta {
    padding: 12px;
    color: #eef2f5;
}

.machine-meta h3 {
    margin: 0 0 8px;
}

.machine-meta p {
    margin: 0;
    color: #afc0cf;
}

.visitor-counter-section {
    padding: 28px 0 14px;
}

.home-news-section {
    padding: 26px 0 8px;
}

.home-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 980px) {
    .home-news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-news-shell {
    position: relative;
}

.home-news-viewport {
    overflow: hidden;
}

.home-news-shell.is-carousel {
    padding: 0 72px;
}

.home-news-shell.is-carousel .home-news-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.home-news-shell.is-carousel .home-news-grid::-webkit-scrollbar {
    display: none;
}

.home-news-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 81, 0, 0.65);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}

.home-news-nav:hover,
.home-news-nav:focus-visible {
    background: #ff8a00;
    transform: translateY(-50%) scale(1.05);
}

.home-news-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.home-news-prev {
    left: 4px;
}

.home-news-next {
    right: 4px;
}

.home-news-card {
    overflow: hidden;
    border: 1px solid #2f3a45;
    border-radius: 18px;
    background: #1a2128;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    scroll-snap-align: start;
}

.home-news-media img,
.home-news-media video {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    background: #000;
}

.home-news-media img {
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.38s ease;
}

.home-news-card:hover .home-news-media img {
    transform: scale(1.08);
}

.home-news-media img:fullscreen,
.home-news-media img:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    background: #000000;
    padding: 0;
    margin: 0;
    transform: none;
}

.home-news-copy {
    padding: 18px 18px 20px;
}

.home-news-copy h3 {
    margin: 0 0 10px;
    color: #ff8c00;
}

.home-news-copy p {
    margin: 0;
    color: #ffffff;
    line-height: 1.65;
}

.contact-page {
    display: grid;
    gap: 24px;
}

.contact-page-intro p {
    margin: 0;
    color: #dbe6ef;
}

.contact-map-card,
.contact-form-card {
    border: 1px solid #2f3a45;
    border-radius: 18px;
    background: #1a2128;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.contact-map-card {
    overflow: hidden;
}

.contact-map-copy {
    padding: 18px 20px 12px;
}

.contact-map-copy h2,
.contact-form-card h2 {
    margin: 0 0 10px;
}

.contact-map-copy p {
    margin: 0;
    color: #dbe6ef;
}

.contact-map-frame iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.contact-form-card {
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
        #1a2128;
}

.contact-form {
    display: grid;
    gap: 18px;
    max-width: none;
}

.contact-form-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.contact-form-main {
    display: grid;
    align-content: start;
}

.contact-form-lead {
    margin: 0 0 18px;
    color: #b7c2cc;
    font-size: 0.94rem;
    line-height: 1.6;
}

.contact-form-status {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid currentColor;
    background: rgba(255, 255, 255, 0.03);
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field label {
    margin: 0;
    color: #eef2f5;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-field-compact {
    max-width: 320px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-form .contact-input {
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(109, 125, 140, 0.46);
    background: rgba(9, 13, 17, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form .contact-input::placeholder {
    color: #74808a;
}

.contact-form .contact-input:focus {
    outline: none;
    border-color: rgba(255, 138, 0, 0.85);
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.12);
    background: #0d1217;
}

.contact-form textarea.contact-input {
    min-height: 168px;
    padding-top: 12px;
}

.contact-form button {
    justify-self: start;
    margin-top: 0;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a00, #ffb347);
    color: #111;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(255, 138, 0, 0.18);
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: linear-gradient(135deg, #ff9b26, #ffc36a);
}

.contact-form-actions {
    display: flex;
    justify-content: flex-start;
}

.contact-media-panel {
    display: grid;
    grid-template-rows: minmax(260px, 1fr) auto;
    border: 1px solid rgba(255, 138, 0, 0.18);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255, 138, 0, 0.16), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-media-frame {
    min-height: 260px;
    background: #0c1116;
}

.contact-media-frame img,
.contact-media-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-media-copy,
.contact-media-placeholder {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.contact-media-copy h3,
.contact-media-placeholder h3 {
    margin: 0;
    color: #eef2f5;
    font-size: 1.08rem;
    line-height: 1.35;
}

.contact-media-copy p,
.contact-media-placeholder p {
    margin: 0;
    color: #b7c2cc;
    line-height: 1.65;
}

.contact-media-eyebrow {
    color: #ffb347;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-media-placeholder {
    min-height: 100%;
    align-content: center;
    background:
        radial-gradient(circle at top left, rgba(255, 138, 0, 0.18), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.contact-media-placeholder img {
    width: auto;
    height: 32px;
}

.home-testimonials-section {
    padding: 24px 0 18px;
}

.home-testimonials-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.home-testimonials-intro {
    margin: 0;
    max-width: 920px;
    color: #c7d1d9;
    line-height: 1.7;
}

.home-testimonials-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
    gap: 22px;
    align-items: start;
}

.testimonial-submit-card,
.testimonial-card,
.testimonial-empty-card {
    border: 1px solid #2f3a45;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        #1a2128;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.testimonial-submit-card {
    padding: 24px;
}

.testimonial-form-eyebrow {
    margin: 0 0 8px;
    color: #ffb347;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.testimonial-submit-card h3,
.testimonial-empty-card h3 {
    margin: 0 0 10px;
    color: #eef2f5;
    font-size: 1.28rem;
}

.testimonial-form-copy,
.testimonial-empty-card p,
.testimonial-message {
    margin: 0;
    color: #c7d1d9;
    line-height: 1.7;
}

.testimonial-form-status {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid currentColor;
    background: rgba(255, 255, 255, 0.03);
}

.testimonial-form {
    display: grid;
    gap: 16px;
}

.testimonial-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.testimonial-field {
    display: grid;
    gap: 8px;
}

.testimonial-field label {
    margin: 0;
    color: #eef2f5;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.testimonial-field-full {
    grid-column: 1 / -1;
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea {
    margin: 0;
    min-height: 44px;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid rgba(109, 125, 140, 0.46);
    background: rgba(9, 13, 17, 0.92);
}

.testimonial-form textarea {
    min-height: 170px;
    resize: vertical;
}

.testimonial-form button {
    margin-top: 0;
    justify-self: start;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a00, #ffb347);
    color: #111;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(255, 138, 0, 0.18);
}

.testimonial-form button:hover,
.testimonial-form button:focus-visible {
    background: linear-gradient(135deg, #ff9b26, #ffc36a);
}

.testimonial-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.testimonial-feed {
    display: grid;
    gap: 16px;
    max-height: 640px;
    overflow-y: auto;
    padding: 16px;
    border: 1px solid #2f3a45;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        #151b21;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 138, 0, 0.7) rgba(255, 255, 255, 0.05);
}

.testimonial-feed::-webkit-scrollbar {
    width: 10px;
}

.testimonial-feed::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.testimonial-feed::-webkit-scrollbar-thumb {
    background: rgba(255, 138, 0, 0.7);
    border-radius: 999px;
}

.testimonial-feed::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 179, 71, 0.88);
}

.testimonial-card,
.testimonial-empty-card {
    padding: 20px 22px;
}

.testimonial-card.is-featured {
    border-color: rgba(255, 138, 0, 0.4);
    box-shadow: 0 16px 30px rgba(255, 138, 0, 0.08);
}

.testimonial-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

.testimonial-badge {
    margin: 0;
    color: #dfe7ee;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.testimonial-stars {
    display: inline-flex;
    gap: 3px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.92rem;
}

.testimonial-stars .is-active {
    color: #ffb347;
}

.testimonial-message {
    margin-bottom: 16px;
}

.testimonial-author {
    display: grid;
    gap: 4px;
}

.testimonial-author strong {
    color: #eef2f5;
}

.testimonial-author span {
    color: #9ca8b1;
    font-size: 0.92rem;
}

.testimonial-empty-card {
    min-height: 100%;
    align-content: center;
}

.visitor-counter-card {
    position: relative;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 34px 24px;
    border: 1px solid rgba(255, 138, 0, 0.26);
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(255, 138, 0, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    text-align: center;
    overflow: hidden;
}

.visitor-counter-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -62%);
    background: radial-gradient(circle, rgba(255, 138, 0, 0.32), transparent 68%);
    pointer-events: none;
}

.visitor-counter-label {
    margin: 0;
    position: relative;
    color: #eef2f5;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
}

.visitor-counter-value {
    margin: 0;
    position: relative;
    color: #ff8a00;
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 0.95;
    text-shadow: 0 0 24px rgba(255, 138, 0, 0.18);
    animation: visitorCounterPulse 2.8s ease-in-out infinite;
}

@keyframes visitorCounterPulse {
    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 24px rgba(255, 138, 0, 0.18);
    }
    50% {
        transform: scale(1.04);
        text-shadow: 0 0 34px rgba(255, 138, 0, 0.32);
    }
}

.client-banner {
    padding: 12px 0 48px;
}

.client-marquee {
    overflow: hidden;
    position: relative;
    border: 1px solid #2f3a45;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    padding: 18px 0;
}

.client-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 20px;
    animation: clientMarquee 28s linear infinite;
}

.client-marquee:hover .client-track {
    animation-play-state: paused;
}

.client-logo-card {
    width: 190px;
    height: 96px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #d7dde3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
}

.client-logo-card a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

@keyframes clientMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 10px));
    }
}

.gallery-item {
    background: #1a2128;
    border: 1px solid #2f3a45;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 10px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #000;
}

.gallery-item h3 {
    margin: 10px;
    font-size: 1rem;
    color: #eef2f5;
}

.gallery-item p {
    margin: 10px;
}

.client-logo-admin-item {
    display: flex;
    flex-direction: column;
}

.client-logo-admin-preview {
    height: 180px;
    display: grid;
    place-items: center;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid #d7dde3;
}

.client-logo-admin-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: transparent !important;
}

.client-logo-admin-item:hover .client-logo-admin-thumb {
    transform: none;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 10px 10px;
}

.admin-actions form {
    margin: 0;
}

.admin-actions button {
    margin: 0;
}

.home-video-queue {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.home-video-item {
    padding: 12px;
    border: 1px solid #2f3a45;
    border-radius: 8px;
    background: #12181e;
}

.home-video-item p {
    margin: 0 0 8px;
}

.home-video-item form {
    margin: 0;
}

.title-edit-form {
    display: flex;
    gap: 8px;
    padding: 0 10px 10px;
}

.title-edit-form input {
    margin: 0;
}

.title-edit-form button {
    margin: 0;
    white-space: nowrap;
}

.card {
    background: #1a2128;
    border: 1px solid #2f3a45;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.admin-dashboard {
    background:
        radial-gradient(circle at top left, rgba(255, 138, 0, 0.14), transparent 24%),
        linear-gradient(180deg, #0f1419 0%, #10171d 100%);
}

.admin-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 300px;
    padding: 24px 18px 20px;
    background: linear-gradient(180deg, rgba(12, 16, 20, 0.98), rgba(22, 29, 35, 0.98));
    border-right: 1px solid rgba(255, 138, 0, 0.2);
    box-shadow: 24px 0 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.admin-sidebar-head {
    display: grid;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-meta {
    display: grid;
    gap: 6px;
}

.admin-sidebar-label,
.admin-sidebar-user,
.admin-sidebar-title {
    margin: 0;
}

.admin-sidebar-label {
    color: #ff8a00;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-sidebar-user {
    color: #d7dde3;
    font-size: 0.92rem;
    line-height: 1.5;
}

.admin-sidebar-title {
    color: #8f9aa3;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-sidebar-nav-wrap {
    flex: 1 1 auto;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
}

.admin-section-nav {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 8px;
    margin: 0;
    padding-right: 6px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 138, 0, 0.7) rgba(255, 255, 255, 0.06);
}

.admin-section-nav::-webkit-scrollbar {
    width: 8px;
}

.admin-section-nav::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.admin-section-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.68);
}

.admin-section-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #eef2f5;
    font-size: 0.92rem;
    line-height: 1.35;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-section-nav a:hover,
.admin-section-nav a:focus-visible {
    background: rgba(255, 138, 0, 0.16);
    border-color: rgba(255, 138, 0, 0.4);
    color: #fff;
    transform: translateX(3px);
}

.admin-header-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-header-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #eef2f5;
    font-size: 0.92rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-header-links a:hover,
.admin-header-links a:focus-visible {
    background: #ff8a00;
    color: #000;
    transform: translateY(-1px);
}

.admin-main {
    width: 100%;
    padding-left: 300px;
}

.admin-main-inner {
    max-width: 1540px;
}

.admin-main .top-space {
    margin-top: 0;
    padding-top: 34px;
    padding-bottom: 42px;
}

.admin-main h1 {
    margin-top: 0;
}

.admin-dashboard section[id] {
    scroll-margin-top: 24px;
}

.page-block-admin-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.admin-quick-actions {
    margin-bottom: 20px;
}

.admin-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-quick-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #eef2f5;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-quick-links a:hover,
.admin-quick-links a:focus-visible {
    background: #ff8a00;
    color: #000;
    transform: translateY(-1px);
}

.admin-create-service-form {
    margin-bottom: 20px;
}

.admin-create-service-form button {
    width: fit-content;
}

.page-block-form {
    padding: 0 10px 10px;
}

.page-block-form label {
    margin-top: 8px;
}

.page-block-form button {
    margin-top: 10px;
}

.equipment-spec-admin {
    margin: 16px 0 20px;
    padding: 14px;
    border: 1px solid #2f3a45;
    border-radius: 12px;
    background: #12181e;
}

.equipment-spec-admin p {
    margin-top: 0;
}

.equipment-spec-admin img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #fff;
}

.admin-section-note {
    margin: 0 0 16px;
    color: #c5d2dc;
}

.admin-category-toolbar {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.admin-category-create,
.admin-category-listing {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid #2f3a45;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.admin-category-create h3,
.admin-category-listing h3 {
    margin: 0;
}

.admin-category-list {
    display: grid;
    gap: 10px;
}

.admin-category-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 138, 0, 0.16);
    border-radius: 12px;
    background: #12181e;
}

.admin-category-chip strong,
.admin-category-chip span,
.admin-category-chip p {
    display: block;
}

.admin-category-chip strong,
.admin-category-chip p {
    margin: 0;
}

.admin-category-chip span {
    margin-top: 4px;
    color: #8f9aa3;
    font-size: 0.82rem;
}

.admin-category-chip p {
    color: #ffb347;
    font-size: 0.78rem;
    text-align: right;
}

.admin-category-chip form {
    margin: 0;
}

.admin-user-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: start;
}

.admin-user-create,
.admin-user-list,
.admin-user-card {
    display: grid;
    gap: 12px;
}

.admin-user-create,
.admin-user-list {
    padding: 16px;
    border: 1px solid #2f3a45;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.admin-user-cards {
    display: grid;
    gap: 12px;
}

.admin-user-card {
    padding: 14px;
    border: 1px solid rgba(255, 138, 0, 0.16);
    border-radius: 12px;
    background: #12181e;
}

.admin-user-card h4,
.admin-user-create h3,
.admin-user-list h3 {
    margin: 0;
}

.admin-user-card p {
    margin: 0;
}

.admin-user-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.admin-user-card-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.14);
    color: #ffb347;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.testimonial-admin-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.testimonial-admin-group {
    display: grid;
    gap: 12px;
}

.testimonial-admin-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.testimonial-admin-group-header h3 {
    margin: 0;
}

.testimonial-admin-group-header span {
    display: inline-flex;
    min-width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.12);
    color: #ffb347;
    font-weight: 700;
}

.testimonial-admin-card {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #2f3a45;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.testimonial-admin-card.is-featured {
    border-color: rgba(255, 138, 0, 0.38);
    box-shadow: inset 0 0 0 1px rgba(255, 138, 0, 0.12);
}

.testimonial-admin-card.is-pending {
    border-color: rgba(127, 211, 255, 0.22);
}

.testimonial-admin-card.is-rejected {
    border-color: rgba(217, 52, 52, 0.28);
}

.testimonial-admin-meta {
    display: grid;
    gap: 5px;
}

.testimonial-admin-badge,
.testimonial-admin-author,
.testimonial-admin-rating,
.testimonial-admin-date,
.testimonial-admin-message {
    margin: 0;
}

.testimonial-admin-badge {
    color: #ffb347;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.testimonial-admin-author strong {
    color: #eef2f5;
}

.testimonial-admin-rating,
.testimonial-admin-date {
    color: #9ca8b1;
    font-size: 0.9rem;
}

.testimonial-admin-message {
    color: #d8e2ea;
    line-height: 1.65;
}

.admin-subsection-card {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #2f3a45;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.admin-subsection-card > h3 {
    margin-top: 0;
}

.admin-media-block-title {
    margin: 18px 0 12px;
    color: #ff8a00;
}

.about-blocks {
    display: grid;
    gap: 28px;
    margin-top: 24px;
}

.about-block {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #2f3a45;
    border-radius: 16px;
}

.about-block.is-reversed {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
}

.about-block.is-reversed .about-block-media {
    order: 2;
}

.about-block.is-reversed .about-block-copy {
    order: 1;
}

.about-block-media img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-block-copy h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.about-block-copy p {
    margin: 0;
    line-height: 1.7;
    color: #dbe6ef;
}

.equipment-spec-view {
    margin: 24px 0 30px;
    padding: 20px;
    border: 1px solid #2f3a45;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.equipment-spec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.equipment-spec-header h2 {
    margin: 0;
}

.equipment-spec-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    gap: 24px;
    align-items: start;
}

.equipment-spec-view.has-video .equipment-spec-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.equipment-spec-left,
.equipment-spec-right {
    display: grid;
    gap: 18px;
    align-content: start;
}

.equipment-spec-right {
    grid-template-rows: auto minmax(0, 1fr) auto;
}

.equipment-spec-video h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.equipment-spec-video video {
    width: 100%;
    display: block;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.equipment-spec-video p {
    margin: 12px 0 0;
    color: #dbe6ef;
}

.equipment-spec-copy {
    display: grid;
    gap: 22px;
}

.equipment-spec-block {
    display: grid;
    gap: 12px;
}

.equipment-spec-copy h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.equipment-spec-copy p {
    margin: 0;
    line-height: 1.75;
    color: #dbe6ef;
}

.spec-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ff8a00;
    color: #fff;
}

.spec-download:hover,
.spec-download:focus-visible {
    background: #e06d00;
}

.equipment-spec-image {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-height: 420px;
}

.equipment-spec-right .equipment-spec-header {
    margin-bottom: 0;
}

.equipment-spec-right .spec-download {
    justify-self: start;
}

.equipment-spec-view img {
    width: 100%;
    max-width: 920px;
    height: auto;
    display: block;
    border-radius: 12px;
    background: #fff;
}

.equipment-spec-image .spec-photo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.equipment-spec-image .spec-photo-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.admin-login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.admin-login-logo img {
    display: block;
    max-width: min(340px, 82%);
    height: auto;
}

.admin-site-header .brand img {
    height: 42px;
}

.auth-card {
    width: min(450px, 92vw);
    text-align: center;
}

.admin-login-form {
    display: grid;
    justify-items: center;
}

.admin-login-action,
button.admin-login-action,
a.admin-login-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    padding: 10px 14px;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(255, 138, 0, 0.08);
    color: #ff8a00;
    border: 0;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-login-action:hover,
.admin-login-action:focus-visible {
    background: #ff8a00;
    color: #000;
    transform: translateY(-1px);
}

.admin-login-link {
    align-self: center;
}

label {
    display: block;
    margin-top: 12px;
    margin-bottom: 6px;
}

input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #3b4a56;
    background: #0f1419;
    color: #eef2f5;
}

select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #3b4a56;
    background: #0f1419;
    color: #eef2f5;
}

textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #3b4a56;
    background: #0f1419;
    color: #eef2f5;
    resize: vertical;
    font: inherit;
}

button {
    margin-top: 12px;
    background: #0098ff;
    color: #fff;
    border: 0;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
}

button.danger {
    background: #d93434;
}

.error {
    color: #ff9a9a;
}

.success {
    color: #8de9b8;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox img {
    max-width: 95vw;
    max-height: 82vh;
    border-radius: 8px;
    transform: scale(0.94);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    cursor: zoom-in;
    transform-origin: center center;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox.show img {
    transform: scale(1);
    opacity: 1;
}

.lightbox img.is-switching {
    opacity: 0;
}

#lightbox-title {
    transition: opacity 0.2s ease;
}

#lightbox-title.is-switching {
    opacity: 0;
}

.lightbox p {
    margin-top: 12px;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 125;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.lightbox-nav:hover {
    background: rgba(255, 138, 0, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 81, 0, 0.65);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.92);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, background-color 0.2s ease;
    z-index: 90;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top:hover {
    background: #ff8a00;
}

.site-footer {
    margin-top: auto;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #030303 0%, #0d1117 58%, #161d25 100%);
    border-top: 1px solid rgba(255, 138, 0, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 24px 48px rgba(255, 138, 0, 0.05);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
    align-items: center;
    gap: 36px;
    flex: 1;
    padding-top: 42px;
    padding-bottom: 28px;
}

.site-footer-brand {
    display: grid;
    gap: 16px;
    max-width: 520px;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
}

.site-footer-logo img {
    display: block;
    width: auto;
    height: 40px;
}

.site-footer-copy {
    margin: 0;
    color: #b3bec8;
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 760px;
    gap: 8px 10px;
}

.site-footer-nav a {
    color: #dfe7ee;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer-nav a:hover,
.site-footer-nav a:focus-visible {
    background: #ff8a00;
    color: #000;
    transform: translateY(-1px);
    border-color: #ff8a00;
    box-shadow: 0 12px 22px rgba(255, 138, 0, 0.18);
}

.site-footer-bottom {
    padding-top: 16px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-bottom p {
    margin: 0;
    color: #909aa3;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

@media (max-width: 860px) {
    .site-header {
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        flex-wrap: wrap;
    }

    .brand img {
        height: 14px;
    }

    .nav-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .section-scroll-nav {
        right: 12px;
        gap: 12px;
    }

    .main-nav {
        width: 100%;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 12px;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .main-nav li {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 42px;
        align-items: start;
    }

    .main-nav a {
        width: 100%;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.04);
    }

    .submenu-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        margin-left: 8px;
        padding: 0;
        border: 0;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        cursor: pointer;
        place-items: center;
    }

    .submenu-toggle span {
        width: 10px;
        height: 10px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        transition: transform 0.2s ease;
    }

    .main-nav .has-submenu.is-open > .submenu-toggle span {
        transform: rotate(-135deg) translateX(-1px);
    }

    .main-nav li:hover > a {
        transform: none;
    }

    .main-nav .submenu {
        position: static;
        display: flex;
        overflow: hidden;
        flex-direction: column;
        max-height: 0;
        min-width: 0;
        margin-top: 8px;
        padding: 0 0 0 12px;
        border: 0;
        border-left: 2px solid rgba(255, 138, 0, 0.24);
        background: transparent;
        opacity: 0;
        visibility: hidden;
        transform: none;
        gap: 6px;
        grid-column: 1 / -1;
        transition: max-height 0.3s ease, opacity 0.24s ease;
    }

    .main-nav .submenu .submenu {
        top: auto;
        left: auto;
    }

    .main-nav .submenu a {
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.03);
    }

    .main-nav .has-submenu.is-open > .submenu {
        opacity: 1;
        visibility: visible;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-overlay {
        padding: 120px 16px 24px;
    }

    .hero-copy {
        padding: 14px 14px;
    }

    .about-block,
    .about-block.is-reversed {
        grid-template-columns: 1fr;
    }

    .equipment-spec-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .equipment-spec-view.has-video .equipment-spec-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-frame iframe {
        height: 320px;
    }

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

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

    .testimonial-feed {
        max-height: none;
        overflow: visible;
    }

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

    .contact-field-compact {
        max-width: none;
    }

    .testimonial-form-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-admin-columns {
        grid-template-columns: 1fr;
    }

    .admin-category-toolbar {
        grid-template-columns: 1fr;
    }

    .admin-user-grid {
        grid-template-columns: 1fr;
    }

    .about-block.is-reversed .about-block-media,
    .about-block.is-reversed .about-block-copy {
        order: initial;
    }

    .home-news-shell.is-carousel {
        padding: 0;
    }

    .home-news-shell.is-carousel .home-news-grid {
        grid-auto-columns: 100%;
    }

    .home-news-nav {
        display: none;
    }

    .admin-site-header {
        position: static;
        width: auto;
        gap: 16px;
        padding: 18px 16px;
        box-shadow: none;
    }

    .admin-sidebar-head {
        padding-bottom: 14px;
    }

    .admin-sidebar-nav-wrap {
        flex: initial;
        display: grid;
        grid-template-rows: auto;
    }

    .admin-main {
        padding-left: 0;
    }

    .admin-main .top-space {
        padding-top: 22px;
    }

    .admin-section-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 8px;
        padding: 0;
        width: 100%;
    }

    .admin-section-nav a {
        width: 100%;
        min-height: 42px;
        justify-content: center;
        text-align: center;
        transform: none;
    }

    .admin-header-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .admin-header-links a {
        width: 100%;
        text-align: center;
    }

    .admin-quick-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-quick-links a {
        width: 100%;
        text-align: center;
    }

    .admin-create-service-form button {
        width: 100%;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 28px;
        padding-top: 36px;
        padding-bottom: 24px;
    }

    .site-footer {
        height: auto;
        min-height: 300px;
    }

    .site-footer-nav {
        justify-content: flex-start;
        max-width: none;
    }
}

@media (max-width: 560px) {
    .section-scroll-nav {
        display: none;
    }

    .admin-section-nav,
    .admin-header-links,
    .admin-quick-links {
        grid-template-columns: 1fr;
    }
}
