@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: #e2e8f0;
    background: #04050a;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #04050a;
    color: #e2e8f0;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-shell::-webkit-scrollbar {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.95), rgba(2, 6, 23, 0.98));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    gap: 1rem;
}

.site-header__logo {
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.site-header__brand {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.site-header__brand-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.site-header__subline {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(226, 232, 240, 0.5);
    max-width: 260px;
    white-space: normal;
    overflow-wrap: anywhere;
}

.site-header__nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.site-header__nav a {
    text-decoration: none;
    color: #f8fafc;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header__phones-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.site-header__phones {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-header__phone-link {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    color: #a5f3fc;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s ease;
}

.site-header__phone-link:hover {
    border-bottom-color: rgba(165, 243, 252, 0.8);
}

.site-header__nav {
    transition: transform 0.3s ease, opacity 0.3s ease;
    flex: 1;
}

.site-header__cta {
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    color: #0f172a;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.35);
}

.site-header__toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.site-header__toggle span {
    width: 22px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 1px;
}

.site-header__nav {
    display: flex;
    gap: 1rem;
}

.site-header__nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.site-header__nav li {
    list-style: none;
}

.site-header__nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.site-header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.site-header.is-open .site-header__overlay {
    display: block;
    z-index: 30;
}

@media (min-width: 1024px) {
    .site-header {
        justify-content: space-between;
    }

    .site-header__nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(70vw, 720px);
        max-width: 720px;
    }

    .site-header__nav ul {
        justify-content: center;
        width: 100%;
    }

    .site-header__brand,
    .site-header__phones-row {
        flex: 0 0 auto;
    }
}

.site-header.is-open .site-header__nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.floating-contact-stack {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
    z-index: 55;
}

.floating-contact-stack .mobile-call-button {
    position: static;
    right: auto;
    bottom: auto;
}

.mobile-call-button {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background: #22d3ee;
    color: #0f172a;
    padding: 0 1.45rem;
    min-height: 3.45rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 16px 34px rgba(2, 6, 23, 0.5);
}

.mobile-chatbot-button {
    position: relative;
    border: 1px solid rgba(56, 189, 248, 0.65);
    background: linear-gradient(145deg, rgba(14, 116, 144, 0.92), rgba(8, 47, 73, 0.95));
    color: #f0f9ff;
    padding: 0 1.3rem 0 0.95rem;
    min-height: 3.45rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.02rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.5), 0 0 0 1px rgba(125, 211, 252, 0.2) inset;
    transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.mobile-chatbot-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.6), 0 0 0 1px rgba(186, 230, 253, 0.28) inset;
}

.mobile-chatbot-button::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    animation: chatbotPulse 2s ease-out infinite;
    pointer-events: none;
}

.mobile-chatbot-button__icon {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.mobile-chatbot-button__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-chatbot-button__label {
    letter-spacing: 0.02em;
}

.chatbot-widget {
    position: relative;
}

[data-chatbot-panel][hidden] {
    display: none !important;
}

.chatbot-panel {
    position: fixed;
    right: 1rem;
    bottom: calc(1.5rem + 3.3rem);
    width: min(360px, calc(100vw - 2rem));
    max-height: min(520px, 70vh);
    border-radius: 18px;
    border: 1px solid rgba(125, 211, 252, 0.35);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.99));
    box-shadow: 0 28px 52px rgba(2, 6, 23, 0.72);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(10px) scale(0.98);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.chatbot-panel.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chatbot-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.78rem 0.9rem;
    border-bottom: 1px solid rgba(125, 211, 252, 0.22);
    background: linear-gradient(130deg, rgba(14, 116, 144, 0.25), rgba(8, 47, 73, 0.05));
}

.chatbot-panel__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.chatbot-panel__title-wrap strong {
    font-size: 0.95rem;
}

.chatbot-panel__title-wrap span {
    font-size: 0.72rem;
    color: rgba(186, 230, 253, 0.8);
}

.chatbot-panel__close {
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.7);
    color: #e2e8f0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    font-size: 1.15rem;
    cursor: pointer;
    line-height: 1;
}

.chatbot-log {
    padding: 0.9rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 150px;
    max-height: 300px;
}

.chatbot-message {
    max-width: 92%;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.35;
    white-space: pre-wrap;
}

.chatbot-message--assistant {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.25);
    align-self: flex-start;
}

.chatbot-message--user {
    background: rgba(34, 211, 238, 0.2);
    border: 1px solid rgba(34, 211, 238, 0.45);
    align-self: flex-end;
}

