:root {
    --color-bg: #050505;
    --color-surface: #101010;
    --color-surface-2: #151515;
    --color-text: #f5f5f5;
    --color-muted: #b7b7b7;
    --color-accent: #c9a25d;
    --color-border: rgba(255, 255, 255, 0.12);
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.35);
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--color-text);
    background: radial-gradient(circle at top right, #1c1610, var(--color-bg) 45%);
    scroll-behavior: auto;
}

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

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

.container {
    width: min(var(--container), 92%);
    margin-inline: auto;
}

.section {
    padding: 88px 0;
}

.site-main > .section {
    position: relative;
}

.site-main > .section + .section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--container), 92%);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(201, 162, 93, 0) 0%,
        rgba(201, 162, 93, 0.35) 18%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(201, 162, 93, 0.35) 82%,
        rgba(201, 162, 93, 0) 100%
    );
    box-shadow: 0 0 14px rgba(201, 162, 93, 0.22);
    pointer-events: none;
}

.page-hero {
    padding: 46px 0 48px;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    margin: 0;
    max-width: 980px;
}

.site-main > .page-hero + .section {
    padding-top: 48px;
}

.section h1,
.section h2,
.section h3 {
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 0;
}

h1 {
    font-size: clamp(2rem, 4vw, 4rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    margin-bottom: 14px;
}

p {
    color: var(--color-muted);
    line-height: 1.72;
}

.section__lead {
    max-width: 760px;
    margin-bottom: 24px;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    background: #fff;
    color: #000;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 1100;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(5, 5, 5, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}

.logo img {
    display: block;
    width: 212px;
    height: auto;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    flex-shrink: 0;
    position: relative;
    padding-left: 16px;
}

.logo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11.5 12 4l9 7.5'/%3E%3Cpath d='M6 10.5V20h12v-9.5'/%3E%3Cpath d='M10 20v-5h4v5'/%3E%3C/svg%3E");
}

.nav__list {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    list-style: none;
    align-items: center;
}

.nav.is-open {
    display: block;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 18px;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--color-border);
    max-height: calc(100vh - 82px);
    overflow-y: auto;
}

.nav.is-open .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}

.nav.is-open .nav__list > li {
    width: 100%;
}

.nav.is-open .nav__link,
.nav.is-open .nav__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 1.05rem;
    font-weight: 600;
}

.nav.is-open .nav__item--dropdown > .nav__button {
    font-weight: 500;
}

.nav.is-open .nav__link::after,
.nav.is-open .nav__button::after {
    display: none;
}

