/* ============================================================
   CSS Variables
   ============================================================ */
:root {
    --navy:       #1C2B4A;
    --accent:     #E85C1A;
    --accent-dark:#C94E10;
    --warm-white: #F8F5F0;
    --beige:      #F0EDE7;
    --text-dark:  #1E1E1E;
    --text-muted: #6B6B6B;
    --card-bg:    #FFFFFF;
    --footer-bg:  #141E30;
    --footer-text:#8A9BB5;
    --radius-sm:  8px;
    --radius-md:  12px;
    --shadow-sm:  0 2px 16px rgba(0,0,0,0.08);
    --shadow-md:  0 6px 24px rgba(0,0,0,0.14);
    --shadow-btn: 0 4px 14px rgba(232,92,26,0.35);
    --transition: all 0.2s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--warm-white);
}

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

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    padding: 0;
}

ul, ol {
    list-style: none;
}

/* ============================================================
   Typography
   ============================================================ */
h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section--light { background: var(--warm-white); }
.section--beige { background: var(--beige); }
.section--dark  { background: var(--navy); }

.section__title {
    text-align: center;
    margin-bottom: 48px;
}

.section__title--left {
    text-align: left;
}

.section__title--white {
    color: #FFFFFF;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
}

.btn--primary {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: var(--shadow-btn);
    padding: 16px 32px;
    min-height: 52px;
}
.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,92,26,0.45);
}
.btn--primary:active {
    transform: translateY(0);
}

.btn--outline-white {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.8);
    padding: 14px 28px;
    min-height: 52px;
}
.btn--outline-white:hover,
.btn--outline-white:focus-visible {
    background: rgba(255,255,255,0.12);
    border-color: #FFFFFF;
}

.btn--lg {
    font-size: 17px;
    padding: 16px 32px;
    min-height: 52px;
}

.btn--sm {
    font-size: 15px;
    padding: 10px 20px;
    min-height: 40px;
}

.btn--full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

.btn__spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.btn--loading .btn__text { display: none; }
.btn--loading .btn__spinner { display: block; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   Sticky Header
   ============================================================ */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: var(--navy);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    display: none;
    align-items: center;
}

.sticky-header.is-visible {
    display: flex;
}

.sticky-header__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.sticky-header__brand {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 15px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-header__contacts {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
}

.sticky-header__messenger {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s;
}
.sticky-header__messenger:hover { color: #FFFFFF; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    align-self: flex-start;
}

.hero__h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.4;
}

.hero__description {
    font-size: 17px;
    color: #B0BED4;
    line-height: 1.65;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 6px;
}

.hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

.hero__messenger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    transition: transform 0.2s, opacity 0.2s;
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    min-width: 44px;
    min-height: 44px;
}
.hero__messenger:hover { transform: scale(1.1); opacity: 0.9; }
.hero__messenger--tg  { background: rgba(36,161,222,0.2); color: #24A1DE; }
.hero__messenger--wa  { background: rgba(37,211,102,0.2); color: #25D366; }
.hero__messenger--vk  { background: rgba(0,119,255,0.2); color: #0077FF; }
.hero__messenger--max { background: rgba(255,92,0,0.2); }

.hero__image-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero__photo {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-md);
    object-fit: cover;
    object-position: top center;
}

.hero__photo-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.15);
    border: 2px dashed rgba(255,255,255,0.15);
}

/* ============================================================
   Cards (shared)
   ============================================================ */
.card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 28px 24px;
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card__icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.card__icon--sm {
    font-size: 40px;
    margin-bottom: 12px;
}

.card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.card__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   Services grid
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-strip {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.service-strip__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    border-right: 1px solid var(--beige);
}

.service-strip__item:last-child { border-right: none; }

.service-strip__item i {
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================================
   Advantages grid
   ============================================================ */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.advantages-grid .card--advantage {
    flex: 0 0 calc((100% - 48px) / 3);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-swiper { display: none; }

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    display: block;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,43,74,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.25s;
}

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay {
    opacity: 1;
}

.gallery-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
}

.gallery-empty a {
    color: var(--accent);
    text-decoration: underline;
}

/* Swiper slides */
.gallery-swiper .swiper-slide img {
    width: 100%;
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,15,25,0.92);
}

.lightbox__inner {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox__inner img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
    display: block;
}

.lightbox__caption {
    color: rgba(255,255,255,0.75);
    margin-top: 12px;
    font-size: 15px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    z-index: 2;
    color: #FFFFFF;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 22px;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { top: 50%; left: 20px;  transform: translateY(-50%); }
.lightbox__next  { top: 50%; right: 20px; transform: translateY(-50%); }

/* ============================================================
   Related services
   ============================================================ */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 32px;
}

.related-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.5;
    padding: 6px 0;
}

.related-item i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================================
   Contacts + Form
   ============================================================ */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contacts-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: -32px;
    margin-bottom: 24px;
}

.form-field {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-input {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    background: #FFFFFF;
    border: 2px solid #D9D5CF;
    border-radius: var(--radius-sm);
    transition: border-color 0.2s;
    line-height: 1.4;
    min-height: 52px;
}

.form-input::placeholder { color: #999; font-size: 16px; }

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,92,26,0.15);
}

