.domain-page-header {
  padding: 150px 0 80px;
  background: #eff0f5;
}

.domain-label,
.domain-section-label {
  font-size: 13px;
  color: #666;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.domain-page-header h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.5;
  color: #555e55;
  margin-bottom: 24px;
}

.domain-lead {
  max-width: 840px;
  font-size: 17px;
  line-height: 2.1;
  color: #333;
}

.domain-section {
  padding: 110px 0;
  background: #fbfbf9;
}

.domain-section.gray {
  background: #eff0f5;
}

.domain-section-head {
  margin-bottom: 44px;
}

.domain-section-head h3,
.domain-cta h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.7;
  color: #555e55;
}

.domain-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.domain-card {
  background: rgba(251, 251, 249, 0.9);
  border: 1px solid rgba(85, 94, 85, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  padding: 42px 36px;
  box-sizing: border-box;
  min-height: 100%;
}

.domain-card-sub {
  font-size: 13px;
  color: #777;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.domain-card h4 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  color: #1f2c36;
  margin-bottom: 18px;
}

.domain-card-catch {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.domain-card-text {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 32px;
}

.domain-card-link {
  margin-top: auto;
}

.domain-cta {
  padding: 110px 0;
  text-align: center;
  background: #fbfbf9;
}

.domain-cta-text {
  margin-top: 18px;
  font-size: 17px;
  line-height: 2;
  color: #333;
}

.domain-cta-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media screen and (max-width: 812px) {
  .domain-page-header {
    padding: 110px 0 14vw;
  }

  .domain-page-header h2 {
    font-size: 8vw;
    margin-bottom: 5vw;
  }

  .domain-lead,
  .domain-card-text,
  .domain-cta-text {
    font-size: 4vw;
    line-height: 2;
  }

  .domain-section,
  .domain-cta {
    padding: 14vw 0;
  }

  .domain-section-head {
    margin-bottom: 8vw;
  }

  .domain-section-head h3,
  .domain-cta h3 {
    font-size: 6.2vw;
    line-height: 1.7;
  }

  .domain-card-grid {
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .domain-card {
    padding: 8vw 5vw;
  }

  .domain-card h4 {
    font-size: 8vw;
    margin-bottom: 4vw;
  }

  .domain-card-catch {
    font-size: 4.5vw;
    margin-bottom: 4vw;
  }

  .domain-card-sub {
    font-size: 3.4vw;
    margin-bottom: 3vw;
  }

  .domain-card-text {
    margin-bottom: 6vw;
  }

  .domain-cta-buttons {
    margin-top: 8vw;
    gap: 10px;
  }
}