

/* Start:/local/css/kontur/postavschiki.css?177569523929482*/
/* ЭДО для поставщиков */
: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;
}

.edo_post_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.edo_post_section-header {
    margin-bottom: 50px;
    text-align: center;
}

.edo_post_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_post_section-title span {
    color: var(--accent);
}

.edo_post_section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero */
.edo_post_hero {
    position: relative;
    padding: 100px 0 140px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.edo_post_hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.edo_post_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: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

.edo_post_hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.edo_post_hero-glow--1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 190, 162, 0.12);
    animation: glowFloat1 10s ease-in-out infinite;
}

.edo_post_hero-glow--2 {
    bottom: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: rgba(1, 63, 84, 0.08);
    animation: glowFloat2 12s ease-in-out infinite;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.15); }
}

.edo_post_hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.edo_post_hero-content {
    max-width: 600px;
}

.edo_post_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_post_hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.edo_post_hero-badge svg {
    width: 16px;
    height: 16px;
}

.edo_post_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_post_hero-title-accent {
    display: block;
    color: var(--accent);
}

.edo_post_hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.edo_post_hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.edo_post_btn-primary,
.edo_post_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_post_btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.edo_post_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_post_btn-outline {
    background: transparent;
    color: var(--text-main);
    border-color: rgba(0, 0, 0, 0.1);
}

.edo_post_btn-outline:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

.edo_post_btn-primary svg,
.edo_post_btn-outline svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.edo_post_btn-primary:hover svg {
    transform: translateX(4px);
}

/* Hero visual */
.edo_post_hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edo_post_hero-diagram {
    position: relative;
    width: 450px;
    height: 450px;
}

/* Центральный элемент */
.edo_post_hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.edo_post_hero-center-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0.2;
}

.edo_post_hero-center-ring--1 {
    width: 140px;
    height: 140px;
    animation: ringPulse1 3s ease-in-out infinite;
}

.edo_post_hero-center-ring--2 {
    width: 180px;
    height: 180px;
    animation: ringPulse2 3s ease-in-out infinite;
}

@keyframes ringPulse1 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

@keyframes ringPulse2 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.05; }
}

.edo_post_hero-center-core {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 190, 162, 0.2);
}

.edo_post_hero-center-core svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.edo_post_hero-center-core span {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

/* Узлы */
.edo_post_hero-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.edo_post_hero-node-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 190, 162, 0.15);
}

.edo_post_hero-node-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.edo_post_hero-node span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.edo_post_hero-node--1 {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: nodeFloat 4s ease-in-out infinite;
}

.edo_post_hero-node--2 {
    bottom: 60px;
    right: 60px;
    animation: nodeFloat 4s ease-in-out infinite 1s;
}

.edo_post_hero-node--3 {
    bottom: 60px;
    left: 60px;
    animation: nodeFloat 4s ease-in-out infinite 2s;
}

@keyframes nodeFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -12px); }
}

/* Линии соединения */
.edo_post_hero-line {
    position: absolute;
    opacity: 0.3;
}

.edo_post_hero-line--1 {
    top: 95px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    animation: lineFlow 2s ease-in-out infinite;
}

.edo_post_hero-line--2 {
    bottom: 105px;
    right: 110px;
    width: 95px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    animation: lineFlow 2s ease-in-out infinite 0.5s;
    transform: rotate(-35deg);
    transform-origin: left center;
}

.edo_post_hero-line--3 {
    bottom: 105px;
    left: 110px;
    width: 95px;
    height: 2px;
    background: linear-gradient(to left, var(--accent), transparent);
    animation: lineFlow 2s ease-in-out infinite 1s;
    transform: rotate(35deg);
    transform-origin: right center;
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* О ЭДО */
.edo_post_about {
    padding: 80px 0;
    background: var(--white);
}

.edo_post_about-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.edo_post_about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.edo_post_about-features {
    display: grid;
    gap: 24px;
}

.edo_post_about-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.edo_post_about-feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 12px;
}

.edo_post_about-feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.edo_post_about-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.edo_post_about-feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Главные преимущества */
.edo_post_advantages {
    padding: 80px 0;
    background: var(--bg-light);
}

.edo_post_advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.edo_post_advantage-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.edo_post_advantage-card--large {
    grid-column: span 2;
}

