:root {
    --bg: #eef6fd;
    --bg-2: #f8fbff;
    --surface: #ffffff;
    --surface-2: #e7f1fc;
    --text: #173047;
    --text-soft: #334657;
    --muted: #637181;
    --line: rgba(23, 63, 103, 0.14);
    --brand: #326eb0;
    --brand-2: #173f67;
    --accent: #4bbeff;
    --accent-soft: #dff3ff;
    --green: #2e7a4d;
    --green-soft: #e6f5ec;
    --danger: #a23d35;
    --success: #2e7a4d;
    --white: #ffffff;
    --shadow-sm: 0 12px 30px rgba(23, 63, 103, 0.08);
    --shadow-md: 0 24px 70px rgba(23, 63, 103, 0.13);
    --shadow-lg: 0 32px 90px rgba(23, 63, 103, 0.17);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 24px;
    --container: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 11% 5%, rgba(75, 190, 255, 0.22), transparent 28rem),
        radial-gradient(circle at 93% 4%, rgba(50, 110, 176, 0.14), transparent 26rem),
        linear-gradient(180deg, #f8fbff 0%, var(--bg) 52%, #e5f0fa 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.52;
    background-image:
        linear-gradient(rgba(23, 63, 103, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 63, 103, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 96px 0;
}

.js .reveal-target {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js .reveal-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js .reveal-target {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.section-tint {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
        rgba(231, 241, 252, 0.74);
}

.section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-head > p:not(.eyebrow),
.final-copy > p:not(.eyebrow),
.trust-accent > p,
.lead {
    color: var(--text-soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--brand));
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--text);
    letter-spacing: -0.04em;
    text-wrap: balance;
}

h1 {
    max-width: 920px;
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.96;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3.7vw, 48px);
    line-height: 1.04;
}

h3 {
    margin-bottom: 10px;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.14;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    max-width: 740px;
    margin-bottom: 28px;
    font-size: clamp(18px, 1.75vw, 22px);
    line-height: 1.55;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 0;
    background: linear-gradient(180deg, rgba(238, 246, 253, 0.92), rgba(238, 246, 253, 0.72));
    border-bottom: 1px solid rgba(23, 63, 103, 0.06);
    backdrop-filter: blur(18px);
    transition: padding 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.header-shell {
    overflow: hidden;
    border: 1px solid rgba(216, 226, 235, 0.96);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 58px rgba(23, 63, 103, 0.12);
    transition: border-radius 0.28s ease, box-shadow 0.28s ease;
}

.header-top {
    display: grid;
    grid-template-columns: minmax(320px, auto) 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 78px;
    padding: 14px 22px;
    transition: min-height 0.28s ease, padding 0.28s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}

.brand img {
    width: 56px;
    height: 56px;
    margin-right: 14px;
    border: 4px solid var(--white);
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(23, 63, 103, 0.15);
}

.brand span {
    display: grid;
    gap: 5px;
    max-width: 360px;
    line-height: 1.03;
}

.brand b {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.brand small {
    color: var(--brand);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.nav-toggle {
    display: none;
    justify-self: end;
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: var(--surface);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(23, 63, 103, 0.08);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.header-phone-box {
    display: grid;
    justify-items: end;
    gap: 7px;
}

.header-phone-box small {
    max-width: 235px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.25;
    text-align: right;
}

.phone-hours {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: none;
    min-height: 30px;
    padding: 5px 13px;
    border: 1px solid rgba(50, 110, 176, 0.18);
    border-radius: 999px;
    color: var(--brand-2);
    background: var(--accent-soft);
    font-size: 13px;
    font-weight: 950;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.phone-hours::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-right: 7px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--white) 0 2px, transparent 2px),
        var(--brand);
    box-shadow: inset 0 0 0 2px var(--brand);
}

.phone-link {
    color: var(--text);
    font-size: 21px;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 4vw, 72px);
    min-height: 60px;
    padding: 0 22px;
    border-top: 1px solid rgba(23, 63, 103, 0.1);
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition:
        min-height 0.28s ease,
        padding 0.28s ease,
        opacity 0.22s ease,
        transform 0.28s ease,
        border-color 0.28s ease;
}

.main-nav a,
.footer-grid a {
    color: inherit;
    text-decoration: none;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 60px;
    padding: 0 4px;
    border: 1px solid transparent;
    border-radius: 0;
    color: var(--brand-2);
    font-size: 16px;
    font-weight: 900;
    transition: 0.2s ease;
}

.main-nav a:hover,
.footer-grid a:hover,
.phone-link:hover {
    color: var(--brand);
}

.main-nav a:hover {
    border-bottom-color: var(--brand);
    background: transparent;
}

.site-header.is-collapsed {
    padding: 4px 0;
    background: rgba(238, 246, 253, 0.9);
    box-shadow: 0 10px 30px rgba(23, 63, 103, 0.08);
}

.site-header.is-collapsed .header-shell {
    border-radius: 15px;
    box-shadow: 0 12px 32px rgba(23, 63, 103, 0.09);
}

.site-header.is-collapsed .header-top {
    min-height: 48px;
    padding: 5px 16px;
}

.site-header.is-collapsed .brand img {
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-width: 3px;
    border-radius: 11px;
}

.site-header.is-collapsed .brand span {
    gap: 2px;
}

.site-header.is-collapsed .brand b {
    font-size: 17px;
}

.site-header.is-collapsed .brand small {
    font-size: 12px;
}

.site-header.is-collapsed .phone-link {
    font-size: 18px;
}

.site-header.is-collapsed .phone-hours {
    min-height: 22px;
    padding: 3px 10px;
    font-size: 11px;
}

.site-header.is-collapsed .phone-hours::before {
    width: 9px;
    height: 9px;
    margin-right: 6px;
}

.site-header.is-collapsed .header-actions {
    gap: 12px;
}

.site-header.is-collapsed .header-actions .header-calc {
    min-height: 44px;
    min-width: 196px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 14px;
}

.site-header.is-collapsed .header-calc .btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.site-header.is-collapsed .main-nav {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top-color: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.site-header.is-collapsed .main-nav a {
    min-height: 0;
}

.header-calc {
    min-height: 58px;
    min-width: 230px;
    padding: 0 24px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, #2f85e7, var(--brand));
    border-color: rgba(50, 110, 176, 0.28);
    box-shadow: 0 18px 34px rgba(23, 63, 103, 0.18);
}

.header-calc:hover {
    color: var(--white);
    box-shadow: 0 24px 48px rgba(23, 63, 103, 0.24);
}

.header-calc .btn-icon {
    position: relative;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.header-calc .btn-icon::before,
.header-calc .btn-icon::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    height: 2px;
    background: currentColor;
}

.header-calc .btn-icon::before {
    top: 6px;
    box-shadow: 0 5px 0 currentColor;
}

.header-calc .btn-icon::after {
    bottom: 4px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    box-shadow: 0 18px 34px rgba(23, 63, 103, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 24px 48px rgba(23, 63, 103, 0.28);
}

.btn-secondary {
    color: var(--brand);
    background: linear-gradient(180deg, #fff, #f4f9ff);
    border-color: rgba(50, 110, 176, 0.18);
    box-shadow: 0 14px 28px rgba(23, 63, 103, 0.08);
}

.header-actions .header-calc {
    min-height: 58px;
    min-width: 230px;
    padding: 0 24px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, #2f85e7, var(--brand));
    border-color: rgba(50, 110, 176, 0.28);
    box-shadow: 0 18px 34px rgba(23, 63, 103, 0.18);
}

.header-actions .header-calc:hover {
    color: var(--white);
    background: linear-gradient(135deg, #1f75d7, var(--brand-2));
    border-color: rgba(50, 110, 176, 0.42);
    box-shadow: 0 24px 48px rgba(23, 63, 103, 0.24);
}

.hero {
    padding-top: 58px;
    overflow: hidden;
}

.hero::before,
.hero::after,
.final-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(1px);
}

.hero::before {
    top: 46px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(75, 190, 255, 0.28), transparent 68%);
}

.hero::after {
    left: -180px;
    bottom: -190px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(50, 110, 176, 0.16), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.76fr);
    gap: 34px;
    align-items: start;
}

.hero-copy {
    position: relative;
    min-width: 0;
    padding: 46px 0 0;
}

.benefit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 32px;
}

.benefit-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid rgba(50, 110, 176, 0.14);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 24px rgba(23, 63, 103, 0.06);
    font-size: 14px;
    font-weight: 850;
}

.benefit-row span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(75, 190, 255, 0.18);
}

