.ct-section {
  padding: 84px 0;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
}

.ct-coords {
  background: var(--grad);
  color: #fff;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.ct-coords::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.ct-shield {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.ct-coords h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

.ct-coords-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.ct-coords-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.ct-crow {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.ct-crow svg {
  flex: 0 0 auto;
  margin-top: 2px;
  opacity: 0.9;
}

.ct-crow a,
.ct-crow span {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.5;
}

.ct-crow a:hover {
  text-decoration: underline;
}

.ct-formcard {
  background: #fff;
  padding: 48px 44px;
  border: 1px solid var(--line);
  border-left: 0;
}

.ct-formcard h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 22px;
}

@media (max-width: 900px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }

  .ct-formcard {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .ct-coords,
  .ct-formcard {
    padding: 36px 28px;
  }

  .ct-section {
    padding: 60px 0;
  }
}
