:root {
    --bg:#f5f7fb;
    --hdr-p:0;
    --surface:#ffffff;
    --surface-2:#f7f9fc;
    --text:#22272d;
    --muted:#5b6672;
    --line:#e5eaf1;
    --blue:#0c3ffb;
    --blue-2:#2e67ff;
    --dark-blue:#122a66;
    --shadow:0 24px 60px rgba(34,39,45,.12);
    --radius:28px;
}

* {
    box-sizing:border-box;
}
html {
    scroll-behavior:smooth;
}
body {
    margin:0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
    color:var(--text);
    background:#f4f7fb;
    position:relative;
}

img {
    max-width:100%;
    display:block;
}
a {
    color:inherit;
    text-decoration:none;
}

body::before {
    content:"";
    position:fixed;
    inset:0;
    z-index:-2;
    background:
        linear-gradient(180deg, rgba(248,250,253,.66) 0%, rgba(246,248,252,.60) 100%),
        url('/themes/tg93h/img/bg.webp') 54% center / cover no-repeat;
    background-attachment:fixed;
    transform:translateZ(0);
    will-change:transform;
}

body::after {
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    background:
        radial-gradient(circle at 12% 0%, rgba(12,63,251,.018), transparent 24%),
        radial-gradient(circle at 82% 8%, rgba(12,63,251,.024), transparent 22%);
    pointer-events:none;
}

.container {
    max-width:1220px;
    margin:0 auto;
    padding:0 28px;
}
header .container {
    max-width:1220px;
}
.section {
    padding:44px 0;
    position:relative;
}
.eyebrow {
    display:inline-block;
    color:var(--blue);
    font-size:12px;
    font-weight:900;
    letter-spacing:.24em;
    text-transform:uppercase;
    margin-bottom:16px;
}
h1,h2,h3,p {
    margin:0;
}

header {
    position:sticky;
    top:0;
    z-index:40;
    background:rgba(255,255,255,.87);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(229,234,241,.92);
}
.header-row {
    display:grid;
    grid-template-columns: 400px 1fr auto;
    align-items:center;
    gap:16px;
    padding:16px 0;
}
.logo {
    background:transparent !important;
    image-rendering:auto;
    display:block;
    mix-blend-mode:normal;
    width:420px;
    height:auto;
    transition:width .34s ease, transform .34s ease, opacity .28s ease;
}
header nav {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    color:var(--muted);
    font-weight:700;
    font-size:20px;
    white-space:nowrap;
    justify-self:center;
    transition:gap .34s ease, font-size .34s ease;
}
header nav a {
    position:relative;
    transition:color .2s ease;
}
header nav a:hover {
    color:var(--blue);
}
header nav a::after {
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-8px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--blue), var(--blue-2));
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .22s ease;
}
header nav a:hover::after {
    transform:scaleX(1);
}

.header-row {
    position: relative;
    grid-template-columns: 400px auto auto;
    overflow: visible;
}
.menu-details {
    position: relative;
    justify-self: center;
}
.menu-summary {
    list-style: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(18,42,102,.10);
    background: #fff;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(34,39,45,.08);
}
.menu-summary::-webkit-details-marker {
    display: none;
}
.menu-summary span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform .22s ease, opacity .22s ease;
}
.menu-details[open] .menu-summary span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-details[open] .menu-summary span:nth-child(2) {
    opacity: 0;
}
.menu-details[open] .menu-summary span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, calc(100vw - 28px));
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229,234,241,.95);
    box-shadow: 0 28px 60px rgba(34,39,45,.16);
    border-radius: 24px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    z-index: 60;
}
.menu-link {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    background: #f7f9fc;
    color: var(--text);
    font-weight: 700;
    padding: 10px 12px;
    line-height: 1.15;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.menu-link:hover {
    background: #eef4ff;
    color: var(--blue);
    transform: translateY(-1px);
}
@media (max-width: 980px) {
    .header-row {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }
    .logo {
        width: 280px;
        max-width: 100%;
    }
    .menu-panel {
        left: auto;
        right: 0;
        transform: none;
        width: min(420px, calc(100vw - 20px));
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .header-row {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 8px;
    }
    .header-main-nav {
        display: none;
    }
    .header-right-controls {
        display: contents;
    }
    .menu-details {
        justify-self: center;
        order: 2;
    }
    .menu-summary {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        border-radius: 8px;
        gap: 3px;
        padding: 0;
        background: linear-gradient(135deg, var(--blue), var(--blue-2));
        border: none;
        box-shadow: 0 8px 16px rgba(12,63,251,.18);
    }
    .menu-summary span {
        width: 10px;
        height: 1.5px;
        background: #fff;
    }
    .menu-details[open] .menu-summary span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .menu-details[open] .menu-summary span:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg);
    }
    .logo {
        width: 150px;
        max-width: 100%;
    }
    .header-phone {
        min-height: 38px;
        padding: 0 10px;
        border-radius: 14px;
        font-size: 12px;
        box-shadow: 0 10px 20px rgba(12,63,251,.16);
        white-space: nowrap;
    }
    .header-phone .phone-icon {
        width: 22px;
        height: 22px;
    }
    .menu-panel {
        right: 0;
        width: min(300px, calc(100vw - 16px));
        border-radius: 20px;
        padding: 12px;
        gap: 8px;
    }
    .menu-link {
        min-height: 44px;
        font-size: 14px;
        border-radius: 14px;
    }
    .mobile-only-link {
        display: flex;
    }
}

