/*
 * Webdev Zimbabwe — consultative template (v2026)
 * Load AFTER webdev-base.css. Shared by the account-managed pages:
 *   /enterprise-infrastructure · /custom-websites
 *
 * Block order follows page-architecture "Consultative":
 *   1 capability and buyer-class hero · 2 what Webdev can deliver
 *   3 permission-cleared proof · 4 engagement process
 *   5 qualification form and WhatsApp alternative
 *
 * "Avoid self-service checkout when scope is account-managed" — so every tier
 * action on these pages is an enquiry, never an Order button.
 *
 * Hero, chips, plan cards, spec rows, the responsibility split, process steps,
 * pillars, FAQ, the .wd-final banner and the closing CTA band all come from
 * webdev-base.css. This file adds only what a consultative page needs.
 */

/* ---------- buyer-class grid ---------- */

/*
 * Six named buyer classes rather than adjectives. An enterprise buyer is
 * looking for their own sector on the page before they read anything else, so
 * these are cards — scannable and individually addressable — not a bare row.
 */
.wd-sectors {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.wd-sectors li {
  background: var(--wd-white);
  border-radius: var(--wd-card-radius);
  box-shadow: var(--wd-card-shadow);
  padding: clamp(1rem, 1.6vw, 1.375rem);
  text-align: center;
}

.wd-sectors .wd-icon {
  color: var(--wd-orange-600);
  margin-bottom: 0.75rem;
}

.wd-sectors h3 {
  font-size: 0.9375rem;
}

.wd-sectors p {
  color: var(--wd-grey-700);
  font-size: 0.8125rem;
  margin: 0.375rem 0 0;
}

@media (max-width: 1199.98px) {
  .wd-sectors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .wd-sectors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 479.98px) {
  .wd-sectors {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- enterprise starting points ---------- */

/*
 * Stands in for the price line on a tier that cannot carry one. Styled like the
 * price it replaces so the three cards stay visually level, but worded so it can
 * never be mistaken for a figure.
 */
.wd-plan__quoted {
  border-bottom: 1px solid var(--wd-grey-100);
  color: var(--wd-orange-700);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  padding-bottom: 0.875rem;
  text-transform: uppercase;
}

/* ---------- inset trust band ---------- */

/*
 * A dark rounded block rather than a full-bleed panel. On a consultative page
 * the compliance row is a statement of terms sitting inside the argument, not a
 * section break in it.
 */
.wd-trustband {
  background: var(--wd-charcoal-950);
  border-radius: var(--wd-card-radius);
  color: var(--wd-white);
  padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
}

.wd-trustband .wd-section__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

/* ---------- qualification form ---------- */

/*
 * The consultative close: a scoping request, not a checkout. The dark aside
 * restates why the conversation is worth having and carries the WhatsApp
 * alternative, because a decision-maker on a phone will use that instead.
 */
.wd-scope {
  background: var(--wd-white);
  border-radius: var(--wd-card-radius);
  box-shadow: var(--wd-card-shadow);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
}

.wd-scope__aside {
  background: var(--wd-charcoal-950);
  color: var(--wd-white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.wd-scope__aside h2 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
}

/* The aside sits on charcoal, so the checklist has to re-state its ink for the
   same reason .wd-split__card does in base. */
.wd-scope__aside .wd-checklist li {
  color: var(--wd-grey-200);
}

.wd-scope__aside .wd-checklist .wd-icon {
  color: var(--wd-orange-500);
}

.wd-scope__alt {
  border-top: 1px solid rgb(255 255 255 / 14%);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.5rem);
}

.wd-scope__alt h3 {
  font-size: 0.9375rem;
}

.wd-scope__alt p {
  color: var(--wd-grey-200);
  font-size: 0.875rem;
  margin: 0.375rem 0 1rem;
}

.wd-scope__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.wd-scope__grid {
  display: grid;
  gap: 1rem 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wd-field {
  display: grid;
  gap: 0.375rem;
}

.wd-field--full {
  grid-column: 1 / -1;
}

.wd-field label {
  color: var(--wd-grey-700);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

/*
 * Inputs are declared here rather than inherited: Antler's style.css and
 * bootstrap both style bare inputs, and neither matches this design system.
 * `font: inherit` is what stops the fields falling back to the browser default
 * face while every label around them is Poppins.
 */
.wd-field input,
.wd-field select,
.wd-field textarea {
  background: var(--wd-white);
  border: 1px solid var(--wd-grey-200);
  border-radius: var(--wd-radius-sm);
  color: var(--wd-charcoal-900);
  font: inherit;
  font-size: 0.9375rem;
  min-height: 46px;
  padding: 0.625rem 0.875rem;
  width: 100%;
}

.wd-field textarea {
  min-height: 46px;
  resize: vertical;
}

.wd-field input::placeholder,
.wd-field textarea::placeholder {
  color: var(--wd-grey-500);
}

.wd-field input:focus-visible,
.wd-field select:focus-visible,
.wd-field textarea:focus-visible {
  border-color: var(--wd-orange-500);
  box-shadow: var(--wd-focus);
  outline: 0;
}

.wd-scope__submit {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.wd-scope__submit .wd-btn {
  width: 100%;
}

/* Status region for the submit result. Hidden until the handler fills it, and
   announced politely rather than assertively so it does not interrupt. */
.wd-scope__status {
  border-radius: var(--wd-radius-sm);
  font-size: 0.9375rem;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.75rem 0.875rem;
}

.wd-scope__status:empty {
  display: none;
}

.wd-scope__status[data-state="ok"] {
  background: var(--wd-success-050);
  color: var(--wd-success-800);
}

.wd-scope__status[data-state="error"] {
  background: var(--wd-warning-050);
  color: var(--wd-warning-800);
}

.wd-scope__privacy {
  align-items: center;
  color: var(--wd-grey-500);
  display: flex;
  font-size: 0.8125rem;
  gap: 0.5rem;
  grid-column: 1 / -1;
  margin: 0;
}

.wd-scope__privacy .wd-icon {
  color: var(--wd-grey-500);
  flex: 0 0 auto;
  height: 1rem;
  width: 1rem;
}

@media (max-width: 991.98px) {
  .wd-scope {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 575.98px) {
  .wd-scope__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- typical projects ----------
 * Numbered so the reader can see the range at a glance without each card
 * needing an icon it does not earn. The number is content, not decoration, so it
 * is in the markup rather than a ::before counter.
 */
.wd-projects {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wd-projects__no {
  color: var(--wd-orange-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 0.375rem;
}

.wd-projects h3 {
  font-size: 1.0625rem;
}

.wd-projects p {
  color: var(--wd-grey-700);
  font-size: 0.9375rem;
  margin: 0.375rem 0 0;
}

@media (max-width: 991.98px) {
  .wd-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .wd-projects {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- after-launch care ----------
 * Managed care is part of every custom build, so it gets a band of its own
 * rather than a bullet in a list — it is the answer to "what happens after you
 * hand it over?", which is the question that loses these deals.
 */
.wd-aftercare {
  align-items: center;
  background: var(--wd-charcoal-950);
  border-radius: var(--wd-card-radius);
  color: var(--wd-white);
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.wd-aftercare h2 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
}

.wd-aftercare .wd-body {
  color: var(--wd-grey-200);
}

.wd-aftercare__items {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.wd-aftercare__items li {
  align-items: center;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--wd-radius-sm);
  display: flex;
  font-size: 0.9375rem;
  font-weight: 600;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.625rem 0.875rem;
}

.wd-aftercare__items .wd-icon {
  color: var(--wd-orange-500);
}

@media (max-width: 767.98px) {
  .wd-aftercare {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- capability proof ----------
 * Deliberately NOT a testimonial wall. Each card names the kind of job and what
 * was delivered; no client names or numbers appear unless permission is
 * confirmed (content-guardrails §4).
 */
.wd-proof {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wd-proof__card {
  border-top: 3px solid var(--wd-orange-500);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wd-proof__top {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

/* Sequence badge. A circle because these read as a set, not a ranking. */
.wd-proof__no {
  align-items: center;
  border: 1px solid var(--wd-orange-500);
  border-radius: 50%;
  color: var(--wd-orange-700);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.8125rem;
  font-weight: 700;
  height: 1.75rem;
  justify-content: center;
  width: 1.75rem;
}

.wd-proof__sector {
  color: var(--wd-grey-500);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.wd-proof h3 {
  font-size: 1.0625rem;
}

.wd-proof p {
  color: var(--wd-grey-700);
  font-size: 0.9375rem;
  margin: 0;
}

.wd-proof .wd-link-arrow {
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .wd-proof {
    grid-template-columns: minmax(0, 1fr);
  }
}
