

/* Start:/local/css/kontur/kontur-logistika.css?177871321334308*/
/* ============================================================
   kontur-logistika.css — Транспортный ЭДО / Контур.Логистика
   Префикс: kl_
   Colors: #00bea2 (accent/teal), #013f54 (dark bg)
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --accent:           #00bea2;
    --accent-hover:     #00a88e;
    --accent-light:     rgba(0, 190, 162, 0.1);
    --bg-dark:          #013f54;
    --bg-dark-lighter:  #01516e;
    --text-main:        #1a1a2e;
    --text-secondary:   #64748b;
    --white:            #ffffff;
    --gray-bg:          #f4f7fa;
    --gray-border:      #e2e8f0;
    --card-shadow:      0 2px 16px rgba(0,0,0,0.06);
    --card-shadow-hover:0 6px 24px rgba(0,0,0,0.1);
    --radius:           12px;
    --radius-sm:        8px;
    --transition:       0.25s ease;
    --font-display:     'Source Serif 4', Georgia, serif;
    --font-body:        'Manrope', system-ui, sans-serif;
    --max-w:            1180px;
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--text-main); line-height: 1.65; background: var(--white); -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── HEADER ─── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(1, 63, 84, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 64px;
}
.logo {
    font-family: var(--font-body); font-weight: 800; font-size: 20px;
    color: var(--white); letter-spacing: -0.3px; display: flex; align-items: center; gap: 10px;
}
.logo-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.header-nav a:hover { color: var(--white); }
.header-cta {
    background: var(--accent); color: var(--white); font-size: 14px; font-weight: 600;
    padding: 10px 20px; border-radius: var(--radius-sm); border: none; cursor: pointer;
    transition: background var(--transition);
}
.header-cta:hover { background: var(--accent-hover); color: var(--white); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-sm); font-size: 15px;
    font-weight: 600; cursor: pointer; border: none; transition: all var(--transition);
    font-family: var(--font-body); text-decoration: none;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,190,162,0.3); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--bg-dark); color: var(--white); }
.btn-dark:hover { background: var(--bg-dark-lighter); color: var(--white); }

/* ─── HERO ─── */
.hero {
    background: var(--bg-dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 80% 20%, rgba(0,190,162,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(0,190,162,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 460px; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero-content h1 {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 46px);
    font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-content h1 span { color: var(--accent); }
.hero-subtitle {
    font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7;
    margin-bottom: 32px; max-width: 540px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-feature { display: flex; gap: 12px; align-items: flex-start; }
.hero-feature-icon {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px;
    background: rgba(0,190,162,0.12); display: flex; align-items: center; justify-content: center;
}
.hero-feature-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; }
.hero-feature-text { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.hero-feature-text strong { color: rgba(255,255,255,0.95); font-weight: 600; display: block; font-size: 14px; margin-bottom: 2px; }

/* ═══════════════════════════════════════════════ */
/* ═══  HERO ANIMATION  ═══════════════════════════ */
/* ═══════════════════════════════════════════════ */

.kl-anim {
    position: relative;
    width: 100%;
    height: 420px;
    animation: kl_fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes kl_fadeIn {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Дорожная линия — горизонтальная трасса */
.kl-road {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 190, 162, 0.2);
    transform: translateY(-50%);
}
.kl-road::before,
.kl-road::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 190, 162, 0.4);
}
.kl-road::before { left: 0; }
.kl-road::after  { right: 0; }

/* Орбитальные кольца вокруг центра */
.kl-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0, 190, 162, 0.15);
    transform: translate(-50%, -50%) scale(0);
    animation: kl_orbit_pulse 3.5s ease-out infinite;
    pointer-events: none;
}
.kl-orbit--1 { width: 160px; height: 160px; animation-delay: 0s; }
.kl-orbit--2 { width: 260px; height: 260px; animation-delay: 1.1s; border-color: rgba(0,190,162,0.08); }
.kl-orbit--3 { width: 360px; height: 360px; animation-delay: 2.2s; border-color: rgba(0,190,162,0.05); }

@keyframes kl_orbit_pulse {
    0%   { transform: translate(-50%,-50%) scale(0.25); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(1.15); opacity: 0; }
}

/* Центральный узел — фура / транспорт */
.kl-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 20px;
    background: rgba(0, 190, 162, 0.12);
    border: 1.5px solid rgba(0, 190, 162, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--accent);
    z-index: 5;
    box-shadow: 0 0 32px rgba(0,190,162,0.15);
    animation: kl_core_pulse 3s ease-in-out infinite;
}
.kl-core svg { width: 34px; height: 34px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.kl-core span { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

@keyframes kl_core_pulse {
    0%, 100% { box-shadow: 0 0 24px rgba(0,190,162,0.12); }
    50%       { box-shadow: 0 0 40px rgba(0,190,162,0.28); }
}

/* Узлы — участники перевозки по 4 углам */
.kl-node {
    position: absolute;
    width: 66px;
    height: 66px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    z-index: 4;
    transition: all 0.3s ease;
}
.kl-node:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(0,190,162,0.4);
}
.kl-node svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 2; }
.kl-node span { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }

/* Позиции по кругу */
.kl-node--1 { /* Грузоотправитель — сверху слева */
    top: 26px; left: 26px;
    animation: kl_float 4.5s ease-in-out 0s infinite;
}
.kl-node--2 { /* Перевозчик — сверху справа */
    top: 26px; right: 26px;
    animation: kl_float 4.5s ease-in-out 1.1s infinite;
}
.kl-node--3 { /* Экспедитор — снизу слева */
    bottom: 26px; left: 26px;
    animation: kl_float 4.5s ease-in-out 2.2s infinite;
}
.kl-node--4 { /* Грузополучатель — снизу справа */
    bottom: 26px; right: 26px;
    animation: kl_float 4.5s ease-in-out 3.3s infinite;
}

@keyframes kl_float {
    0%, 100% { filter: brightness(1); }
    50%       { filter: brightness(1.2); box-shadow: 0 4px 20px rgba(0,190,162,0.2); }
}

/* Бегущие точки — документы летят от участников к центру */
.kl-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(0,190,162,0.8);
    z-index: 6;
    pointer-events: none;
}