.sep {
    color:#c7d0db;
    font-size:20px;
    line-height:1;
    transition:font-size .34s ease;
}

header {
    transition:background .34s ease, box-shadow .34s ease, border-color .34s ease, backdrop-filter .34s ease;
    will-change:background, box-shadow, backdrop-filter;
    background:rgba(255,255,255,.96);
    box-shadow:0 4px 14px rgba(34,39,45,.03);
    border-bottom-color:rgba(219,226,236,.82);
    backdrop-filter:saturate(125%) blur(8px);
}
.header-row {
    display:grid;
    grid-template-columns:400px 1fr auto;
    align-items:center;
    gap:16px;
    padding:16px 0;
    transition:grid-template-columns .34s ease, gap .34s ease, padding .34s ease;
}
.header-phone,
.header-phone .phone-icon {
    transition:padding .34s ease, gap .34s ease, font-size .34s ease, width .34s ease, height .34s ease, border-radius .34s ease, box-shadow .34s ease;
}
.header-phone {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:13px 18px;
    border-radius:18px;
    background:linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
    border:1px solid rgba(12,63,251,.14);
    box-shadow:0 14px 28px rgba(12,63,251,.20);
    color:#fff;
    font-size:18px;
    font-weight:800;
    white-space:nowrap;
    text-decoration:none;
    cursor:pointer;
    transform:none !important;
}
.header-phone .phone-icon {
    width:32px;
    height:32px;
    flex:0 0 32px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.16);
    color:#fff;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.22);
}
.header-phone:hover {
    box-shadow:0 18px 30px rgba(12,63,251,.24);
    filter:brightness(1.02);
}

body.header-compact header {
    background:rgba(255,255,255,.93);
    box-shadow:0 12px 28px rgba(34,39,45,.08);
    border-bottom-color:rgba(219,226,236,.95);
    backdrop-filter:saturate(130%) blur(10px);
}
body.header-compact .header-row {
    grid-template-columns:300px 1fr auto;
    gap:10px;
    padding:6px 0;
}
body.header-compact .logo {
    width:300px;
}
body.header-compact header nav {
    gap:12px;
    font-size:17px;
}
body.header-compact .sep {
    font-size:14px;
}
body.header-compact .header-phone {
    gap:8px;
    padding:8px 14px;
    border-radius:15px;
    font-size:15px;
    box-shadow:0 10px 22px rgba(12,63,251,.16);
}
body.header-compact .header-phone .phone-icon {
    width:26px;
    height:26px;
    flex:0 0 26px;
    border-radius:9px;
}

.to-top {
    position:fixed;
    right:8px;
    bottom:130px;
    z-index:60;
    width:48px;
    height:48px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 28px rgba(12,63,251,.22);
    cursor:pointer;
    opacity:0;
    pointer-events:none;
    transform:translateY(10px);
    transition:opacity .22s ease, transform .22s ease, box-shadow .22s ease, filter .22s ease, right .34s ease;
}
.to-top:hover {
    box-shadow:0 18px 30px rgba(12,63,251,.26);
    filter:brightness(1.03);
}
.to-top svg {
    width:18px;
    height:18px;
    display:block;
}
body.show-to-top .to-top {
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

.hero {
    position:relative;
    overflow:hidden;
    padding:38px 0 0;
}
.hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg, rgba(248,250,253,.72) 0%, rgba(246,248,252,.66) 100%);
    z-index:0;
}

.hero-grid {
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
    gap:42px;
    align-items:center;
    min-height:650px;
    padding-bottom:42px;
}
.hero-copy {
    position:relative;
    z-index:2;
    max-width:470px;
    text-align:left;
    justify-self:start;
    align-self:center;
}
.hero-title {
    font-size:48px;
    line-height:1.02;
    letter-spacing:-.05em;
    font-weight:900;
    margin-bottom:22px;
    max-width:470px;
    text-align:left;
}
.hero-line {
    display:block;
    white-space:nowrap;
}