.chatbot-actions {
    padding: 0.75rem 0.9rem 0.95rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chatbot-action-btn {
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
    color: #e2e8f0;
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.85rem;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.chatbot-action-btn:hover {
    border-color: rgba(103, 232, 249, 0.7);
    background: rgba(15, 23, 42, 1);
    transform: translateY(-1px);
}

.chatbot-action-btn--primary {
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    color: #0f172a;
    border-color: rgba(14, 165, 233, 0.85);
}

.chatbot-action-btn--ghost {
    background: transparent;
}

.chatbot-input-row {
    display: flex;
    gap: 0.45rem;
    width: 100%;
}

.chatbot-input {
    flex: 1;
    min-width: 120px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.92);
    color: #e2e8f0;
    padding: 0.55rem 0.7rem;
}

@keyframes chatbotPulse {
    0% {
        opacity: 0.75;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(1.08);
    }
    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@media (max-width: 640px) {
    .floating-contact-stack {
        right: 0;
        left: 0;
        bottom: 0.75rem;
        padding: 0 0.75rem;
        flex-direction: row;
        gap: 0.65rem;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
        max-width: 100vw;
    }

    .floating-contact-stack .mobile-call-button,
    .floating-contact-stack .mobile-chatbot-button {
        width: auto;
        position: relative;
        justify-content: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 0;
    }

    .floating-contact-stack .mobile-chatbot-button {
        flex: 1 1 calc(45% - 0.325rem);
        max-width: calc(45% - 0.325rem);
        gap: 0.25rem;
        min-width: 130px;
        padding-left: 0.95rem;
        padding-right: 0.95rem;
    }

    .floating-contact-stack .mobile-call-button {
        flex: 1 1 calc(30% - 0.325rem);
        max-width: calc(30% - 0.325rem);
    }

    .mobile-call-button,
    .mobile-chatbot-button {
        min-height: 3.1rem;
        font-size: 0.96rem;
    }

    .mobile-chatbot-button__icon {
        width: 1.35rem;
        height: 1.35rem;
    }

    .chatbot-panel {
        right: 0.5rem;
        bottom: calc(0.75rem + 3rem);
        width: calc(100vw - 1rem);
    }
}

@media (min-width: 900px) {
    .mobile-call-button {
        padding: 0 1rem;
        min-height: 3rem;
        font-size: 0.98rem;
    }
}

.site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem 5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s ease;
    min-height: 520px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7, 11, 24, 0.9) 0, rgba(7, 11, 24, 0.5) 60%, rgba(7, 11, 24, 0.2) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    max-width: 220px;
    margin: 0 auto 1.5rem;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-eyebrow {
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 0.6rem 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.85);
}

.hero-headline-line {
    display: inline;
}

.hero-headline-line + .hero-headline-line {
    margin-left: 0.35rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.hero-tag {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.4);
    font-size: 0.85rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .hero {
        min-height: 480px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 420px;
    }
}

.section {
    padding: 2rem;
}

.page-section {
    padding: 4rem 1.25rem;
    background: #04050a;
}

.page-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.page-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.4rem;
}

.page-note {
    color: rgba(226, 232, 240, 0.75);
    max-width: 680px;
}

.services-hero {
    margin-top: -2rem;
    padding: 4.5rem 1.25rem;
    background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.25), transparent 45%), linear-gradient(180deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.95));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.services-hero__content {
    max-width: 720px;
}

.services-hero__subtitle {
    max-width: 640px;
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 1.5rem;
}

.services-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn--phone {
    border-color: rgba(226, 232, 240, 0.3);
    color: #f8fafc;
}

.services-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.services-card {
    display: flex;
    gap: 1.25rem;
    background: rgba(6, 11, 24, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    padding: 1.25rem;
    flex-wrap: wrap;
    min-height: 340px;
    overflow: hidden;
}

.services-card--reverse {
    flex-direction: row-reverse;
}

.services-card__media {
    flex: 0 0 clamp(240px, 32vw, 360px);
    width: clamp(240px, 32vw, 360px);
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    max-width: 100%;
    box-sizing: border-box;
}

.services-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    display: none;
}

.services-card__content {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-card__lead {
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.65;
    margin-top: 0;
}

.service-card__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-card__bullets li {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.95rem;
    padding-left: 1rem;
    position: relative;
}

.service-card__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22d3ee;
}

.service-card__actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.service-card__actions .btn-link {
    color: #7dd3fc;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.service-card__actions .btn-link::after {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    margin-left: 0.35rem;
    transform: translateY(-1px);
}

.service-card__actions .btn-link:hover {
    color: #22d3ee;
    border-color: currentColor;
}

.service-card__reviews {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-card__reviews-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #e0f2fe;
}

.service-card__reviews-stars span {
    color: #fcd34d;
    letter-spacing: 0.3em;
}

.service-card__reviews-note {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.9rem;
}

.service-card__rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.service-card__rating-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.7);
}

.service-card__rating-stars {
    display: flex;
    gap: 0.35rem;
}

.service-card__rating-star {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(226, 232, 240, 0.3);
    font-size: 1.25rem;
}

.service-card__rating-star input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-card__rating-star span:first-child {
    display: inline-block;
    transition: color 0.15s ease, transform 0.15s ease;
}

.service-card__rating-star.is-active,
.service-card__rating-star.is-hover,
.service-card__rating-star input:focus-visible ~ span:first-child {
    color: #fcd34d;
}

.service-card__rating-star.is-active span:first-child,
.service-card__rating-star.is-hover span:first-child {
    color: #fcd34d;
    transform: scale(1.2);
}

.service-card__rating-value {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.6);
    transition: color 0.15s ease, font-weight 0.15s ease, opacity 0.15s ease;
    opacity: 0.65;
}

.service-card__rating-star.is-active .service-card__rating-value,
.service-card__rating-star.is-hover .service-card__rating-value {
    opacity: 1;
    font-weight: 700;
    color: #fcd34d;
}

.service-card__rating-submit {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: transparent;
    color: #e2e8f0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.service-card__rating-submit:hover {
    border-color: #22d3ee;
    color: #22d3ee;
}

.service-card__rating-status {
    font-size: 0.75rem;
    color: #22d3ee;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.service-detail-hero {
    border-radius: 36px;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 2rem;
    color: #f8fafc;
    overflow: hidden;
}