/* Точка 1: левый верх → центр */
.kl-dot--1 { animation: kl_dot1 2.6s linear 0s infinite; }
@keyframes kl_dot1 {
    0%   { top: 56px;  left: 56px;  opacity: 0; }
    10%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { top: calc(50% - 3.5px); left: calc(50% - 3.5px); opacity: 0; }
}

/* Точка 2: правый верх → центр */
.kl-dot--2 { animation: kl_dot2 2.6s linear 0.65s infinite; }
@keyframes kl_dot2 {
    0%   { top: 56px;  right: 56px; left: auto; opacity: 0; }
    10%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { top: calc(50% - 3.5px); right: calc(50% - 3.5px); left: auto; opacity: 0; }
}

/* Точка 3: левый низ → центр */
.kl-dot--3 { animation: kl_dot3 2.6s linear 1.3s infinite; }
@keyframes kl_dot3 {
    0%   { bottom: 56px; top: auto; left: 56px; opacity: 0; }
    10%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { bottom: calc(50% - 3.5px); top: auto; left: calc(50% - 3.5px); opacity: 0; }
}

/* Точка 4: правый низ → центр */
.kl-dot--4 { animation: kl_dot4 2.6s linear 1.95s infinite; }
@keyframes kl_dot4 {
    0%   { bottom: 56px; top: auto; right: 56px; left: auto; opacity: 0; }
    10%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { bottom: calc(50% - 3.5px); top: auto; right: calc(50% - 3.5px); left: auto; opacity: 0; }
}

/* Плавающие статус-теги */
.kl-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 7;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    backdrop-filter: blur(6px);
}
.kl-badge svg { width: 12px; height: 12px; flex-shrink: 0; }