.progress-line {
    position:fixed;
    top:0;
    left:0;
    width:0;
    height:3px;
    z-index:120;
    background:linear-gradient(90deg, #0c3ffb 0%, #3f8cff 45%, #75b7ff 100%);
    box-shadow:0 0 18px rgba(12,63,251,.35);
    transition:width .12s linear;
}
.hero-lead {
    max-width:470px;
    color:var(--muted);
    font-size:19px;
    line-height:1.62;
    margin-bottom:30px;
}
.hero-list {
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:16px;
    max-width:520px;
}
.hero-list li {
    display:flex;
    align-items:center;
    gap:12px;
    font-size:22px;
    font-weight:800;
}
.check {
    color:var(--blue);
}
.hero-actions {
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:40px;
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:60px;
    padding:16px 28px;
    border-radius:20px;
    font-size:18px;
    font-weight:800;
    line-height:1;
    letter-spacing:-.02em;
    text-decoration:none;
    border:1px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease, filter .18s ease;
    cursor:pointer;
    white-space:nowrap;
}

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

.btn-primary {
    color:#fff;
    background:linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
    box-shadow:0 16px 30px rgba(12,63,251,.22);
}

.btn-primary:hover {
    box-shadow:0 20px 34px rgba(12,63,251,.26);
    filter:brightness(1.02);
}

.btn-secondary {
    color:var(--text);
    background:rgba(255,255,255,.92);
    border-color:#cfd9e8;
    box-shadow:0 10px 24px rgba(34,39,45,.05);
}

.btn-secondary:hover {
    border-color:#b8c6da;
    box-shadow:0 14px 28px rgba(34,39,45,.08);
    background:#fff;
}

.hero-visual {
    position:relative;
    min-height:560px;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(229,234,241,.92);
    box-shadow:var(--shadow);
    justify-self:stretch;
    width:100%;
    background:
        linear-gradient(180deg, rgba(11,22,48,.03) 0%, rgba(11,22,48,.06) 100%);
}
.hero-visual::before {
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 18% 12%, rgba(255,255,255,.18), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.03) 24%, rgba(255,255,255,0) 40%);
}
.hero-visual::after {
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.02)),
        linear-gradient(180deg, rgba(12,20,45,0) 70%, rgba(12,20,45,.10) 100%);
    pointer-events:none;
}
.visual-glass {
    position:absolute;
    top:18px;
    left:22px;
    width:160px;
    height:64px;
    border-top:2px solid rgba(255,255,255,.28);
    border-left:2px solid rgba(255,255,255,.28);
    border-radius:18px 0 0 0;
    background:none;
    box-shadow:none;
}
.visual-line {
    position:absolute;
    top:22px;
    right:26px;
    width:140px;
    height:1px;
    background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.75), rgba(255,255,255,0));
}
.visual-glow {
    position:absolute;
    top:22px;
    right:26px;
    width:1px;
    height:120px;
    background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,0));
    filter:none;
}
.visual-map {
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:150px;
    opacity:.52;
    pointer-events:none;
}

.trust-bar {
    position:relative;
    z-index:2;
    border-top:1px solid rgba(229,234,241,.82);
    border-bottom:1px solid rgba(229,234,241,.82);
    background:linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(249,251,253,.88) 100%);
    backdrop-filter:blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.36),
        inset 0 -1px 0 rgba(255,255,255,.20);
}
.trust-bar .container {
    padding-top:16px;
    padding-bottom:16px;
    text-align:center;
    color:#5b6672;
    font-size:18px;
    font-weight:800;
    line-height:1.45;
}

.split-head {
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:14px;
}
.muted {
    color:var(--muted);
    font-size:18px;
    line-height:1.6;
    max-width:760px;
}

.service-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
    margin-top:15px;
}
.about-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
    margin-top:15px;
}
.card {
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:rgba(255,255,255,.81);
    border:1px solid rgba(229,234,241,.95);
    box-shadow:0 14px 40px rgba(34,39,45,.06);
    padding:26px;
}
.card::before {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(12,63,251,.035), rgba(255,255,255,0));
    pointer-events:none;
}
.icon {
    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, rgba(12,63,251,.14), rgba(46,103,255,.06));
    color:var(--blue);
    margin-bottom:18px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.55);
}
.icon svg {
    width:26px;
    height:26px;
    stroke:currentColor;
    fill:none;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    display:block;
}
.card-head {
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:16px;
}
.card-head .icon {
    margin-bottom:0;
    flex:0 0 auto;
}
.card h3 {
    font-size:24px;
    line-height:1.18;
    letter-spacing:-.03em;
    margin:0;
}
.card p {
    color:var(--muted);
    line-height:1.65;
    font-size:17px;
}
.pricing-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
    margin-top:15px;
}
.price-card {
    border-radius:28px;
    border:1px solid rgba(229,234,241,.95);
    background:#fff;
    box-shadow:0 18px 42px rgba(34,39,45,.06);
    padding:28px;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}
.price-card.featured {
    color:#fff;
    background:linear-gradient(155deg, #16347a 0%, #0c3ffb 100%);
    box-shadow:0 22px 46px rgba(12,63,251,.22);
    transform:translateY(-6px);
}
.price-card.featured .small,
.price-card.featured li,
.price-card.featured p {
    color:rgba(255,255,255,.9);
}
.small {
    color:var(--blue);
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size:12px;
    font-weight:900;
    margin-bottom:16px;
}
.price {
    font-size:44px;
    font-weight:900;
    letter-spacing:-.05em;
    margin-bottom:10px;
}
.price-card p {
    color:var(--muted);
    line-height:1.65;
    margin-bottom:20px;
}
.price-card ul {
    list-style:none;
    padding:0;
    margin:0 0 24px;
    display:grid;
    gap:12px;
}
.price-card li {
    color:var(--muted);
    display:flex;
    gap:10px;
    line-height:1.5;
}
.price-card .btn,
.price-card a.btn {
    margin-top:auto;
    align-self:flex-start;
}

.process-grid {
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:20px;
    margin-top:15px;
    align-items:stretch;
}
.step {
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:44px 1fr;
    gap:10px 14px;
    align-items:start;
    border-radius:24px;
    padding:26px;
    background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,247,251,.95));
    border:1px solid rgba(229,234,241,.95);
    box-shadow:0 14px 32px rgba(34,39,45,.05);
}
.step::before {
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:4px;
    background:linear-gradient(180deg, var(--blue), rgba(12,63,251,.18));
}
.step-num {
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, var(--blue), var(--blue-2));
    color:#fff;
    font-weight:900;
    margin-bottom:0;
    position:relative;
    z-index:1;
}
.step h3 {
    font-size:24px;
    margin:4px 0 0;
    line-height:1.2;
    letter-spacing:-.03em;
}
.step p {
    grid-column:1 / -1;
    color:var(--muted);
    line-height:1.65;
    font-size:16px;
    margin-top:4px;
}