.service-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.3), rgba(2, 6, 23, 0.95));
}

.service-detail-hero__content {
    position: relative;
    z-index: 1;
    padding: 4rem 1.25rem 3rem;
}

.service-detail-hero__intro {
    color: rgba(226, 232, 240, 0.8);
    max-width: 720px;
    margin-bottom: 1.25rem;
}

.service-detail-content {
    margin-top: 2rem;
}

.service-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-highlights {
    margin-top: 1.5rem;
}

.service-detail-highlights__grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.service-detail-highlight-card {
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.18);
    background: rgba(15, 23, 42, 0.9);
    padding: 1.5rem;
    min-height: 220px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-detail-highlight-card h3 {
    margin: 0;
}

.service-detail-highlight-card__value {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #7dd3fc;
}

.service-detail-highlight-card p {
    margin: 0;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.6;
}

.service-detail-bullets {
    background: rgba(15, 23, 42, 0.8);
    padding: 1.75rem;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.08);
}

.service-detail-bullets h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.service-detail-bullets ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-detail-bullets li {
    padding-left: 1rem;
    position: relative;
    color: rgba(226, 232, 240, 0.8);
}

.service-detail-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22d3ee;
}

.service-detail-body {
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.9;
    margin-top: 0.5rem;
}

.service-detail-process {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(34, 211, 238, 0.25);
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.95), rgba(3, 7, 18, 0.85));
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.service-detail-process__grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.service-detail-process-step {
    border-radius: 20px;
    padding: 1.25rem 1.3rem;
    background: rgba(8, 12, 24, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: center;
}

.service-detail-process-step__content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-detail-process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    font-weight: 700;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
}

.service-detail-process-step__number span {
    display: block;
    font-size: 0.85rem;
}

.service-detail-process-step__body h3 {
    margin: 0;
    font-size: 1rem;
}

.service-detail-process-step__body p {
    margin: 0.2rem 0 0;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.6;
}

.service-detail-process-step__duration {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #94a3b8;
}

.service-detail-gallery {
    margin-top: 2rem;
}

.service-detail-cta {
    margin-top: 2rem;
}

.service-detail-cta__body {
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid rgba(34, 211, 238, 0.4);
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95), rgba(14, 165, 233, 0.1));
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.service-detail-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    min-width: 240px;
}

.service-detail-cta__note {
    margin: 0;
    color: rgba(226, 232, 240, 0.8);
    max-width: 460px;
}

.service-detail-cta .btn-block {
    min-width: 220px;
}

.service-detail-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-detail-section-header p {
    margin: 0;
    color: rgba(226, 232, 240, 0.7);
}

.service-detail-section-header h2 {
    margin: 0 0 0.5rem;
}

.service-gallery-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.service-gallery-item {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: rgba(2, 6, 23, 0.7);
}

.service-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-gallery-item__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-gallery-item__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.85);
    background: rgba(59, 130, 246, 0.15);
    margin-bottom: 0.45rem;
}

.service-gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.7);
}

.service-detail-reviews {
    margin-top: 2rem;
}

.service-reviews-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.service-review-card {
    background: rgba(3, 7, 18, 0.9);
    border-radius: 20px;
    padding: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.08);
    min-height: 180px;
}

.service-review-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.service-review-card__stars {
    color: #fcd34d;
    letter-spacing: 0.1em;
}

.service-detail-review-form {
    margin-top: 2rem;
    background: rgba(6, 11, 24, 0.7);
    border-radius: 30px;
    padding: 2rem 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.15);
}

.service-review-form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-review-form input,
.service-review-form select,
.service-review-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.15);
    background: rgba(2, 6, 23, 0.6);
    color: #f8fafc;
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
}

.service-review-form textarea {
    resize: vertical;
}

.service-review-form__actions {
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .services-card {
        flex-direction: column;
        min-height: auto;
        gap: 0.9rem;
        border-radius: 24px;
        padding: 1rem;
    }

    .services-card__media {
        width: 100%;
        min-height: 220px;
        border-radius: 20px;
    }

    .services-card__content {
        padding: 1.25rem;
        border-radius: 20px;
        background: rgba(6, 11, 24, 0.85);
    }

    .service-card__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

.contact-page__grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.contact-card {
    border-radius: 20px;
    padding: 1.5rem;
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.15);
    box-shadow: 0 25px 50px rgba(2, 6, 23, 0.45);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(59, 130, 246, 0.15);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.15);
    display: grid;
    place-items: center;
    color: #22d3ee;
    font-size: 1rem;
}

.contact-card__label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #94a3b8;
}

.contact-card__value {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #f8fafc;
}

.contact-card__secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.7);
}

.contact-card__secondary-link {
    color: rgba(226, 232, 240, 0.65);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.contact-card__secondary-link:hover {
    border-bottom-color: rgba(226, 232, 240, 0.4);
}

.contact-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn--wide {
    flex: 1;
    min-width: 150px;
}

.contact-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: rgba(34, 211, 238, 0.18);
    color: #22d3ee;
    width: fit-content;
}

.contact-card__note {
    margin: 0;
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-chip {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(148, 163, 184, 0.2);
}

.contact-social-grid {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
}

.contact-social-chip {
    border-radius: 14px;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 110px;
    justify-content: space-between;
}

.contact-social-chip--empty {
    opacity: 0.6;
}

.contact-social-chip__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #94a3b8;
}