.form-input.is-invalid {
    border-color: #DC3545;
}

.form-error {
    display: block;
    color: #DC3545;
    font-size: 14px;
    margin-top: 4px;
    min-height: 18px;
}

.form-consent {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 12px;
    text-align: center;
}

.link-btn {
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    background: none;
    border: none;
    padding: 0;
}

.form-success,
.form-fail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    font-size: 17px;
}

.form-success[hidden],
.form-fail[hidden] { display: none; }

.form-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-fail {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.form-success i,
.form-fail i {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-success strong,
.form-fail strong {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.form-success a,
.form-fail a {
    color: inherit;
    text-decoration: underline;
}

/* Contacts info block */
.contacts-info {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(28,43,74,0.12);
}

.contacts-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

.contacts-phone:hover { color: var(--accent); }

.contacts-phone i {
    font-size: 22px;
    color: var(--accent);
}

.contacts-area {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 15px;
    color: var(--text-muted);
}

.contacts-area i { color: var(--accent); }

.contacts-messengers {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    align-items: center;
}

.contacts-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 26px;
    transition: transform 0.2s, opacity 0.2s;
    min-width: 44px;
    min-height: 44px;
}

.contacts-msg:hover { transform: scale(1.1); }
.contacts-msg--tg  { background: rgba(36,161,222,0.12); color: #24A1DE; }
.contacts-msg--wa  { background: rgba(37,211,102,0.12); color: #25D366; }
.contacts-msg--vk  { background: rgba(0,119,255,0.12);  color: #0077FF; }
.contacts-msg--max { background: rgba(255,92,0,0.12); }

/* Map image */
.contacts-map-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #e8e4de;
}

.contacts-map-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.contacts-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 420px;
    color: #6B6B6B;
    font-size: 15px;
    text-align: center;
    padding: 20px;
}

.contacts-map-placeholder i {
    font-size: 48px;
    opacity: 0.4;
}

.contacts-map-placeholder small {
    font-size: 13px;
    opacity: 0.7;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--footer-bg);
    padding: 32px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__copy {
    color: var(--footer-text);
    font-size: 14px;
    order: 1;
}

.footer__links {
    order: 2;
}

.footer__link {
    color: var(--footer-text);
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
    font-family: 'Nunito', sans-serif;
    background: none;
    border: none;
    padding: 0;
}

.footer__link:hover { color: #FFFFFF; }

.footer__contacts {
    order: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-text);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__phone:hover { color: #FFFFFF; }

.footer__messengers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__msg {
    color: var(--footer-text);
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s;
    min-width: 44px;
    min-height: 44px;
}

.footer__msg:hover { color: #FFFFFF; }

/* ============================================================
   Modal
   ============================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal[hidden] { display: none; }

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20,30,48,0.75);
    cursor: pointer;
}

.modal__box {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy);
    transition: background 0.2s;
}

.modal__close:hover { background: #ddd; }

.modal__body h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.modal__body h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 18px;
}

.modal__body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Hidden honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ============================================================
   Responsive — Tablet (max 1200px)
   ============================================================ */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }
    h1 { font-size: 36px; }
    .hero__inner { grid-template-columns: 55% 45%; gap: 32px; }
    .services-grid { gap: 20px; }
    .advantages-grid .card--advantage { flex: 0 0 calc((100% - 24px) / 2); }
}

/* ============================================================
   Responsive — Tablet (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 18px; }
    body { font-size: 16px; }

    .section { padding: 56px 0; }
    .section__title { margin-bottom: 32px; }

    .sticky-header__brand { display: none; }
    .sticky-header__phone { font-size: 15px; }

    .hero {
        padding: 56px 0;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__image-wrap {
        display: none;
    }

    .hero__h1 { font-size: 28px; }
    .hero__subtitle { font-size: 18px; }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-strip {
        flex-direction: column;
    }
    .service-strip__item {
        border-right: none;
        border-bottom: 1px solid var(--beige);
    }
    .service-strip__item:last-child { border-bottom: none; }

    .advantages-grid .card--advantage { flex: 0 0 100%; }

    .gallery-grid { display: none; }
    .gallery-swiper { display: block; }

    .related-grid { grid-template-columns: repeat(2, 1fr); }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contacts-map-wrap { display: none; }

    .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer__copy, .footer__links, .footer__contacts { order: unset; }
}

/* ============================================================
   Responsive — Mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    h1 { font-size: 24px; }
    h2 { font-size: 22px; }

    .hero { padding: 48px 0; }
    .hero__h1 { font-size: 24px; }
    .hero__subtitle { font-size: 17px; }
    .hero__buttons { flex-direction: column; gap: 10px; }
    .hero__buttons .btn { width: 100%; justify-content: center; }
    .hero__trust { gap: 6px; }
    .hero__trust-item { font-size: 13px; padding: 6px 10px; }

    .btn--lg { font-size: 16px; min-height: 48px; }

    .related-grid { grid-template-columns: 1fr; }

    .card { padding: 20px 18px; }

    .contacts-phone { font-size: 22px; }

    .modal__box { padding: 24px 20px; }
}

/* ============================================================
   Focus-visible (accessibility)
   ============================================================ */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}
 
 
 