.calc {
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(229,234,241,.95);
    box-shadow:0 22px 46px rgba(34,39,45,.08);
    background:
        linear-gradient(135deg, rgba(12,63,251,.06), rgba(46,103,255,.02)),
        #fff;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:0;
    margin-top:15px;
}
.calc-left, .calc-right {
    padding:34px;
}
.calc-left {
    border-right:1px solid rgba(229,234,241,.92);
}
.chip-list {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
    margin-bottom:22px;
}
.chip {
    padding:10px 14px;
    border-radius:999px;
    background:#eef4ff;
    color:#1d3ea6;
    font-size:14px;
    font-weight:700;
}
.quiz-grid {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
    margin-top:18px;
}
.quiz-item {
    border-radius:18px;
    padding:18px;
    background:#f7f9fc;
    border:1px solid rgba(229,234,241,.95);
}
.quiz-item strong {
    display:block;
    font-size:15px;
    margin-bottom:8px;
}
.quiz-item span {
    color:var(--muted);
    font-size:14px;
    line-height:1.5;
}

.review-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
    margin-top:15px;
}
.review {
    border-radius:24px;
    padding:28px;
    background:#fff;
    border:1px solid rgba(229,234,241,.95);
    box-shadow:0 14px 36px rgba(34,39,45,.05);
}
.stars {
    color:#ffb300;
    letter-spacing:.2em;
    font-size:18px;
    margin-bottom:14px;
}
.review p {
    color:var(--muted);
    line-height:1.72;
    font-size:17px;
    margin-bottom:18px;
}
.review strong {
    display:block;
    font-size:17px;
    margin-bottom:4px;
}
.review span {
    color:#7a8796;
    font-size:14px;
}


.contact-wrap {
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
    margin-top:15px;
}
.contact-card {
    border-radius:28px;
    background:#fff;
    border:1px solid rgba(229,234,241,.95);
    box-shadow:0 18px 42px rgba(34,39,45,.06);
    padding:30px;
}

.contact-shell {
    display:grid;
    grid-template-columns:minmax(0, 1fr) 340px;
    gap:22px;
    align-items:center;
}
.contact-main {
    padding:2px 2px 0;
    max-width:640px;
}
.contact-promo {
    position:relative;
    min-height:260px;
    height:260px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(229,234,241,.92);
    box-shadow:0 14px 30px rgba(34,39,45,.06);
    background:linear-gradient(180deg, rgba(11,22,48,.03) 0%, rgba(11,22,48,.10) 100%),url('') center center / cover no-repeat;
    text-decoration:none;
    display:block;
    transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
    align-self:center;
}
.contact-promo:hover {
    transform:translateY(-3px);
    box-shadow:0 20px 38px rgba(34,39,45,.10);
    filter:brightness(1.02);
}
.contact-promo::after {
    content:"";
    position:absolute;
    inset:14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.22);
    background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
    pointer-events:none;
}


.messenger-buttons {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:8px;
    margin-bottom:12px;
}
.messenger-btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:14px;
    border:1px solid rgba(203,213,225,.95);
    background:#fff;
    color:var(--text);
    font-size:14px;
    font-weight:800;
    box-shadow:0 8px 18px rgba(34,39,45,.04);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    text-decoration:none;
    line-height:1;
}
.messenger-btn:hover {
    transform:translateY(-1px);
    box-shadow:0 12px 22px rgba(34,39,45,.08);
    border-color:#b8c6da;
}
.messenger-btn svg {
    width:16px;
    height:16px;
    display:block;
    flex:0 0 16px;
}
.messenger-btn.telegram {
    color:#178BFF;
    background:rgba(23,139,255,.08);
    border-color:rgba(23,139,255,.18);
}
.messenger-btn.max {
    color:#2452ff;
    background:rgba(36,82,255,.08);
    border-color:rgba(36,82,255,.16);
}

.contact-note {
    margin-top:12px;
    color:#7a8796;
    font-size:13px;
    line-height:1.55;
}


.card,
.price-card,
.step,
.hero-visual {
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover,
.price-card:hover,
.step:hover {
    transform:translateY(-4px);
    box-shadow:0 20px 46px rgba(34,39,45,.09);
    border-color:rgba(172,188,214,.9);
}
.hero-visual:hover {
    transform:translateY(-3px);
    box-shadow:0 28px 70px rgba(34,39,45,.16);
}

footer {
    position:relative;
    padding:28px 0 38px;
    color:#6b7684;
    text-align:center;
    font-size:15px;
}
footer .container {
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}
footer::before {
    content:"";
    display:block;
    width:120px;
    height:2px;
    margin:0 auto 16px;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(12,63,251,0), rgba(12,63,251,.55), rgba(12,63,251,0));
}