.contact-social-chip__description {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(226, 232, 240, 0.7);
    line-height: 1.4;
}

.contact-social-chip__label i {
    font-size: 1rem;
    color: #22d3ee;
}

.btn--social-chip {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    align-self: flex-start;
}

.contact-social-chip__missing {
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.6);
}

.about-page {
    margin-top: 2rem;
}

.about-page h1 {
    margin-top: 0.25rem;
}

.about-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-hero__text {
    max-width: 700px;
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.8;
}

.about-hero__image img {
    width: min(320px, 100%);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    object-fit: cover;
}

.about-section {
    margin-bottom: 2rem;
}

.about-section h3 {
    margin-bottom: 0.5rem;
}

.about-section--process p {
    max-width: 720px;
    color: rgba(226, 232, 240, 0.8);
}

.about-approach-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.about-approach-card {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
    min-height: 180px;
}

.about-approach-card h4 {
    margin-bottom: 0.35rem;
}

.policy-content {
    margin-top: 1rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
}

.policy-actions {
    margin-top: 2rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.section-summary {
    color: rgba(226, 232, 240, 0.8);
    margin: 0;
}

.section-success {
    color: #34d399;
    font-weight: 600;
    margin: 0.5rem 0 0;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.adv-card {
    background: rgba(2, 6, 23, 0.8);
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    text-align: left;
}

.adv-icon {
    font-size: 1.5rem;
}

.adv-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.adv-card h3 {
    margin: 0.5rem 0;
}

.adv-card p {
    color: rgba(226, 232, 240, 0.8);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.45);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-card__text h3 {
    margin: 0;
    font-size: 1.35rem;
}

.service-card__text p {
    margin: 0.35rem 0 0;
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.5;
}

.service-card__body {
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-actions {
    margin-top: auto;
}

.service-more {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
}

.service-card__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(34, 211, 238, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.service-card__icon i {
    font-size: 1.25rem;
    color: #22d3ee;
}

.premium-service-card {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.7);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.premium-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.7);
}

.premium-service-card__image {
    display: block;
    width: 100%;
    padding-top: 60%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.premium-service-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.75) 80%);
}

.premium-service-card:hover .premium-service-card__image {
    transform: scale(1.02);
}

.premium-service-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.premium-service-card__tagline {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.7);
    margin: 0;
}

.premium-service-card__content h3 {
    margin: 0;
    font-size: 1.6rem;
}

.premium-service-card__content h3 a {
    color: inherit;
    text-decoration: none;
}

.premium-service-card__content p {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.6;
}

.premium-service-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.premium-service-card__actions .btn {
    flex: 1;
    text-align: center;
}

.premium-service-card__actions .btn-ghost {
    border-color: rgba(148, 163, 184, 0.4);
}
.home-how-we-work-section {
    margin: 2rem 0 3rem;
    padding: 3rem 2rem;
    background: rgba(2, 6, 23, 0.85);
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.5);
}

.home-how-we-work-section .section-heading {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.how-we-work-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.how-we-work-card {
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.8);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.how-we-work-card:hover {
    border-color: rgba(34, 211, 238, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(2, 6, 23, 0.45);
}

.how-we-work-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    font-size: 1.4rem;
}

.how-we-work-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.how-we-work-card p {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.6;
}
.services-home-section__cta {
    margin-top: 1.5rem;
    text-align: center;
}

.home-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.home-highlight-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(2, 6, 23, 0.8);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(2, 6, 23, 0.5);
}

.home-highlight-card__header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.home-highlight-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(34, 211, 238, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #22d3ee;
    flex-shrink: 0;
}

.home-highlight-card__label {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.home-highlight-card__note {
    margin: 0.15rem 0 0;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.6);
}

.home-highlight-card__description {
    margin: 0 0 1rem;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.5;
    flex: 1;
}

.home-highlight-card__description + .home-highlight-card__cta {
    margin-top: 0;
}

.home-highlight-card__cta {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.home-highlight-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.home-highlight-card p {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.5;
}
/* ===== AquaGroup-like layout (balanced + correct responsive) ===== */

.reviews-ag-layout{
  width: 100%;
  max-width: 1240px;
  margin: 22px auto 0;
  padding: 0 1rem;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr;
  
  gap: 18px;
  align-items: start;
}

@media (min-width: 861px){
  .reviews-ag-layout{
    grid-template-columns: minmax(0,1fr) minmax(0, 380px);
  }
  .reviews-ag-right{
    position: sticky;
    top: 100px;
  }
}

/* Left grid: 2 колони на desktop/tablet */
.reviews-ag-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile: 1 колона */
@media (max-width: 640px){
  .reviews-ag-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===== Cards (не малки, не плочи) ===== */
.reviews-ag-card{
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 16px;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  word-wrap: break-word;
  overflow: hidden;
}

.reviews-ag-card:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
}

.reviews-ag-card__head{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}

.reviews-ag-card__avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  flex: 0 0 auto;
}

.reviews-ag-card__name{
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}

.reviews-ag-card__text{
  margin: 0;
  opacity: .92;
  font-size: 13.5px;
  line-height: 1.55;
  word-break: break-word;
  hyphens: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  max-height: calc(1.55rem * 4);
}

.reviews-ag-card__date{
  margin-top: 12px;
  font-size: 12px;
  opacity: .65;
}

