* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f9f9f9;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    sans-serif;
  color: #0a1927;
  line-height: 1.45;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
/* Хлебные крошки */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  color: #5a6e7c;
}
.breadcrumb a {
  color: #2c6e9e;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #0f4c6f;
  text-decoration: underline;
}
.breadcrumb span:last-child {
  color: #1f3b4c;
  font-weight: 500;
}

/* hero */
.hero-legal {
  margin-bottom: 3rem;
}
.hero-legal h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #1a4d5f, #2c7a6e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.hero-legal p {
  font-size: 1.05rem;
  color: #3c5a64;
  max-width: 700px;
  border-left: 3px solid #2c6e9e;
  padding-left: 1.2rem;
}

/* карточка реквизитов (основная) */
.details-card {
  background: #ffffff;
  border-radius: 32px;
  box-shadow:
    0 20px 35px -12px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-header {
  padding: 1.8rem 2rem 1rem 2rem;
  border-bottom: 1px solid #edf2f7;
  background: #fefefe;
}
.card-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a4d5f;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-header h2 i {
  font-size: 1.7rem;
  color: #2c6e9e;
}

.company-badge {
  background: #eef3fc;
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #136b7c;
  margin-top: 0.6rem;
}

.card-body {
  padding: 1.5rem 2rem 2rem 2rem;
}

/* секции */
.info-section {
  margin-bottom: 2rem;
}
.section-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2c6e9e;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1.5px solid #ffe1e1;
  padding-bottom: 0.3rem;
}
.section-title i {
  color: #2c6e9e;
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
}
@media (max-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .container {
    padding: 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

.detail-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  border-bottom: 1px dashed #ecf3f9;
  padding: 0.6rem 0;
}
.detail-label {
  width: 170px;
  font-weight: 600;
  color: #2c5a66;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}
.detail-value {
  flex: 1;
  color: #0f2933;
  font-weight: 500;
  font-size: 0.95rem;
  word-break: break-word;
}
@media (max-width: 550px) {
  .detail-label {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .detail-row {
    flex-direction: column;
  }
}

.bank-box {
  background: #fafdff;
  border-radius: 24px;
  padding: 1rem 1.5rem;
  border: 1px solid #eef3fa;
  margin-top: 0.5rem;
}

.copy-btn {
  background: none;
  border: 1px solid #dce5ec;
  border-radius: 30px;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  margin-left: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  color: #4c7a88;
  vertical-align: middle;
}
.copy-btn:hover {
  background: #eef3fc;
  border-color: #bdd3e0;
  color: #cf2e2e;
}

.footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #7c8f9a;
  border-top: 1px solid #e2edf4;
  padding-top: 2rem;
}

.status-active {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #e1f7f0;
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1e7b64;
}
.inline-code {
  font-family: "SF Mono", "Fira Code", monospace;
  background: #f1f5f9;
  padding: 0.2rem 0.4rem;
  border-radius: 10px;
  font-size: 0.85rem;
}
.container hr {
  display: none;
}
.separator-light {
  height: 1px;
  background: linear-gradient(90deg, #e2edf4, transparent);
  margin: 1rem 0;
}
.grecaptcha-badge {
  opacity: 0 !important;
  visibility: hidden !important;
}