#contacts .messenger-buttons .messenger-btn::before{
    content: "";
    height: 16px;
    width: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#contacts .messenger-buttons .messenger-btn.telegram::before{
    background-image: url('/themes/tg93h/img/telegram.svg');
}
#contacts .messenger-buttons .messenger-btn.max::before{
    background-image: url('/themes/tg93h/img/max.svg');
}


@media (max-width: 1080px) {
    .hero-grid,
    .calc,
    .contact-wrap,
    .service-grid,
    .about-grid,
    .pricing-grid,
    .process-grid,
    .review-grid {
        grid-template-columns:1fr;
    }
    .calc-left {
        border-right:none;
        border-bottom:1px solid rgba(229,234,241,.92);
    }
    .hero-title {
        font-size:48px;
        line-height:1.04;
    }
    .hero-copy {
        max-width:none;
    }
}

@media (max-width: 860px) {

    body::before {
        background-attachment:scroll;
    }

    .container {
        padding:0 12px;
    }
    .section {
        padding:24px 0;
    }
    #services.section {
        padding-bottom:16px;
    }
    #tariffs.section {
        padding-top:16px;
    }
    #about.section {
        padding-top:20px;
        padding-bottom:20px;
    }
    #process.section {
        padding-top:20px;
        padding-bottom:20px;
    }

    .logo {
        width:174px;
        height:auto;
    }
    header nav {
        display:none;
    }

    header {
        backdrop-filter:blur(10px);
    }

    .header-row {
        display:grid;
        grid-template-columns:minmax(0, 174px) minmax(0, 1fr);
        align-items:center;
        gap:8px;
        padding:7px 0;
    }

    .header-right {
        width:auto;
        display:flex;
        align-items:center;
        justify-content:flex-end;
        margin-right:10px;
    }

    .header-phone {
        width:auto;
        justify-content:center;
        font-size:10px;
        padding:7px 8px;
        border-radius:14px;
        max-width:100%;
    }



    .header-phone .phone-icon {
        width:21px;
        height:21px;
        flex:0 0 21px;
    }

    .header-row {
        grid-template-columns:minmax(0, 174px) minmax(0, 1fr);
        gap:8px;
        padding:7px 0;
    }
    .logo {
        width:174px;
    }
    .header-phone {
        font-size:10px;
        padding:7px 8px;
        border-radius:14px;
    }
    .header-phone .phone-icon {
        width:21px;
        height:21px;
        flex:0 0 21px;
    }

    body.header-compact .header-row {
        grid-template-columns:minmax(0, 150px) minmax(0, 1fr);
        gap:6px;
        padding:4px 0;
    }
    body.header-compact .logo {
        width:150px;
    }
    body.header-compact .header-phone {
        font-size:9px;
        padding:6px 7px;
        border-radius:13px;
    }
    body.header-compact .header-phone .phone-icon {
        width:19px;
        height:19px;
        flex:0 0 19px;
    }

    .to-top {
        right:8px;
        bottom:96px;
        width:42px;
        height:42px;
        border-radius:14px;
    }
    .to-top svg {
        width:16px;
        height:16px;
    }

    .contact-promo {
        display:none;
    }
    .contact-shell {
        grid-template-columns:1fr;
        gap:0;
    }
    .contact-main {
        max-width:none;
    }
    .contact-card {
        padding:20px 16px;
    }

    .header-phone span {
        white-space:nowrap;
    }

    .hero {
        padding-top:10px;
    }

    .hero-copy {
        text-align:center;
    }

    .hero-title {
        font-size:28px;
        line-height:1.1;
        letter-spacing:-.03em;
        max-width:100%;
        margin:0 auto 16px;
        text-align:center;
    }

    .hero-title .hero-line {
        display:inline;
    }
    .hero-title .hero-line:nth-child(1)::after {
        content:" ";
    }
    .hero-title .hero-line:nth-child(2) {
        display:inline;
    }
    .hero-title .hero-line:nth-child(2)::after {
        content:"";
        display:block;
    }
    .hero-title .hero-line:nth-child(3) {
        display:block;
    }

    .hero-lead {
        font-size:16px;
        line-height:1.62;
        margin:0 auto 18px;
        max-width:100%;
        text-align:left;
    }

    .hero-list {
        grid-template-columns:1fr 1fr;
        gap:10px 14px;
        margin-top:0;
    }

    .hero-list li {
        font-size:15px;
        line-height:1.35;
        align-items:flex-start;
        text-align:left;
    }

    .hero-grid {
        gap:16px;
        padding-bottom:18px;
    }

    .hero-actions {
        margin-top:18px;
        flex-direction:column;
    }

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

    .hero-visual {
        min-height:250px;
    }

    .btn,
    .btn-header {
        padding:13px 16px;
        font-size:14px;
    }

    .trust-bar .container {
        font-size:12px;
        line-height:1.35;
        padding-top:8px;
        padding-bottom:8px;
    }

    .split-head {
        display:block;
        margin-bottom:8px;
    }

    h2 {
        font-size:32px;
    }

    .muted {
        font-size:15px;
        margin-top:8px;
        line-height:1.58;
    }

    #services .split-head,
    #tariffs .split-head,
    #about .split-head,
    #process .split-head,
    #contacts .split-head {
        margin-bottom:10px;
    }
    .about-grid,
    .service-grid {
        gap:14px;
        margin-top:12px;
    }

    .card {
        padding:20px 18px;
    }

    .card-head {
        gap:12px;
        margin-bottom:14px;
    }

    .card-head .icon {
        width:52px;
        height:52px;
        border-radius:15px;
    }

    .card h3 {
        font-size:18px;
        line-height:1.24;
    }

    .card p {
        font-size:14px;
        line-height:1.6;
    }

    #about .about-grid {
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:10px;
        margin-top:10px;
    }

    #about .about-grid > .card {
        min-width:0;
        width:100%;
        padding:18px 16px;
        border-radius:22px;
        min-height:0;
    }

    #about .about-grid > .card h3 {
        font-size:18px;
        line-height:1.22;
        margin-bottom:10px;
    }

    #about .about-grid > .card p {
        font-size:14px;
        line-height:1.6;
    }

    #process .split-head .muted {
        max-width:none;
        font-size:15px;
        line-height:1.6;
    }

    .pricing-grid {
        gap:14px;
        margin-top:10px;
    }

    .price-card {
        padding:20px 18px;
    }

    .price-card.featured {
        transform:none;
    }

    .price {
        font-size:34px;
        margin-bottom:10px;
    }

    .price-card p {
        margin-bottom:14px;
    }

    .price-card ul {
        margin-bottom:16px;
    }

    .process-grid {
        gap:12px;
        margin-top:10px;
    }

    .step {
        padding:18px 16px;
        grid-template-columns:40px 1fr;
        gap:10px 12px;
    }

    .step-num {
        width:40px;
        height:40px;
        font-size:20px;
    }

    .step h3 {
        margin:4px 0 0;
        font-size:18px;
        line-height:1.2;
    }

    .step p {
        grid-column:1 / -1;
        margin-top:0;
        font-size:15px;
        line-height:1.6;
    }

    .contact-shell {
        grid-template-columns:1fr;
        gap:14px;
    }

    .contact-side {
        grid-template-columns:1fr;
        gap:12px;
    }

    .contact-card {
        padding:20px 16px;
    }

    .contact-phone-hero {
        font-size:22px;
        padding:10px 12px;
        margin-top:12px;
        margin-bottom:14px;
        width:100%;
        justify-content:flex-start;
        gap:10px;
        white-space:nowrap;
    }
    .contact-phone-hero::before {
        width:30px;
        height:30px;
        flex:0 0 30px;
        border-radius:11px;
        font-size:16px;
    }

    .contact-desc {
        font-size:15px;
        line-height:1.6;
        margin-bottom:14px;
    }

    .contact-item {
        padding:16px 14px;
    }

    footer {
        padding:22px 0 30px;
        font-size:14px;
    }

    footer .container {
        justify-content:center;
    }
}