.hero-visual {
    position: relative;
    max-width: 850px;
}

.hero-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(210px, 0.72fr);
    gap: 12px;
    align-items: stretch;
}

.hero-photo-stack {
    display: grid;
    gap: 12px;
}

.hero-photo {
    position: relative;
    min-width: 0;
    min-height: 210px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius);
    background: #d9e8f6;
    box-shadow: var(--shadow-md);
}

.hero-photo-main {
    min-height: 432px;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hero-photo-main img {
    object-position: center center;
}

.hero-photo-stack .hero-photo:first-child img {
    object-position: 42% 44%;
}

.hero-photo-stack .hero-photo:last-child img {
    object-position: center 58%;
}

.hero-photo:hover img {
    transform: scale(1.035);
}

.hero-photo figcaption {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    max-width: calc(100% - 28px);
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(23, 63, 103, 0.78);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-photo-stack .hero-photo:first-child figcaption {
    top: auto;
    bottom: 14px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.before-after figure {
    position: relative;
    min-width: 0;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius);
    background: #d9e8f6;
    box-shadow: var(--shadow-md);
}

.works-grid .before-after figure {
    min-height: 190px;
    border-radius: 20px;
    box-shadow: none;
}

.before-after img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.before-after figure:hover img {
    transform: scale(1.035);
}

.before-after figcaption,
.photo-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.before-after figcaption {
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    color: var(--white);
    background: rgba(23, 63, 103, 0.78);
    backdrop-filter: blur(10px);
}

.photo-badge {
    right: 14px;
    bottom: 14px;
    padding: 8px 13px;
    color: var(--brand-2);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(23, 63, 103, 0.16);
}

.hero-form,
.lead-form {
    position: relative;
}

.hero-form {
    position: sticky;
    top: 124px;
}

.lead-form {
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.94)),
        var(--surface);
    box-shadow: var(--shadow-lg);
}

