.c-page-hero {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--color-bg-blue), #fff);
}

.c-page-hero__inner {
  max-width: 860px;
}

.c-page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.c-page-hero__lead {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.c-batch-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.c-batch-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.c-batch-card h3,
.c-batch-card p {
  margin-top: 0;
}

.c-batch-card p {
  color: var(--color-muted);
}

.c-batch-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.c-batch-feature-list article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.c-batch-feature-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  font-weight: 800;
}

.c-batch-feature-list h3 {
  margin: 0 0 10px;
}

.c-batch-feature-list p {
  margin: 0;
  color: var(--color-muted);
}

.c-batch-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.c-batch-flow {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  counter-reset: batch-flow;
}

.c-batch-flow li {
  counter-increment: batch-flow;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-weight: 700;
}

.c-batch-flow li::before {
  content: counter(batch-flow, decimal-leading-zero);
  color: var(--color-primary);
  font-size: 0.82rem;
}

.c-batch-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.c-batch-check-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.c-batch-check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--color-primary);
  font-weight: 800;
}

.c-batch-note {
  padding: 28px 0;
  background: #fff8e8;
  border-top: 1px solid #f2dfae;
  border-bottom: 1px solid #f2dfae;
}

.c-batch-note p {
  margin: 0;
}

.c-batch-brand-panel,
.c-contact-placeholder {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.c-batch-brand-panel > span {
  display: block;
  width: 56px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 60% 60% 48% 48%;
  background: radial-gradient(circle at 50% 72%, #fff 0 11%, #7be2ff 12% 33%, #1c9cff 34% 58%, #064a99 59% 100%);
  filter: drop-shadow(0 0 24px rgba(28, 156, 255, 0.35));
}

.c-batch-brand-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.c-company-table {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.c-company-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.c-company-table dt {
  font-weight: 700;
}

.c-company-table dd {
  margin: 0;
  color: var(--color-muted);
}

.c-resource-grid--batch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.c-resource-tile {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.c-resource-tile > span:first-child {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--color-primary);
  font-weight: 800;
}

.c-resource-tile h2 {
  font-size: 1.4rem;
}

.c-resource-status {
  display: inline-flex;
  padding: 6px 10px;
  margin-top: 12px;
  color: var(--color-primary-dark);
  background: var(--color-bg-blue);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.c-contact-placeholder h2 {
  margin-top: 0;
}

.c-policy-content {
  max-width: 860px;
}

.c-policy-content section + section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--color-border);
}

.c-policy-content h2 {
  font-size: 1.35rem;
}

.c-policy-content p {
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .c-batch-card-grid,
  .c-resource-grid--batch {
    grid-template-columns: 1fr;
  }

  .c-batch-feature-list,
  .c-batch-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .c-page-hero {
    padding: 64px 0;
  }

  .c-company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