.header-row {
    grid-template-columns: 400px 1fr auto;
    align-items: center;
    gap: 16px;
    overflow: visible;
    position: relative;
}
.header-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--muted);
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
    justify-self: center;
}
.header-main-link {
    position: relative;
    transition: color .2s ease;
    color: inherit;
    text-decoration: none;
}
.header-main-link:hover {
    color: var(--blue);
}
.header-main-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}
.header-main-link:hover::after {
    transform: scaleX(1);
}
.nav-two-line {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.08;
    text-align: center;
    white-space: normal;
}
.header-right-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}
.menu-details {
    position: relative;
}
.menu-summary {
    list-style: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(18,42,102,.10);
    background: #fff;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(34,39,45,.08);
}
.menu-summary::-webkit-details-marker {
    display: none;
}
.menu-summary span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform .22s ease, opacity .22s ease;
}
.menu-details[open] .menu-summary span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-details[open] .menu-summary span:nth-child(2) {
    opacity: 0;
}
.menu-details[open] .menu-summary span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(320px, calc(100vw - 28px));
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229,234,241,.95);
    box-shadow: 0 28px 60px rgba(34,39,45,.16);
    border-radius: 24px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    z-index: 60;
}
.menu-link {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    background: #f7f9fc;
    color: var(--text);
    font-weight: 700;
    padding: 10px 12px;
    line-height: 1.15;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.menu-link:hover {
    background: #eef4ff;
    color: var(--blue);
    transform: translateY(-1px);
}
@media (max-width: 1180px) {
    .header-row {
        grid-template-columns: 320px 1fr auto;
    }
    .header-main-nav {
        gap: 14px;
        font-size: 18px;
    }
    .logo {
        width: 340px;
    }
}
@media (max-width: 980px) {
    .header-row {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }
    .header-main-nav {
        grid-column: 1 / -1;
        order: 3;
        justify-content: center;
        padding-top: 4px;
        font-size: 17px;
    }
    .header-right-controls {
        order: 2;
    }
    .logo {
        width: 280px;
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    .header-main-nav {
        gap: 10px;
        font-size: 15px;
        flex-wrap: wrap;
    }
    .menu-summary {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
    .menu-summary span {
        width: 20px;
    }
    .header-phone {
        padding: 0 14px;
        font-size: 15px;
    }
    .logo {
        width: 220px;
    }
    .menu-panel {
        width: min(300px, calc(100vw - 20px));
    }
    .menu-link {
        min-height: 48px;
        font-size: 15px;
    }
}


@media (max-width: 640px) {
    .header-row {
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 8px;
    }
    .header-main-nav {
        display: none;
    }
    .header-right-controls {
        display: contents;
    }
    .menu-details {
        justify-self: center;
        order: 2;
    }
    .menu-summary {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--blue), var(--blue-2));
        border: none;
        box-shadow: 0 12px 24px rgba(12,63,251,.22);
    }
    .menu-summary span {
        width: 18px;
        background: #fff;
    }
    .logo {
        width: 190px;
        max-width: 100%;
    }
    .header-phone {
        min-height: 42px;
        padding: 0 12px;
        border-radius: 16px;
        font-size: 14px;
        box-shadow: 0 12px 24px rgba(12,63,251,.16);
        white-space: nowrap;
    }
    .header-phone .phone-icon {
        width: 28px;
        height: 28px;
    }
    .menu-panel {
        right: 0;
        width: min(280px, calc(100vw - 16px));
        border-radius: 20px;
        padding: 12px;
    }
    .menu-link {
        min-height: 46px;
        font-size: 14px;
        border-radius: 14px;
    }
}


.mobile-only-link {
    display: none;
}

@media (max-width: 640px) {
    .menu-summary {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        gap: 4px;
    }
    .menu-summary span {
        width: 16px;
        height: 2px;
    }
    .menu-details[open] .menu-summary span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-details[open] .menu-summary span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .menu-panel {
        width: min(300px, calc(100vw - 16px));
        gap: 8px;
    }
    .mobile-only-link {
        display: flex;
    }
}


@media (max-width: 640px) {
    .header-row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto auto !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .header-main-nav {
        display: none !important;
    }
    .header-right-controls {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        justify-self: end !important;
    }
    .menu-details {
        order: 1 !important;
        justify-self: auto !important;
    }
    .header-phone {
        order: 2 !important;
    }
    .menu-summary {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        border-radius: 8px !important;
        gap: 3px !important;
        padding: 0 !important;
        background: linear-gradient(135deg, var(--blue), var(--blue-2)) !important;
        border: none !important;
        box-shadow: 0 8px 16px rgba(12,63,251,.18) !important;
    }
    .menu-summary span {
        width: 10px !important;
        height: 1.5px !important;
        background: #fff !important;
    }
    .menu-details[open] .menu-summary span:nth-child(1) {
        transform: translateY(4px) rotate(45deg) !important;
    }
    .menu-details[open] .menu-summary span:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg) !important;
    }
    .logo {
        width: 150px !important;
        max-width: 100% !important;
    }
    .header-phone {
        min-height: 38px !important;
        padding: 0 10px !important;
        border-radius: 14px !important;
        font-size: 12px !important;
        box-shadow: 0 10px 20px rgba(12,63,251,.16) !important;
        white-space: nowrap !important;
    }
    .header-phone .phone-icon {
        width: 22px !important;
        height: 22px !important;
    }
    .menu-panel {
        right: 0 !important;
        width: min(300px, calc(100vw - 16px)) !important;
        border-radius: 20px !important;
        padding: 12px !important;
        gap: 8px !important;
    }
    .menu-link {
        min-height: 44px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
    }
    .mobile-only-link {
        display: flex !important;
    }
}


