

/* Start:/local/css/kontur/mp_edo.css?177569523922813*/
/* ======================================================
   mp_edo.css — ЭДО для маркетплейсов
   Префикс: mp_
   ====================================================== */

.mp_hero, .mp_benefits, .mp_marketplaces, .mp_docs,
.mp_how, .mp_tariffs, .mp_faq {
    --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;
}

/* === ОБЩИЕ === */
.mp_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.mp_section-header {
    margin-bottom: 52px;
}

.mp_section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.mp_section-title span {
    color: var(--accent);
}

.mp_section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 720px;
}

/* === КНОПКИ === */
.mp_btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mp_btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 190, 162, 0.3);
}

.mp_btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.mp_btn-primary:hover svg {
    transform: translateX(4px);
}

.mp_btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mp_btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

.mp_btn-outline svg {
    width: 18px;
    height: 18px;
}

/* ======================== */
/* === HERO ===             */
/* ======================== */
.mp_hero {
    position: relative;
    padding: 100px 0 120px;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mp_hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mp_hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #025270 50%, #013f54 100%);
}

.mp_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.mp_hero-glow--1 {
    top: -20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,190,162,0.18) 0%, transparent 70%);
}

.mp_hero-glow--2 {
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,80,120,0.25) 0%, transparent 70%);
}

.mp_hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.mp_hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.35);
    border-radius: 100px;
    color: #7eeee0;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.mp_hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: mp_pulse 2s ease-in-out infinite;
}

@keyframes mp_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.mp_hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.mp_hero-title-accent {
    color: var(--accent);
}

.mp_hero-description {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

.mp_hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero marketplace logos */
.mp_hero-logos {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mp_hero-logo-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    min-width: 210px;
    animation: mp_fadeLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mp_hero-logo-card:nth-child(1) { animation-delay: 0.2s; }
.mp_hero-logo-card:nth-child(2) { animation-delay: 0.35s; }
.mp_hero-logo-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes mp_fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.mp_hero-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--white);
}

.mp_hero-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mp_hero-logo-icon--ozon  { background: #fff; }
.mp_hero-logo-icon--wb    { background: #fff; }
.mp_hero-logo-icon--ym    { background: #fff; }

.mp_hero-logo-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.mp_hero-logo-status {
    font-size: 12px;
    color: var(--accent);
    margin-top: 2px;
}

/* ======================== */
/* === BENEFITS ===         */
/* ======================== */
.mp_benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.mp_benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mp_benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.mp_benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.mp_benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent);
}

.mp_benefit-icon svg {
    width: 22px;
    height: 22px;
}

.mp_benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.mp_benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================== */
/* === MARKETPLACES ===     */
/* ======================== */
.mp_marketplaces {
    padding: 80px 0;
}

/* Табы */
.mp_tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    border-bottom: 2px solid #e8ecf0;
    padding-bottom: 0;
}

.mp_tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
    font-family: inherit;
}

.mp_tab:hover {
    color: var(--text-main);
    background: var(--bg-light);
}

.mp_tab.active {
    color: var(--text-main);
    border-bottom-color: var(--accent);
}

.mp_tab-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

.mp_tab-dot--ozon { background: #005bff; }
.mp_tab-dot--wb   { background: #cb11ab; }
.mp_tab-dot--ym   { background: #fc0; border: 1px solid #e0b800; }

.mp_tab-panel {
    display: none;
}

.mp_tab-panel.active {
    display: block;
}

/* Панель маркетплейса */
.mp_mp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mp_mp-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mp_mp-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e8ecf0;
}

.mp_mp-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mp_mp-logo--ozon { background: #fff; }
.mp_mp-logo--wb   { background: #fff; }
.mp_mp-logo--ym   { background: #fff; }

.mp_mp-header-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.mp_mp-header-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.mp_mp-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.mp_mp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mp_mp-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.5;
}

.mp_mp-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Инфо-карточки правой колонки */
.mp_mp-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mp_mp-card {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #e8ecf0;
}

.mp_mp-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp_mp-card h4 svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.mp_mp-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mp_mp-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}

.mp_mp-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.mp_mp-note {
    padding: 14px 18px;
    background: rgba(0,190,162,0.07);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================== */
/* === HOW TO CONNECT ===   */
/* ======================== */
.mp_how {
    padding: 80px 0;
    background: var(--bg-light);
}

.mp_how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.mp_how-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.6% + 32px);
    right: calc(16.6% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 50%, var(--accent));
    opacity: 0.3;
}

.mp_how-step {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e8ecf0;
    text-align: center;
    position: relative;
}

.mp_how-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}

.mp_how-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.mp_how-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Work modes */
.mp_modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 52px;
}

