

/* Start:/local/css/kontur/connector.css?177569523918537*/
/* Диадок.Коннектор - Стили */
: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;
}

.connector-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.connector-section-header {
    margin-bottom: 50px;
}

.connector-section-title {
    font-size: clamp(32px, 4vw, 48px);
    text-align: left;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.connector-section-title span {
    color: var(--accent);
}

.connector-section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 900px;
}

/* Hero секция */
.connector-hero {
    position: relative;
    padding: 100px 0 140px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.connector-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.connector-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; }
}

.connector-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.connector-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;
}

.connector-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); }
    33% { transform: translate(-30px, 20px); }
    66% { transform: translate(20px, -30px); }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -20px); }
}

.connector-hero .connector-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero контент */
.connector-hero-content {
    position: relative;
}

.connector-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 190, 162, 0.2);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.connector-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.connector-hero-badge svg {
    width: 16px;
    height: 16px;
}

.connector-hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.connector-hero-title-accent {
    display: block;
    color: var(--accent);
}

.connector-hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Кнопки */
.connector-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.connector-btn-primary {
    position: relative;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent) 0%, #00d4b4 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 190, 162, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    white-space: nowrap;
}

.connector-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.connector-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 190, 162, 0.4);
}

.connector-btn-primary:hover svg {
    transform: translateX(4px);
}

.connector-btn-outline {
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(1, 63, 84, 0.15);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    white-space: nowrap;
}

.connector-btn-outline svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.connector-btn-outline:hover {
    background: var(--bg-dark);
    color: var(--white);
    border-color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(1, 63, 84, 0.2);
}

.connector-btn-outline:hover svg {
    transform: translateY(3px);
}

/* Hero визуал */
.connector-hero-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
}

.connector-hero-window {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.connector-hero-window-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.connector-hero-window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.connector-hero-window-dot:nth-child(1) { background: #ff6b6b; }
.connector-hero-window-dot:nth-child(2) { background: #ffd93d; }
.connector-hero-window-dot:nth-child(3) { background: #6bcb77; }

.connector-hero-window-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: auto;
    font-weight: 600;
}

.connector-hero-window-content {
    padding: 30px 20px;
}

.connector-hero-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.connector-hero-block {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    max-width: 200px;
}

.connector-hero-block--connector {
    background: linear-gradient(135deg, var(--accent-light), rgba(0, 190, 162, 0.05));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.connector-hero-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.connector-hero-block-header svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.connector-hero-block-header span {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-dark);
}

.connector-hero-block-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: var(--white);
    border-radius: 100px;
}

.connector-hero-block-status--active {
    color: #6bcb77;
}

.connector-hero-pulse {
    width: 8px;
    height: 8px;
    background: #6bcb77;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.connector-hero-connector-icon {
    margin-bottom: 12px;
}

.connector-hero-connector-icon svg {
    width: 60px;
    height: 60px;
}

.connector-hero-pulse-circle {
    animation: pulseCircle 2s ease-in-out infinite;
}

@keyframes pulseCircle {
    0%, 100% { r: 20; opacity: 0.2; }
    50% { r: 25; opacity: 0.1; }
}

.connector-hero-arrow {
    width: 100%;
    max-width: 100px;
    margin: 10px 0;
}

.connector-hero-arrow svg {
    width: 100%;
    height: auto;
}

.connector-hero-arrow-line {
    animation: flowRight 2s ease-in-out infinite;
}

.connector-hero-arrow--left .connector-hero-arrow-line {
    animation: flowLeft 2s ease-in-out infinite;
}

@keyframes flowRight {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 100; }
}

@keyframes flowLeft {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

.connector-hero-arrow-dot {
    animation: moveDot 3s ease-in-out infinite;
}

@keyframes moveDot {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.connector-hero-connection-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 16px;
    background: rgba(107, 203, 119, 0.1);
    border-radius: 100px;
}

.connector-hero-connection-status svg {
    width: 18px;
    height: 18px;
    color: #6bcb77;
}

.connector-hero-connection-status span {
    font-size: 13px;
    color: #6bcb77;
    font-weight: 600;
}

/* Волна */
.connector-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
}

.connector-hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Возможности */
.connector-features {
    padding: 80px 0;
    background: var(--white);
}

.connector-features-box {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.connector-features-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.connector-features-pulse {
    animation: featuresPulse 3s ease-in-out infinite;
}

@keyframes featuresPulse {
    0%, 100% { r: 50; opacity: 0.1; }
    50% { r: 60; opacity: 0.05; }
}

.connector-features-node {
    animation: nodeFloat 3s ease-in-out infinite;
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.connector-features-line {
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 1000; }
}

.connector-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.connector-features-list li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
}

.connector-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

/* Как работает */
.connector-how {
    padding: 80px 0;
    background: var(--bg-light);
}

.connector-how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.connector-how-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.connector-how-card:hover {
    border-color: rgba(0, 190, 162, 0.15);
    box-shadow: 0 20px 60px rgba(1, 63, 84, 0.1);
    transform: translateY(-5px);
}

.connector-how-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 24px;
}

.connector-how-image {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.connector-how-image img {
    max-width: 100%;
    height: auto;
}

.connector-how-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.connector-how-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.connector-how-step-number {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.connector-how-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

/* Типы коннектора */
.connector-types {
    padding: 80px 0;
    background: var(--white);
}

.connector-types-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.connector-types-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.connector-types-item {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.connector-types-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 190, 162, 0.15);
}

.connector-types-header {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.connector-types-header:hover {
    background: rgba(0, 190, 162, 0.05);
}

.connector-types-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0;
}

.connector-types-header svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.connector-types-item.active .connector-types-header svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.connector-types-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.connector-types-item.active .connector-types-body {
    max-height: 500px;
}

.connector-types-body ul {
    list-style: none;
    padding: 0 28px 28px 28px;
    margin: 0;
}

.connector-types-body li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.connector-types-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

/* Другие способы интеграции */
.connector-other {
    padding: 80px 0;
    background: var(--bg-light);
}

.connector-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.connector-other-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.connector-other-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), #00d4b4);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.connector-other-card:hover {
    border-color: rgba(0, 190, 162, 0.15);
    box-shadow: 0 20px 60px rgba(1, 63, 84, 0.1);
    transform: translateY(-8px);
}

.connector-other-card:hover::before {
    transform: scaleY(1);
}

.connector-other-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.connector-other-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.connector-other-card:hover .connector-other-icon {
    background: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 190, 162, 0.3);
}

.connector-other-card:hover .connector-other-icon svg {
    color: var(--white);
}

.connector-other-content {
    flex: 1;
    margin-bottom: 20px;
}

.connector-other-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.connector-other-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.connector-other-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
    font-size: 15px;
}

.connector-other-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.connector-other-link:hover {
    gap: 12px;
}

.connector-other-link:hover svg {
    transform: translateX(4px);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .connector-hero .connector-container,
    .connector-features-box,
    .connector-types-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .connector-hero-visual {
        margin: 0 auto;
    }

    .connector-hero-content {
        text-align: center;
    }

    .connector-hero-buttons {
        justify-content: center;
    }
    
    .connector-other-grid,
    .connector-how-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .connector-hero,
    .connector-features,
    .connector-how,
    .connector-types,
    .connector-other {
        padding: 60px 0;
    }
    
    .connector-features-box {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .connector-hero-buttons {
        flex-direction: column;
    }

    .connector-btn-primary,
    .connector-btn-outline {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}
/* End */
/* /local/css/kontur/connector.css?177569523918537 */