/* ===== Pagination ===== */
.reviews-ag-pagination{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-ag-pages{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}

.reviews-ag-page{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  font-size: 13px;
  opacity: .9;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.reviews-ag-page:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
}

.reviews-ag-page.is-active{
  opacity: 1;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
}

.reviews-ag-page.is-disabled{
  opacity: .35;
  pointer-events:none;
}

/* ===== Right form (sticky only on desktop/tablet) ===== */
.reviews-ag-right{
  position: static;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.reviews-ag-form-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

/* Mobile: форма да диша */
@media (max-width: 860px){
  .reviews-ag-form-card{
    padding: 14px;
  }
}

.reviews-ag-form-head h3{
  margin: 0;
  font-size: 18px;
}

.reviews-ag-form-head p{
  margin: 6px 0 0;
  opacity: .75;
  font-size: 13px;
}

.reviews-ag-success{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.10);
  font-size: 13px;
}

/* Fields */
.reviews-ag-form{
  margin-top: 14px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.reviews-ag-field span{
  display:block;
  font-size: 13px;
  opacity: .9;
  margin-bottom: 6px;
}

.reviews-ag-field small{
  display:block;
  margin-top: 6px;
  font-size: 12px;
  opacity: .65;
}

.reviews-char-counter {
  font-weight: 600;
  margin-left: 0.25rem;
}

.reviews-ag-field input,
.reviews-ag-field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  padding: 12px;
  outline: none;
  color: #fff;
  font-size: 0.95rem;
  box-sizing: border-box;
  min-width: 0;
}

.reviews-ag-field input::placeholder,
.reviews-ag-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.reviews-ag-field textarea{
  min-height: 130px; /* нормално, не огромно */
  resize: vertical;
}

.reviews-ag-field input:focus,
.reviews-ag-field textarea:focus{
  border-color: rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.22);
}

/* Stars row */
.reviews-ag-stars{
  display:flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}

.reviews-ag-star{
  cursor:pointer;
  user-select:none;
  opacity:.55;
  transition: opacity .12s ease, transform .12s ease;
}
.reviews-ag-star:hover{ opacity: .9; transform: translateY(-1px); }

.reviews-ag-star input{
  position:absolute;
  opacity:0;
  pointer-events:none;
  width:1px;
  height:1px;
  margin:0;
  padding:0;
  border:0;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
}
.reviews-ag-star span{ font-size: 20px; line-height: 1; color: rgba(255,255,255,0.4); transition: color .12s ease; }
.reviews-ag-star.is-selected span,
.reviews-ag-star:hover span{
  color: #fbbf24;
}

/* Submit */
.reviews-ag-submit{
  margin-top: 6px;
  width: 100%;
  border-radius: 14px;
  padding: 12px 14px;
  border: none;
  cursor: pointer;
  font-weight: 800;
}
.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 1.25rem;
    background: rgba(2, 6, 23, 0.8);
    text-align: center;
}

.step-number {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: #94a3b8;
}

.area-text {
    max-width: 900px;
    margin: 0 auto 1rem;
    color: rgba(226, 232, 240, 0.85);
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.area-list span {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.review-stars {
    color: #f97316;
    font-size: 1.15rem;
}

.review-text {
    color: rgba(226, 232, 240, 0.85);
}

.review-author {
    font-weight: 600;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-list details {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.75);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contacts-intro {
    max-width: 900px;
    margin: 0 auto 1rem;
    color: rgba(226, 232, 240, 0.85);
    text-align: center;
}

.contact-grid div {
    border-radius: 16px;
    padding: 1.25rem;
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-grid a {
    color: #22d3ee;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-grid a.btn,
.contact-grid a.btn-primary {
    color: #0f172a;
}

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(120deg, #22d3ee, #7dd3fc);
    color: #0f172a;
}

.btn-ghost {
    border-color: rgba(148, 163, 184, 0.4);
    color: #e2e8f0;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.form-section .section-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.section-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
}

.section-form input,
.section-form textarea {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.8);
    padding: 0.85rem;
    color: #f8fafc;
}

.section-form .required {
    color: #f97316;
    font-size: 0.85rem;
}

.form-success {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: #a5f3fc;
    text-align: center;
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
}

.site-footer {
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(180deg, #020617 0%, #040b1e 60%, #020617 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    color: #e2e8f0;
}

.site-footer__body {
    max-width: 1100px;
    margin: 0 auto 1rem;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer__column {
    background: rgba(15, 23, 42, 0.75);
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.45);
}

.site-footer__column--contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

.site-footer__contact-link {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    text-decoration: none;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.site-footer__contact-link:hover {
    border-color: rgba(34, 197, 94, 0.8);
    background: rgba(34, 197, 94, 0.1);
}

.site-footer__contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #94a3b8;
}

.site-footer__contact-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: #f8fafc;
}

.site-footer__contact-note {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.8);
}

.site-footer__link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.site-footer__link-list a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
}

.site-footer__link-list a:hover {
    color: #22d3ee;
}

.site-footer__social-grid {
    display: grid;
    gap: 0.5rem;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
}

.site-footer__social-link i {
    font-size: 1rem;
    color: #38bdf8;
}

.site-footer__social-link.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: rgba(59, 130, 246, 0.2);
}

.site-footer__bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding: 0.75rem 0 0;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.site-footer__links a:hover {
    color: #22d3ee;
}

.site-footer__credits {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.82rem;
}

.site-footer__credits small {
    flex: 1 1 auto;
    min-width: 0;
}

.site-footer__credits-social {
    flex: 0 0 auto;
}

.site-footer__powered {
    margin-left: auto;
    flex: 0 0 auto;
}

.site-footer__powered-link img {
    height: 125px;
    width: auto;
    display: block;
    object-fit: contain;
}

.site-footer__powered-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.site-footer__powered-link:hover,
.site-footer__powered-link:focus-visible {
    opacity: 1;
}

.site-footer__credits-social {
    display: flex;
    gap: 0.35rem;
}

.site-footer__credits-social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(226, 232, 240, 0.3);
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: border-color 0.2s ease;
}