.nav.is-open .nav__link[href*="uviyty"] {
    background: linear-gradient(120deg, #dfc284, var(--color-accent));
    color: #1a1a1a;
    border-color: #d4b06d;
    box-shadow: 0 8px 22px rgba(201, 162, 93, 0.28);
}

.nav.is-open .nav__link[href*="reiestratsiia"] {
    background: rgba(201, 162, 93, 0.12);
    color: #f3ddb0;
    border-color: rgba(201, 162, 93, 0.45);
}

.nav.is-open .mega-menu {
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    min-width: 100%;
    margin-top: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    padding-top: 8px;
}

.nav.is-open .mega-menu a {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 6px 0;
}

.nav.is-open .nav__item--dropdown .nav__button {
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.nav__link {
    color: #f9f9f9;
    font-size: 0.95rem;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
    transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link.is-active::after {
    width: 100%;
}

.nav__button {
    background: transparent;
    border: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    white-space: nowrap;
    padding: 0;
}

.nav__item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(18, 18, 18, 0.9);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(6px);
    visibility: hidden;
    transition: all 0.24s ease;
}

.nav__item:hover .mega-menu,
.nav__item:focus-within .mega-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.mega-menu a {
    color: #f0f0f0;
    opacity: 0.9;
}

.mega-menu a:hover {
    color: var(--color-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    overflow: hidden;
    position: relative;
}

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

.btn--gold {
    background: linear-gradient(120deg, #dfc284, var(--color-accent));
    color: #1a1a1a;
    border-color: #d4b06d;
    box-shadow: 0 10px 24px rgba(201, 162, 93, 0.32);
}

.btn--ghost {
    background: transparent;
    color: #fff;
}

.btn__ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.62)),
        url("../images/hero-bg-alt.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
}

.hero__kicker {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.hero__title {
    font-size: clamp(2.2rem, 5.4vw, 4.8rem);
    margin: 10px 0 16px;
}

.hero__subtitle {
    font-size: 1.1rem;
}

.hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero__stats {
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero__stats li {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.hero__stats strong {
    display: block;
    font-size: 1.8rem;
    color: #fff;
}

.hero__glow {
    display: none;
}

.about-premium__container {
    width: min(1280px, 92%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(60px, 5vw, 80px);
    align-items: center;
}

.about-premium__media {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.about-premium__media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.45s ease;
}

.about-premium__media:hover img {
    transform: scale(1.04);
}

.about-premium__content h2 {
    margin-bottom: 18px;
}

.about-premium__content p {
    margin: 0 0 14px;
    color: #d3d3d3;
}

.about-premium__features {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-premium__features .card {
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 600;
    color: #f1f1f1;
    border-color: rgba(201, 162, 93, 0.22);
    background: linear-gradient(150deg, rgba(31, 31, 31, 0.92), rgba(12, 12, 12, 0.95));
}

.about-premium__cta {
    margin-top: 26px;
}

.brands,
.stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brands span,
.stack span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
}

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

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

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

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

.card {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(28, 28, 28, 0.9), rgba(10, 10, 10, 0.92));
    box-shadow: var(--shadow-soft);
    transition: transform 0.26s ease, border-color 0.26s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 93, 0.5);
}

a.card.portfolio-card {
    color: inherit;
    text-decoration: none;
    display: block;
}

.case {
    scroll-margin-top: 120px;
}

.portfolio-shot {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.portfolio-shot__frame {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-bottom: 1px solid var(--color-border);
}

.portfolio-shot__chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 14px 10px;
}

.portfolio-shot__chrome span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.portfolio-shot__chrome span:nth-child(1) {
    background: #ff5f57;
}

.portfolio-shot__chrome span:nth-child(2) {
    background: #febc2e;
}

.portfolio-shot__chrome span:nth-child(3) {
    background: #28c840;
}

.portfolio-shot__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0b0b;
}

.portfolio-shot__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}

.portfolio-shot:hover .portfolio-shot__media img {
    transform: scale(1.035);
}

.portfolio-shot__body {
    padding: 20px 22px 22px;
}

.portfolio-shot__body h2,
.portfolio-shot__body h3 {
    margin-bottom: 8px;
}

.portfolio-shot__body p {
    margin: 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--color-border);
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    border-color: rgba(201, 162, 93, 0.45);
    transform: translateY(-4px);
}

.service-card--large {
    padding: 30px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    margin: 0;
    flex: 1 1 auto;
}

.service-card .btn {
    margin-top: 18px;
    align-self: center;
    text-align: center;
    min-width: 150px;
}

.process h2 {
    text-align: center;
}

.services h2 {
    text-align: center;
}

.faq h2 {
    text-align: center;
}

.reviews h2 {
    text-align: center;
}

.reviews .card span {
    display: block;
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.card--cta {
    text-align: center;
}

.timeline {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.timeline li {
    padding: 18px;
    border-left: 3px solid var(--color-accent);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.timeline span {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
}

.accordion details {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 10px;
}

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

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.filter {
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: transparent;
    color: #f5f5f5;
    padding: 9px 14px;
    cursor: pointer;
}

.filter.is-active {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.price {
    color: var(--color-accent);
    font-size: 1.3rem;
    font-weight: 700;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border-bottom: 1px solid var(--color-border);
    padding: 12px;
    text-align: left;
}

.table-wrap th:not(:first-child),
.table-wrap td:not(:first-child) {
    text-align: center;
}

.table-wrap {
    overflow-x: auto;
}

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

input,
textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: #101010;
    color: #fff;
    padding: 12px 14px;
}

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

label {
    display: block;
    margin: 14px 0 8px;
}

.required-mark {
    color: var(--color-accent);
}

.form__status {
    margin-top: 12px;
}

.form .btn {
    margin-top: 12px;
}

.form .btn + .form__status {
    margin-top: 10px;
}

#contact-form .btn {
    margin-top: 14px;
}

#contact-form {
    scroll-margin-top: 250px;
}

.auth__container {
    max-width: 640px;
}

.auth .card {
    padding: clamp(24px, 3vw, 36px);
}

.auth .card h1 {
    margin-bottom: 16px;
}

.auth .card > p {
    margin: 0 0 22px;
}

.auth-form {
    display: grid;
    gap: 10px;
}

.auth-form label {
    margin: 8px 0 6px;
}

.auth-form input {
    margin: 0;
}

.auth-form__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.auth-form__actions .btn {
    margin-top: 0;
}

.auth-form__reset {
    font-weight: 600;
    color: var(--color-text);
    opacity: 0.9;
}

.auth-form__reset:hover {
    color: var(--color-accent);
}

.auth-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
    line-height: 1.5;
}

.auth-form__checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 2px 0 0;
    flex: 0 0 auto;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.auth-form__checkbox span {
    color: var(--color-text);
}

.auth-form__checkbox a {
    color: var(--color-accent);
}

.auth-form__checkbox a:hover {
    color: #dfc284;
}

.auth-form__submit {
    margin-top: 6px;
    justify-self: center;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 8px;
}

.contact-messengers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.map-wrapper iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 14px;
    margin-top: 14px;
}