.edo_post_advantage-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 190, 162, 0.15);
}

.edo_post_advantage-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_post_advantage-card:hover .edo_post_advantage-icon {
    background: var(--accent);
}

.edo_post_advantage-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.edo_post_advantage-card:hover .edo_post_advantage-icon svg {
    color: var(--white);
}

.edo_post_advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.edo_post_advantage-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Диадок упрощает */
.edo_post_diadok {
    padding: 80px 0;
    background: var(--white);
}

.edo_post_diadok-box {
    display: flex;
    gap: 40px;
    padding: 50px;
    background: var(--accent);
    border-radius: 24px;
}

.edo_post_diadok-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
}

.edo_post_diadok-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.edo_post_diadok-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.edo_post_diadok-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 24px;
}

.edo_post_diadok-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.edo_post_diadok-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.edo_post_diadok-feature svg {
    width: 16px;
    height: 16px;
}

/* Преимущества для поставщиков */
.edo_post_benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.edo_post_benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.edo_post_benefit-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.edo_post_benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 190, 162, 0.15);
}

.edo_post_benefit-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.edo_post_benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.edo_post_benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Работа с ЭТП */
.edo_post_etp {
    padding: 80px 0;
    background: var(--white);
}

.edo_post_etp-content {
    max-width: 900px;
    margin: 0 auto;
}

.edo_post_etp-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.edo_post_etp-info {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 16px;
    margin: 32px 0;
}

.edo_post_etp-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffc107;
    border-radius: 50%;
}

.edo_post_etp-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.edo_post_etp-info-text p {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.edo_post_etp-docs {
    margin-top: 32px;
}

.edo_post_etp-docs h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
}

.edo_post_etp-docs-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.edo_post_etp-doc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.edo_post_etp-doc svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.edo_post_etp-doc span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

/* ЕИС процесс */
.edo_post_eis {
    padding: 80px 0;
    background: var(--bg-dark);
}

.edo_post_eis .edo_post_section-title {
    color: var(--white);
}

.edo_post_eis .edo_post_section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.edo_post_eis-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.edo_post_eis-step {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.edo_post_eis-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.edo_post_eis-step-number {
    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: 24px;
    font-weight: 700;
}

.edo_post_eis-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.edo_post_eis-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.edo_post_eis-arrow {
    font-size: 32px;
    color: var(--accent);
    font-weight: 700;
}

.edo_post_eis-actions h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 32px;
}

.edo_post_eis-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.edo_post_eis-action {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
}

.edo_post_eis-action--accept {
    border-color: #22c55e;
}

.edo_post_eis-action--partial {
    border-color: #ffc107;
}

.edo_post_eis-action--reject {
    border-color: #ef4444;
}

.edo_post_eis-action-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.edo_post_eis-action--accept .edo_post_eis-action-icon {
    background: #22c55e;
}

.edo_post_eis-action--partial .edo_post_eis-action-icon {
    background: #ffc107;
}

.edo_post_eis-action--reject .edo_post_eis-action-icon {
    background: #ef4444;
}

.edo_post_eis-action-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.edo_post_eis-action h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.edo_post_eis-action p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Что получает поставщик */
.edo_post_get {
    padding: 80px 0;
    background: var(--bg-light);
}

.edo_post_get-box {
    padding: 50px;
    background: var(--white);
    border-radius: 24px;
}

.edo_post_get-header {
    margin-bottom: 50px;
}

.edo_post_get-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.edo_post_get-card {
    padding: 28px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.edo_post_get-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.edo_post_get-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_post_get-card:hover .edo_post_get-icon {
    background: var(--accent);
}

.edo_post_get-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.edo_post_get-card:hover .edo_post_get-icon svg {
    color: var(--white);
}

.edo_post_get-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.edo_post_get-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Консультация - копируем из самозанятых */
.edo_post_consultation {
    padding: 80px 0;
    background: var(--white);
}

.edo_post_consultation-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    padding: 60px;
    background: var(--bg-light);
    border-radius: 24px;
}

.edo_post_consultation-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.edo_post_consultation-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.2;
}

.edo_post_consultation-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.edo_post_consultation-features {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.edo_post_consultation-feature {
    display: flex;
    gap: 16px;
}

.edo_post_consultation-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
}

.edo_post_consultation-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.edo_post_consultation-feature-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 4px;
}

