/* =====================================================================
   БухКом — авторская дизайн-система поверх Bootstrap 5
   Палитра: глубокий тёмно-синий (доверие) + изумруд (рост, финансы)
   ===================================================================== */
:root {
    --navy-900: #071427;
    --navy-800: #0b1f38;
    --navy-700: #102a4c;
    --navy-600: #17386a;
    --navy-500: #1e4b8a;

    --emerald-600: #0f9d70;
    --emerald-500: #12b886;
    --emerald-400: #2dd4a7;

    --gold: #e0b354;

    --ink:        #10233d;
    --muted:      #5a6b82;
    --line:       #e6ebf2;
    --bg-soft:    #f4f7fb;
    --white:      #ffffff;

    --radius:     18px;
    --radius-sm:  12px;
    --shadow-sm:  0 4px 16px rgba(16, 42, 76, .06);
    --shadow-md:  0 14px 40px rgba(16, 42, 76, .10);
    --shadow-lg:  0 30px 70px rgba(7, 20, 39, .18);

    --ff-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand { font-family: var(--ff-head); letter-spacing: -.015em; }

a { text-decoration: none; }

::selection { background: var(--emerald-500); color: #fff; }

.container { max-width: 1200px; }

/* ------------------------- Кнопки ------------------------- */
.btn { font-weight: 600; border-radius: 999px; padding: .62rem 1.4rem; transition: all .22s ease; }
.btn-lg { padding: .85rem 1.9rem; }
.btn-sm { padding: .45rem 1rem; }

.btn-brand {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
    color: #fff; border: none;
    box-shadow: 0 10px 24px rgba(18, 184, 134, .30);
}
.btn-brand:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(18, 184, 134, .40); }

.btn-accent {
    background: var(--gold); color: var(--navy-900); border: none; font-weight: 700;
    box-shadow: 0 10px 24px rgba(224, 179, 84, .30);
}
.btn-accent:hover { color: var(--navy-900); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(224, 179, 84, .42); }

.btn-outline-dark-soft {
    border: 1.5px solid var(--line); color: var(--ink); background: #fff;
}
.btn-outline-dark-soft:hover { border-color: var(--navy-600); color: var(--navy-700); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-ghost { background: rgba(16,42,76,.06); color: var(--navy-700); border: none; }
.btn-ghost:hover { background: rgba(16,42,76,.12); color: var(--navy-800); }

/* ------------------------- Топбар ------------------------- */
.topbar {
    background: var(--navy-900);
    color: rgba(255,255,255,.72);
    font-size: .82rem;
    padding: .5rem 0;
}
.topbar a { color: rgba(255,255,255,.72); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__soc { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); font-size: .85rem; }
.topbar__soc:hover { background: var(--emerald-500); color: #fff !important; }

/* ------------------------- Навигация ------------------------- */
.site-nav {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(255,255,255,.9);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    padding: .55rem 0;
    transition: box-shadow .25s, padding .25s;
}
.site-nav.scrolled { box-shadow: 0 8px 30px rgba(7,20,39,.08); padding: .35rem 0; }

.navbar-brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
    display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center;
    border-radius: 13px; font-size: 1.25rem; color: #fff; position: relative;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 48%, var(--emerald-600) 130%);
    box-shadow: 0 8px 20px rgba(16,42,76,.28), inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text__name { font-weight: 800; font-size: 1.25rem; color: var(--navy-800); letter-spacing: -.01em; }
.brand-text__sub { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-family: var(--ff-body); font-weight: 600; }

/* Акцент доменной зоны .by — связывает логотип с фирменным изумрудом */
.brand-tld { color: var(--emerald-500); }
.footer-brand .brand-tld, .auth-logo .brand-tld { color: var(--emerald-400); }

.site-nav .nav-link {
    font-weight: 600; color: var(--ink); padding: .5rem .95rem; border-radius: 10px; position: relative;
}
.site-nav .nav-link:hover { color: var(--emerald-600); }
.site-nav .nav-link.active { color: var(--emerald-600); }
.site-nav .nav-link.active::after {
    content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .25rem; height: 2px;
    background: var(--emerald-500); border-radius: 2px;
}

/* ------------------------- Общие секции ------------------------- */
.section { padding: 6rem 0; }
.section--soft { background: var(--bg-soft); }

.section-head { max-width: 720px; margin: 0 auto 3.2rem; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
    display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--emerald-600); margin-bottom: .8rem;
    padding: .3rem .8rem; border-radius: 999px; background: rgba(18,184,134,.10);
}
.eyebrow--light { color: #7ef0cc; background: rgba(255,255,255,.10); }

.section-title { font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--navy-800); margin-bottom: 1rem; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin: 0; }

.pill {
    display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .82rem;
    padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.pill--light { background: rgba(18,184,134,.12); color: var(--emerald-600); }

/* ------------------------- HERO ------------------------- */
.hero { position: relative; padding: 2.75rem 0 5rem; overflow: hidden; background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero__blob--1 { width: 460px; height: 460px; top: -160px; right: -80px; background: radial-gradient(circle, rgba(45,212,167,.55), transparent 70%); }
.hero__blob--2 { width: 420px; height: 420px; bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(30,75,138,.35), transparent 70%); }
.hero__grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 46px 46px; opacity: .35;
    mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
}

.hero__title { font-weight: 800; font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 1.08; color: var(--navy-900); margin-bottom: 1.3rem; }
.hero__lead { font-size: 1.18rem; color: var(--muted); max-width: 560px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero__trust-item { font-weight: 600; color: var(--navy-700); font-size: .95rem; }
.hero__trust-item i { color: var(--emerald-500); margin-right: .35rem; }

.hero__card {
    background: #fff; border: 1px solid var(--line); border-radius: 24px;
    padding: 2rem; box-shadow: var(--shadow-lg); position: relative;
}
.hero__card-head { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.hero__card-badge {
    width: 54px; height: 54px; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--emerald-600), var(--emerald-400));
}
.hero__card-title { font-weight: 800; font-size: 1.15rem; color: var(--navy-800); }
.hero__card-sub { color: var(--muted); font-size: .9rem; }
.hero__mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-radius: 14px; overflow: hidden; margin: 1.4rem 0; }
.hero__mini { background: #fff; padding: 1.1rem 1rem; }
.hero__mini-value { font-family: var(--ff-head); font-weight: 800; font-size: 1.7rem; color: var(--emerald-600); }
.hero__mini-label { font-size: .82rem; color: var(--muted); }
.hero__card-foot { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.hero__card-foot i { color: var(--navy-500); font-size: 1.05rem; margin-top: .1rem; }

/* ------------------------- Трастбар ------------------------- */
.trustbar { border-bottom: 1px solid var(--line); padding: 1.6rem 0; background: #fff; }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.trustbar__label { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.trustbar__items { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.trustbar__items span { font-weight: 700; color: var(--navy-700); font-size: .98rem; }
.trustbar__items i { color: var(--emerald-500); margin-right: .4rem; }

/* ------------------------- Карточки-фичи ------------------------- */
.feature-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card--sm { padding: 1.6rem; }
.feature-card__icon {
    display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center;
    border-radius: 15px; font-size: 1.5rem; margin-bottom: 1.2rem;
    color: var(--emerald-600); background: rgba(18,184,134,.10);
}
.feature-card:hover .feature-card__icon { background: linear-gradient(135deg, var(--emerald-600), var(--emerald-400)); color: #fff; }
.feature-card__title { font-weight: 700; font-size: 1.15rem; color: var(--navy-800); margin-bottom: .55rem; }
.feature-card__text { color: var(--muted); font-size: .96rem; margin: 0; }

/* ------------------------- Карточки-услуги ------------------------- */
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.9rem; position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.service-card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(var(--emerald-500), var(--emerald-400));
    transform: scaleY(0); transform-origin: top; transition: transform .28s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
    display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center;
    border-radius: 14px; font-size: 1.4rem; margin-bottom: 1.1rem;
    color: var(--navy-600); background: rgba(30,75,138,.08);
}
.service-card--accent .service-card__icon { color: var(--emerald-600); background: rgba(18,184,134,.10); }
.service-card__title { font-weight: 700; font-size: 1.1rem; color: var(--navy-800); margin-bottom: .5rem; }
.service-card__text { color: var(--muted); font-size: .95rem; margin: 0; }

/* ------------------------- Маркетплейсы ------------------------- */
.market { background: radial-gradient(circle at 20% 20%, var(--navy-700), var(--navy-900) 70%); color: #fff; position: relative; overflow: hidden; }
.market__lead { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 1.5rem; }
.market__price { display: inline-flex; flex-direction: column; margin-bottom: 1.5rem; }
.market__price-value { font-family: var(--ff-head); font-weight: 800; font-size: 2.1rem; color: var(--gold); line-height: 1.1; }
.market__price-note { font-size: .88rem; color: rgba(255,255,255,.6); }
.market__price--inline { flex-direction: row; align-items: center; }
.market__panel {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px; padding: 2rem; backdrop-filter: blur(6px);
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; padding: .55rem 0; font-weight: 500; }
.check-list li i { color: var(--emerald-500); font-size: 1.15rem; margin-top: .1rem; flex-shrink: 0; }
.check-list--dark li { color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.08); }
.check-list--dark li:last-child { border-bottom: none; }
.check-list--dark li i { color: var(--emerald-400); }

/* ------------------------- Процесс ------------------------- */
.process__step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; position: relative; transition: transform .25s, box-shadow .25s; }
.process__step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process__num { font-family: var(--ff-head); font-weight: 800; font-size: 2.4rem; color: rgba(18,184,134,.22); line-height: 1; display: block; margin-bottom: .6rem; }
.process__title { font-weight: 700; font-size: 1.12rem; color: var(--navy-800); margin-bottom: .5rem; }
.process__text { color: var(--muted); font-size: .95rem; margin: 0; }

/* ------------------------- Тарифы ------------------------- */
.price-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
    border-radius: 20px; padding: 2rem 1.7rem; position: relative; transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card--featured {
    border: none; color: #fff;
    background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
    box-shadow: var(--shadow-lg); transform: translateY(-8px);
}
.price-card--featured:hover { transform: translateY(-12px); }
.price-card__badge {
    position: absolute; top: 1.2rem; right: 1.2rem; background: var(--gold); color: var(--navy-900);
    font-weight: 700; font-size: .72rem; padding: .28rem .7rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}
.price-card__name { font-family: var(--ff-head); font-weight: 800; font-size: 1.35rem; color: inherit; }
.price-card--featured .price-card__name { color: #fff; }
.price-card__name, .price-card:not(.price-card--featured) .price-card__name { color: var(--navy-800); }
.price-card__desc { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; }
.price-card--featured .price-card__desc { color: rgba(255,255,255,.65); }
.price-card__price { display: flex; align-items: baseline; gap: .4rem; padding-bottom: 1.2rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.price-card--featured .price-card__price { border-color: rgba(255,255,255,.14); }
.price-card__from { color: var(--muted); font-size: .9rem; }
.price-card--featured .price-card__from { color: rgba(255,255,255,.6); }
.price-card__value { font-family: var(--ff-head); font-weight: 800; font-size: 2.5rem; color: var(--emerald-600); line-height: 1; }
.price-card--featured .price-card__value { color: var(--emerald-400); }
.price-card__unit { color: var(--muted); font-size: .88rem; }
.price-card--featured .price-card__unit { color: rgba(255,255,255,.6); }
.price-card__list { list-style: none; padding: 0; margin: 0 0 1.6rem; flex-grow: 1; }
.price-card__list li { display: flex; align-items: flex-start; gap: .55rem; padding: .4rem 0; font-size: .93rem; color: var(--ink); }
.price-card--featured .price-card__list li { color: rgba(255,255,255,.85); }
.price-card__list li i { color: var(--emerald-500); margin-top: .18rem; flex-shrink: 0; }
.price-card--featured .price-card__list li i { color: var(--emerald-400); }

.price-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; margin-top: 3rem; }
.price-notes__item { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--navy-700); }
.price-notes__item i { color: var(--emerald-500); }

/* ------------------------- Заголовки внутренних страниц ------------------------- */
.page-hero { position: relative; padding: 3.5rem 0 3rem; background: var(--bg-soft); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background: radial-gradient(circle at 85% -20%, rgba(45,212,167,.18), transparent 55%); }
.page-hero--dark { background: radial-gradient(circle at 20% 20%, var(--navy-700), var(--navy-900) 70%); }
.page-hero__bg--dark { background: none; }
.page-hero__title { font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); color: var(--navy-900); margin-bottom: .8rem; }
.page-hero__lead { color: var(--muted); font-size: 1.12rem; max-width: 720px; margin: 0; }
.page-hero__lead--light { color: rgba(255,255,255,.8); }
.crumbs { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.crumbs a { color: var(--emerald-600); font-weight: 600; }
.crumbs--light { color: rgba(255,255,255,.6); }
.crumbs--light a { color: var(--emerald-400); }

/* ------------------------- Highlight-карточка ------------------------- */
.highlight-card {
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: #fff;
    border-radius: 24px; padding: 2.6rem; box-shadow: var(--shadow-lg);
}
.highlight-card__icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(255,255,255,.10); display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--emerald-400); flex-shrink: 0; }
.highlight-card__body { flex: 1 1 320px; }
.highlight-card__body h3 { font-weight: 800; font-size: 1.4rem; margin-bottom: .4rem; }
.highlight-card__body p { color: rgba(255,255,255,.78); margin: 0; }

/* ------------------------- Мок-дашборд ------------------------- */
.mock-dashboard { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; }
.mock-dashboard__bar { display: flex; align-items: center; gap: .5rem; padding: .9rem 1.2rem; background: var(--navy-900); }
.mock-dashboard__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.25); }
.mock-dashboard__bar span:nth-child(1) { background: #ff5f57; } .mock-dashboard__bar span:nth-child(2) { background: #febc2e; } .mock-dashboard__bar span:nth-child(3) { background: #28c840; }
.mock-dashboard__bar em { margin-left: auto; color: rgba(255,255,255,.6); font-style: normal; font-size: .8rem; }
.mock-dashboard__body { padding: 1.6rem; }
.mock-kpi { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.6rem; }
.mock-kpi__item { background: var(--bg-soft); border-radius: 14px; padding: 1rem; }
.mock-kpi__item span { display: block; font-size: .78rem; color: var(--muted); }
.mock-kpi__item b { font-family: var(--ff-head); font-size: 1.15rem; color: var(--navy-800); }
.mock-kpi__item--accent { background: rgba(18,184,134,.10); }
.mock-kpi__item--accent b { color: var(--emerald-600); }
.mock-chart { display: flex; align-items: flex-end; gap: .7rem; height: 130px; padding-top: 1rem; border-top: 1px dashed var(--line); }
.mock-chart span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(var(--emerald-400), var(--emerald-600)); opacity: .85; }