.footer {
    border-top: 1px solid var(--color-border);
    margin-top: 80px;
    padding: 56px 0 34px;
}

.footer__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

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

.messenger-pill {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    color: #f5f5f5;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.messenger-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 162, 93, 0.56);
    background: rgba(255, 255, 255, 0.08);
}

.messenger-pill img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.messenger-pill--telegram {
    color: #66b3ff;
}

.messenger-pill--viber {
    color: #c8a8ff;
}

.messenger-pill--whatsapp {
    color: #65d98b;
}

.footer__bottom {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer__bottom p {
    margin: 0;
}

.breadcrumbs {
    padding: 16px 0 0;
}

.breadcrumbs__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: min(var(--container), 92%);
    display: flex;
    gap: 8px;
    color: #9f9f9f;
    font-size: 0.92rem;
}

.breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
}

.thanks-page .card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 44px);
}

.thanks-page__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    background: radial-gradient(circle at 30% 30%, #f5d18e, var(--color-accent));
    color: #1a1a1a;
    box-shadow: 0 14px 30px rgba(201, 162, 93, 0.34);
}

.thanks-page__lead {
    margin: 0 auto 24px;
    max-width: 620px;
}

.thanks-page__warning {
    color: #f5d18e;
}

.thanks-page__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    z-index: 1200;
    background: linear-gradient(90deg, #fff, var(--color-accent));
}

.loading-screen {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1200;
    background: #040404;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-screen__brand {
    font-size: clamp(1.4rem, 4vw, 2.6rem);
    letter-spacing: 0.2em;
    color: var(--color-accent);
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 8px;
}

.burger span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0;
}

.header__cta {
    white-space: nowrap;
}

@media (max-width: 1280px) {
    .header__inner {
        gap: 12px;
    }

    .nav__list {
        gap: 12px;
    }

    .nav__link,
    .nav__button {
        font-size: 0.88rem;
    }

    .header__cta {
        padding: 11px 18px;
        font-size: 0.92rem;
    }

    .logo img {
        width: 188px;
    }

    .logo {
        padding-left: 15px;
    }

    .logo::before {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 1180px) {
    .section {
        padding: 72px 0;
    }

    .page-hero {
        padding: 38px 0 40px;
    }

    .site-main > .page-hero + .section {
        padding-top: 40px;
    }

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

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

    .about-premium__container {
        grid-template-columns: 45% 1fr;
        gap: 48px;
    }

    .about-premium__media img {
        min-height: 420px;
    }

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

    .nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .burger {
        display: block;
    }

    .service-card .btn {
        width: 100%;
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 66px 0;
    }

    .page-hero {
        padding: 30px 0 32px;
    }

    .site-main > .page-hero + .section {
        padding-top: 32px;
    }

    .grid--2,
    .grid--3,
    .grid--4,
    .hero__stats {
        grid-template-columns: 1fr;
    }

    .about-premium__container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-premium__media img {
        min-height: 280px;
    }

    .about-premium__features {
        grid-template-columns: 1fr;
    }

    .header__inner {
        min-height: 74px;
    }

    .logo img {
        width: 186px;
    }

    .logo {
        padding-left: 14px;
    }

    .logo::before {
        width: 14px;
        height: 14px;
    }

    .service-card .btn {
        width: 100%;
        max-width: 260px;
    }

    .footer__messengers {
        justify-content: flex-start;
    }

    #contact-form {
        scroll-margin-top: 120px;
    }

}

@media (min-width: 1181px) {
    .header__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 14px;
    }

    .nav {
        min-width: 0;
    }

    .nav__list {
        width: 100%;
    }

    .nav__list > li:nth-last-child(2) { /* Keitaro: keep in main row */ }

    .nav__list > li:nth-last-child(2)::after { content: none; }

    .nav__item--dropdown {
        cursor: default;
    }

    .nav__item--dropdown > .nav__button {
        pointer-events: none;
        cursor: default !important;
    }
}


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