.lead-form::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 190, 255, 0.24), transparent 68%);
    pointer-events: none;
}

.form-head {
    position: relative;
    margin-bottom: 20px;
}

.form-head h3 {
    margin-bottom: 8px;
    font-size: 26px;
}

.form-head p:not(.eyebrow) {
    color: var(--text-soft);
    font-size: 15px;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.field span {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(23, 63, 103, 0.16);
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.88);
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input,
textarea {
    padding: 0 16px;
}

select {
    padding: 0 42px 0 16px;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--brand) 50%),
        linear-gradient(135deg, var(--brand) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(50, 110, 176, 0.56);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(75, 190, 255, 0.18);
}

input::placeholder,
textarea::placeholder {
    color: #91a0ae;
}

input[type="file"] {
    padding: 13px 14px;
    cursor: pointer;
}

.file-field small {
    color: var(--muted);
    font-size: 12px;
}

.lead-form .btn {
    width: 100%;
    margin-top: 4px;
}

.form-note {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.form-status {
    min-height: 20px;
    margin: 12px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 850;
}

.form-status.is-error {
    color: var(--danger);
}

.form-status.is-success {
    color: var(--success);
}

.lead-form.is-loading {
    opacity: 0.82;
}

.lead-form button[disabled] {
    cursor: wait;
    filter: grayscale(0.15);
}

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

.service-area-section {
    padding-top: 34px;
}

.service-area-card {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
    gap: 28px;
    align-items: center;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(191, 216, 239, 0.72);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.92)),
        var(--surface);
    box-shadow: var(--shadow-md);
}

.service-area-copy p:not(.eyebrow) {
    color: var(--text-soft);
}

.service-area-note {
    display: grid;
    gap: 5px;
    margin: 22px 0;
    padding: 16px 18px;
    border: 1px solid rgba(50, 110, 176, 0.2);
    border-radius: 16px;
    color: var(--brand-2);
    background: rgba(231, 241, 252, 0.82);
}

.service-area-note strong {
    color: var(--text);
    font-size: 16px;
}

.service-area-note span {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
}

.service-area-map {
    position: relative;
    min-height: 280px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(216, 226, 235, 0.95);
    border-radius: var(--radius);
    background: #eef6fd;
    box-shadow: var(--shadow-sm);
}

