
/* === CLIENTS BAR === */
.clients-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.clients-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
}
.clients-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.5;
}
.clients-label strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.client-logo {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.1;
  opacity: 0.7;
  transition: opacity 0.2s;
  text-transform: uppercase;
}
.client-logo:hover { opacity: 1; }
.client-logo .gp { color: #2C5598; }



/* === SECTION GENERAL === */
.section { padding: 120px 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

/* убрать section-title ? */
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 720px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 420px;
  padding-bottom: 8px;
}

/* === PARTNER === */
.partner-block {
  background: linear-gradient(135deg, #1A1F4D 0%, #0E1330 60%, #1A1F4D 100%);
  border-radius: 28px;
  padding: 64px;
  color: white;
  position: relative;
  overflow: hidden;
}
.partner-block::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(97, 89, 255, 0.4), transparent 60%);
  pointer-events: none;
}
.partner-block::after {
  content: '';
  position: absolute;
  bottom: -200px; left: 30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45, 143, 254, 0.18), transparent 60%);
  pointer-events: none;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.partner-tag .pulse {
  width: 8px; height: 8px;
  background: #6FFFC0;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(111, 255, 192, 0.2);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(111, 255, 192, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(111, 255, 192, 0.05); }
}

.partner-block h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.partner-block p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 460px;
}
.partner-block .btn-link {
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
}
.partner-block .btn-link:hover { border-color: white; }

.partner-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.partner-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.partner-card .pc-logo {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #2C5598 0%, #1A3F73 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
}
.partner-card .pc-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.partner-card .pc-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.partner-card .pc-arrow {
  color: rgba(255,255,255,0.5);
  font-size: 20px;
}

/* === SOLUTIONS === */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.sol-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.sol-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--text-muted);
}

.sol-large { grid-column: span 6; min-height: 380px; }
.sol-medium { grid-column: span 6; min-height: 280px; }
.sol-small { grid-column: span 4; min-height: 280px; }

.sol-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 24px;
}

.sol-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.sol-large h3 { font-size: 28px; }

.sol-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.sol-stat-line {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sol-stat-num {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
}
.sol-stat-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.sol-featured {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}
.sol-featured::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.sol-featured .sol-icon {
  background: rgba(255,255,255,0.18);
  color: white;
}
.sol-featured p { color: rgba(255,255,255,0.85); }
.sol-featured .sol-stat-num { color: white; }
.sol-featured .sol-stat-text { color: rgba(255,255,255,0.75); }

.tag-soon {
  position: absolute;
  top: 28px; right: 28px;
  padding: 4px 10px;
  background: var(--bg-soft);
  color: var(--text-muted);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === ROLES === */
.roles {
  background: var(--bg-soft);
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.role-card {
  background: white;
  border-radius: 18px;
  padding: 28px 24px 24px;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  text-decoration: none;
  color: inherit;
}
.role-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.role-card:hover .role-arrow { transform: translate(4px, -4px); }

.role-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.role-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.role-pain {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}
.role-arrow {
  margin-top: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.role-card:hover .role-arrow {
  background: var(--brand);
  color: white;
}

/* === CASE === */
.case-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.case-quote {
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 32px;
  position: relative;
}
.case-quote::before {
  content: '"';
  position: absolute;
  left: -24px;
  top: -10px;
  font-size: 56px;
  color: var(--brand);
  font-family: 'Geologica', serif;
  line-height: 1;
}
.case-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.case-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6159FF, #2D8FFE);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}
.case-author-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.case-author-role {
  font-size: 13px;
  color: var(--text-secondary);
}

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 36px;
  background: var(--bg-soft);
  border-radius: 20px;
}
.case-stat .num {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.case-stat .num .unit {
  font-size: 24px;
  margin-left: 2px;
}
.case-stat .desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* === MODULES === */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.module-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.module-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.module-icon {
  width: 72px; height: 40px;
  margin: 0 auto 20px;
  background-image: var(--logo-1c-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


/* === HOW IT WORKS === */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-soft) 0%, var(--brand) 50%, var(--border-soft) 100%);
  z-index: 0;
}
.how-step {
  background: white;
  position: relative;
  padding: 24px 20px;
  z-index: 1;
}
.step-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
}
.step-marker.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(97, 89, 255, 0.32);
}
.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.step-time {
  display: inline-block;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* === CTA === */
.cta-section { padding: 0 0 120px; }
.cta-card {
  background: linear-gradient(135deg, #6159FF 0%, #4A42E8 60%, #2D8FFE 100%);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  color: white;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
}
.cta-content { position: relative; z-index: 1; }

.cta-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.cta-card p {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 480px;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-actions .btn-primary {
  background: white;
  color: var(--brand-deep);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.cta-actions .btn-primary:hover { background: var(--bg); }
.cta-actions .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.cta-actions .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

.cta-side {
  position: relative;
  z-index: 1;
}
.cta-quote-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px;
}
.cta-quote-text {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 400;
}
.cta-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  opacity: 0.8;
}