.kl-badge--signed {
    top: 50%;
    left: -20px;
    transform: translateY(-70px);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(0,190,162,0.35);
    color: var(--accent);
    animation: kl_badge_float 5s ease-in-out 0s infinite;
}
.kl-badge--sent {
    top: 50%;
    right: -12px;
    transform: translateY(30px);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    animation: kl_badge_float 5s ease-in-out 2.5s infinite;
}
.kl-badge--counter {
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    color: var(--accent);
    animation: kl_badge_float 6s ease-in-out 1.2s infinite;
}

@keyframes kl_badge_float {
    0%, 100% { transform: translateY(var(--ty, 0)); }
    50%       { transform: translateY(calc(var(--ty, 0) - 7px)); }
}
.kl-badge--signed { --ty: -70px; }
.kl-badge--sent   { --ty: 30px; }
.kl-badge--counter { --ty: 0px; transform: translateX(-50%) translateY(0); }
@keyframes kl_badge_counter {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-7px); }
}
.kl-badge--counter { animation: kl_badge_counter 6s ease-in-out 1.2s infinite; }

/* Соединительные линии (SVG диагонали) */
.kl-lines {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-alt  { background: var(--gray-bg); }
.section-dark { background: var(--bg-dark); color: var(--white); }

.section-header { max-width: 680px; margin-bottom: 48px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }

.section-header h2 {
    font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 600; color: var(--text-main); line-height: 1.25;
    margin-bottom: 16px; letter-spacing: -0.3px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ─── CHANGES BLOCK ─── */
.changes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; position: relative; }
.changes-text p { margin-bottom: 16px; font-size: 15.5px; line-height: 1.75; color: var(--text-main); }
.changes-text p:last-child { margin-bottom: 0; }
.changes-timeline {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--card-shadow); border: 1px solid var(--gray-border);
    position: sticky;
    top: 88px;
    align-self: flex-start;
}
.timeline-item {
    display: flex; gap: 16px; padding-bottom: 24px; margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-border);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline-marker {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent-light); display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700; color: var(--accent);
}
.timeline-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.timeline-content p  { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; }
.changes-cta { margin-top: 40px; text-align: center; }

/* ─── DOCUMENT CARDS ─── */
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.doc-card {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    border: 1px solid var(--gray-border); transition: all var(--transition);
    position: relative; overflow: hidden;
}
.doc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent); opacity: 0; transition: opacity var(--transition);
}
.doc-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.doc-card:hover::before { opacity: 1; }
.doc-card-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--accent-light); display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.doc-card-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2; }
.doc-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.doc-card .doc-meta { font-size: 12.5px; font-weight: 600; color: var(--accent); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.doc-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }
.doc-card .doc-help { font-size: 13.5px; color: var(--text-main); padding-top: 12px; border-top: 1px solid var(--gray-border); line-height: 1.6; }

.sample-note {
    margin-top: 32px; background: var(--accent-light);
    border-left: 3px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
}
.sample-note p { font-size: 14.5px; color: var(--text-main); line-height: 1.65; }

