:root {
    --ink: #07111f;
    --navy: #101b2f;
    --blue: #0b4b8c;
    --red: #c51f2c;
    --cyan: #00a9c8;
    --gold: #c79a3b;
    --green: #18a676;
    --paper: #ffffff;
    --soft: #f4f7fb;
    --line: #dde6f1;
    --text: #1d2939;
    --muted: #667085;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 26px 70px rgba(7, 17, 31, 0.18);
    --shadow-soft: 0 16px 36px rgba(7, 17, 31, 0.1);
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    font-family: 'Barlow', Arial, sans-serif;
    background: var(--paper);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.site-body,
.site-body * {
    caret-color: transparent;
}

.site-body :where(h1, h2, h3, h4, p, span, strong, small, li, div, section, article, figure, img) {
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

.site-body :where(a, button, .btn, .nav-toggle, .contact-item, .service-card, .visual-card) {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(7, 17, 31, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(7, 17, 31, 0.94);
    box-shadow: 0 12px 28px rgba(7, 17, 31, 0.18);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-contact {
    min-width: 430px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--white);
    font-weight: 900;
}

.hero-logo-mark img.is-hidden {
    display: none;
}

.hero-logo-fallback {
    display: none;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-logo-fallback.is-visible {
    display: inline-flex;
}

.header-phone i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.phone-number {
    font-size: 0.95rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.phone-number + .phone-number {
    position: relative;
    padding-left: 18px;
}

.phone-number + .phone-number::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 750;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 0;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.84);
    background: transparent;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 750;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-dropdown-toggle i {
    font-size: 0.72rem;
    transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 20;
    width: 270px;
    display: none;
    padding: 14px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-dropdown-menu-wide {
    width: min(360px, calc(100vw - 32px));
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
    display: grid;
    gap: 4px;
}

.nav-dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
    min-height: 40px;
    white-space: normal;
    line-height: 1.25;
}

.lazy-map {
    background:
        linear-gradient(135deg, rgba(244, 247, 251, 0.94), rgba(221, 230, 241, 0.94)),
        radial-gradient(circle at center, rgba(0, 169, 200, 0.18), transparent 34%);
}

.site-body .section,
.site-body .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.site-body .hero,
.site-body .site-header {
    content-visibility: visible;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 104px 0 82px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 17, 31, 0.92), rgba(11, 75, 140, 0.72)),
        var(--hero-bg) center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 88%);
    pointer-events: none;
}

.hero-center {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo-mark {
    width: min(1180px, 98vw);
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -8px auto 22px;
    padding: 10px;
    border-radius: var(--radius);
    background: transparent;
    border: 0;
    box-shadow: none;
    animation: logoEnter 900ms cubic-bezier(.2,.9,.2,1) both;
}

.hero-logo-mark img {
    width: auto;
    margin: 0 auto;
    max-height: 348px;
    object-fit: contain;
    filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.48));
    transform: translateX(-62px);
}

.hero-logo-fallback {
    color: var(--white);
    font-size: clamp(3.2rem, 12vw, 8rem);
    text-shadow: 0 22px 48px rgba(0, 0, 0, 0.46);
}

@keyframes logoEnter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero p {
    max-width: 740px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 900;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(197, 31, 44, 0.28);
}

.btn-primary:hover {
    background: #a91824;
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.trust-strip {
    background: var(--ink);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.trust-item {
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.trust-item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item i {
    color: var(--cyan);
    font-size: 1.45rem;
}

.remote-support-band {
    padding: 34px 0 12px;
    background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
}

.remote-support-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 26px;
    border: 1px solid rgba(15, 44, 77, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 253, 0.94)),
        radial-gradient(circle at 92% 12%, rgba(0, 169, 200, 0.16), transparent 34%);
    box-shadow: 0 22px 60px rgba(7, 17, 31, 0.09);
}

.remote-support-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(217, 18, 42, 0.24);
    font-size: 1.45rem;
}

.remote-support-copy .eyebrow {
    margin-bottom: 8px;
}

.remote-support-copy h2 {
    margin-bottom: 8px;
    color: var(--text);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.12;
}

.remote-support-copy p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.65;
}

.remote-support-btn {
    white-space: nowrap;
}