.site-footer__credits-social a:hover {
    border-color: #38bdf8;
}

@media (max-width: 640px) {
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__links {
        order: 2;
    }

    .site-footer__credits {
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .site-footer__powered {
        margin-left: 0;
        order: -1;
    }

    .site-footer__powered-link {
        padding: 0.5rem 0;
        width: 100%;
    }

    .site-footer__powered-link img {
        height: 100px;
        width: auto;
        margin: 0 auto;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: min(540px, 90vw);
}

.cookie-banner__cta {
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    background: #22d3ee;
    color: #0f172a;
    font-weight: 600;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.cookie-banner__link {
    color: #22d3ee;
    font-size: 0.85rem;
    text-decoration: underline;
}

.cookie-banner__reject {
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: transparent;
    color: #f8fafc;
    font-weight: 600;
}

@media (max-width: 768px) {
    .site-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .site-header__toggle {
        display: flex;
        order: 1;
        margin-left: auto;
    }

    .site-header__nav {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        background: rgba(2, 6, 23, 0.95);
        border-radius: 16px;
        padding: 1.25rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 40;
        order: 2;
    }

    .site-header__nav ul {
        flex-direction: column;
    }

    .site-header__phones-row {
        width: 100%;
        order: 3;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
    }

    .site-header__phones {
        flex: 1;
        min-width: 150px;
    }

    .site-header__brand {
        gap: 0.4rem;
    }

    .site-header__logo {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    .site-header__subline {
        font-size: 0.65rem;
        max-width: 160px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .site-header__overlay {
        display: none;
    }

    .site-header.is-open {
        background: rgba(3, 7, 18, 1);
    }

    .hero {
        padding: 3rem 1rem 4rem;
    }

    .hero h1 {
        font-size: 2rem;
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
        word-spacing: 0.2em;
    }

    .hero-headline-line + .hero-headline-line {
        display: block;
        margin-left: 0;
        margin-top: 0.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section {
        padding: 1.5rem 1rem;
    }

    .site-header__actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* Admin area */
.admin-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #020617;
    color: #e2e8f0;
}

.admin-header {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(226, 232, 240, 0.15);
    background: rgba(2, 6, 23, 0.95);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
}

.admin-brand__label {
    font-size: 1.2rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
}

.admin-brand__subline {
    display: block;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.65);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.admin-header__toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.admin-header__toggle span {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 1px;
    display: block;
}

.admin-user {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.admin-logout {
    text-decoration: none;
    color: #22d3ee;
    font-weight: 600;
    font-size: 0.85rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    padding: 2rem;
    flex: 1;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.15);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.admin-nav__item {
    text-decoration: none;
    color: #e2e8f0;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.admin-nav__item:hover,
.admin-nav__item.is-active {
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
}

.admin-nav__badge {
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #f97316;
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.6rem;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.admin-main {
    background: #04050a;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 25px 50px rgba(2, 6, 23, 0.6);
}

.admin-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 18;
}


.admin-main--centered {
    margin: 3rem auto;
    width: min(520px, 90vw);
}

.admin-card {
    background: rgba(2, 6, 23, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 20px;
    padding: 2rem;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.5);
}

.admin-review-moderation {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 15px 35px rgba(2, 6, 23, 0.5);
}

.admin-review-moderation__status {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.admin-review-table {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.admin-review-table__row {
    display: grid;
    grid-template-columns: minmax(200px, 1.6fr) 1fr 1fr auto;
    gap: 0.75rem;
    border-radius: 14px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.9);
    align-items: center;
}

.admin-review-table__row:nth-child(odd) {
    background: rgba(15, 23, 42, 0.95);
}

.admin-review-table__cell {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.admin-review-table__author {
    font-weight: 600;
    color: #f8fafc;
}

.admin-review-table__date {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.7);
}

.admin-review-table__text {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.admin-review-table__rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
}

.admin-review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.admin-review-actions .admin-btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
}

.admin-review-actions .admin-btn--outline {
    background: transparent;
    border-color: rgba(248, 250, 252, 0.4);
}

.admin-review-table__empty {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.35);
    text-align: center;
    color: #dbeafe;
}

.admin-review-badge {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .admin-review-table__row {
        grid-template-columns: 1fr;
    }

    .admin-review-actions {
        justify-content: flex-start;
    }
}

.admin-detail-toggle-wrapper {
    margin-top: 1rem;
}

.admin-detail-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.8);
    padding: 0.65rem 1.1rem;
    background: rgba(14, 165, 233, 0.12);
    color: #7dd3fc;
    font-size: 0.95rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    font-weight: 600;
}

.admin-detail-toggle:hover,
.admin-detail-toggle.is-open {
    border-color: #7dd3fc;
    color: #7dd3fc;
    background: rgba(34, 211, 238, 0.15);
}

.admin-detail-toggle__icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.admin-detail-toggle.is-open .admin-detail-toggle__icon {
    transform: rotate(180deg);
}

.admin-detail-panel {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(3, 7, 18, 0.85);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.admin-detail-panel[hidden] {
    display: none;
}

.admin-detail-grid {
    display: grid;
    gap: 1rem;
}

.admin-detail-section {
    display: grid;
    gap: 0.75rem;
}

.admin-detail-section__title {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #94a3b8;
}

.admin-detail-row {
    display: grid;
    gap: 0.35rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.admin-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (max-width: 640px) {
    .admin-detail-row {
        gap: 0.5rem;
    }
}

.admin-auth-card h1,
.admin-section h1,
.admin-section h2 {
    margin: 0.4rem 0 1rem;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.admin-form--settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.admin-form__group {
    grid-column: 1 / -1;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-form__group-heading {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.admin-form__group-title {
    margin: 0;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.7);
}

.admin-form__group-description {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.65);
}

.admin-form--settings .admin-form__label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-form__label--span-full {
    grid-column: 1 / -1;
}

.hero-slideshow-manager__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hero-slideshow-manager__empty {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.5);
}

.hero-slide-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.9);
    align-items: start;
}

.hero-slide-item .admin-form__label {
    grid-column: 2 / -1;
    width: 100%;
}

.hero-slide-preview {
    width: 100px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.1);
}

.hero-slide-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-slide-actions__button {
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: transparent;
    color: #e2e8f0;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    cursor: pointer;
}

.hero-slide-actions__button:hover {
    border-color: rgba(59, 130, 246, 0.6);
    color: #93c5fd;
}

.hero-slideshow-manager__meta {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hero-slideshow-upload__hint {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.6);
}

.hero-slideshow-manager [data-hero-slide-upload-inputs] {
    display: none;
}

.admin-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.admin-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.65rem;
    align-items: stretch;
}

.admin-section-card {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.8);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-services-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-service-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    flex-wrap: wrap;
}

.admin-service-card__header-preview {
    width: 108px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(148, 163, 184, 0.1);
}

.admin-service-card__header-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-service-card__header-content {
    flex: 1;
    min-width: 0;
}

.admin-service-card__header-actions {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    align-items: center;
}

.admin-service-card__summary-description {
    margin-top: 0.35rem;
    margin-bottom: 0;
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.9rem;
    line-height: 1.4;
}

.admin-gallery-card {
    padding: 0.75rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.admin-gallery-card__preview {
    position: relative;
    padding-top: 50%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.15);
    background: rgba(15, 23, 42, 0.5);
}

.admin-gallery-card__preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-gallery-card__preview::after {
    content: "";
    position: absolute;
    bottom: 0.25rem;
    right: 0.25rem;
    width: 53px;
    height: 53px;
    background-image: url("/assets/img/kanalivik.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.85;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.65));
}

.admin-gallery-card form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.admin-gallery-card form .admin-form__label.admin-form__textarea-label {
    grid-column: 1 / -1;
}

.admin-gallery-card form .admin-form__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    gap: 0.4rem;
}

@media (max-width: 768px) {
    .admin-service-card__header {
        flex-direction: column;
    }
    .admin-service-card__header-preview {
        width: 100%;
        height: 180px;
    }
    .admin-service-card__header-actions {
        justify-content: flex-start;
    }
}

.admin-service-card__panel {
    margin-top: 1rem;
}

.admin-service-card__preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.admin-service-card__preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: clamp(160px, 25vw, 280px);
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.1);
}

