:root {
    --ink: #0d1929;
    --ink-soft: #13233a;
    --ink-card: #182a43;
    --paper: #f3f1e9;
    --paper-2: #e9e6dc;
    --white: #fffef9;
    --blue: #4f72ff;
    --blue-dark: #3554d5;
    --acid: #c9f963;
    --acid-soft: #e1ff9e;
    --champagne: #d9bd7b;
    --champagne-soft: #f4e8c8;
    --champagne-deep: #a98748;
    --sky: #b8dcff;
    --coral: #ff8d73;
    --text: #152033;
    --muted: #697488;
    --line: rgba(13, 25, 41, .13);
    --line-dark: rgba(255, 255, 255, .13);
    --shadow: 0 30px 90px rgba(9, 22, 40, .16);
    --radius-xl: 40px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --container: 1240px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--text);
    font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }

::selection { background: var(--acid); color: var(--ink); }

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--acid);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.premium-breadcrumbs {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
    color: #8f9bad;
    font-size: 13px;
    font-weight: 680;
}

.premium-breadcrumbs a { color: #d6dce5; text-decoration: none; transition: color .2s ease; }
.premium-breadcrumbs a:hover { color: var(--champagne-soft); }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section { padding: 112px 0; }

.section--dark {
    position: relative;
    overflow: clip;
    background: var(--ink);
    color: var(--white);
}

.section--dark::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    right: -240px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 114, 255, .25), transparent 68%);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(79, 114, 255, .12);
}

.section--dark .eyebrow { color: var(--acid); }
.section--dark .eyebrow::before { box-shadow: 0 0 0 5px rgba(201, 249, 99, .13); }

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

h1, h2, h3 {
    font-weight: 760;
    letter-spacing: -.045em;
    text-wrap: balance;
}

h1 {
    max-width: 800px;
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(48px, 6.35vw, 92px);
    line-height: .98;
}

h2 {
    max-width: 820px;
    margin-bottom: 26px;
    font-size: clamp(38px, 4.6vw, 68px);
    line-height: 1.02;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(23px, 2.2vw, 32px);
    line-height: 1.08;
}

.lead {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.5;
}