.section {
    padding: 100px 0;
}

.about-section {
    background: linear-gradient(180deg, var(--paper), var(--soft));
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1fr);
    gap: 54px;
    align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
    margin-top: 14px;
    color: var(--navy);
    font-size: clamp(2rem, 3.2vw, 3.35rem);
    line-height: 1.08;
    font-weight: 900;
}

.section-copy p,
.contact-copy p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.06rem;
}

.image-stack {
    position: relative;
    min-height: 430px;
}

.stack-card {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.image-stack:hover img {
    transform: scale(1.025);
}

.stack-main {
    inset: 0 70px 38px 0;
}

.stack-small {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 46%;
    border: 8px solid var(--paper);
}

.visual-band {
    --loop-distance: -1512px;
    padding: 22px 0;
    background: var(--ink);
    overflow: hidden;
}

.visual-track {
    width: max-content;
    display: flex;
    gap: 18px;
    animation: slideTrack 30s linear infinite;
    will-change: transform;
}

.visual-card {
    position: relative;
    width: 360px;
    height: 230px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(rgba(7, 17, 31, 0.1), rgba(7, 17, 31, 0.78)), var(--image) center/cover;
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
}

.visual-card span {
    position: relative;
    z-index: 1;
    max-width: 260px;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.18;
}

@keyframes slideTrack {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(var(--loop-distance));
    }
}

.services-section {
    background:
        linear-gradient(180deg, var(--soft), var(--paper) 34%),
        var(--paper);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.seo-service-summary {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.service-card,
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card-wide {
    position: relative;
    grid-column: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #d8e4f0;
    border-radius: 20px;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(16, 27, 47, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 169, 200, 0.42);
    box-shadow: 0 24px 60px rgba(16, 27, 47, 0.14);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 1px solid rgba(0, 169, 200, 0.28);
    background:
        radial-gradient(circle, rgba(0, 169, 200, 0.24) 1px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.55;
    z-index: 2;
}

.service-photo {
    aspect-ratio: 1.25 / 1;
    min-height: 190px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.24)), var(--service-image);
    background-size: cover;
    background-position: center;
    transition: transform 360ms ease;
}

.service-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.22));
    pointer-events: none;
}

.service-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .service-photo {
    transform: scale(1.025);
}

.service-photo-sign {
    background-image: linear-gradient(rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.24)), url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=700&q=82');
}

.service-photo-seal {
    background-image: linear-gradient(rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.22)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=700&q=82');
}

.service-photo-invoice {
    background-image: linear-gradient(rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.25)), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=700&q=82');
}

.service-photo-computer {
    background-image: linear-gradient(rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.28)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=700&q=82');
}

.service-photo-security {
    background-image: linear-gradient(rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.28)), url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=700&q=82');
}

.service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 158px;
    padding: 20px 24px 24px;
    background:
        radial-gradient(circle at top right, rgba(0, 169, 200, 0.12), transparent 36%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.service-body h3 {
    color: var(--navy);
    font-size: 1.18rem;
    line-height: 1.25;
}

.service-body p {
    margin-top: 10px;
    color: var(--muted);
}

.service-more {
    margin-top: auto;
    padding-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 900;
    font-size: 0.92rem;
}

.service-more i {
    transition: transform var(--transition);
}

.service-card:hover .service-more i {
    transform: translateX(4px);
}

.service-detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 78vh;
    padding: 142px 0 72px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(7, 17, 31, 0.94), rgba(11, 75, 140, 0.78)),
        radial-gradient(circle at 78% 18%, rgba(0, 169, 200, 0.2), transparent 28%),
        var(--ink);
}

.service-detail-hero-bg {
    min-height: 82vh;
    background:
        linear-gradient(90deg, rgba(5, 13, 24, 0.96) 0%, rgba(7, 17, 31, 0.9) 28%, rgba(7, 17, 31, 0.5) 58%, rgba(7, 17, 31, 0.18) 100%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.12), rgba(7, 17, 31, 0.52)),
        var(--service-hero-bg) center / cover no-repeat;
}

.service-detail-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.48;
    pointer-events: none;
}

.service-detail-split {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 40px));
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
    align-items: center;
}