/* ─── AUDIENCE TABS ─── */
.tabs-nav {
    display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 32px;
    border-bottom: 2px solid var(--gray-border); padding-bottom: 0;
}
.tab-btn {
    padding: 12px 20px; font-size: 14px; font-weight: 600;
    font-family: var(--font-body); color: var(--text-secondary);
    background: none; border: none; border-bottom: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); margin-bottom: -2px; white-space: nowrap;
}
.tab-btn:hover { color: var(--text-main); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; animation: fadeTab 0.35s ease; }
.tab-panel.active { display: block; }
@keyframes fadeTab { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.audience-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.audience-situation {
    background: var(--gray-bg); border-radius: var(--radius); padding: 28px;
    border: 1px solid var(--gray-border);
}
.audience-situation h4 { font-size: 14px; font-weight: 700; color: var(--text-secondary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.audience-situation p  { font-size: 15px; line-height: 1.7; color: var(--text-main); }
.audience-benefits h4  { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.audience-benefits ul  { list-style: none; }
.audience-benefits li  {
    font-size: 14.5px; line-height: 1.6; padding: 10px 0;
    border-bottom: 1px solid var(--gray-border); display: flex; gap: 10px; align-items: flex-start;
}
.audience-benefits li:last-child { border-bottom: none; }
.audience-benefits li::before {
    content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); margin-top: 8px;
}

/* ─── HOW IT WORKS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step-card {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    border: 1px solid var(--gray-border); counter-increment: step;
    transition: all var(--transition);
}
.step-card:hover { box-shadow: var(--card-shadow-hover); }
.step-num { font-family: var(--font-display); font-size: 36px; font-weight: 600; line-height: 1; margin-bottom: 12px; }
.step-num::before { content: counter(step); color: var(--accent); opacity: 0.25; }
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── SERVICES ─── */
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-item {
    display: flex; gap: 16px; align-items: flex-start; padding: 20px;
    border-radius: var(--radius-sm); background: rgba(0,190,162,0.06);
    border: 1px solid rgba(0,190,162,0.12); transition: all var(--transition);
}
.service-item:hover { background: rgba(0,190,162,0.1); }
.service-num {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
    background: var(--accent); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
}
.service-item p { font-size: 14.5px; line-height: 1.6; }
.service-note { margin-top: 32px; max-width: 720px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ─── SCENARIOS ─── */
.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.scenario-card {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    border: 1px solid var(--gray-border); transition: all var(--transition);
}
.scenario-card:hover { box-shadow: var(--card-shadow-hover); }
.scenario-label { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.scenario-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.scenario-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 14px; }
.scenario-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.scenario-tag { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; background: var(--accent-light); color: var(--accent); }

/* ─── PREPARE ─── */

/* Две колонки: слева — большой счётчик, справа — список шагов */
.prepare-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Левая панель — «зачем сейчас» */
.prepare-sidebar {
    position: sticky;
    top: 88px;
}
.prepare-sidebar-inner {
    background: rgba(0,190,162,0.08);
    border: 1px solid rgba(0,190,162,0.2);
    border-radius: var(--radius);
    padding: 32px 28px;
}
.prepare-deadline {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.prepare-date {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.prepare-date span { color: var(--accent); display: block; }
.prepare-sidebar-text {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 24px;
}
.prepare-progress {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.prepare-progress-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
}
.prepare-progress-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}
.prepare-progress-fill {
    height: 100%;
    width: 62%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    animation: kl_progress_grow 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
@keyframes kl_progress_grow {
    from { width: 0; }
    to   { width: 62%; }
}

/* Правая часть — вертикальный список шагов */
.prepare-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.prepare-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}
.prepare-step:first-child { padding-top: 0; }
.prepare-step:last-child  { border-bottom: none; padding-bottom: 0; }
.prepare-step:hover .prepare-step-icon { background: rgba(0,190,162,0.2); border-color: rgba(0,190,162,0.5); }

.prepare-step-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,190,162,0.08);
    border: 1px solid rgba(0,190,162,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.prepare-step-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.prepare-step-body { flex: 1; }
.prepare-step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.prepare-step-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.prepare-step-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
}
.prepare-step-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(0,190,162,0.12);
    border: 1px solid rgba(0,190,162,0.25);
    color: var(--accent);
    letter-spacing: 0.04em;
}

.prepare-note {
    margin-top: 48px; max-width: 100%; padding: 24px 28px; border-radius: var(--radius);
    background: rgba(0,190,162,0.1); border: 1px solid rgba(0,190,162,0.2);
    display: flex; gap: 16px; align-items: center;
}
.prepare-note-icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
    background: rgba(0,190,162,0.15); display: flex; align-items: center; justify-content: center;
}
.prepare-note-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; }
.prepare-note p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0; }