.service-area-map img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.service-area-map figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--brand-2);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(23, 63, 103, 0.14);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.work-card,
.service-item,
.service-payment,
.price-card,
.price-note,
.fabric-card,
.card,
.final-contact-card,
.trust-proof,
.legal {
    border: 1px solid rgba(216, 226, 235, 0.86);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.work-card {
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.work-card .before-after {
    gap: 14px;
    padding: 14px 14px 0;
}

.work-card .before-after figure:first-child {
    border-radius: 20px;
}

.work-card .before-after figure:last-child {
    border-radius: 20px;
}

.works-grid .before-after figure {
    min-height: clamp(280px, 27vw, 390px);
}

.work-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
    gap: 10px 26px;
    align-items: start;
    padding: 24px 26px 26px;
}

.work-body h3 {
    grid-column: 1 / -1;
    max-width: 760px;
}

.work-body p {
    max-width: 760px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.55;
}

.work-body b {
    color: var(--text);
}

.work-body dl {
    display: grid;
    grid-column: 2;
    grid-row: 2 / span 2;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
}

.work-body dl > div {
    padding: 12px;
    border-radius: 12px;
    background: rgba(231, 241, 252, 0.78);
}

.work-body dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-body dd {
    margin: 3px 0 0;
    color: var(--text);
    font-weight: 950;
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.service-layout,
.price-layout,
.fabric-layout,
.trust-layout,
.final-grid {
    display: grid;
    gap: 34px;
}

.service-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

.sticky-head {
    position: sticky;
    top: 130px;
    margin-bottom: 0;
}

.media-pair {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 12px;
    margin-top: 28px;
}

.media-pair figure,
.fabric-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #d9e8f6;
    box-shadow: var(--shadow-sm);
}

.media-pair img,
.fabric-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.media-pair figcaption,
.fabric-photo span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 13px;
    border-radius: 12px;
    color: var(--white);
    background: rgba(23, 63, 103, 0.78);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 900;
}

.service-list {
    display: grid;
    gap: 16px;
}

.service-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px;
    border-radius: var(--radius);
}

.service-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    box-shadow: 0 16px 34px rgba(23, 63, 103, 0.18);
    font-size: 22px;
    font-weight: 950;
}

.service-item p,
.fabric-card p,
.card p,
.service-payment p,
.price-note p {
    color: var(--text-soft);
}

.service-payment {
    padding: 24px;
    border-radius: var(--radius);
    color: #163321;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.22)),
        var(--green-soft);
}

.service-payment h3 {
    color: #163321;
}

.reviews-section {
    overflow: hidden;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
    gap: 28px;
    align-items: center;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(191, 216, 239, 0.72);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.92)),
        var(--surface);
    box-shadow: var(--shadow-md);
}

.reviews-copy {
    max-width: 520px;
}

.reviews-copy p:not(.eyebrow) {
    color: var(--text-soft);
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    margin-top: 22px;
    padding: 0 18px;
    border: 1px solid rgba(50, 110, 176, 0.28);
    border-radius: 999px;
    color: var(--brand-2);
    background: rgba(231, 241, 252, 0.92);
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
}

.reviews-link:hover {
    color: var(--brand);
    background: var(--white);
}

.reviews-widget {
    min-height: 620px;
    overflow: hidden;
    border: 1px solid rgba(216, 226, 235, 0.95);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.reviews-widget iframe {
    display: block;
    width: 100%;
    height: 620px;
    border: 0;
}

.price-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
    align-items: start;
}

.price-points {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.price-points li {
    position: relative;
    padding-left: 30px;
    color: var(--text-soft);
    font-weight: 800;
}

.price-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    font-size: 12px;
    font-weight: 950;
}

.price-column {
    display: grid;
    gap: 16px;
}

.price-card {
    overflow: hidden;
    border-radius: var(--radius);
}

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

th,
td {
    padding: 20px 22px;
    text-align: left;
    border-bottom: 1px solid rgba(23, 63, 103, 0.1);
}

th {
    color: var(--muted);
    background: rgba(231, 241, 252, 0.9);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

td {
    color: var(--text-soft);
    font-weight: 820;
}

td:last-child {
    color: var(--brand);
    font-size: 19px;
    font-weight: 950;
    text-align: right;
    white-space: nowrap;
}

tr:last-child td {
    border-bottom: 0;
}

.price-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "title button"
        "text button";
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(75, 190, 255, 0.2), transparent 18rem),
        rgba(255, 255, 255, 0.92);
}

.price-note h3 {
    grid-area: title;
    margin-bottom: 4px;
}

.price-note p {
    grid-area: text;
}

.price-note .btn {
    grid-area: button;
    min-width: 210px;
    white-space: normal;
}