.service-detail-split .service-detail-copy {
    max-width: 700px;
}

.page-hero {
    min-height: 64vh;
}

.compact-page-hero {
    min-height: auto;
    padding: 138px 0 78px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 58px;
    align-items: center;
}

.service-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-weight: 900;
}

.service-detail-copy h1 {
    margin-top: 14px;
    font-size: clamp(2.5rem, 5vw, 5.4rem);
    line-height: 0.98;
    font-weight: 900;
}

.service-detail-copy p {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.14rem;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.service-detail-media {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.service-detail-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.02), rgba(7, 17, 31, 0.22));
}

.service-detail-media img {
    width: 100%;
    height: min(54vh, 520px);
    min-height: 360px;
    object-fit: cover;
}

.service-detail-section {
    background: linear-gradient(180deg, var(--paper), var(--soft));
}

.service-detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 28px;
    align-items: start;
}

.service-detail-panel,
.service-detail-contact,
.service-detail-empty {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.service-detail-panel {
    padding: 34px;
}

.service-detail-panel h2,
.service-detail-empty h1 {
    color: var(--navy);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
}

.service-detail-panel p,
.service-detail-empty p {
    margin-top: 16px;
    color: var(--muted);
}

.service-detail-panel ul {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding-left: 0;
    list-style: none;
}

.service-detail-panel li {
    position: relative;
    padding-left: 34px;
    color: var(--text);
}

.service-detail-panel li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--green);
}

.service-detail-contact {
    display: grid;
    gap: 14px;
    padding: 28px;
}

.service-detail-contact h3 {
    color: var(--navy);
    font-size: 1.35rem;
}

.service-detail-contact p {
    color: var(--muted);
}

.service-detail-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 900;
}

.service-detail-empty {
    max-width: 720px;
    margin: 70px auto 0;
    padding: 42px;
    text-align: center;
}

.service-detail-empty .btn {
    margin-top: 24px;
}

.related-services-section {
    background: var(--paper);
}

.guide-list-section {
    background: linear-gradient(180deg, var(--paper), var(--soft));
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.compact-guides {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.guide-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 20px 52px rgba(16, 27, 47, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.guide-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 169, 200, 0.36);
    box-shadow: 0 28px 70px rgba(16, 27, 47, 0.13);
}

.guide-card img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
}

.guide-card-body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.guide-card-body span {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.guide-card-body h2 {
    color: var(--navy);
    font-size: clamp(1.24rem, 1.8vw, 1.62rem);
    line-height: 1.16;
}

.guide-card-body p {
    color: var(--muted);
}

.guide-card-body strong {
    color: var(--blue);
    font-size: 0.95rem;
}

.article-section {
    background: var(--paper);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 34px;
    align-items: start;
}

.article-content {
    display: grid;
    gap: 32px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 54px rgba(16, 27, 47, 0.07);
}

.article-content h2 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
    line-height: 1.12;
}

.article-content p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.78;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--soft);
}

.faq-item h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1.08rem;
}

.article-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(0, 169, 200, 0.12), transparent 34%),
        #fff;
    box-shadow: 0 20px 54px rgba(16, 27, 47, 0.08);
}

.article-sidebar h2 {
    color: var(--navy);
    font-size: 1.35rem;
}

.article-sidebar p {
    color: var(--muted);
}

.contact-section {
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(7, 17, 31, 0.9), rgba(11, 75, 140, 0.78)),
        var(--contact-bg) center/cover;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 48px;
    align-items: center;
}

.contact-copy h2,
.contact-copy h1,
.contact-copy p {
    color: var(--white);
}

.contact-copy h1 {
    margin-top: 14px;
    font-size: clamp(2.2rem, 4vw, 4.7rem);
    line-height: 1.02;
    font-weight: 900;
}

.contact-page-section {
    min-height: 76vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-info {
    display: grid;
    gap: 14px;
}

.location-section {
    margin-top: -54px;
    padding-top: 58px;
    background: linear-gradient(180deg, var(--paper), var(--soft));
}

.site-body .location-section .location-showcase {
    width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 24px;
    align-items: stretch;
}

.site-body .location-section .location-map-card,
.site-body .location-section .location-photo-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    height: clamp(320px, 26vw, 430px) !important;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 22px 58px rgba(16, 27, 47, 0.12);
}

