

/* Start:/local/css/kontur/markirovka.css?177569523937926*/
/* ============================= */
        /* ЭДО ДЛЯ МАРКИРОВКИ — СТИЛИ   */
        /* ============================= */

        :root {
            --accent: #00bea2;
            --accent-hover: #00a88e;
            --accent-light: rgba(0, 190, 162, 0.1);
            --bg-dark: #013f54;
            --bg-light: #f8f9fa;
            --text-main: #1a1a2e;
            --text-secondary: #64748b;
            --white: #ffffff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
        }

        /* === ОБЩИЕ === */
        .edo_mark_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .edo_mark_section-header {
            margin-bottom: 50px;
            text-align: center;
        }

        .edo_mark_section-header--left {
            text-align: left;
        }

        .edo_mark_section-header--left .edo_mark_section-subtitle {
            margin: 0;
        }

        .edo_mark_section-title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 500;
            color: var(--text-main);
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .edo_mark_section-title span {
            color: var(--accent);
        }

        .edo_mark_section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        /* === HERO === */
        .edo_mark_hero {
            position: relative;
            padding: 100px 0 140px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .edo_mark_hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .edo_mark_hero-gradient {
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 190, 162, 0.08) 0%, transparent 70%);
            animation: edo_mark_gradientPulse 8s ease-in-out infinite;
        }

        @keyframes edo_mark_gradientPulse {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
            50% { transform: scale(1.1) rotate(5deg); opacity: 1; }
        }

        .edo_mark_hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 190, 162, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 190, 162, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at 30% 30%, black 20%, transparent 70%);
        }

        .edo_mark_hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
        }

        .edo_mark_hero-glow--1 {
            top: 10%;
            left: 10%;
            width: 400px;
            height: 400px;
            background: rgba(0, 190, 162, 0.12);
            animation: edo_mark_glowFloat1 10s ease-in-out infinite;
        }

        .edo_mark_hero-glow--2 {
            bottom: 20%;
            right: 15%;
            width: 300px;
            height: 300px;
            background: rgba(1, 63, 84, 0.08);
            animation: edo_mark_glowFloat2 12s ease-in-out infinite;
        }

        @keyframes edo_mark_glowFloat1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        @keyframes edo_mark_glowFloat2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, 30px) scale(1.15); }
        }

        .edo_mark_hero-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .edo_mark_hero-content {
            max-width: 600px;
        }

        .edo_mark_hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--accent-light);
            border: 1px solid var(--accent);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            color: var(--accent);
            margin-bottom: 32px;
        }

        .edo_mark_hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            animation: edo_mark_pulse 2s ease-in-out infinite;
        }

        @keyframes edo_mark_pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .edo_mark_hero-title {
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 24px;
        }

        .edo_mark_hero-title-accent {
            display: block;
            color: var(--accent);
        }

        .edo_mark_hero-description {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .edo_mark_hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .edo_mark_btn-primary,
        .edo_mark_btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-decoration: none;
        }

        .edo_mark_btn-primary {
            background: var(--accent);
            color: var(--white);
            border-color: var(--accent);
        }

        .edo_mark_btn-primary:hover {
            background: var(--accent-hover);
            border-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 190, 162, 0.3);
        }

        .edo_mark_btn-outline {
            background: transparent;
            color: var(--text-main);
            border-color: rgba(0, 0, 0, 0.1);
        }

        .edo_mark_btn-outline:hover {
            background: var(--accent-light);
            border-color: var(--accent);
            color: var(--accent);
        }

        .edo_mark_btn-primary svg,
        .edo_mark_btn-outline svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .edo_mark_btn-primary:hover svg {
            transform: translateX(4px);
        }

        /* Hero visual */
        .edo_mark_hero-visual {
            position: relative;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .edo_mark_hero-card {
            position: relative;
            width: 280px;
            padding: 32px;
            background: var(--white);
            border: 2px solid var(--accent);
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 190, 162, 0.2);
            animation: edo_mark_cardFloat 3s ease-in-out infinite;
        }

        @keyframes edo_mark_cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .edo_mark_hero-card-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            border-radius: 16px;
            margin-bottom: 20px;
        }

        .edo_mark_hero-card-icon svg {
            width: 32px;
            height: 32px;
            color: var(--white);
        }

        .edo_mark_hero-card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .edo_mark_hero-card-sub {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .edo_mark_hero-card-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            padding: 4px 12px;
            background: #d1fae5;
            color: #16a34a;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
        }

        .edo_mark_hero-card-status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #16a34a;
        }

        .edo_mark_hero-feature {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 100px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
        }

        .edo_mark_hero-feature svg {
            width: 16px;
            height: 16px;
            color: var(--accent);
        }

        .edo_mark_hero-feature--1 {
            top: 50px;
            right: 20px;
            animation: edo_mark_featureFloat 4s ease-in-out infinite;
        }

        .edo_mark_hero-feature--2 {
            top: 55px;
            left: 0px;
            animation: edo_mark_featureFloat 4s ease-in-out infinite 1s;
        }

        .edo_mark_hero-feature--3 {
            bottom: 70px;
            right: 30px;
            animation: edo_mark_featureFloat 4s ease-in-out infinite 2s;
        }

        @keyframes edo_mark_featureFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* === БЛОК: ЧТО НУЖНО ЗНАТЬ === */
        .edo_mark_facts {
            padding: 80px 0;
            background: var(--white);
        }

        .edo_mark_facts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .edo_mark_fact-card {
            padding: 32px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .edo_mark_fact-card--wide {
            grid-column: span 2;
        }

        .edo_mark_fact-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 12px 32px rgba(0, 190, 162, 0.15);
        }

        .edo_mark_fact-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-light);
            border-radius: 12px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .edo_mark_fact-card:hover .edo_mark_fact-icon {
            background: var(--accent);
        }

        .edo_mark_fact-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent);
            transition: color 0.3s ease;
        }

        .edo_mark_fact-card:hover .edo_mark_fact-icon svg {
            color: var(--white);
        }

        .edo_mark_fact-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .edo_mark_fact-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* === ТРЕБОВАНИЯ === */
        .edo_mark_requirements {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .edo_mark_req-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch;
        }

        .edo_mark_req-box {
            padding: 40px;
            background: var(--bg-dark);
            border-radius: 20px;
            display: flex;  
            justify-content: space-around;
            flex-direction: column;
        }

        .edo_mark_req-box-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .edo_mark_req-box-header svg {
            width: 32px;
            height: 32px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .edo_mark_req-box-header h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
        }

        .edo_mark_req-list {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: space-between;
        }

        .edo_mark_req-item {
            display: flex;
            align-items: center;
            min-height: 80px;
            gap: 12px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
        }

        .edo_mark_req-item-check {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            border-radius: 50%;
            margin-top: 2px;
        }

        .edo_mark_req-item-check svg {
            width: 14px;
            height: 14px;
            color: var(--white);
        }

        .edo_mark_req-item p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .edo_mark_req-laws {
            padding: 32px;
            background: var(--white);
            border-radius: 20px;
        }

        .edo_mark_req-laws h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .edo_mark_req-laws-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .edo_mark_req-law-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .edo_mark_req-law-item:last-child {
            border-bottom: none;
        }

        .edo_mark_req-law-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-light);
            border-radius: 8px;
            flex-shrink: 0;
        }

        .edo_mark_req-law-icon svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
        }

        .edo_mark_req-law-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            display: block;
        }

        .edo_mark_req-law-doc {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .edo_mark_req-cta {
            margin-top: 24px;
            text-align: center;
        }

        /* === КАК РАБОТАЕТ === */
        .edo_mark_howworks {
            padding: 80px 0;
            background: var(--white);
        }

        .edo_mark_hw-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .edo_mark_hw-text h3 {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }

        .edo_mark_hw-text h3 span {
            color: var(--accent);
        }

        .edo_mark_hw-text p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .edo_mark_hw-features {
            display: grid;
            gap: 12px;
            margin-bottom: 32px;
        }

        .edo_mark_hw-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--bg-light);
            border-radius: 10px;
            font-size: 15px;
            color: var(--text-main);
        }

        .edo_mark_hw-feature svg {
            width: 18px;
            height: 18px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .edo_mark_hw-steps {
            display: grid;
            gap: 20px;
        }

        .edo_mark_hw-step {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--bg-light);
            border-radius: 16px;
            border-left: 4px solid var(--accent);
            transition: all 0.3s ease;
        }

        .edo_mark_hw-step:hover {
            background: var(--accent-light);
        }

        .edo_mark_hw-step-num {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            font-size: 20px;
            font-weight: 700;
        }

        .edo_mark_hw-step h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
        }

        .edo_mark_hw-step p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* === БОНУСНЫЙ БЛОК / CTA 1 === */
        .edo_mark_promo {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .edo_mark_promo-box {
            padding: 60px;
            background: var(--accent);
            border-radius: 24px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            align-items: center;
        }

        .edo_mark_promo-box--dark {
            background: var(--bg-dark);
        }

        .edo_mark_promo-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 16px;
        }

        .edo_mark_promo-label svg {
            width: 14px;
            height: 14px;
        }

        .edo_mark_promo-title {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 600;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .edo_mark_promo-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        .edo_mark_btn-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--white);
            color: var(--accent);
            border: 2px solid var(--white);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .edo_mark_btn-white:hover {
            background: transparent;
            color: var(--white);
            transform: translateY(-2px);
        }

        .edo_mark_btn-white svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .edo_mark_btn-white:hover svg {
            transform: translateX(4px);
        }

        /* === ТОВАРНЫЕ КАТЕГОРИИ === */
        .edo_mark_categories {
            padding: 80px 0;
            background: var(--white);
        }

        .edo_mark_cat-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

        .edo_mark_cat-card {
            padding: 24px 16px 20px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: default;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .edo_mark_cat-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 12px 28px rgba(0, 190, 162, 0.12);
        }

        .edo_mark_cat-card--more {
            background: var(--accent-light);
            border-color: rgba(0, 190, 162, 0.2);
        }

        .edo_mark_cat-card--more:hover {
            background: var(--accent);
            border-color: var(--accent);
        }

        .edo_mark_cat-card--more:hover .edo_mark_cat-icon {
            background: rgba(255,255,255,0.2);
        }

        .edo_mark_cat-card--more:hover .edo_mark_cat-icon svg {
            color: var(--white);
        }

        .edo_mark_cat-card--more:hover span {
            color: var(--white);
        }

        .edo_mark_cat-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-light);
            border-radius: 12px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .edo_mark_cat-card:hover .edo_mark_cat-icon {
            background: var(--accent);
        }

        .edo_mark_cat-icon svg {
            width: 26px;
            height: 26px;
            color: var(--accent);
            transition: color 0.3s ease;
        }

        .edo_mark_cat-card:hover .edo_mark_cat-icon svg {
            color: var(--white);
        }

        .edo_mark_cat-card span {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-main);
            line-height: 1.4;
        }

        .edo_mark_cat-date {
            font-size: 11px !important;
            font-weight: 600 !important;
            color: var(--accent) !important;
            background: var(--accent-light);
            padding: 3px 10px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .edo_mark_cat-card:hover .edo_mark_cat-date {
            background: rgba(0, 190, 162, 0.2);
        }

        .edo_mark_cat-note {
            padding: 20px 28px;
            background: var(--bg-light);
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* === ПОДКЛЮЧЕНИЕ === */
        .edo_mark_connect {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .edo_mark_connect-layout {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 60px;
            align-items: start;
        }

        /* Таймлайн */
        .edo_mark_connect-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .edo_mark_connect-item {
            display: flex;
            gap: 24px;
            align-items: stretch;
        }

        .edo_mark_connect-item-aside {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
        }

        .edo_mark_connect-item-num {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .edo_mark_connect-item-line {
            width: 2px;
            flex: 1;
            background: rgba(0, 190, 162, 0.25);
            margin: 6px 0;
            min-height: 24px;
        }

        .edo_mark_connect-item-body {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding-bottom: 36px;
            flex: 1;
        }

        .edo_mark_connect-item:last-child .edo_mark_connect-item-body {
            padding-bottom: 0;
        }

        .edo_mark_connect-item-icon {
            width: 48px;
            height: 48px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .edo_mark_connect-item-icon svg {
            width: 22px;
            height: 22px;
            color: var(--accent);
        }

        .edo_mark_connect-item-text h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
            margin-top: 10px;
        }

        .edo_mark_connect-item-text p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* CTA карточка справа */
        .edo_mark_connect-cta {
            background: var(--bg-dark);
            border-radius: 20px;
            padding: 40px 36px;
            color: var(--white);
            position: sticky;
            top: 24px;
        }

        .edo_mark_connect-cta-icon {
            width: 56px;
            height: 56px;
            background: rgba(0, 190, 162, 0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .edo_mark_connect-cta-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent);
        }

        .edo_mark_connect-cta h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .edo_mark_connect-cta > p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .edo_mark_connect-cta-list {
            list-style: none;
            margin: 0 0 32px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .edo_mark_connect-cta-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }

        .edo_mark_connect-cta-list li svg {
            width: 16px;
            height: 16px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .edo_mark_connect-cta .edo_mark_btn-primary {
            width: 100%;
            justify-content: center;
        }

        /* === ПОДРОБНЫЕ ШАГИ === */
        .edo_mark_steps-detail {
            padding: 80px 0;
            background: var(--white);
        }

        .edo_mark_steps-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .edo_mark_step-card {
            padding: 36px 32px;
            background: var(--bg-light);
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .edo_mark_step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
        }

        /* Тёмная карточка */
        .edo_mark_step-card--dark {
            background: var(--bg-dark);
            border-color: transparent;
        }

        .edo_mark_step-card--dark:hover {
            box-shadow: 0 16px 40px rgba(1, 63, 84, 0.25);
        }

        /* Широкая карточка (шаг 5) */
        .edo_mark_step-card--wide {
            grid-column: span 2;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .edo_mark_step-card--wide .edo_mark_step-card-wide-content {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .edo_mark_step-card--wide .edo_mark_step-card-wide-content > div {
            flex: 1;
        }

        /* Большой номер */
        .edo_mark_step-card-num {
            font-size: 64px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -3px;
            color: rgba(0, 190, 162, 0.18);
            margin-bottom: 16px;
            font-family: monospace;
        }

        .edo_mark_step-card--dark .edo_mark_step-card-num {
            color: rgba(0, 190, 162, 0.25);
        }

        /* Иконка */
        .edo_mark_step-card-icon {
            width: 52px;
            height: 52px;
            background: var(--white);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .edo_mark_step-card--dark .edo_mark_step-card-icon {
            background: rgba(255, 255, 255, 0.1);
            box-shadow: none;
        }

        .edo_mark_step-card-icon svg {
            width: 24px;
            height: 24px;
            color: var(--accent);
        }

        .edo_mark_step-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .edo_mark_step-card--dark h4 {
            color: var(--white);
        }

        .edo_mark_step-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .edo_mark_step-card--dark p {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Адаптив для steps-grid */
        @media (max-width: 768px) {
            .edo_mark_steps-grid {
                grid-template-columns: 1fr;
            }
            .edo_mark_step-card--wide {
                grid-column: span 1;
                flex-direction: column;
                align-items: flex-start;
            }
            .edo_mark_step-card--wide .edo_mark_step-card-wide-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
        }

        /* === ПРИЁМ ТОВАРА === */
        .edo_mark_receive {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .edo_mark_receive-wrapper {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .edo_mark_receive-steps {
            display: grid;
            gap: 16px;
            margin: 24px 0 32px;
        }

        .edo_mark_receive-step {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .edo_mark_receive-step-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-light);
            border-radius: 8px;
        }

        .edo_mark_receive-step-icon svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
        }

        .edo_mark_receive-step p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .edo_mark_receive-warning {
            padding: 24px;
            background: #fff7ed;
            border: 1px solid #f97316;
            border-radius: 12px;
            display: flex;
            gap: 16px;
        }

        .edo_mark_receive-warning svg {
            width: 24px;
            height: 24px;
            color: #f97316;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .edo_mark_receive-warning p {
            font-size: 14px;
            color: #7c2d12;
            line-height: 1.6;
        }

        .edo_mark_receive-visual {
            padding: 32px;
            background: var(--white);
            border: 2px solid var(--accent);
            border-radius: 20px;
        }

        .edo_mark_receive-visual h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 24px;
        }

        .edo_mark_receive-features {
            display: grid;
            gap: 16px;
        }

        .edo_mark_receive-feature {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px;
            background: var(--bg-light);
            border-radius: 10px;
            font-size: 14px;
            color: var(--text-main);
        }

        .edo_mark_receive-feature svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
            flex-shrink: 0;
        }

        /* === АДАПТИВНОСТЬ === */
        @media (max-width: 1024px) {
            .edo_mark_hero-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .edo_mark_facts-grid { grid-template-columns: repeat(2, 1fr); }
            .edo_mark_fact-card--wide { grid-column: span 2; }
            .edo_mark_req-wrapper { grid-template-columns: 1fr; }
            .edo_mark_hw-content { grid-template-columns: 1fr; }
            .edo_mark_cat-grid { grid-template-columns: repeat(3, 1fr); }
            .edo_mark_connect-layout { grid-template-columns: 1fr; }
            .edo_mark_connect-cta { position: static; }
            .edo_mark_receive-wrapper { grid-template-columns: 1fr; }
            .edo_mark_promo-box { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .edo_mark_hero {
                padding: 80px 0 100px;
                min-height: auto;
            }
            .edo_mark_hero-visual { display: none; }
            .edo_mark_hero-buttons { flex-direction: column; }
            .edo_mark_btn-primary, .edo_mark_btn-outline { width: 100%; justify-content: center; }
            .edo_mark_facts-grid { grid-template-columns: 1fr; }
            .edo_mark_fact-card--wide { grid-column: span 1; }
            .edo_mark_cat-grid { grid-template-columns: repeat(2, 1fr); }
            .edo_mark_promo-box { padding: 40px 32px; }
        }

        @media (max-width: 480px) {
            .edo_mark_cat-grid { grid-template-columns: 1fr 1fr; }
        }
/* End */
/* /local/css/kontur/markirovka.css?177569523937926 */