@media (max-width: 640px) {
    .header-row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto auto !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .header-right-controls {
        display: grid !important;
        grid-template-columns: auto auto !important;
        align-items: center !important;
        column-gap: 8px !important;
        justify-self: end !important;
    }

    .menu-details {
        position: relative !important;
        justify-self: center !important;
        align-self: center !important;
    }

    .menu-summary {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        min-height: 26px !important;
        border-radius: 8px !important;
        padding: 0 !important;
        gap: 3px !important;
    }

    .menu-summary span {
        width: 11px !important;
        height: 1.5px !important;
    }

    .menu-details[open] .menu-summary span:nth-child(1) {
        transform: translateY(4px) rotate(45deg) !important;
    }

    .menu-details[open] .menu-summary span:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg) !important;
    }

    .menu-panel {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: min(340px, calc(100vw - 20px)) !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 12px !important;
        border-radius: 20px !important;
    }

    .menu-link {
        min-height: 52px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
        padding: 10px 8px !important;
        text-align: center !important;
    }

    .header-phone {
        min-height: 38px !important;
        padding: 0 10px !important;
        font-size: 12px !important;
        border-radius: 14px !important;
    }

    .logo {
        width: 150px !important;
        max-width: 100% !important;
    }
}


.menu-summary {
    background: transparent !important;
    border: 1px solid rgba(12,63,251,.14) !important;
    box-shadow: none !important;
}
.menu-summary span {
    background: var(--blue) !important;
}

@media (max-width: 640px) {
    .menu-summary {
        background: transparent !important;
        border: 1px solid rgba(12,63,251,.16) !important;
        box-shadow: none !important;
    }
    .menu-summary span {
        background: var(--blue) !important;
    }
}


@media (max-width: 640px) {
    .menu-details {
        justify-self: start !important;
        margin-left: 8px !important;
    }
}


@media (max-width: 640px) {
    .menu-details {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-60%) !important;
        margin-left: 0 !important;
    }
}