.fabric-section {
    overflow: hidden;
}

.fabric-section::before {
    content: "";
    position: absolute;
    top: 90px;
    left: 50%;
    width: min(720px, 90vw);
    height: min(720px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50, 110, 176, 0.12), transparent 70%);
    transform: translateX(-50%);
    z-index: -1;
}

.fabric-layout {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
}

.fabric-content {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 18px;
}

.fabric-photo {
    min-height: 100%;
}

.fabric-photo img {
    height: 100%;
    min-height: 430px;
}

.fabric-list {
    display: grid;
    gap: 16px;
}

.fabric-card,
.card {
    position: relative;
    padding: 24px;
    border-radius: var(--radius);
}

.fabric-card::before,
.card::before {
    content: "";
    display: block;
    width: 46px;
    height: 6px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--brand));
}

.trust-section {
    padding-top: 70px;
}

.trust-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
}

.trust-accent {
    position: relative;
    padding: 34px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(23, 63, 103, 0.9), rgba(50, 110, 176, 0.82)),
        url('/assets/img/process.jpg') center / cover;
    box-shadow: var(--shadow-lg);
}

.trust-accent h2,
.trust-accent h3,
.trust-accent p {
    color: var(--white);
}

.trust-accent > p {
    opacity: 0.82;
}

.trust-proof {
    margin-top: 48px;
    padding: 24px;
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.trust-proof p {
    opacity: 0.86;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 16px;
}

.card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.final-section {
    overflow: hidden;
}

.final-section::before {
    right: -240px;
    bottom: -260px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(75, 190, 255, 0.22), transparent 69%);
}

.final-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
    align-items: center;
}

.final-copy {
    max-width: 640px;
}

.final-contact-card {
    display: inline-grid;
    gap: 6px;
    margin-top: 30px;
    padding: 22px 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
}

.final-contact-card h3 {
    margin: 0;
    font-size: 17px;
}

.final-contact-card a {
    color: var(--brand);
    font-size: 26px;
    font-weight: 950;
    text-decoration: none;
}

.site-footer {
    padding: 44px 0 100px;
    color: rgba(255, 255, 255, 0.76);
    background: #173f67;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1fr auto;
    gap: 24px;
    align-items: start;
}

.footer-grid strong,
.footer-grid span {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 950;
}

.footer-grid p {
    margin: 0;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

.footer-grid a + a {
    margin-top: 8px;
}

.copyright {
    justify-self: end;
    white-space: nowrap;
}

.mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: none;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 50px rgba(23, 63, 103, 0.22);
    backdrop-filter: blur(16px);
}

.mobile-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 12px;
    color: var(--text);
    background: #fff;
    font-size: 15px;
    font-weight: 950;
    text-align: center;
    text-decoration: none;
}

.mobile-bar a:last-child {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
}

.problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    color: var(--brand);
    background: var(--accent-soft);
}

.problem-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Страницы документов */
.text-page {
    background:
        radial-gradient(circle at 0% 0%, rgba(75, 190, 255, 0.2), transparent 30rem),
        var(--bg);
}

.legal {
    max-width: 900px;
    margin-block: 56px;
    padding: 42px;
    border-radius: var(--radius-lg);
}

.legal h1 {
    font-size: clamp(34px, 5vw, 54px);
}

.legal h2 {
    margin-top: 28px;
    font-size: 28px;
}

.legal p {
    color: var(--text-soft);
}