.mp_mode-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #e8ecf0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.mp_mode-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,190,162,0.1);
}

.mp_mode-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.mp_mode-icon svg {
    width: 22px;
    height: 22px;
}

.mp_mode-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.mp_mode-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================== */
/* === TARIFFS ===          */
/* ======================== */
.mp_tariffs {
    padding: 80px 0;
}

.mp_tariff-note {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.mp_tariff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mp_tariff-card {
    background: var(--white);
    border: 2px solid #e8ecf0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mp_tariff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mp_tariff-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,190,162,0.12);
}

.mp_tariff-card:hover::before {
    opacity: 1;
}

.mp_tariff-card--popular {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,190,162,0.12);
}

.mp_tariff-card--popular::before {
    opacity: 1;
}

.mp_tariff-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.mp_tariff-docs {
    margin-bottom: 18px;
}

.mp_tariff-docs-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.mp_tariff-docs-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.mp_tariff-price {
    margin-bottom: 20px;
}

.mp_tariff-price-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 4px;
}

.mp_tariff-price-per {
    font-size: 12px;
    color: var(--text-secondary);
}

.mp_tariff-btn {
    width: 100%;
    padding: 11px 20px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(0,190,162,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mp_tariff-btn:hover,
.mp_tariff-card--popular .mp_tariff-btn {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* More tariffs */
.mp_tariff-more {
    text-align: center;
    margin-top: 28px;
}

.mp_tariff-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #e8ecf0;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.mp_tariff-more-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.mp_tariff-more-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mp_tariff-hidden {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.mp_tariff-hidden.expanded {
    max-height: 400px;
}

/* EP row */
.mp_tariff-ep {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 36px;
    background: #013f54;
    border-radius: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
    overflow: hidden;
}

.mp_tariff-ep::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,162,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.mp_tariff-ep::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,80,120,0.35) 0%, transparent 70%);
    pointer-events: none;
}

.mp_tariff-ep-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0,190,162,0.15);
    border: 1px solid rgba(0,190,162,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.mp_tariff-ep-icon svg {
    width: 24px;
    height: 24px;
}

.mp_tariff-ep > div:nth-child(2) {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 1;
}

.mp_tariff-ep strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.mp_tariff-ep span {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.mp_tariff-ep-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.mp_tariff-ep .mp_btn-primary {
    position: relative;
    z-index: 1;
    background: var(--accent);
    flex-shrink: 0;
}

/* Hint */
.mp_tariff-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0,190,162,0.05);
    border: 1px solid rgba(0,190,162,0.2);
    border-radius: 12px;
    margin-top: 20px;
}

.mp_tariff-hint svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.mp_tariff-hint p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.mp_tariff-hint-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
    text-decoration: underline;
    text-decoration-style: dotted;
}

/* ======================== */
/* === FAQ ===              */
/* ======================== */
.mp_faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.mp_faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

.mp_faq-item {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
}

.mp_faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    min-height: 81px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s ease;
}

.mp_faq-question:hover {
    color: var(--accent);
}

.mp_faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.mp_faq-item.open .mp_faq-question svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.mp_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mp_faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.mp_faq-item.open .mp_faq-answer {
    max-height: 400px;
}

/* ======================== */
/* === RESPONSIVE ===       */
/* ======================== */
@media (max-width: 1100px) {
    .mp_tariff-grid,
    .mp_tariff-hidden {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .mp_benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp_mp-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .mp_hero-wrapper {
        grid-template-columns: 1fr;
    }

    .mp_hero-logos {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mp_hero-logo-card {
        min-width: 160px;
    }

    .mp_how-steps {
        grid-template-columns: 1fr;
    }

    .mp_how-steps::before {
        display: none;
    }

    .mp_modes {
        grid-template-columns: 1fr;
    }

    .mp_tabs {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .mp_benefits-grid {
        grid-template-columns: 1fr;
    }

    .mp_tariff-grid,
    .mp_tariff-hidden {
        grid-template-columns: 1fr;
    }

    .mp_tariff-ep {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .mp_faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mp_tab {
        padding: 10px 14px;
        font-size: 13px;
    }

    .mp_hero {
        padding: 72px 0 80px;
    }
}
/* End */
/* /local/css/kontur/mp_edo.css?177569523922813 */