.site-body .location-section .location-map-card iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    border: 0;
    filter: saturate(0.92) contrast(1.02);
}

.site-body .location-section .location-photo-card {
    position: relative;
}

.site-body .location-section .location-photo-card img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.location-photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 17, 31, 0.56));
}

.location-photo-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.location-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 0 14px;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    background: var(--red);
    font-weight: 900;
}

.contact-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 4px 16px;
    align-items: center;
    min-height: 92px;
    padding: 20px;
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: transform var(--transition), background var(--transition);
}

.contact-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.14);
}

.contact-item i {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
    color: var(--gold);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    font-weight: 800;
}

.contact-item strong {
    color: var(--white);
    font-size: 1.02rem;
    overflow-wrap: anywhere;
}

.site-footer {
    padding: 70px 0 28px;
    background: #06101d;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr) minmax(180px, 0.6fr);
    gap: 46px;
    padding-bottom: 48px;
}

.footer-col h4 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1.18rem;
}

.footer-logo {
    display: block;
    width: min(210px, 80%);
    height: auto;
    margin: -2px 0 20px 28px;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.32));
}

.footer-col p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #a8b5c8;
}

.footer-col i {
    margin-top: 5px;
    color: var(--gold);
}

.footer-col a {
    color: #a8b5c8;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #7f8da3;
    text-align: center;
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 420ms ease, transform 420ms ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1040px) {
    .about-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .admin-service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .image-stack {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .navbar {
        min-height: 70px;
    }

    .header-contact {
        min-width: 0;
        gap: 8px;
    }

    .header-phone {
        gap: 9px;
    }

    .header-phone .phone-number {
        display: inline-flex;
        font-size: 0.86rem;
        max-width: 128px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-phone .phone-number + .phone-number {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        background: rgba(7, 17, 31, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        justify-content: flex-start;
        min-height: 46px;
        text-align: left;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
        min-height: 46px;
        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 6px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 62px;
    }

    .hero-logo-mark {
        min-height: 270px;
        padding: 14px;
        margin-top: -4px;
    }

    .hero-logo-mark img {
        max-height: 250px;
        margin-left: 0;
        transform: translateX(-14px);
    }

    .hero p {
        font-size: 1rem;
    }

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

    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:last-child {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .section {
        padding: 74px 0;
    }

    .section-heading {
        text-align: left;
    }

    .image-stack {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .stack-card {
        position: relative;
    }

    .stack-main,
    .stack-small {
        inset: auto;
        width: 100%;
        height: 240px;
        border: 0;
    }

    .visual-band {
        --loop-distance: var(--loop-distance-mobile);
    }

    .visual-card {
        width: 280px;
        height: 188px;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card-wide {
        min-height: auto;
    }

    .service-photo {
        aspect-ratio: 1.28 / 1;
        height: min(62vw, 250px);
        min-height: 190px;
    }

    .contact-panel {
        gap: 28px;
    }

    .contact-item {
        grid-template-columns: 42px 1fr;
        padding: 18px;
    }

    .contact-item i {
        width: 42px;
        height: 42px;
    }
}

/* Admin preservation */
.admin-body {
    background: #f8f9fa;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
}

.login-card {
    width: min(100%, 420px);
    padding: 34px;
    border-radius: 8px;
    text-align: center;
    background: white;
    color: #333;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.login-card h2 {
    margin: 16px 0 8px;
}

.login-card p {
    margin-bottom: 20px;
    color: #666;
}

.login-logo {
    display: flex;
    justify-content: center;
}

.login-logo img {
    max-height: 60px;
    object-fit: contain;
}

.login-submit {
    width: 100%;
    margin-top: 10px;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 292px;
    padding: 26px 0;
    background: var(--blue);
    color: white;
    overflow-y: auto;
    z-index: 50;
}

.sidebar-header {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-nav {
    list-style: none;
    padding: 18px 12px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.sidebar-category {
    margin: 10px 0;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.sidebar-category summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 6px 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.sidebar-category summary::-webkit-details-marker {
    display: none;
}

.sidebar-category summary::after {
    content: '\f078';
    margin-left: auto;
    font-family: 'Font Awesome 6 Free';
    font-size: 0.72rem;
    font-weight: 900;
    transition: transform var(--transition);
}

.sidebar-category:not([open]) summary::after {
    transform: rotate(-90deg);
}

.sidebar-subnav {
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 278px);
    overflow-y: auto;
    padding-right: 2px;
}

.sidebar-subnav a {
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 0.86rem;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.18;
}

.sidebar-subnav a:hover,
.sidebar-subnav a.is-current {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.admin-content {
    min-height: 100vh;
    margin-left: 292px;
    padding: 34px;
    color: #333;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-link-btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.9rem;
}

.card {
    background: white;
    color: #333;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card p {
    margin-top: 15px;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #374151;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-control-address {
    min-height: 80px;
}

.alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.alert-success {
    background: #ecfdf5;
    color: #047857;
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
}

.admin-section {
    margin-bottom: 22px;
}

.admin-section h3 {
    margin-bottom: 18px;
    color: #111827;
}

.admin-subsection-title {
    margin: 26px 0 16px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.admin-section,
.admin-service-editor,
.admin-guide-editor,
.admin-subsection-title {
    scroll-margin-top: 24px;
}

.admin-grid {
    display: grid;
    gap: 18px;
}

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

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

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

.admin-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
    gap: 24px;
    justify-content: start;
}

.admin-service-editor {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d8e4f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(16, 27, 47, 0.08);
    width: 100%;
    max-width: 320px;
}

.admin-service-add-card {
    min-height: 420px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed #9ccfe0;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(0, 169, 200, 0.14), transparent 36%),
        linear-gradient(180deg, #ffffff, #f8fbff);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(16, 27, 47, 0.06);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.admin-service-add-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 169, 200, 0.72);
    box-shadow: 0 24px 60px rgba(16, 27, 47, 0.12);
}

.admin-service-add-card span {
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff;
    font-size: 4.2rem;
    line-height: 1;
    font-weight: 800;
}

.admin-service-add-card strong {
    font-size: 1.15rem;
}

.admin-guide-list {
    display: grid;
    gap: 22px;
}

.admin-guide-editor {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid #d8e4f0;
    border-radius: 14px;
    background: #f8fafc;
}

.admin-guide-head {
    display: grid;
    gap: 4px;
}

.admin-guide-head span {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-guide-head strong {
    color: var(--navy);
    font-size: 1.3rem;
}

.admin-guide-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-preview-card {
    min-height: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.admin-preview-card .service-photo {
    aspect-ratio: 1.25 / 1;
}

.admin-preview-card .service-body {
    min-height: 150px;
}

.admin-preview-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.service-card-input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    resize: none;
}

.service-card-input:focus {
    background: rgba(11, 75, 140, 0.06);
    box-shadow: 0 0 0 4px rgba(11, 75, 140, 0.08);
}

.service-title-input {
    color: var(--navy);
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 900;
}

.service-desc-input {
    min-height: 92px;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.6;
}

.service-edit-fields {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.admin-hero-preview {
    min-height: 116px;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    border: 1px solid #d8e4f0;
    border-radius: 16px;
    background-color: #102036;
    background-position: center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.admin-hero-preview span {
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.admin-hero-preview-empty {
    background:
        radial-gradient(circle at 80% 12%, rgba(0, 169, 200, 0.16), transparent 35%),
        linear-gradient(135deg, #102036, #143f6c);
}

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

.delete-check {
    color: #b91c1c;
}

.admin-delete-btn {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fff1f2;
    color: #b91c1c;
    cursor: pointer;
    font-weight: 900;
}

.admin-delete-btn:hover {
    background: #ffe4e6;
}

.delete-confirm {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
    padding: 10px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fff7f7;
    color: #7f1d1d;
    font-weight: 800;
}

.delete-confirm[hidden] {
    display: none;
}

.confirm-yes,
.confirm-no {
    min-height: 30px;
    padding: 0 10px;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 900;
}

.confirm-yes {
    background: #dc2626;
    color: #fff;
}

.confirm-no {
    background: #e5e7eb;
    color: #111827;
}

.new-service-box {
    margin-top: 24px;
    padding: 22px;
    border: 1px dashed #9ca3af;
    border-radius: 14px;
    background: #f9fafb;
}

.new-service-editor {
    margin-top: 0;
    padding: 0;
    border-style: solid;
    border-radius: 20px;
    background: #fff;
}

.new-service-editor[hidden] {
    display: none;
}

.service-photo-placeholder {
    background-image:
        radial-gradient(circle at 22% 24%, rgba(0, 169, 200, 0.28), transparent 20%),
        radial-gradient(circle at 78% 72%, rgba(11, 75, 140, 0.22), transparent 22%),
        linear-gradient(135deg, #edf7fb, #ffffff);
}

.new-service-box h4 {
    margin-bottom: 16px;
    color: #111827;
    font-size: 1.05rem;
}

.account-card {
    max-width: 760px;
}

.repeater-item {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
}

.admin-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-weight: 800;
}

.image-field {
    display: grid;
    gap: 10px;
}

.image-field img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.file-control {
    padding: 9px;
    background: #fff;
}

.admin-save-bar {
    position: sticky;
    bottom: 0;
    z-index: 20;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 16px;
    margin: 26px 0 0;
    background: rgba(248, 249, 250, 0.92);
    border-top: 1px solid #e5e7eb;
    backdrop-filter: blur(12px);
}

.admin-save-bar .btn-secondary {
    border-color: #cbd5e1;
    color: #0f172a;
    background: #ffffff;
}

.admin-save-bar .btn-secondary:hover {
    background: #f8fafc;
}

@media (max-width: 980px) {
    .sidebar {
        position: static;
        width: auto;
        max-height: none;
    }

    .sidebar-subnav {
        max-height: none;
    }

    .admin-content {
        margin-left: 0;
        padding: 22px 14px;
    }

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

    .admin-grid.two,
    .repeater-grid,
    .services-admin-grid,
    .admin-guide-blocks,
    .admin-service-list {
        grid-template-columns: 1fr;
    }

    .admin-save-bar {
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .site-body .site-header {
        background: rgba(7, 17, 31, 0.88);
    }

    .site-body .navbar {
        min-height: 64px;
        gap: 12px;
    }

    .site-body .header-phone i,
    .site-body .nav-toggle {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .site-body .nav-links {
        left: 12px;
        right: 12px;
        padding: 10px;
        border-radius: 16px;
    }

    .site-body .nav-links a,
    .site-body .nav-dropdown-toggle {
        justify-content: flex-start;
        text-align: left;
    }

    .site-body .hero {
        min-height: 100svh;
        padding: 86px 0 34px;
        background-position: center top;
    }

    .site-body .hero::before {
        background-size: 42px 42px;
        opacity: 0.55;
    }

    .site-body .hero-center {
        justify-content: center;
        min-height: calc(100svh - 122px);
    }

    .site-body .hero-logo-mark {
        width: 100%;
        min-height: 180px;
        margin: 0 auto 18px;
        padding: 0;
    }

    .site-body .hero-logo-mark img {
        max-width: 94vw;
        max-height: 210px;
        transform: translateX(0);
        filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
    }

    .site-body .hero p {
        max-width: 34rem;
        padding: 0 6px;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .site-body .hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .site-body .btn {
        min-height: 52px;
        border-radius: 14px;
        font-size: 0.98rem;
    }

    .site-body .trust-strip {
        overflow: hidden;
    }

    .site-body .trust-grid {
        width: min(100% - 28px, 1160px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        padding: 10px 0;
        overflow: visible;
    }

    .site-body .trust-item {
        min-height: 50px;
        padding: 8px 8px;
        display: grid;
        grid-template-columns: 22px 1fr;
        gap: 6px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        font-size: 0.72rem;
        line-height: 1.12;
    }

    .site-body .trust-item i {
        font-size: 0.9rem;
        align-self: center;
        justify-self: center;
    }

    .site-body .remote-support-band {
        padding: 18px 0 0;
    }

    .site-body .remote-support-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
    }

    .site-body .remote-support-icon {
        width: 52px;
        height: 52px;
        border-radius: 15px;
        font-size: 1.15rem;
    }

    .site-body .remote-support-copy h2 {
        font-size: 1.35rem;
    }

    .site-body .remote-support-copy p {
        font-size: 0.95rem;
    }

    .site-body .remote-support-btn {
        width: 100%;
    }

    .site-body .section {
        padding: 58px 0;
    }

    .site-body .section-copy h2,
    .site-body .section-heading h2,
    .site-body .contact-copy h2 {
        font-size: clamp(1.75rem, 8vw, 2.45rem);
        line-height: 1.12;
    }

    .site-body .about-grid {
        gap: 28px;
    }

    .site-body .image-stack {
        display: block;
        min-height: 360px;
        padding-bottom: 56px;
    }

    .site-body .stack-main {
        width: 100%;
        height: 270px;
        border-radius: 16px;
    }

    .site-body .stack-small {
        display: block;
        position: absolute;
        right: 8px;
        bottom: 0;
        width: min(72%, 300px);
        height: 150px;
        border: 8px solid var(--white);
        border-radius: 14px;
        box-shadow: 0 20px 44px rgba(16, 27, 47, 0.16);
    }

    .site-body .visual-band {
        padding: 14px 0;
    }

    .site-body .visual-card {
        width: 250px;
        height: 160px;
        padding: 16px;
        border-radius: 14px;
    }

    .site-body .visual-card span {
        font-size: 1rem;
    }

    .site-body .services-showcase {
        gap: 18px;
    }

    .site-body .service-card,
    .site-body .service-card:nth-child(2),
    .site-body .service-card:nth-child(3),
    .site-body .service-card:nth-child(4),
    .site-body .service-card-wide {
        border-radius: 18px;
        box-shadow: 0 14px 30px rgba(16, 27, 47, 0.08);
    }

    .site-body .service-card::before {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .site-body .service-photo {
        aspect-ratio: 1.42 / 1;
        height: min(62vw, 250px);
        min-height: 190px;
    }

    .site-body .service-body {
        min-height: auto;
        padding: 18px 20px 22px;
    }

    .site-body .service-body h3 {
        font-size: 1.14rem;
    }

    .site-body .service-body p {
        font-size: 0.96rem;
    }

    .site-body .contact-section {
        background-position: center;
    }

    .site-body .contact-panel {
        gap: 24px;
    }

    .site-body .location-section .location-showcase {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .site-body .location-section {
        margin-top: -28px;
        padding-top: 46px;
    }

    .site-body .location-section .location-map-card,
    .site-body .location-section .location-photo-card {
        height: 280px !important;
        min-height: 0;
    }

    .site-body .location-section .location-map-card iframe,
    .site-body .location-section .location-photo-card img {
        min-height: 0;
    }

    .site-body .location-photo-copy {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .site-body .contact-item {
        min-height: 82px;
        grid-template-columns: 44px 1fr;
        border-radius: 14px;
    }

    .site-body .contact-item i {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .site-body .site-footer {
        padding: 48px 0 24px;
    }

    .site-body .service-detail-hero {
        min-height: auto;
        padding: 96px 0 46px;
    }

    .site-body .service-detail-hero-bg {
        min-height: 78vh;
        background:
            linear-gradient(90deg, rgba(5, 13, 24, 0.96) 0%, rgba(7, 17, 31, 0.88) 58%, rgba(7, 17, 31, 0.4) 100%),
            var(--service-hero-bg) center / cover no-repeat;
    }

    .site-body .service-detail-grid,
    .site-body .service-detail-split,
    .site-body .service-detail-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-body .guide-grid,
    .site-body .article-layout {
        grid-template-columns: 1fr;
    }

    .site-body .article-sidebar {
        position: static;
    }

    .site-body .service-detail-copy h1 {
        font-size: clamp(2.15rem, 11vw, 3.4rem);
    }

    .site-body .service-detail-copy p {
        font-size: 1rem;
    }

    .site-body .service-detail-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-body .service-detail-media {
        border-radius: 16px;
    }

    .site-body .service-detail-media img {
        height: 250px;
        min-height: 250px;
    }

    .site-body .service-detail-panel,
    .site-body .service-detail-contact,
    .site-body .service-detail-empty {
        padding: 22px;
        border-radius: 16px;
    }
}