.admin-service-card__preview p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.75);
}

.admin-form__label--file {
    width: 100%;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-form__label--file .admin-form__input[type="file"] {
    border: 1px dashed rgba(226, 232, 240, 0.35);
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: rgba(5, 9, 18, 0.7);
    color: #e2e8f0;
}

.admin-service-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-service-gallery {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-service-gallery__header h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.admin-service-gallery__header p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.6);
}

.admin-service-gallery__new {
    background: rgba(2, 6, 23, 0.85);
}

.admin-service-gallery__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.admin-section-card__image {
    width: 100%;
    border-radius: 12px;
    height: 160px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.admin-section-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.6);
}

.admin-section-card__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.admin-section-card__slug {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
    margin: 0;
}

.admin-section-card__toggle {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.admin-section-card__checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.9);
}

.admin-section-card textarea {
    min-height: 120px;
    font-family: "JetBrains Mono", "Fira Code", "SFMono-Regular", ui-monospace, monospace;
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 10px;
    color: #e2e8f0;
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
    resize: vertical;
}

.admin-form__textarea-label textarea {
    width: 100%;
}

.admin-form__label {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.7);
}

.admin-form__note {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: none;
    color: rgba(226, 232, 240, 0.6);
}

.admin-form__note--success {
    color: #4ade80;
}

.admin-form__note--error {
    color: #f87171;
}

.hero-slideshow-manager__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hero-slideshow-manager__empty {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.5);
}

.hero-slide-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.9);
    align-items: start;
}

.hero-slide-preview {
    width: 100px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.1);
}

.hero-slide-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-slide-actions__button {
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: transparent;
    color: #e2e8f0;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    cursor: pointer;
}

