.ct-block {
  display: grid; grid-template-columns: 1fr 1.6fr;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.sp-hero + .sec { padding-top: 72px; }
.ct-left  { padding: 52px 48px; border-right: 1px solid var(--border); background: var(--bg2); }
.ct-right { padding: 52px 48px; }

.ct-left-h2 {
  font-size: clamp(20px, 2vw, 26px); font-weight: 800;
  color: var(--text); letter-spacing: -0.03em; margin-bottom: 10px;
}
.ct-left-sub { font-size: 15px; color: var(--t2); line-height: 1.65; margin-bottom: 32px; }

.ct-channels { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.ct-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 14px;
  background: var(--bg2); border: 1px solid var(--border);
  text-decoration: none; transition: background 0.15s, border-color 0.15s;
}
.ct-channel:hover { background: var(--hover); border-color: var(--a-br); }
.ct-channel:hover .ct-channel-arr { color: var(--accent); transform: translate(2px,-2px); }
.ct-channel-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--a-bg); border: 1px solid var(--a-br);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ct-channel-icon svg { width: 16px; height: 16px; stroke: var(--accent); }
.ct-channel-info { flex: 1; }
.ct-channel-title { font-size: 12px; color: var(--t3); margin-bottom: 1px; }
.ct-channel-val { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.ct-channel-arr { font-size: 15px; color: var(--t3); transition: all 0.2s; }

.ct-facts { display: flex; flex-direction: column; }
.ct-fact { padding: 16px 0; border-top: 1px solid var(--border); }
.ct-fact:last-child { padding-bottom: 0; }
.ct-fact-num {
  font-size: 28px; font-weight: 900; color: var(--accent);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.ct-fact-text { font-size: 13px; color: var(--t2); line-height: 1.5; }

.ct-form-h2 {
  font-size: clamp(20px, 2vw, 26px); font-weight: 800;
  color: var(--text); letter-spacing: -0.03em; margin-bottom: 8px;
}
.ct-form-sub { font-size: 15px; color: var(--t2); margin-bottom: 28px; line-height: 1.5; }
.ct-form-head { margin-bottom: 28px; }

.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-label { font-size: 13px; font-weight: 600; color: var(--t2); }

.ct-input {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-family: 'Geist', sans-serif; font-size: 15px;
  color: var(--text); transition: border-color 0.15s;
  outline: none; width: 100%;
}
.ct-input::placeholder { color: var(--t3); }
.ct-input:focus { border-color: var(--a-br); }
.ct-select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(232,230,240,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.ct-textarea { resize: vertical; min-height: 180px; line-height: 1.6; }

.ct-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); border: none; border-radius: 12px;
  padding: 15px 28px; font-family: 'Geist', sans-serif;
  font-size: 15px; font-weight: 700; color: #0d1117;
  cursor: pointer; letter-spacing: -0.02em; transition: opacity 0.15s;
  margin-top: 4px; width: 100%;
}
.ct-submit:hover { opacity: 0.88; }
.ct-submit svg { width: 16px; height: 16px; stroke: #0d1117; flex-shrink: 0; }

.ct-form-note { font-size: 12px; color: var(--t3); text-align: center; line-height: 1.5; }
.ct-form-note a { color: var(--t3); text-decoration: underline; }

.ct-success { text-align: center; padding: 64px 24px; }
.ct-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--a-bg); border: 1px solid var(--a-br);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.ct-success-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.ct-success-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -0.03em; }
.ct-success-text { font-size: 15px; color: var(--t2); line-height: 1.65; }
.ct-success-text a { color: var(--accent); text-decoration: none; }

.ct-svc:hover { background: var(--hover); border-color: var(--a-br); }
.ct-svc:hover

@media (max-width: 1100px) {
  .ct-block { grid-template-columns: 1fr; }
  .ct-left { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 36px; }
  .ct-right { padding: 40px 36px; }
  .ct-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ct-block {
    display: flex !important;
    flex-direction: column !important;
  }
  .ct-right {
    order: 1;
    padding: 28px 20px;
    border-bottom: 1px solid var(--border);
  }
  .ct-left {
    order: 2;
    padding: 28px 20px;
    border-right: none;
    border-bottom: none;
    background: var(--bg2);
  }
  .ct-row { grid-template-columns: 1fr; }
}

.ct-services-sec { margin-bottom: 64px; }