.edo_post_consultation-feature-text span {
    font-size: 14px;
    color: var(--text-secondary);
}

.edo_post_consultation-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edo_post_consultation-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.edo_post_consultation-phone:hover {
    opacity: 0.8;
}

.edo_post_consultation-phone svg {
    width: 24px;
    height: 24px;
}

.edo_post_consultation-hours {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 36px;
}

.edo_post_consultation-form-wrapper {
    position: relative;
}

.edo_post_consultation-form {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.edo_post_form-group {
    margin-bottom: 20px;
}

.edo_post_form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.edo_post_form-input-wrapper {
    position: relative;
}

.edo_post_form-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.edo_post_form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.edo_post_form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 190, 162, 0.1);
}

.edo_post_form-error {
    display: block;
    font-size: 13px;
    color: #dc2626;
    margin-top: 4px;
}

.edo_post_form-checkboxes {
    margin-bottom: 24px;
}

.edo_post_form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
}

.edo_post_form-checkbox input {
    display: none;
}

.edo_post_form-checkbox-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.edo_post_form-checkbox input:checked + .edo_post_form-checkbox-box {
    background: var(--accent);
    border-color: var(--accent);
}

.edo_post_form-checkbox-box svg {
    width: 14px;
    height: 14px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edo_post_form-checkbox input:checked + .edo_post_form-checkbox-box svg {
    opacity: 1;
}

.edo_post_form-checkbox-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.edo_post_form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edo_post_form-submit: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_post_form-submit-loader {
    display: none;
}

.edo_post_form-submit-loader svg {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.edo_post_consultation-form.loading .edo_post_form-submit-text {
    display: none;
}

.edo_post_consultation-form.loading .edo_post_form-submit-loader {
    display: block;
}

.edo_post_consultation-success {
    display: none;
    padding: 40px;
    text-align: center;
}

.edo_post_consultation-success.show {
    display: block;
}

.edo_post_consultation-success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.edo_post_consultation-success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.edo_post_consultation-success-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.edo_post_consultation-success-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.edo_post_consultation-success-btn {
    padding: 14px 32px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edo_post_consultation-success-btn:hover {
    background: var(--accent-hover);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .edo_post_hero-wrapper,
    .edo_post_about-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .edo_post_hero-visual {
        height: 350px;
    }
    
    .edo_post_hero-diagram {
        width: 350px;
        height: 350px;
    }
    
    .edo_post_hero-center-core {
        width: 80px;
        height: 80px;
    }
    
    .edo_post_hero-center-core svg {
        width: 32px;
        height: 32px;
    }
    
    .edo_post_hero-center-core span {
        font-size: 14px;
    }
    
    .edo_post_hero-node-icon {
        width: 60px;
        height: 60px;
    }
    
    .edo_post_hero-node-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .edo_post_hero-node--2 {
        bottom: 40px;
        right: 40px;
    }
    
    .edo_post_hero-node--3 {
        bottom: 40px;
        left: 40px;
    }
    
    .edo_post_advantages-grid,
    .edo_post_benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .edo_post_advantage-card--large {
        grid-column: span 1;
    }
    
    .edo_post_etp-docs-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .edo_post_eis-process {
        flex-direction: column;
    }
    
    .edo_post_eis-arrow {
        transform: rotate(90deg);
    }
    
    .edo_post_eis-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .edo_post_get-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .edo_post_hero {
        padding: 80px 0 100px;
        min-height: auto;
    }
    
    .edo_post_hero-visual {
        display: none;
    }
    
    .edo_post_hero-buttons {
        flex-direction: column;
    }
    
    .edo_post_btn-primary,
    .edo_post_btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .edo_post_advantages-grid,
    .edo_post_benefits-grid,
    .edo_post_etp-docs-list,
    .edo_post_get-grid {
        grid-template-columns: 1fr;
    }
    
    .edo_post_diadok-box {
        flex-direction: column;
        padding: 40px 32px;
    }
    
    .edo_post_get-box {
        padding: 40px 32px;
    }
    
    .edo_post_consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
    }
}

@media (max-width: 600px) {
    .edo_post_section-title {
        font-size: 32px;
    }
    
    .edo_post_hero-title {
        font-size: 40px;
    }
}
/* End */
/* /local/css/kontur/postavschiki.css?177569523929482 */