/* ------------------------- Контакты ------------------------- */
.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.6rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem 1.3rem; transition: box-shadow .2s, transform .2s; }
a.contact-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-item__icon { width: 48px; height: 48px; border-radius: 13px; background: rgba(18,184,134,.10); color: var(--emerald-600); display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-item__label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-item__value { font-weight: 700; color: var(--navy-800); }
.contact-messengers { display: flex; flex-wrap: wrap; gap: .8rem; }
.contact-msg { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; padding: .6rem 1.1rem; border-radius: 999px; color: #fff; }
.contact-msg--tg { background: #2aabee; } .contact-msg--wa { background: #25d366; } .contact-msg--vb { background: #7360f2; }
.contact-msg:hover { color: #fff; transform: translateY(-2px); }

.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 2.2rem; box-shadow: var(--shadow-sm); }
.contact-form-card__title { font-weight: 800; font-size: 1.5rem; color: var(--navy-800); margin-bottom: .3rem; }
.contact-form-card__sub { color: var(--muted); margin-bottom: 1.6rem; }
.contact-form-card__note { font-size: .85rem; color: var(--muted); }
.form-label { font-weight: 600; font-size: .9rem; color: var(--navy-700); }
.form-control { border-radius: 12px; border: 1.5px solid var(--line); padding: .7rem .9rem; }
.form-control:focus { border-color: var(--emerald-500); box-shadow: 0 0 0 .2rem rgba(18,184,134,.15); }

.requisites-card { margin-top: 1.6rem; background: var(--bg-soft); border-radius: 18px; padding: 1.6rem 1.8rem; }
.requisites-card__title { font-weight: 800; font-size: 1.1rem; color: var(--navy-800); margin-bottom: 1rem; }
.requisites-card__item { display: flex; flex-direction: column; }
.requisites-card__item span { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.requisites-card__item b { color: var(--navy-800); font-size: .95rem; word-break: break-all; }

/* ------------------------- CTA-полоса ------------------------- */
.cta-band { padding: 4rem 0; background: radial-gradient(circle at 15% 30%, var(--emerald-600), var(--navy-800) 75%); color: #fff; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.8rem; }
.cta-band__title { font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .4rem; }
.cta-band__text { color: rgba(255,255,255,.82); margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ------------------------- Подвал ------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.68); padding: 4.5rem 0 1.8rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.footer-about { font-size: .95rem; max-width: 340px; }
.footer-soc { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-soc a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.07); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.footer-soc a:hover { background: var(--emerald-500); transform: translateY(-3px); }
.footer-title { color: #fff; font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.2rem; }
.footer-links, .footer-contacts, .footer-req { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contacts li, .footer-req li { margin-bottom: .7rem; font-size: .93rem; }
.footer-links a { color: rgba(255,255,255,.68); transition: color .2s; }
.footer-links a:hover { color: var(--emerald-400); }
.footer-contacts li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contacts i { color: var(--emerald-400); margin-top: .2rem; }
.footer-contacts a { color: rgba(255,255,255,.82); }
.footer-contacts a:hover { color: #fff; }
.footer-req li span { color: rgba(255,255,255,.5); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; }
.footer-bottom__note { color: rgba(255,255,255,.4); }

/* ------------------------- Наверх ------------------------- */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 14px; border: none; background: var(--navy-800); color: #fff; font-size: 1.2rem; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .28s; z-index: 1040; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--emerald-600); }

/* =====================================================================
   Страница входа
   ===================================================================== */
.auth-body { min-height: 100vh; background: var(--navy-900); }
.auth-shell { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 100vh; }

.auth-brand { position: relative; overflow: hidden; padding: 3.5rem; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: radial-gradient(circle at 25% 20%, var(--navy-600), var(--navy-900) 70%); }
.auth-brand__glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; top: -120px; right: -140px; background: radial-gradient(circle, rgba(45,212,167,.35), transparent 70%); filter: blur(40px); }
.auth-brand__inner { position: relative; z-index: 1; max-width: 460px; }
.auth-logo { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 3.5rem; }
.auth-logo .brand-name { font-family: var(--ff-head); font-weight: 800; font-size: 1.5rem; color: #fff; }
.auth-brand__title { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1.12; margin-bottom: 1.2rem; }
.auth-brand__lead { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 2rem; }
.auth-brand__list { list-style: none; padding: 0; margin: 0; }
.auth-brand__list li { display: flex; align-items: center; gap: .7rem; padding: .5rem 0; color: rgba(255,255,255,.9); font-weight: 500; }
.auth-brand__list i { color: var(--emerald-400); font-size: 1.25rem; }
.auth-brand__footer { position: relative; z-index: 1; font-size: .82rem; color: rgba(255,255,255,.45); }

.auth-panel { display: flex; align-items: center; justify-content: center; padding: 2.5rem; background: #fff; }
.auth-card { width: 100%; max-width: 400px; }
.auth-card__head { text-align: center; margin-bottom: 2rem; }
.auth-lock { display: inline-flex; width: 62px; height: 62px; border-radius: 18px; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; background: linear-gradient(135deg, var(--emerald-600), var(--emerald-400)); box-shadow: 0 12px 26px rgba(18,184,134,.32); margin-bottom: 1.2rem; }
.auth-card__head h2 { font-weight: 800; font-size: 1.7rem; color: var(--navy-800); margin-bottom: .4rem; }
.auth-card__head p { color: var(--muted); font-size: .95rem; margin: 0; }
.auth-alert { border-radius: 12px; font-size: .92rem; }
.auth-card .form-control { height: 58px; }
.form-floating > label { color: var(--muted); }
.auth-pass { position: relative; }
.auth-eye { position: absolute; top: 50%; right: 14px; transform: translateY(-50%); border: none; background: none; color: var(--muted); font-size: 1.1rem; cursor: pointer; padding: .3rem; z-index: 5; }
.auth-eye:hover { color: var(--emerald-600); }
.auth-hint { margin-top: 1.6rem; text-align: center; font-size: .86rem; color: var(--muted); }
.auth-hint code { background: var(--bg-soft); padding: .12rem .45rem; border-radius: 6px; color: var(--navy-700); font-weight: 600; }

/* =====================================================================
   Адаптив
   ===================================================================== */
@media (max-width: 991.98px) {
    .section { padding: 4rem 0; }
    .site-nav .navbar-collapse { background: #fff; margin-top: .8rem; padding: 1rem; border-radius: 16px; box-shadow: var(--shadow-md); }
    .site-nav .nav-link.active::after { display: none; }
    .navbar-nav .nav-item.ms-lg-2 { margin-top: .6rem; }
    .price-card--featured, .price-card--featured:hover { transform: none; }
    .auth-shell { grid-template-columns: 1fr; }
    .auth-brand { display: none; }
    .auth-panel { min-height: 100vh; }
}
@media (max-width: 575.98px) {
    .hero { padding: 3rem 0 3.5rem; }
    .section { padding: 3.2rem 0; }
    .hero__card { padding: 1.4rem; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .mock-kpi { grid-template-columns: 1fr; }
    .auth-panel { padding: 1.6rem; }
}
