/* PAGE HEADER */
.pagehead {
  padding: 2.2rem 0 1.2rem;
}

.pagehead h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  color: var(--green);
  font-weight: 900;
}

.lead {
  margin: 0;
  color: #374151;
  max-width: 980px;
  line-height: 1.8;
}

.pagehead-cta {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
}

.cta-note {
  color: var(--muted);
  font-size: 0.95rem;
}

/* sections */
.section {
  padding: 2.3rem 0;
}

.section h2 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  color: var(--green);
  font-weight: 900;
}

.section p {
  margin: 0 0 0.9rem;
  color: #374151;
  line-height: 1.8;
}

.section-plain {
  padding-top: 0.5rem;
}

/* bullets */
.bullets {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
  color: #374151;
}

.bullets li {
  margin: 0.25rem 0;
  line-height: 1.8;
}

/* image row */
.image-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-row img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

/* process */
.process {
  display: grid;
  gap: 0.9rem;
  max-width: 900px;
}

.process-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #eef6db;
  color: #0f172a;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1px solid #dfe9c3;
}

.process-item h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.process-item p {
  margin: 0;
  color: #374151;
}

/* buttons */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(0.95);
}

/* forms */
.calc-form,
.contact-form {
  display: grid;
  gap: 0.85rem;
  max-width: 520px;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #cbd5e1;
}

.calc-result {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  background: #f3f7ff;
  border: 1px solid #e6efff;
  border-radius: 6px;
  max-width: 520px;
}

/* responsive */
@media (max-width: 900px) {
  .image-row {
    grid-template-columns: 1fr;
  }

  .image-row img {
    height: 280px;
  }
}