/* ─── PRICING ─── */
.pricing-card {
    max-width: 700px; margin: 0 auto; background: var(--white);
    border-radius: var(--radius); padding: 40px;
    box-shadow: var(--card-shadow); border: 1px solid var(--gray-border); text-align: center;
}
.pricing-card p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

/* ─── TRUST ─── */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item {
    text-align: center; padding: 28px 20px; background: var(--white);
    border-radius: var(--radius); border: 1px solid var(--gray-border);
}
.trust-icon {
    width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
    background: var(--accent-light); display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; }
.trust-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.trust-item p  { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 20px 0; cursor: pointer; width: 100%; background: none; border: none;
    font-family: var(--font-body); font-size: 15.5px; font-weight: 600;
    color: var(--text-main); text-align: left; transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: var(--gray-bg); display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.faq-arrow svg { width: 14px; height: 14px; stroke: var(--text-secondary); fill: none; stroke-width: 2.5; transition: transform var(--transition); }
.faq-item.open .faq-arrow { background: var(--accent-light); }
.faq-item.open .faq-arrow svg { transform: rotate(180deg); stroke: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; }

/* ─── CTA FINAL ─── */
.final-cta { padding: 80px 0; background: var(--gray-bg); }
.final-cta.section-dark { background: var(--gray-bg); }
.final-cta-inner { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: start; }
.final-cta-text h2 {
    font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px);
    font-weight: 600; color: var(--text-main); line-height: 1.25; margin-bottom: 16px;
}
.final-cta-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.final-cta-features { list-style: none; }
.final-cta-features li {
    display: flex; gap: 10px; align-items: center;
    font-size: 14.5px; color: var(--text-main); padding: 8px 0;
}
.final-cta-features li::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
}

/* Финальная форма (kontur_form) */
.final-form-wrap {
    background: var(--white); border-radius: var(--radius); padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.final-form-wrap h3 {
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    color: var(--text-main); margin-bottom: 6px;
}
.final-form-wrap .kl-form-hint { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 20px; }

/* ─── MID CTA ─── */
.mid-cta {
    background: var(--accent-light); border: 1px solid rgba(0,190,162,0.15);
    border-radius: var(--radius); padding: 36px; text-align: center; margin-top: 48px;
}
.mid-cta p { font-size: 16px; color: var(--text-main); margin-bottom: 16px; line-height: 1.6; }

/* ─── FOOTER ─── */
.site-footer {
    background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 0 24px; color: rgba(255,255,255,0.6);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-links a:hover { color: var(--white); }

/* ─── STICKY CTA (mobile) ─── */
.sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
    background: var(--white); padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1); border-top: 1px solid var(--gray-border);
}
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg-dark); z-index: 98;
    flex-direction: column; padding: 24px;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; display: flex; }
.mobile-nav a {
    display: block; padding: 14px 0; font-size: 16px; color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.08); font-weight: 500;
}
.mobile-nav a:hover { color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .kl-anim   { height: 340px; max-width: 440px; margin: 0 auto; }
    .changes-grid { grid-template-columns: 1fr; }
    .changes-timeline { position: static; top: auto; }
    .prepare-layout { grid-template-columns: 1fr; gap: 40px; }
    .prepare-sidebar { position: static; }
    .audience-card { grid-template-columns: 1fr; }
    .final-cta-inner { grid-template-columns: 1fr; }
    .final-form-wrap { max-width: 500px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .burger { display: block; }
    .hero { padding: 110px 0 60px; }
    .kl-anim { display: none; }
    .hero-features { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .steps-grid { grid-template-columns: 1fr; }
    .services-list { grid-template-columns: 1fr; }
    .scenario-grid { grid-template-columns: 1fr; }
    .prepare-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }
    .prepare-step { gap: 16px; }
    .trust-grid { grid-template-columns: 1fr; }
    .tabs-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .tab-btn  { flex-shrink: 0; }
    .sticky-cta { display: block; }
    body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .pricing-card { padding: 28px 20px; }
}
/* End */
/* /local/css/kontur/kontur-logistika.css?177871321334308 */