@media (max-width: 932px) and (orientation: landscape) {
    .header-main-nav {
        display: flex !important;
        gap: 10px !important;
        font-size: 11px !important;
        line-height: 1 !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        padding-top: 0 !important;
    }
    .header-main-link {
        font-size: 11px !important;
    }
    .nav-two-line {
        line-height: .92 !important;
        font-size: 10px !important;
    }
    .sep {
        font-size: 12px !important;
    }
    .header-row {
        grid-template-columns: 230px 1fr auto !important;
        gap: 10px !important;
        padding: 10px 0 !important;
    }
    .logo {
        width: 210px !important;
        max-width: 100% !important;
    }
    .header-phone {
        min-height: 34px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
        border-radius: 12px !important;
    }
    .header-phone .phone-icon {
        width: 20px !important;
        height: 20px !important;
    }
    .menu-summary {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
    }
    .menu-summary span {
        width: 12px !important;
    }
}


@media (max-width: 932px) and (orientation: landscape) {
    .header-main-nav {
        display: flex !important;
        gap: 6px !important;
        font-size: 9px !important;
        line-height: 1 !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        padding-top: 0 !important;
    }
    .header-main-link {
        font-size: 9px !important;
        letter-spacing: -0.1px !important;
    }
    .nav-two-line {
        display: inline-block !important;
        line-height: 1 !important;
        font-size: 8px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    .nav-two-line br {
        display: none !important;
    }
    .sep {
        font-size: 10px !important;
    }
    .header-row {
        grid-template-columns: 205px 1fr auto !important;
        gap: 6px !important;
        padding: 8px 0 !important;
    }
    .logo {
        width: 185px !important;
        max-width: 100% !important;
    }
    .header-phone {
        min-height: 30px !important;
        padding: 0 8px !important;
        font-size: 10px !important;
        border-radius: 10px !important;
    }
    .header-phone .phone-icon {
        width: 18px !important;
        height: 18px !important;
    }
    .menu-summary {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        min-height: 26px !important;
    }
    .menu-summary span {
        width: 11px !important;
    }
}


@media (max-width: 932px) and (orientation: landscape) {
    .header-main-nav .nav-two-line,
    .header-main-nav .nav-two-line + .sep {
        display: none !important;
    }
    .header-main-nav {
        gap: 10px !important;
        font-size: 11px !important;
    }
    .header-main-link {
        font-size: 11px !important;
    }
}


@media (max-width: 932px) and (orientation: landscape) {
    .header-row {
        align-items: center !important;
    }
    .header-main-nav {
        display: flex !important;
        align-self: center !important;
        justify-self: center !important;
        align-items: center !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 16px !important;
        font-size: 14px !important;
        line-height: 1 !important;
    }
    .header-main-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 32px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
    }
    .header-main-nav .nav-two-line,
    .header-main-nav .nav-two-line + .sep {
        display: none !important;
    }
    .sep {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px !important;
        line-height: 1 !important;
    }
}


@media (max-width: 932px) and (orientation: landscape) {
    .header-row {
        height: 70px !important;
        display: grid !important;
        align-items: center !important;
        position: relative !important;
    }

    .header-main-nav {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
        font-size: 15px !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        white-space: nowrap !important;
    }

    .header-main-link {
        font-size: 15px !important;
        font-weight: 700 !important;
        min-height: auto !important;
    }

    .sep {
        font-size: 16px !important;
        line-height: 1 !important;
    }
}


/* Subtle modern burger + menu styling */
.menu-summary {
    border: 1px solid rgba(12,63,251,.12) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,249,255,.96)) !important;
    box-shadow:
        0 8px 18px rgba(18,42,102,.08),
        inset 0 1px 0 rgba(255,255,255,.8) !important;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease !important;
    backdrop-filter: blur(8px);
}

.menu-summary:hover {
    transform: translateY(-1px);
    border-color: rgba(12,63,251,.2) !important;
    box-shadow:
        0 12px 24px rgba(18,42,102,.1),
        inset 0 1px 0 rgba(255,255,255,.9) !important;
}

.menu-summary:active {
    transform: translateY(0);
}

.menu-summary span {
    background: linear-gradient(90deg, var(--blue), var(--blue-2)) !important;
    border-radius: 999px;
}

.menu-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,255,.98)) !important;
    border: 1px solid rgba(18,42,102,.08) !important;
    box-shadow:
        0 24px 48px rgba(18,42,102,.14),
        0 6px 16px rgba(18,42,102,.06) !important;
    backdrop-filter: blur(14px);
}

.menu-link {
    background:
        linear-gradient(180deg, rgba(248,250,254,.94), rgba(243,247,253,.98)) !important;
    border: 1px solid rgba(18,42,102,.04);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        color .18s ease !important;
}

.menu-link:hover {
    background:
        linear-gradient(180deg, rgba(239,244,255,.96), rgba(233,240,255,.99)) !important;
    border-color: rgba(12,63,251,.12);
    box-shadow:
        0 8px 18px rgba(18,42,102,.06),
        inset 0 1px 0 rgba(255,255,255,.9);
    color: var(--blue) !important;
    transform: translateY(-1px);
}

.menu-link:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    .menu-summary {
        border-color: rgba(12,63,251,.14) !important;
        box-shadow:
            0 6px 14px rgba(18,42,102,.08),
            inset 0 1px 0 rgba(255,255,255,.84) !important;
    }

    .menu-panel {
        box-shadow:
            0 20px 40px rgba(18,42,102,.14),
            0 4px 12px rgba(18,42,102,.06) !important;
    }

    .menu-link {
        font-weight: 700 !important;
    }
}