.hero-slide-actions__button:hover {
    border-color: rgba(59, 130, 246, 0.6);
    color: #93c5fd;
}

.hero-slideshow-manager__meta {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hero-slideshow-upload {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-slideshow-upload input[type="file"] {
    border: 1px dashed rgba(148, 163, 184, 0.4);
    border-radius: 10px;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.9);
    color: #e2e8f0;
}

.hero-slideshow-upload__label {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.75);
}

.hero-slideshow-upload__hint {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.6);
}

.admin-form__input {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 10px;
    color: #e2e8f0;
    padding: 0.85rem 1rem;
    font-size: 1rem;
}

.admin-form__textarea {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 10px;
    color: #e2e8f0;
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
    resize: vertical;
    min-height: 120px;
    font-family: "JetBrains Mono", "Fira Code", "SFMono-Regular", ui-monospace, monospace;
}

.admin-service-card {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    background: rgba(5, 9, 18, 0.9);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-service-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-btn--outline {
    border: 1px solid rgba(226, 232, 240, 0.4);
    background: transparent;
    color: #e2e8f0;
}

.admin-btn--ghost {
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.65);
    color: #e2e8f0;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.admin-btn--ghost:hover {
    border-color: rgba(59, 130, 246, 0.6);
    color: #93c5fd;
}

.admin-service-card__header-actions .admin-btn {
    margin: 0;
}

.admin-service-card__upload-button {
    background: rgba(59, 130, 246, 0.12);
}

.admin-section-card__checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.9);
}
.admin-btn {
    margin-top: 1rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    color: #0f172a;
    padding: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-error {
    color: #fb7185;
    font-weight: 600;
}

.admin-section {
    margin-bottom: 1.5rem;
}

.admin-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-section__header--space h2 {
    margin-bottom: 0.25rem;
}

.admin-stat-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.admin-stat-card {
    border-radius: 16px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-stat-card__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(226, 232, 240, 0.7);
}

.admin-stat-card__value {
    font-size: 2rem;
    font-weight: 600;
}

.admin-note {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.9rem;
}

.admin-note--success {
    color: #22d3ee;
}

.admin-note--error {
    color: #fb7185;
}

.admin-form__checkbox {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
}

.admin-form__checkbox input {
    width: auto;
}

.admin-form__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.admin-table {
    margin-top: 1.5rem;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(2, 6, 23, 0.9);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    text-align: left;
    vertical-align: top;
}

.admin-table thead {
    background: rgba(15, 23, 42, 0.95);
}

.admin-table--wide table {
    min-width: 940px;
}

.admin-table__message {
    max-width: 260px;
    word-break: break-word;
}

.admin-table__payload,
.admin-chatbot-transcript {
    margin: 0.35rem 0 0;
    white-space: pre-wrap;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.9);
    font-family: "JetBrains Mono", "Fira Code", "SFMono-Regular", ui-monospace, monospace;
}

.gallery-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.gallery-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.15);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.8);
    box-shadow: 0 20px 35px rgba(8, 15, 30, 0.4);
}

.gallery-card__image {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

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

.gallery-card__image::after {
    content: "";
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 103px;
    height: 103px;
    background-image: url("/assets/img/kanalivik.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    pointer-events: none;
    transform: rotate(3deg);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.45));
}

.gallery-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gallery-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.15);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    background: rgba(2, 6, 23, 0.95);
    z-index: 60;
}

.gallery-lightbox.is-visible {
    display: flex;
}

.gallery-lightbox__content {
    width: 100%;
    max-width: 960px;
    position: relative;
}

.gallery-lightbox__content::after {
    content: "";
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 121px;
    height: 121px;
    background-image: url("/assets/img/kanalivik.png");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.65));
    opacity: 0.85;
    pointer-events: none;
}

.gallery-lightbox__image {
    width: 100%;
    border-radius: 1rem;
    object-fit: contain;
    max-height: 70vh;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.6);
}

.gallery-lightbox__text {
    margin-top: 1.25rem;
    color: #e2e8f0;
}

.gallery-lightbox__tag {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #8ddbf5;
}

.gallery-lightbox__close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.85);
    color: #e2e8f0;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.gallery-lightbox__close:hover {
    background: rgba(34, 211, 238, 0.2);
}

.gallery-lightbox__content p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .gallery-card__image {
        padding-top: 75%;
    }
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.admin-badge--spam {
    background: rgba(248, 113, 113, 0.15);
    color: #fb7185;
}

.admin-badge--primary {
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
}

.admin-badge--success {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
}

.admin-badge--warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.admin-badge--error {
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
}

@media (max-width: 900px) {
    .admin-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .admin-header__actions {
        order: 2;
        width: 100%;
        justify-content: space-between;
    }

    .admin-header__toggle {
        display: flex;
    }

    .admin-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .admin-nav {
        position: fixed;
        top: 5.5rem;
        right: 1rem;
        left: 1rem;
        background: rgba(2, 6, 23, 0.95);
        border-radius: 16px;
        padding: 1.25rem;
        gap: 0.75rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 25;
    }

    .admin-shell.is-admin-nav-open .admin-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .admin-shell.is-admin-nav-open .admin-nav__overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .admin-nav__overlay {
        display: block;
        z-index: 18;
    }

.admin-nav__item {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .admin-actions {
        width: 100%;
        justify-content: space-between;
    }

    .admin-main {
        padding: 1.25rem;
    }
}