.section--dark .lead { color: #b6c0ce; }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--blue);
    color: #fff;
    font-weight: 780;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button::after {
    content: "↗";
    font-size: 19px;
    transition: transform .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
    box-shadow: 0 14px 35px rgba(79, 114, 255, .28);
}

.button:hover::after { transform: translate(2px, -2px); }

.button--acid { border-color: rgba(255,255,255,.18); background: linear-gradient(135deg, #f4e8c8, #d8b86e); color: var(--ink); box-shadow: inset 0 1px rgba(255,255,255,.6), 0 14px 34px rgba(169,135,72,.18); }
.button--acid:hover { background: linear-gradient(135deg, #fff4d8, #e4c77e); box-shadow: inset 0 1px rgba(255,255,255,.72), 0 18px 42px rgba(169,135,72,.26); }

.button--ghost {
    border-color: rgba(255, 255, 255, .22);
    background: transparent;
    color: var(--white);
}

.button--ghost:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .08); box-shadow: none; }
.button--small { min-height: 46px; padding: 11px 17px; border-radius: 12px; font-size: 14px; }

.site-nav .nav-important { color: #a9f0ca; }
.site-nav .nav-important::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #4ee19b; box-shadow: 0 0 0 4px rgba(78,225,155,.1); vertical-align: 1px; }
.service-card--bank { background: linear-gradient(135deg, #0d2c2a, #102238); color: var(--white); }
.service-card--bank .service-card-num { color: #79e6b7; }
.service-card--bank p { color: #b7c7ce; }
.service-card--bank .service-link { color: #79e6b7; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    color: var(--white);
    transition: height .25s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
    height: 72px;
    border-color: rgba(217, 189, 123, .18);
    background: rgba(8, 20, 33, .91);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    color: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 13px;
    background: linear-gradient(145deg, #f6ebce, #d4b36a);
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.08em;
    box-shadow: inset 0 1px rgba(255,255,255,.7), 0 9px 26px rgba(169,135,72,.2);
}

.brand span:last-child { max-width: 94px; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav a {
    position: relative;
    color: #d4dae3;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease;
}

.site-nav a:not(.button)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--champagne);
    transition: transform .25s ease;
}

.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav a[aria-current="page"] { color: #fff; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .button { color: var(--ink); }
.site-nav .button::after { position: static; height: auto; transform: none; background: none; }

.header-contact {
    flex: 0 0 auto;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.015em;
    text-decoration: none;
    white-space: nowrap;
}

.header-contact:hover { color: var(--acid); }
.header-contact__icon { display: none; }

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 13px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 9px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle-lines { position: relative; }
.menu-toggle-lines::before, .menu-toggle-lines::after { content: ""; position: absolute; left: 0; }
.menu-toggle-lines::before { top: -6px; }
.menu-toggle-lines::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { top: 0; transform: rotate(-45deg); }

.hero {
    position: relative;
    min-height: min(980px, 100svh);
    overflow: hidden;
    padding: 152px 0 72px;
    background:
        radial-gradient(circle at 77% 26%, rgba(79, 114, 255, .28), transparent 27%),
        radial-gradient(circle at 60% 88%, rgba(217, 189, 123, .11), transparent 23%),
        linear-gradient(145deg, #071321, var(--ink) 56%, #101d2f);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
    align-items: center;
    gap: 58px;
}

.hero-copy { padding: 30px 0 48px; }
.hero .eyebrow { color: var(--acid); }
.hero .eyebrow::before { box-shadow: 0 0 0 5px rgba(201, 249, 99, .13); }

.hero h1 em {
    color: var(--champagne-soft);
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-weight: 520;
    font-style: normal;
    letter-spacing: -.06em;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 34px;
    color: #b9c3d0;
    font-size: clamp(18px, 1.65vw, 22px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin: 0;
    padding: 0;
    color: #d4dae3;
    font-size: 14px;
    list-style: none;
}

.hero-proof li { display: inline-flex; align-items: center; gap: 9px; }
.hero-proof li::before { content: "✓"; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: rgba(201, 249, 99, .12); color: var(--acid); font-weight: 900; }

.radar-wrap { position: relative; min-height: 660px; }

.hero-photo {
    position: absolute;
    inset: 10px 0 34px 62px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(217,189,123,.34);
    border-radius: 42px;
    background: #1b2d46;
    box-shadow: 0 50px 120px rgba(0,0,0,.38), 0 0 0 8px rgba(255,255,255,.018);
    transform: rotate(1.2deg);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,25,41,.02) 38%, rgba(13,25,41,.76) 100%);
    pointer-events: none;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 42%; }

.hero-photo-tag {
    position: absolute;
    z-index: 1;
    top: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(13,25,41,.76);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-photo-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 14px rgba(201,249,99,.8); }

.radar {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: -36px;
    width: min(365px, 78%);
    overflow: hidden;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 26px;
    background: rgba(13, 25, 41, .76);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .28);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: rotate(-2deg);
}

.radar::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -130px;
    right: -110px;
    border-radius: 50%;
    background: rgba(79, 114, 255, .24);
    filter: blur(15px);
}

.radar-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.radar-title { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 800; }
.radar-title-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px rgba(201, 249, 99, .8); }
.radar-demo { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #aeb8c6; font-size: 11px; font-weight: 700; text-transform: uppercase; }

.radar-main {
    position: relative;
    z-index: 1;
    padding: 26px;
    border-radius: 24px;
    background: var(--white);
    color: var(--ink);
}

.radar-status { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; margin-bottom: 26px; }
.radar-label { margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.radar-status strong { display: block; max-width: 240px; font-size: 27px; line-height: 1.06; letter-spacing: -.04em; }
.status-pill { flex: 0 0 auto; padding: 9px 11px; border-radius: 12px; background: #e8f9c7; color: #3b5c00; font-size: 12px; font-weight: 800; }

.radar-chart {
    position: relative;
    display: flex;
    height: 155px;
    align-items: end;
    gap: 10px;
    padding: 24px 18px 18px;
    overflow: hidden;
    border-radius: 18px;
    background: #eef1f5;
}

.radar-chart::before,
.radar-chart::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(13,25,41,.08);
}

.radar-chart::before { top: 52px; }
.radar-chart::after { top: 101px; }
.bar { position: relative; z-index: 1; flex: 1; min-width: 12px; border-radius: 7px 7px 3px 3px; background: #cbd3de; }
.bar:nth-child(1) { height: 38%; }
.bar:nth-child(2) { height: 54%; }
.bar:nth-child(3) { height: 45%; }
.bar:nth-child(4) { height: 73%; background: var(--blue); }
.bar:nth-child(5) { height: 67%; background: var(--blue); }
.bar:nth-child(6) { height: 88%; background: var(--acid); }
.bar:nth-child(7) { height: 78%; background: var(--acid); }
.bar:nth-child(8) { height: 96%; background: var(--ink); }

.radar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.radar-card { min-height: 108px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.radar-card small { display: block; margin-bottom: 12px; color: var(--muted); font-size: 12px; }
.radar-card strong { display: block; font-size: 18px; line-height: 1.15; letter-spacing: -.02em; }
.radar-card strong::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 8px; border-radius: 50%; background: var(--blue); }
.radar-card:nth-child(2) strong::before { background: var(--coral); }

.radar-wrap .radar-top { margin: 2px 4px 10px; }
.radar-wrap .radar-title { font-size: 12px; }
.radar-wrap .radar-demo { padding: 5px 8px; font-size: 9px; }
.radar-wrap .radar-main { padding: 16px; border-radius: 18px; }
.radar-wrap .radar-status { margin-bottom: 13px; gap: 12px; }
.radar-wrap .radar-label { margin-bottom: 4px; font-size: 10px; }
.radar-wrap .radar-status strong { max-width: 200px; font-size: 19px; }
.radar-wrap .status-pill { padding: 6px 8px; font-size: 10px; }
.radar-wrap .radar-chart { height: 82px; padding: 15px 13px 12px; }
.radar-wrap .radar-chart::before { top: 28px; }
.radar-wrap .radar-chart::after { top: 54px; }
.radar-wrap .radar-grid { display: none; }

.float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(13, 25, 41, .78);
    box-shadow: 0 18px 55px rgba(0,0,0,.25);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    animation: float 5s ease-in-out infinite;
}

.float-card strong { display: block; font-size: 21px; line-height: 1; }
.float-card small { color: #aeb8c6; font-size: 12px; }
.float-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: var(--acid); color: var(--ink); font-weight: 900; }
.float-card--one { top: 38px; left: -12px; }
.float-card--two { right: -18px; bottom: 38px; animation-delay: -2.3s; }
.float-card--two .float-icon { background: var(--sky); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.trust-bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,.1);
    background: var(--ink);
    color: var(--white);
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust-list li { min-height: 122px; padding: 27px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-list li:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.trust-list strong { display: block; margin-bottom: 5px; color: var(--acid); font-size: 28px; line-height: 1; letter-spacing: -.04em; }
.trust-list span { color: #aeb8c6; font-size: 13px; line-height: 1.35; }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 60px;
}

.section-head > div:first-child { flex: 1; }
.section-head .lead { flex: 0 0 38%; }

.shift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.shift-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(169,135,72,.2);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #fffef9, #f0ece1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.shift-card:hover { transform: translateY(-7px); border-color: rgba(169,135,72,.42); box-shadow: var(--shadow); }
.shift-num { display: inline-grid; width: 44px; height: 44px; margin-bottom: 70px; place-items: center; border-radius: 14px; background: var(--paper-2); color: var(--blue-dark); font-weight: 850; }
.shift-card h3 { max-width: 330px; }
.shift-card p { max-width: 340px; margin-bottom: 0; color: var(--muted); }
.shift-card::after { content: ""; position: absolute; width: 150px; height: 150px; top: -70px; right: -60px; border-radius: 50%; background: var(--sky); opacity: .6; }
.shift-card:nth-child(2)::after { background: var(--acid); }
.shift-card:nth-child(3)::after { background: var(--coral); }

.services-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 305px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(217,189,123,.17);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #192c45, #111f33);
    color: var(--white);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:hover { transform: translateY(-5px); border-color: rgba(217,189,123,.48); background: linear-gradient(145deg, #203653, #15263d); }
.service-card--wide { grid-row: span 2; min-height: 628px; background: radial-gradient(circle at 88% 86%, rgba(217,189,123,.18), transparent 29%), linear-gradient(145deg, #173b66, #0b1b2d 72%); }
.service-card--lime { background: linear-gradient(145deg, #f5e9c9, #d8bb78); color: var(--ink); border-color: rgba(255,255,255,.38); }
.service-card--light { background: linear-gradient(145deg, #f4f2eb, #dfe6eb); color: var(--ink); border-color: rgba(255,255,255,.45); }
.service-card.service-card--lime:hover,
.service-card.service-card--lime:focus-within { border-color: rgba(169,135,72,.64); background: linear-gradient(145deg, #fff2d2, #e1c277); color: var(--ink); box-shadow: 0 24px 60px rgba(92,70,29,.2); }
.service-card.service-card--light:hover,
.service-card.service-card--light:focus-within { border-color: rgba(169,135,72,.42); background: linear-gradient(145deg, #fffef9, #e9e2d3); color: var(--ink); box-shadow: 0 24px 60px rgba(13,25,41,.16); }
.service-card-num { display: block; margin-bottom: 75px; color: #99a8ba; font-size: 13px; font-weight: 800; }
.service-card--wide .service-card-num { color: var(--champagne); }
.service-card--lime .service-card-num { color: rgba(13,25,41,.58); }
.service-card--light .service-card-num { color: #687486; }
.service-card h3 { max-width: 390px; }
.service-card p { max-width: 380px; margin-bottom: 22px; color: #b9c3d0; }
.service-card--wide p { color: #c7d0dc; }
.service-card--lime p, .service-card--light p { color: rgba(13,25,41,.7); }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; text-decoration: none; }
.service-link::after { content: "→"; transition: transform .2s ease; }
.service-link:hover::after { transform: translateX(5px); }

.service-orbit { 
    position: absolute;
    width: 300px;
    height: 300px;
    right: -85px;
    bottom: -75px;
    border: 1px solid rgba(217,189,123,.34);
    border-radius: 50%;
}

.service-orbit::before, .service-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.service-orbit::before { inset: 45px; border: 1px solid rgba(217,189,123,.28); }
.service-orbit::after { width: 28px; height: 28px; top: 28px; left: 50px; background: var(--champagne); box-shadow: 0 0 0 10px rgba(217,189,123,.14); }

.audience-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 28px; align-items: stretch; }

.audience-tabs { display: flex; flex-direction: column; gap: 10px; }
.audience-tab {
    display: flex;
    width: 100%;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: transparent;
    color: var(--muted);
    font-weight: 760;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.audience-tab::after { content: "+"; font-size: 20px; }
.audience-tab[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.audience-tab[aria-selected="true"]::after { content: "→"; color: var(--champagne); }

.audience-panel {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    padding: clamp(30px, 5vw, 58px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(169,135,72,.18);
    background: linear-gradient(145deg, #fffef9, #f0ece1);
    box-shadow: var(--shadow);
}

.audience-panel::after { content: attr(data-symbol); position: absolute; right: -12px; bottom: -90px; color: var(--paper-2); font-size: 280px; font-weight: 900; line-height: 1; letter-spacing: -.1em; pointer-events: none; }
.audience-panel-content { position: relative; z-index: 1; max-width: 650px; }
.audience-panel h3 { max-width: 560px; margin-bottom: 18px; font-size: clamp(34px, 4vw, 55px); }
.audience-panel p { max-width: 580px; color: var(--muted); font-size: 18px; }
.audience-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 34px; padding: 0; list-style: none; }
.audience-points li { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border-radius: 14px; background: var(--paper); font-size: 14px; font-weight: 650; }
.audience-points li::before { content: "✓"; color: var(--blue-dark); font-weight: 900; }
.audience-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.audience-more { display: inline-flex; align-items: center; gap: 9px; color: #dfe5ed; font-size: 13px; font-weight: 760; text-decoration: none; }
.audience-more span { color: var(--champagne); font-size: 18px; transition: transform .2s ease; }
.audience-more:hover span { transform: translateX(4px); }

.calc-shell {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    overflow: clip;
    border: 1px solid rgba(217,189,123,.28);
    border-radius: 46px;
    background: #0a1727;
    box-shadow: 0 58px 140px rgba(0,0,0,.34), 0 0 0 8px rgba(255,255,255,.018);
}

.calc-shell::before { content: ""; position: absolute; z-index: 0; width: 560px; height: 560px; top: -330px; left: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(79,114,255,.24), transparent 66%); pointer-events: none; }
.calc-form { position: relative; z-index: 1; padding: clamp(28px, 5vw, 58px); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 46%); }
.calc-form h2 { max-width: 650px; }
.calc-note { max-width: 600px; margin-bottom: 22px; color: #aeb8c6; }
.calc-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 34px; color: #8f9caf; font-size: 11px; font-weight: 720; letter-spacing: .025em; }
.calc-meta span { display: inline-flex; align-items: center; gap: 8px; }
.calc-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 10px rgba(217,189,123,.45); }
.calc-row { margin-bottom: 28px; }
.calc-row--zero { margin-bottom: 34px; }
.calc-row.is-inactive { opacity: .42; }
.calc-label { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 12px; color: #dce1e8; font-size: 14px; font-weight: 750; }
.calc-label output { min-width: 40px; padding: 3px 8px; border: 1px solid rgba(217,189,123,.2); border-radius: 999px; background: rgba(217,189,123,.08); color: var(--champagne-soft); font-size: 13px; text-align: center; }
.calc-label-note { color: #8694a7; font-size: 11px; font-weight: 650; }
.calc-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.calc-columns .calc-row { margin-bottom: 26px; }

.calc-toggle { position: relative; display: block; cursor: pointer; }
.calc-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.calc-toggle-card { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; gap: 15px; min-height: 82px; align-items: center; padding: 15px 17px; border: 1px solid rgba(217,189,123,.18); border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); box-shadow: inset 0 1px rgba(255,255,255,.045); transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease; }
.calc-toggle:hover .calc-toggle-card { transform: translateY(-1px); border-color: rgba(217,189,123,.38); }
.calc-toggle-icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(217,189,123,.22); border-radius: 15px; background: #15263b; color: var(--champagne); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 25px; font-weight: 600; box-shadow: inset 0 1px rgba(255,255,255,.05); transition: background .22s ease, color .22s ease; }
.calc-toggle-copy { display: grid; gap: 2px; min-width: 0; }
.calc-toggle-copy strong { color: #f4f6f8; font-size: 15px; line-height: 1.2; }
.calc-toggle-copy small { color: #8f9caf; font-size: 11px; font-weight: 600; line-height: 1.35; }
.calc-toggle-control { position: relative; width: 50px; height: 28px; padding: 4px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: #26384f; box-shadow: inset 0 3px 8px rgba(0,0,0,.2); transition: background .22s ease, border-color .22s ease; }
.calc-toggle-control > span { display: block; width: 18px; height: 18px; border-radius: 50%; background: #f6f1e7; box-shadow: 0 3px 9px rgba(0,0,0,.34); transition: transform .22s ease, background .22s ease; }
.calc-toggle input:checked + .calc-toggle-card { border-color: rgba(217,189,123,.7); background: linear-gradient(135deg, rgba(217,189,123,.16), rgba(255,255,255,.035)); box-shadow: inset 0 1px rgba(255,255,255,.08), 0 14px 34px rgba(0,0,0,.13); }
.calc-toggle input:checked + .calc-toggle-card .calc-toggle-icon { background: linear-gradient(145deg, #f4e8c8, #d1af64); color: var(--ink); }
.calc-toggle input:checked + .calc-toggle-card .calc-toggle-control { border-color: rgba(255,255,255,.38); background: linear-gradient(135deg, #ecd9a7, #bc9652); }
.calc-toggle input:checked + .calc-toggle-card .calc-toggle-control > span { transform: translateX(22px); background: var(--ink); }
.calc-toggle input:focus-visible + .calc-toggle-card { outline: 3px solid var(--champagne); outline-offset: 3px; }
.calc-business-fields { transition: opacity .2s ease; }
.calc-business-fields.is-disabled { opacity: .38; }

.choice-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid rgba(217,189,123,.15);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
    color: #c4ccd7;
    font-weight: 750;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.choice input:checked + span { border-color: rgba(217,189,123,.68); background: rgba(217,189,123,.13); color: var(--champagne-soft); box-shadow: inset 0 1px rgba(255,255,255,.06); }
.choice input:focus-visible + span { outline: 3px solid var(--champagne); outline-offset: 3px; }

.calc-select {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(217,189,123,.15);
    border-radius: 14px;
    background: #14263c;
    color: #fff;
    color-scheme: dark;
}

.calc-form input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(217,189,123,.82), rgba(79,114,255,.8));
    cursor: pointer;
}

.calc-form input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border: 5px solid #0f2035; border-radius: 50%; background: var(--champagne-soft); box-shadow: 0 0 0 1px rgba(217,189,123,.62), 0 5px 14px rgba(0,0,0,.35); }
.calc-form input[type="range"]::-moz-range-thumb { width: 12px; height: 12px; border: 5px solid #0f2035; border-radius: 50%; background: var(--champagne-soft); box-shadow: 0 0 0 1px rgba(217,189,123,.62), 0 5px 14px rgba(0,0,0,.35); }

.calc-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-check { position: relative; }
.calc-check input { position: absolute; opacity: 0; pointer-events: none; }
.calc-check span { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(217,189,123,.14); border-radius: 12px; background: rgba(255,255,255,.02); color: #bdc6d2; font-size: 13px; font-weight: 700; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.calc-check span::before { content: "+"; color: var(--champagne); }
.calc-check input:checked + span { border-color: rgba(217,189,123,.66); background: rgba(217,189,123,.12); color: #fff; }
.calc-check input:checked + span::before { content: "✓"; color: var(--champagne-soft); }
.calc-check input:focus-visible + span { outline: 3px solid var(--champagne); outline-offset: 3px; }
.calc-checks--services .calc-check span { min-height: 48px; }
.calc-divider { height: 1px; margin: 34px 0; background: linear-gradient(90deg, transparent, rgba(217,189,123,.3), transparent); }

.calc-result {
    position: sticky;
    top: 92px;
    z-index: 1;
    display: flex;
    align-self: start;
    height: fit-content;
    min-height: min(680px, calc(100vh - 116px));
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(30px, 5vw, 58px);
    overflow: hidden;
    border-left: 1px solid rgba(255,255,255,.38);
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.6), transparent 25%),
        linear-gradient(150deg, #f7edd5 0%, #e2ca92 62%, #c8a45d 100%);
    color: var(--ink);
}

.calc-result::before { content: ""; position: absolute; width: 270px; height: 270px; right: -135px; top: 23%; border: 1px solid rgba(13,25,41,.12); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.06), 0 0 0 76px rgba(13,25,41,.025); pointer-events: none; }
.calc-result::after { content: "₽"; position: absolute; right: -32px; bottom: -110px; color: rgba(13,25,41,.075); font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 330px; font-weight: 600; line-height: 1; pointer-events: none; }
.calc-result > * { position: relative; z-index: 1; }
.calc-result-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.calc-result-label { margin-bottom: 0; font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.calc-live { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid rgba(13,25,41,.14); border-radius: 999px; background: rgba(255,255,255,.28); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.calc-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #527d08; box-shadow: 0 0 0 4px rgba(82,125,8,.12); }
.calc-price { display: block; margin-bottom: 18px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: clamp(48px, 5.2vw, 74px); font-weight: 600; font-variant-numeric: tabular-nums; line-height: .95; letter-spacing: -.065em; }
.calc-summary { max-width: 390px; margin-bottom: 34px; color: rgba(13,25,41,.72); font-size: 17px; }
.calc-breakdown { display: grid; gap: 11px; margin: 28px 0 30px; padding: 18px; border: 1px solid rgba(13,25,41,.13); border-radius: 18px; background: rgba(255,255,255,.24); box-shadow: inset 0 1px rgba(255,255,255,.44); }
.calc-breakdown-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; color: rgba(13,25,41,.68); font-size: 13px; }
.calc-breakdown-row strong { color: var(--ink); font-size: 15px; font-variant-numeric: tabular-nums; text-align: right; }
.calc-source { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px; padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.22); color: rgba(13,25,41,.67); font-size: 10px; font-weight: 780; }
.calc-source::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #4e7f00; box-shadow: 0 0 0 4px rgba(78,127,0,.12); }
.calc-result.is-loading .calc-price, .calc-result.is-loading .calc-breakdown, .calc-result.is-loading .calc-summary { opacity: .48; }
.calc-result.is-loading .calc-source::before { animation: pulse 1s ease-in-out infinite; }
.calc-fineprint { max-width: 370px; margin: 22px 0 0; color: rgba(13,25,41,.62); font-size: 12px; }
.calc-result .button { align-self: flex-start; border-color: rgba(217,189,123,.32); background: linear-gradient(145deg, #14263c, #081522); color: #fff; box-shadow: inset 0 1px rgba(255,255,255,.08), 0 16px 38px rgba(13,25,41,.2); }
.calc-result .button:hover { background: linear-gradient(145deg, #1d3451, #0b1b2d); box-shadow: inset 0 1px rgba(255,255,255,.1), 0 20px 44px rgba(13,25,41,.27); }

.compare {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--white);
}

.compare-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-cell { min-height: 92px; display: flex; align-items: center; padding: 23px 28px; border-right: 1px solid var(--line); }
.compare-cell:last-child { border-right: 0; }
.compare-row--head .compare-cell { min-height: 78px; font-size: 14px; font-weight: 850; }
.compare-row--head .compare-cell:nth-child(3) { background: linear-gradient(145deg, #f4e8c8, #d8bb78); }
.compare-cell:first-child { color: var(--muted); font-size: 14px; font-weight: 700; }
.compare-cell:nth-child(2) { color: #747e8d; }
.compare-cell:nth-child(3) { background: #f5eedf; color: var(--ink); font-weight: 720; }
.compare-check { display: inline-grid; width: 28px; height: 28px; flex: 0 0 auto; margin-right: 12px; place-items: center; border-radius: 50%; background: var(--champagne); font-weight: 900; }
.compare-minus { display: inline-grid; width: 28px; height: 28px; flex: 0 0 auto; margin-right: 12px; place-items: center; border-radius: 50%; background: var(--paper-2); color: var(--muted); font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process-card { position: relative; padding: 0 28px 10px 0; counter-increment: step; }
.process-card::before { content: "0" counter(step); display: grid; width: 58px; height: 58px; margin-bottom: 50px; place-items: center; border: 1px solid rgba(217,189,123,.24); border-radius: 17px; background: var(--ink); color: var(--champagne); font-weight: 850; }
.process-card::after { content: ""; position: absolute; top: 28px; left: 70px; right: 12px; height: 1px; background: var(--line); }
.process-card:last-child::after { display: none; }
.process-card h3 { font-size: 24px; }
.process-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

.process-visual { position: relative; height: 500px; margin: 72px 0 0; overflow: hidden; border-radius: var(--radius-xl); background: var(--ink-soft); box-shadow: var(--shadow); }
.process-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,25,41,.83) 0%, rgba(13,25,41,.2) 52%, rgba(13,25,41,.06) 100%); pointer-events: none; }
.process-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.process-caption { position: absolute; z-index: 1; left: clamp(24px, 5vw, 58px); bottom: clamp(24px, 5vw, 54px); max-width: 450px; color: #fff; }
.process-caption span { display: inline-block; margin-bottom: 14px; color: var(--acid); font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.process-caption strong { display: block; margin-bottom: 12px; font-size: clamp(28px, 3.4vw, 47px); line-height: 1; letter-spacing: -.045em; }
.process-caption p { max-width: 410px; margin: 0; color: #d6dce5; font-size: 15px; }
.process-badge { position: absolute; z-index: 1; top: 28px; right: 28px; display: grid; width: 136px; height: 136px; place-items: center; padding: 20px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(13,25,41,.62); color: #fff; font-size: 12px; font-weight: 760; line-height: 1.25; text-align: center; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.process-link-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 22px; padding: 24px 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,254,249,.64); }
.process-link-row p { max-width: 650px; margin: 0; color: var(--muted); font-size: 14px; }
.process-link-row .button { flex: 0 0 auto; }

@keyframes pulse { 0%, 100% { opacity: .45; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.15); } }

.quality-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }

.quality-intro { display: flex; flex-direction: column; justify-content: space-between; min-height: 530px; padding: 40px; border: 1px solid rgba(217,189,123,.22); border-radius: var(--radius-xl); background: radial-gradient(circle at 100% 0, rgba(217,189,123,.12), transparent 32%), linear-gradient(145deg, #152942, #0d1b2d); }
.quality-intro h2 { font-size: clamp(40px, 4.4vw, 64px); }
.quality-intro p { max-width: 500px; color: #aeb8c6; }
.quality-sign { display: flex; align-items: center; gap: 15px; margin-top: 40px; }
.quality-sign-mark { display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 16px; background: linear-gradient(145deg, #f5e9c9, #d5b46d); color: var(--ink); font-size: 20px; font-weight: 900; box-shadow: inset 0 1px rgba(255,255,255,.7); }
.quality-sign strong { display: block; }
.quality-sign span { color: #9eabba; font-size: 13px; }

.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quality-card { min-height: 255px; padding: 28px; border: 1px solid rgba(217,189,123,.16); border-radius: var(--radius-lg); background: linear-gradient(145deg, #192c45, #111f33); }
.quality-icon { display: grid; width: 45px; height: 45px; margin-bottom: 48px; place-items: center; border: 1px solid rgba(217,189,123,.24); border-radius: 14px; background: rgba(217,189,123,.1); color: var(--champagne); font-weight: 900; }
.quality-card h3 { font-size: 24px; }
.quality-card p { margin: 0; color: #aeb8c6; font-size: 14px; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-side { position: sticky; top: 110px; }
.faq-side h2 { font-size: clamp(42px, 4.8vw, 66px); }
.faq-contact { display: inline-flex; margin-top: 24px; align-items: center; gap: 10px; color: var(--blue-dark); font-weight: 800; text-decoration: none; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 27px 56px 27px 0; font-size: 20px; font-weight: 760; letter-spacing: -.02em; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 23px; right: 4px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--white); color: var(--ink); font-size: 21px; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--champagne); }
.faq-answer { max-width: 720px; padding: 0 60px 26px 0; color: var(--muted); }

.lead-section { padding-bottom: 36px; background: var(--paper); }

.lead-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 55px;
    overflow: hidden;
    padding: clamp(32px, 6vw, 72px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(217,189,123,.25);
    background: radial-gradient(circle at 15% 100%, rgba(217,189,123,.16), transparent 34%), linear-gradient(135deg, #173b66, #091827 76%);
    color: #fff;
    box-shadow: 0 40px 110px rgba(9,22,40,.24);
}

.lead-shell > * { min-width: 0; }
.lead-shell::after { content: ""; position: absolute; width: 500px; height: 500px; left: -240px; bottom: -300px; border: 80px solid rgba(255,255,255,.08); border-radius: 50%; pointer-events: none; }
.lead-copy { position: relative; z-index: 1; }
.lead-copy .eyebrow { color: var(--champagne-soft); }
.lead-copy h2 { font-size: clamp(42px, 4.9vw, 70px); }
.lead-copy > p { max-width: 520px; color: #e0e5ff; }
.lead-benefits { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.lead-benefits li { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.lead-benefits li::before { content: "✓"; display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--champagne); color: var(--ink); font-size: 13px; font-weight: 900; }

.lead-form {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    align-self: start;
    padding: clamp(24px, 4vw, 38px);
    border-radius: 28px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 32px 70px rgba(16, 34, 92, .25);
}

.form-grid { display: grid; width: 100%; min-width: 0; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 15px; }
.field { display: grid; min-width: 0; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field .lead-field { display: grid; min-width: 0; gap: 7px; }
.lead-form label:not(.consent) { display: grid; width: 100%; min-width: 0; gap: 7px; color: #596577; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.lead-form label:not(.consent) > input,
.lead-form label:not(.consent) > select,
.lead-form label:not(.consent) > textarea,
.lead-form > input:not([type="hidden"]),
.lead-form > select,
.lead-form > textarea { display: block; width: 100%; min-width: 0; max-width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; background: #f8f8f4; color: var(--ink); font: inherit; letter-spacing: normal; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
.lead-form textarea { min-height: 118px !important; resize: vertical; line-height: 1.5; }
.lead-form label:not(.consent) > input:focus,
.lead-form label:not(.consent) > select:focus,
.lead-form label:not(.consent) > textarea:focus,
.lead-form > input:not([type="hidden"]):focus,
.lead-form > select:focus,
.lead-form > textarea:focus { border-color: var(--champagne-deep); outline: 0; box-shadow: 0 0 0 4px rgba(217,189,123,.18); }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 17px 0; color: #687386; font-size: 12px; line-height: 1.4; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 0; accent-color: var(--champagne-deep); }
.lead-captcha { min-height: 60px; margin: 4px 0 17px; }
.lead-captcha .captcha-cont { display: grid; min-width: 0; grid-template-columns: 200px minmax(0, 1fr); gap: 12px; align-items: start; }
.lead-captcha .captcha-visual { width: 200px; max-width: 100%; }
.lead-captcha .captcha-cont img { display: block; width: 100%; height: 60px; border: 1px solid rgba(169,135,72,.28); border-radius: 12px; object-fit: cover; }
.lead-captcha .captcha-entry { display: grid; min-width: 0; gap: 8px; }
.lead-captcha .captcha-cont input[name="flex_captcha"] { width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; background: #f8f8f4; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.lead-captcha .captcha-cont input[name="flex_captcha"]:focus { border-color: var(--champagne-deep); outline: 0; box-shadow: 0 0 0 4px rgba(217,189,123,.18); }
.lead-captcha .captcha-refresh { display: inline-flex; width: fit-content; align-items: center; gap: 7px; padding: 3px 0; border: 0; background: transparent; color: #6d5a32; font: inherit; font-size: 12px; font-weight: 800; line-height: 1.2; cursor: pointer; transition: color .2s ease, opacity .2s ease; }
.lead-captcha .captcha-refresh:hover { color: var(--ink); }
.lead-captcha .captcha-refresh:disabled { opacity: .58; cursor: wait; }
.lead-captcha .captcha-refresh__icon { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid rgba(169,135,72,.35); border-radius: 50%; background: #f5edd9; font-size: 16px; line-height: 1; }
.lead-captcha .captcha-refresh[aria-busy="true"] .captcha-refresh__icon { animation: captcha-spin .8s linear infinite; }
.lead-captcha .captcha-status:empty { display: none; }
.lead-captcha .captcha-status { color: #8d2e20; font-size: 11px; font-weight: 700; line-height: 1.35; }
@keyframes captcha-spin { to { transform: rotate(360deg); } }
.lead-form .errors-cont:empty { display: none; }
.lead-form .errors-cont { margin: 0 0 16px; padding: 12px 14px; border: 1px solid rgba(184, 65, 45, .24); border-radius: 12px; background: #fff1ed; color: #8d2e20; font-size: 13px; font-weight: 700; }
.lead-form .errors-cont span { display: block; }
.lead-form .error { display: block; margin-top: 6px; color: #8d2e20; font-size: 12px; font-weight: 700; }
.lead-form .button, .lead-form button[type="submit"] { display: inline-flex; width: 100%; min-height: 60px; align-items: center; justify-content: center; gap: 12px; padding: 14px 22px; border: 1px solid rgba(169,135,72,.3); border-radius: 15px; background: linear-gradient(135deg, #f3e4bb, #d3ad5f); color: var(--ink); font: inherit; font-size: 15px; font-weight: 780; letter-spacing: .01em; line-height: 1.2; box-shadow: inset 0 1px rgba(255,255,255,.72), 0 16px 34px rgba(169,135,72,.24); cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.lead-form .button::after, .lead-form button[type="submit"]::after { content: "↗"; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: rgba(13,25,41,.09); font-size: 19px; }
.lead-form .button:hover, .lead-form button[type="submit"]:hover { transform: translateY(-2px); background: linear-gradient(135deg, #fff1cb, #dfbd72); color: var(--ink); box-shadow: inset 0 1px rgba(255,255,255,.82), 0 20px 42px rgba(169,135,72,.32); }
.lead-form .button:disabled, .lead-form button[type="submit"]:disabled { transform: none; background: linear-gradient(135deg, #e7e1d3, #cfc5b3); color: #787164; box-shadow: none; cursor: not-allowed; opacity: .78; }
.form-status { margin: 14px 0 0; padding: 12px 14px; border-radius: 12px; background: #edf7d7; color: #335000; font-size: 13px; font-weight: 700; }

.lead-success {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 480px;
    align-content: center;
    justify-items: start;
    overflow: hidden;
    padding: clamp(32px, 5vw, 54px);
    border: 1px solid rgba(217,189,123,.42);
    border-radius: 28px;
    background: radial-gradient(circle at 100% 0, rgba(217,189,123,.25), transparent 40%), linear-gradient(145deg, #fffef9, #f7f3e8);
    color: var(--ink);
    box-shadow: 0 32px 70px rgba(16,34,92,.25), inset 0 1px rgba(255,255,255,.92);
    text-align: left;
}
.lead-success::after { content: ""; position: absolute; right: -115px; bottom: -155px; width: 310px; height: 310px; border: 58px solid rgba(169,135,72,.1); border-radius: 50%; pointer-events: none; }
.lead-success__mark { position: relative; z-index: 1; display: grid; width: 68px; height: 68px; margin-bottom: 30px; place-items: center; border: 1px solid rgba(169,135,72,.38); border-radius: 22px; background: linear-gradient(145deg, #f7e9bf, #d5b264); color: var(--ink); font-size: 31px; font-weight: 900; box-shadow: inset 0 1px rgba(255,255,255,.8), 0 16px 34px rgba(169,135,72,.24); }
.lead-success__content { position: relative; z-index: 1; }
.lead-success__eyebrow { display: block; margin-bottom: 14px; color: var(--champagne-deep); font-size: 12px; font-weight: 850; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.lead-success h3 { max-width: 570px; margin: 0 0 20px; color: var(--ink); font-size: clamp(44px, 5.2vw, 68px); font-weight: 780; letter-spacing: -.055em; line-height: .98; }
.lead-success p { max-width: 560px; margin: 0; color: #5e697a; font-size: 17px; line-height: 1.6; }
.lead-success__note { position: relative; z-index: 1; display: inline-flex; margin-top: 32px; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid rgba(61,119,84,.18); border-radius: 999px; background: rgba(222,239,225,.72); color: #315f43; font-size: 12px; font-weight: 800; line-height: 1.3; }
.lead-success__note > span { width: 8px; height: 8px; border-radius: 50%; background: #4b9b68; box-shadow: 0 0 0 5px rgba(75,155,104,.12); }

.site-footer { padding: 42px 0 28px; background: var(--paper); }
.footer-top { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 36px; padding: 35px 0 45px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { max-width: 320px; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.footer-col strong { display: block; margin-bottom: 15px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin-bottom: 9px; color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: var(--blue-dark); }
.footer-phone { color: var(--ink) !important; font-size: 18px !important; font-weight: 820; }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding-top: 24px; color: #7b8492; font-size: 12px; }
.footer-legal { max-width: 760px; }
.footer-note { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: var(--paper-2); color: var(--muted); font-weight: 700; }

@media (max-width: 1280px) and (min-width: 1081px) {
    .site-nav { gap: 18px; }
    .header-contact { display: none; }
}

@media (max-width: 1080px) {
    :root { --header-height: 74px; }
    .header-contact { display: none; }
    .site-nav { gap: 18px; }
    .site-nav > a:not(.button) { display: none; }
    .menu-toggle { display: grid; }
    .site-nav {
        position: fixed;
        top: 74px;
        right: 14px;
        left: 14px;
        display: none;
        padding: 22px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 22px;
        background: rgba(13,25,41,.98);
        box-shadow: 0 25px 70px rgba(0,0,0,.35);
    }
    .site-nav.is-open { display: grid; }
    .site-nav.is-open > a:not(.button) { display: block; padding: 8px 2px; font-size: 17px; }
    .site-nav .button { width: 100%; }
    .hero { min-height: auto; padding-top: 130px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { padding-bottom: 0; }
    .radar-wrap { width: min(100%, 720px); min-height: 680px; margin-inline: auto; }
    .hero-photo { inset: 0 42px 55px 100px; }
    .radar { left: 10px; }
    .float-card--one { left: 55px; }
    .float-card--two { right: 15px; }
    .trust-list { grid-template-columns: 1fr 1fr; }
    .trust-list li:nth-child(3) { border-left: 1px solid rgba(255,255,255,.1); border-top: 1px solid rgba(255,255,255,.1); }
    .trust-list li:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-card--wide { grid-row: auto; grid-column: 1 / -1; min-height: 420px; }
    .audience-layout, .quality-layout, .faq-layout { grid-template-columns: 1fr; }
    .audience-tabs { display: grid; grid-template-columns: 1fr 1fr; }
    .faq-side { position: static; }
    .calc-shell, .lead-shell { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 50px 0; }
    .process-card:nth-child(2)::after { display: none; }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 78px 0; }
    .site-header .brand { gap: 9px; font-size: 13px; }
    .site-header .brand-mark { width: 40px; height: 40px; border-radius: 12px; font-size: 18px; }
    .site-header .brand span:last-child { display: inline-block; max-width: 88px; }
    .header-inner { gap: 10px; }
    .header-contact {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        margin-left: auto;
        border: 1px solid rgba(217,189,123,.42);
        border-radius: 13px;
        background: linear-gradient(145deg, rgba(217,189,123,.2), rgba(217,189,123,.08));
        box-shadow: inset 0 1px rgba(255,255,255,.12), 0 8px 24px rgba(0,0,0,.16);
    }
    .header-contact__number { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
    .header-contact__icon { display: grid; width: 20px; height: 20px; place-items: center; }
    .header-contact__icon img { display: block; width: 20px; height: 20px; object-fit: contain; }
    .hero { padding: 112px 0 52px; }
    .hero::before { background-size: 50px 50px; }
    h1 { font-size: clamp(44px, 13.2vw, 65px); }
    h2 { font-size: clamp(36px, 10.5vw, 52px); }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: grid; gap: 12px; }
    .radar-wrap { min-height: 580px; margin-bottom: 28px; padding-top: 20px; }
    .hero-photo { position: relative; inset: auto; width: 100%; height: 540px; border-radius: 30px; transform: none; }
    .hero-photo-tag { top: 16px; right: 16px; }
    .radar { right: 12px; bottom: -22px; left: 12px; width: auto; padding: 11px; border-radius: 23px; transform: none; }
    .radar-main { padding: 19px; }
    .radar-wrap .radar-status { display: flex; }
    .radar-wrap .radar-chart { height: 74px; }
    .float-card { display: none; }
    .trust-list { grid-template-columns: 1fr; }
    .trust-list li, .trust-list li:first-child, .trust-list li:nth-child(3) { min-height: 94px; border: 0; border-top: 1px solid rgba(255,255,255,.1); }
    .section-head { display: block; margin-bottom: 38px; }
    .section-head .lead { margin-top: 18px; }
    .shift-grid, .services-grid { grid-template-columns: 1fr; }
    .shift-card { min-height: 300px; }
    .shift-num { margin-bottom: 55px; }
    .service-card--wide { grid-column: auto; min-height: 380px; }
    .service-card { min-height: 285px; }
    .audience-tabs { grid-template-columns: 1fr; }
    .audience-tab { min-height: 58px; }
    .audience-panel { min-height: 460px; border-radius: 28px; }
    .audience-points { grid-template-columns: 1fr; }
    .audience-panel::after { font-size: 200px; bottom: -60px; }
    .calc-shell { border-radius: 30px; box-shadow: 0 34px 90px rgba(0,0,0,.3); }
    .calc-form { padding: 30px 22px 34px; }
    .calc-meta { gap: 8px 13px; margin-bottom: 28px; }
    .calc-toggle-card { grid-template-columns: 44px minmax(0,1fr) 46px; gap: 11px; min-height: 76px; padding: 13px; border-radius: 18px; }
    .calc-toggle-icon { width: 44px; height: 44px; border-radius: 13px; }
    .calc-toggle-control { width: 46px; }
    .calc-toggle input:checked + .calc-toggle-card .calc-toggle-control > span { transform: translateX(18px); }
    .calc-columns { grid-template-columns: 1fr; gap: 0; }
    .choice-group { grid-template-columns: 1fr 1fr; }
    .calc-result { position: static; min-height: 440px; border-top: 1px solid rgba(255,255,255,.42); border-left: 0; }
    .calc-price { font-size: clamp(42px, 12.5vw, 58px); }
    .compare { border-radius: 24px; }
    .compare-row { grid-template-columns: 1fr 1fr; }
    .compare-cell { min-height: auto; padding: 18px; }
    .compare-cell:first-child { grid-column: 1 / -1; min-height: 54px; border-right: 0; border-bottom: 1px solid var(--line); background: var(--paper); }
    .compare-row--head .compare-cell:first-child { display: none; }
    .compare-row--head .compare-cell { grid-column: auto; min-height: 68px; border-bottom: 0; }
    .process-grid { grid-template-columns: 1fr; gap: 42px; }
    .process-card { padding-right: 0; }
    .process-card::before { margin-bottom: 24px; }
    .process-card::after { display: none; }
    .process-visual { height: 480px; margin-top: 50px; border-radius: 28px; }
    .process-visual::after { background: linear-gradient(180deg, rgba(13,25,41,.04) 20%, rgba(13,25,41,.88) 100%); }
    .process-badge { top: 18px; right: 18px; width: 112px; height: 112px; padding: 16px; font-size: 10px; }
    .process-link-row { display: grid; padding: 22px; }
    .process-link-row .button { width: 100%; }
    .quality-intro { min-height: 430px; padding: 28px; }
    .quality-grid { grid-template-columns: 1fr; }
    .quality-card { min-height: 220px; }
    .quality-icon { margin-bottom: 35px; }
    .faq-layout { gap: 30px; }
    .faq-list summary { padding-right: 46px; font-size: 18px; }
    .faq-answer { padding-right: 35px; }
    .lead-section { padding-bottom: 20px; }
    .lead-shell { gap: 35px; border-radius: 28px; }
    .lead-success { min-height: 420px; padding: 30px 24px; border-radius: 24px; }
    .lead-success__mark { width: 60px; height: 60px; margin-bottom: 26px; border-radius: 19px; font-size: 27px; }
    .lead-success h3 { font-size: clamp(40px, 13vw, 55px); }
    .lead-success p { font-size: 15px; }
    .lead-success__note { align-items: flex-start; border-radius: 16px; }
    .lead-success__note > span { flex: 0 0 auto; margin-top: 4px; }
    .form-grid { grid-template-columns: 1fr; }
    .field--wide { grid-column: auto; }
    .lead-captcha .captcha-cont { grid-template-columns: minmax(0, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-col:last-child { grid-column: 1 / -1; }
    .footer-bottom { display: grid; }
    .footer-note { width: fit-content; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
