.webdesign-page .hero{
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  padding: 0;
}

.webdesign-page .hero__content{
  padding-left: clamp(2rem, 5vw, 6rem);
  padding-right: 2rem;
}

/* Collapse to single column on mobile */
@media (max-width: 900px) {
  .webdesign-page .hero{
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 0;
  }
  .webdesign-page .hero__content{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.webdesign-page .hero__content p{
  max-width: 70ch;
}

.webdesign-page .tiers-grid,
.webdesign-page .process-grid{
  gap: 1.5rem;
  align-items: stretch;
}

.webdesign-page .services-section{
  padding: 3.5rem 0;
}

.webdesign-page .section-header{
  margin-bottom: 2rem;
}

.webdesign-page .process-step{
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  padding: 1.5rem;
}

/* Breathing room between the process grid and the "What's included" card below it */
.webdesign-page .process-grid + .tier-card {
  margin-top: 2.5rem;
}

.webdesign-page .consultation-form{
  max-width: 100%;
}

.webdesign-page .form-grid{
  gap: 1rem;
}
/* Fix: services.css had .webdesign (wrong) — correct selector is .webdesign-page */
.webdesign-page .tier-card {
  border-left: 3px solid var(--color-primary);
}
.webdesign-page .tier-card.highlight {
  border-left-color: var(--color-accent);
  transform: translateY(-3px);
}
/* Process steps on this page don't need the left border */
.webdesign-page .process-step {
  border-left: none;
}

/* Intro paragraphs inside section-header: left-align on this page only */
.webdesign-page .section-header .intro {
  text-align: left;
  max-width: 65ch;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Breathing room between intro and pricing cards */
.webdesign-page .section-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Two-card side-by-side layout for "Not a standard project" section */
.tiers-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .tiers-grid--two {
    grid-template-columns: 1fr;
  }
}

/* CTA hint text replacing buttons on the bespoke cards */
.service-card__cta-hint {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Tighter, less daunting consultation form */
.consultation-form {
  max-width: 760px;
  margin: 0 auto;
}

.consultation-form .form-group {
  margin-bottom: 0.75rem;
}

.consultation-form textarea {
  min-height: 80px;
}

.form-optional {
  font-weight: 400;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ================================================
   OVERRIDES — these must stay at the bottom
   Fixes cascade conflicts from home.css / services.css / base.css
   ================================================ */

/* Force left-align on intro text AND headings on this page */
.webdesign-page .section-header h2,
.webdesign-page .section-header p,
.webdesign-page .section-header .intro,
.webdesign-page .services-section .intro {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Fix form layout — base.css sets form { display:flex } which hides fields */
.webdesign-page .consultation-form {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.webdesign-page .consultation-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.webdesign-page .consultation-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .webdesign-page .consultation-form .form-grid {
    grid-template-columns: 1fr;
  }
}