.back-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-bottom: 24px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1120px) {
    .header-top {
        grid-template-columns: minmax(210px, auto) auto;
    }

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

    .header-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
        border-top: 1px solid rgba(23, 63, 103, 0.1);
        padding-top: 12px;
    }

    .site-header.is-open .header-shell {
        overflow: visible;
    }

    .main-nav {
        position: fixed;
        top: 112px;
        left: clamp(18px, 4vw, 42px);
        right: clamp(18px, 4vw, 42px);
        z-index: 80;
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-height: 0;
        max-height: min(420px, calc(100vh - 132px));
        overflow-y: auto;
        justify-content: flex-start;
        padding: 10px;
        border: 1px solid rgba(191, 216, 239, 0.92);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 22px 56px rgba(23, 63, 103, 0.18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .main-nav a {
        width: 100%;
        min-height: 46px;
        justify-content: center;
        padding: 0 14px;
        border: 1px solid rgba(191, 216, 239, 0.64);
        border-radius: 13px;
        background: rgba(239, 247, 255, 0.82);
    }

    .site-header.is-open .main-nav,
    .site-header.is-open.is-collapsed .main-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header.is-open .nav-toggle::before {
        content: "\00d7";
        font-size: 24px;
    }

    .hero-grid,
    .service-area-card,
    .reviews-layout,
    .price-layout,
    .final-grid {
        grid-template-columns: 1fr;
    }

    .reviews-copy {
        max-width: none;
    }

    .hero-copy {
        padding-top: 22px;
    }

    .hero-gallery {
        max-width: 100%;
    }

    .hero-form {
        position: static;
    }

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

    .work-body {
        grid-template-columns: 1fr;
    }

    .work-body dl {
        grid-column: auto;
        grid-row: auto;
        margin-top: 10px;
    }

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

    .price-note {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "text"
            "button";
    }

    .price-note .btn {
        justify-self: start;
        width: fit-content;
    }
}

@media (max-width: 900px) {
    :root {
        --container: min(100% - 28px, 1180px);
    }

    html {
        scroll-padding-top: 96px;
    }

    .site-header {
        padding: 10px 0;
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding-top: 32px;
    }

    .header-top {
        min-height: 66px;
        padding: 10px 12px;
    }

    .header-actions .btn {
        display: none;
    }

    .header-phone-box {
        justify-items: start;
    }

    .header-phone-box small {
        text-align: left;
    }

    .before-after figure {
        min-height: 230px;
    }

    .service-layout,
    .fabric-layout,
    .trust-layout {
        grid-template-columns: 1fr;
    }

    .sticky-head {
        position: static;
    }

    .fabric-content {
        grid-template-columns: 1fr;
    }

    .fabric-photo img {
        min-height: 300px;
    }

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

    .copyright {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 15px;
    }

    .site-header {
        position: sticky;
        padding: 6px 0;
    }

    .header-top {
        position: relative;
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        gap: 8px;
        min-height: 54px;
        padding: 7px 10px;
    }

    .header-shell {
        border-radius: 14px;
    }

    .brand img {
        width: 44px;
        height: 44px;
        margin-right: 0;
        border-width: 3px;
        border-radius: 12px;
    }

    .brand span {
        display: none;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .brand b {
        font-size: 13px;
        line-height: 1.05;
    }

    .brand small {
        font-size: 10px;
    }

    .nav-toggle {
        grid-column: 4;
        grid-row: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 38px;
        width: 38px;
        min-height: 38px;
        padding: 0;
        font-size: 0;
        border-radius: 12px;
        color: var(--brand-2);
        background: rgba(231, 241, 252, 0.9);
    }

    .nav-toggle::before {
        content: "\2630";
        font-size: 18px;
        line-height: 1;
    }

    .header-actions {
        position: static;
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        display: block;
        justify-content: end;
        transform: none;
        padding-top: 0;
        border-top: 0;
    }

    .header-phone-box {
        justify-items: end;
        gap: 3px;
    }

    .header-phone-box small {
        max-width: none;
    }

    .phone-hours {
        display: inline-flex;
        min-height: 20px;
        padding: 2px 7px;
        font-size: 9px;
        white-space: nowrap;
    }

    .phone-link {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        min-height: 20px;
        padding: 0;
        border: 0;
        border-radius: 0;
        color: var(--text);
        background: transparent;
        font-size: 13px;
        line-height: 1.05;
        box-shadow: none;
    }

    .phone-link::before {
        content: none;
    }

    .main-nav {
        top: 70px;
        left: 10px;
        right: 10px;
        max-height: min(390px, calc(100vh - 86px));
        border-radius: 16px;
    }

    .main-nav a {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        background: rgba(239, 247, 255, 0.92);
    }

    .hero-grid {
        gap: 22px;
    }

    h1 {
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 1.04;
    }

    h2 {
        font-size: clamp(27px, 7.4vw, 34px);
        line-height: 1.08;
    }

    .benefit-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .benefit-row span {
        min-height: 58px;
        align-items: flex-start;
        border-radius: 14px;
    }

    .hero-visual::before {
        top: -10px;
        right: 12px;
        max-width: calc(100% - 24px);
        font-size: 11px;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
    }

    .hero-photo-main {
        min-height: min(82vw, 520px);
    }

    .hero-photo-stack {
        grid-template-columns: 1fr 1fr;
    }

    .hero-photo-stack .hero-photo {
        min-height: min(42vw, 230px);
    }

    .hero-photo figcaption {
        left: 10px;
        top: 10px;
        min-height: 30px;
        padding: 6px 9px;
        font-size: 9px;
        letter-spacing: 0.02em;
    }

    .hero-photo-stack .hero-photo:first-child figcaption {
        top: auto;
        bottom: 10px;
    }

    .before-after {
        gap: 8px;
    }

    .before-after figure {
        min-height: 190px;
        border-radius: 18px;
    }

    .photo-badge {
        max-width: calc(100% - 28px);
        white-space: normal;
        line-height: 1.15;
    }

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

    .work-card .before-after figure:first-child,
    .work-card .before-after figure:last-child {
        border-radius: 18px;
    }

    .work-body {
        gap: 8px;
    }

    .service-area-card {
        padding: 18px;
        border-radius: 20px;
    }

    .service-area-map {
        min-height: 240px;
    }

    .media-pair {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item > span {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .lead-form,
    .legal,
    .trust-accent {
        padding: 22px;
        border-radius: 18px;
    }

    .form-head h3 {
        font-size: 23px;
    }

    th,
    td {
        padding: 16px 14px;
    }

    td:last-child {
        font-size: 16px;
    }

    .final-contact-card a {
        font-size: 22px;
    }

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

    .mobile-bar {
        display: grid;
    }
}

@media (max-width: 520px) {
    :root {
        --container: min(100% - 22px, 1180px);
    }

    .container {
        width: calc(100% - 24px);
        max-width: 390px;
    }

    .site-header .container {
        width: 100%;
        max-width: none;
        padding: 0 8px;
    }

    .section {
        padding: 52px 0;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-copy {
        padding-top: 8px;
    }

    h1 {
        font-size: clamp(31px, 9.2vw, 39px);
        line-height: 1.02;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .lead {
        font-size: 16px;
        line-height: 1.55;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .benefit-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .benefit-row span {
        min-height: 48px;
        padding: 10px 14px;
    }

    .hero-gallery {
        gap: 8px;
    }

    .hero-photo-stack {
        gap: 8px;
    }

    .hero-photo-main {
        min-height: min(88vw, 420px);
    }

    .hero-photo-stack .hero-photo {
        min-height: 150px;
    }

    .service-area-section {
        padding-top: 24px;
    }

    .service-area-card .btn {
        width: 100%;
    }

    .service-area-map {
        min-height: 200px;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .before-after figure {
        min-height: 210px;
    }

    .hero-visual .before-after figure:first-child {
        display: none;
    }

    .hero-visual::before {
        display: none;
    }

    .hero-visual,
    .hero-gallery,
    .hero-visual .before-after,
    .hero-visual .before-after figure {
        width: 100%;
        max-width: 100%;
    }

    .photo-badge {
        right: 10px;
        bottom: 10px;
        padding: 7px 10px;
        font-size: 10px;
    }

    .lead-form {
        padding: 18px;
    }

    input,
    select,
    textarea {
        min-height: 50px;
        border-radius: 12px;
    }

    .works-grid .before-after figure {
        min-height: 210px;
    }

    .work-card .before-after {
        padding: 10px 10px 0;
    }

    .work-body {
        padding: 18px;
    }

    .work-body p {
        font-size: 14px;
    }

    .work-body dl {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .price-card {
        overflow: hidden;
    }

    .reviews-layout {
        padding: 16px;
        border-radius: 20px;
    }

    .reviews-widget {
        min-height: 540px;
    }

    .reviews-widget iframe {
        height: 540px;
    }

    table {
        min-width: 0;
    }

    th,
    td {
        padding: 13px 10px;
        font-size: 12px;
    }

    td:last-child {
        max-width: 128px;
        font-size: 13px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .price-note {
        padding: 18px;
    }

    .price-note .btn {
        width: 100%;
    }

    .fabric-photo img {
        min-height: 250px;
    }

    .trust-grid {
        gap: 10px;
    }

    .final-grid {
        gap: 24px;
    }

    .mobile-bar {
        left: 8px;
        right: 8px;
        bottom: 8px;
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 7px;
        padding: 7px;
        border-radius: 16px;
    }

    .mobile-bar a {
        min-width: 0;
        min-height: 46px;
        padding-inline: 7px;
        font-size: 12px;
        line-height: 1.15;
        white-space: normal;
    }
}
