/* ============================================
   SHARED SERVICE PAGE STYLES
   Used by: SEO, Google Ads, LSA, FMS, Audit
   ============================================ */

/* HERO SECTION (V5 Style: Card-Based with Process Preview) */
.wd-hero {
  background: linear-gradient(180deg, #faf8f7 0%, #fff 100%);
  padding: 120px 0;
  padding-top: 140px;
  position: relative;
}

.wd-hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.wd-hero__content {
  position: relative;
}

.wd-hero__logo {
  width: 90px;
  height: auto;
  margin: 0 0 20px;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 3px 10px rgba(244, 97, 34, 0.2));
}

.wd-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-orange);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.wd-hero__content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--body-brown);
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.wd-hero__content h1 span {
  color: var(--brand-orange);
}

.wd-hero__content > p {
  font-size: 1.1rem;
  color: var(--midtone-taupe);
  line-height: 1.8;
  margin-bottom: 30px;
}

.wd-hero__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

.wd-hero__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wd-hero__highlight svg {
  width: 20px;
  height: 20px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.wd-hero__highlight span {
  color: var(--body-brown);
  font-size: 0.9rem;
  font-weight: 500;
}

.wd-hero__cta {
  display: flex;
  gap: 15px;
}

.wd-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wd-hero__card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.wd-hero__card:hover {
  transform: translateX(-5px);
  box-shadow: 0 10px 40px rgba(244,97,34,0.12);
}

.wd-hero__card-number {
  width: 45px;
  height: 45px;
  background: var(--background-cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.wd-hero__card-content h4 {
  color: var(--body-brown);
  font-size: 1rem;
  margin-bottom: 5px;
}

.wd-hero__card-content p {
  color: var(--midtone-taupe);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* WHO THIS IS FOR SECTION (V1.1 Style: Two-Column Dark) */
.wd-who {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.wd-who::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(244,97,34,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.wd-who .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.wd-who__content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.wd-who__content h2 span {
  color: var(--brand-orange);
}

.wd-who__content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.wd-who__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wd-who__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.wd-who__item:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(244,97,34,0.3);
}

.wd-who__icon {
  width: 50px;
  height: 50px;
  background: var(--brand-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.wd-who__icon svg {
  width: 24px;
  height: 24px;
}

.wd-who__item-content h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.wd-who__item-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* INFO / BUILD SECTION (Light) */
.wd-build {
  background: var(--white);
  padding: 120px 0;
}

.wd-build .container {
  max-width: 900px;
}

.wd-build__header {
  text-align: center;
  margin-bottom: 60px;
}

.wd-build__header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--body-brown);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.wd-build__header h2 span {
  color: var(--brand-orange);
}

.wd-build__header p {
  font-size: 1.1rem;
  color: var(--midtone-taupe);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.wd-build__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.wd-build__feature {
  text-align: center;
  padding: 30px 20px;
  background: var(--background-cream);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.wd-build__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.wd-build__feature-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--brand-orange);
}

.wd-build__feature-icon svg,
.wd-build__feature-icon img {
  width: 48px;
  height: 48px;
}

.wd-build__feature h4 {
  color: var(--body-brown);
  font-size: 1rem;
  margin-bottom: 10px;
}

.wd-build__feature p {
  color: var(--midtone-taupe);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.wd-build__note {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.wd-build__note-icon {
  width: 50px;
  height: 50px;
  background: var(--brand-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.wd-build__note-icon svg {
  width: 24px;
  height: 24px;
}

.wd-build__note-content h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.wd-build__note-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.wd-build__note-content a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 500;
}

.wd-build__note-content a:hover {
  text-decoration: underline;
}

/* OUR PROCESS SECTION (V1 Style: Vertical Timeline) */
.wd-process {
  background: var(--background-cream);
  padding: 120px 0;
}

.wd-process__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.wd-process__header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--body-brown);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.wd-process__header h2 span {
  color: var(--brand-orange);
}

.wd-process__header p {
  font-size: 1.2rem;
  color: var(--brand-orange);
  font-weight: 500;
}

.wd-process__timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.wd-process__timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-orange) 0%, rgba(244,97,34,0.2) 100%);
}

.wd-process__step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.wd-process__step:last-child {
  margin-bottom: 0;
}

.wd-process__number {
  width: 60px;
  height: 60px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.wd-process__step-content {
  flex: 1;
  padding-top: 10px;
}

.wd-process__step-content h3 {
  color: var(--body-brown);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.wd-process__step-content p {
  color: var(--midtone-taupe);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* CLIENT REVIEWS SECTION */
.wd-reviews {
  background: #faf8f7;
  padding: 120px 0;
}

.wd-reviews__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.wd-reviews__header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--body-brown);
  margin-bottom: 0;
  text-transform: uppercase;
}

.wd-reviews__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.wd-reviews__summary {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

.wd-reviews__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.wd-reviews__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--background-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.wd-reviews__brand-name {
  font-weight: 600;
  color: var(--body-brown);
  line-height: 1.2;
}

.wd-reviews__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wd-reviews__stars {
  display: inline-flex;
  gap: 3px;
  color: #f4b400;
}

.wd-reviews__stars svg {
  width: 16px;
  height: 16px;
}

.wd-reviews__count {
  color: var(--midtone-taupe);
  font-size: 0.9rem;
}

.wd-reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid rgba(173,146,134,0.2);
  background: var(--white);
  color: var(--body-brown);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wd-reviews__btn:hover {
  border-color: rgba(244,97,34,0.45);
  box-shadow: 0 10px 25px rgba(244,97,34,0.12);
  transform: translateY(-1px);
}

.wd-reviews__rail {
  position: relative;
}

.wd-reviews__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 6px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.wd-reviews__track::-webkit-scrollbar {
  height: 10px;
}

.wd-reviews__track::-webkit-scrollbar-thumb {
  background: rgba(173,146,134,0.35);
  border-radius: 999px;
}

.wd-reviews__card {
  min-width: 280px;
  max-width: 280px;
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  scroll-snap-align: start;
}

.wd-reviews__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.wd-reviews__person {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.wd-reviews__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.wd-reviews__meta {
  min-width: 0;
}

.wd-reviews__name {
  color: var(--body-brown);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wd-reviews__time {
  color: rgba(173,146,134,0.9);
  font-size: 0.8rem;
}

.wd-reviews__g {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.wd-reviews__g svg {
  width: 12px;
  height: 12px;
}

.wd-reviews__card-stars {
  display: inline-flex;
  gap: 3px;
  color: #f4b400;
  margin-bottom: 10px;
}

.wd-reviews__card-stars svg {
  width: 14px;
  height: 14px;
}

.wd-reviews__text {
  color: var(--body-brown);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.wd-reviews__more {
  display: inline-block;
  margin-top: 12px;
  color: rgba(173,146,134,0.95);
  font-size: 0.85rem;
  text-decoration: none;
}

.wd-reviews__more:hover {
  color: var(--brand-orange);
}

@media (max-width: 992px) {
  .wd-reviews__row {
    grid-template-columns: 1fr;
  }

  .wd-reviews__summary {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ============================================
   GLOBAL SERVICE PAGE CTA SECTION
   Used on: SEO, Google Ads, LSA, Audit, FMS
   ============================================ */
.cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244,97,34,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta__content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta__content h2 span {
  color: var(--brand-orange);
}

.cta__content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.cta__benefits li::before {
  content: '✓';
  color: var(--cta-green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.cta__form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.cta__form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--body-brown);
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta__form-group {
  margin-bottom: 18px;
}

.cta__form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body-brown);
  margin-bottom: 6px;
}

.cta__form-group input,
.cta__form-group select,
.cta__form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(173,146,134,0.2);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: #faf8f7;
  color: var(--body-brown);
  transition: all 0.3s ease;
}

.cta__form-group input:focus,
.cta__form-group select:focus,
.cta__form-group textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,97,34,0.1);
}

.cta__form-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--brand-orange), var(--accent-orange));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(244,97,34,0.35);
  margin-top: 5px;
}

.cta__form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(244,97,34,0.5);
}

@media (max-width: 992px) {
  .cta .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ============================================
   FAQ SECTION UTILITY (service pages)
   ============================================ */
.wd-faq__section {
  background: var(--white);
  padding: 80px 0;
}

.wd-faq__section .container {
  max-width: 800px;
}

.wd-faq__section h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* SERVICE PAGE CTA (Light variant) */
.cta--service {
  background: linear-gradient(180deg, #f5f0ed 0%, var(--background-cream) 50%, #f0e9e5 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta--service::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(111,216,30,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta--service .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.cta--service .cta__content h2 {
  color: var(--body-brown);
}

.cta--service .cta__content > p {
  color: var(--midtone-taupe);
}

.cta--service .cta__benefits li {
  color: var(--body-brown);
}

/* WHAT'S INCLUDED SECTION */
.wd-included {
  background: var(--white);
  padding: 120px 0;
}

.wd-included__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.wd-included__header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--body-brown);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.wd-included__header h2 span {
  color: var(--brand-orange);
}

.wd-included__header p {
  font-size: 1.1rem;
  color: var(--midtone-taupe);
  line-height: 1.8;
}

.wd-included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.wd-included__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--background-cream);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.wd-included__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.wd-included__icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.wd-included__icon svg {
  width: 22px;
  height: 22px;
}

.wd-included__item h4 {
  color: var(--body-brown);
  font-size: 1rem;
  margin-bottom: 6px;
}

.wd-included__item p {
  color: var(--midtone-taupe);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* FAQ SECTION */
.wd-faq {
  background: var(--background-cream);
  padding: 120px 0;
}

.wd-faq__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.wd-faq__header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--body-brown);
  text-transform: uppercase;
}

.wd-faq__header h2 span {
  color: var(--brand-orange);
}

.wd-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 22px 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--body-brown);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.faq-question span {
  color: var(--brand-orange);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 22px;
  color: var(--midtone-taupe);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* EXAMPLES SECTION */
.wd-examples {
  background: var(--white);
  padding: 120px 0;
}

.wd-examples__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.wd-examples__header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--body-brown);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.wd-examples__header h2 span {
  color: var(--brand-orange);
}

.wd-examples__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.wd-examples__card {
  background: var(--background-cream);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wd-examples__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.wd-examples__card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e, #0f0f23);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.wd-examples__card-body {
  padding: 25px;
}

.wd-examples__card-body h4 {
  color: var(--body-brown);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.wd-examples__card-body p {
  color: var(--midtone-taupe);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ============ RESPONSIVE ============ */

/* --- Tablet (<=992px) --- */
@media (max-width: 992px) {
  /* Reduce section padding */
  .wd-hero,
  .wd-who,
  .wd-build,
  .wd-process,
  .wd-reviews,
  .wd-included,
  .wd-faq,
  .wd-examples,
  .cta,
  .cta--service {
    padding: 80px 0;
  }

  .wd-hero {
    padding-top: 120px;
  }

  /* Stack all 2-col grids */
  .wd-hero .container,
  .wd-who .container,
  .cta .container,
  .cta--service .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wd-hero__content h1 {
    font-size: 2.5rem;
  }

  /* Reduce heading sizes */
  .wd-who__content h2,
  .wd-build__header h2,
  .wd-process__header h2,
  .wd-reviews__header h2,
  .wd-included__header h2,
  .wd-faq__header h2,
  .wd-examples__header h2,
  .cta__content h2 {
    font-size: 2rem;
  }

  .wd-build__features {
    grid-template-columns: 1fr;
  }

  .wd-build__note {
    flex-direction: column;
    text-align: center;
  }

  .wd-build__note-icon {
    margin: 0 auto;
  }

  .wd-examples__grid {
    grid-template-columns: 1fr;
  }

  .wd-included__grid {
    grid-template-columns: 1fr;
  }

  .wd-reviews__row {
    grid-template-columns: 1fr;
  }

  .wd-reviews__summary {
    max-width: 420px;
    margin: 0 auto;
  }

  .cta__form {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --- Mobile (<=768px) --- */
@media (max-width: 768px) {
  .wd-hero,
  .wd-who,
  .wd-build,
  .wd-process,
  .wd-reviews,
  .wd-included,
  .wd-faq,
  .wd-examples,
  .cta,
  .cta--service {
    padding: 60px 0;
  }

  .wd-hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .wd-hero .container {
    gap: 30px;
  }

  .wd-hero__content h1 {
    font-size: 2rem;
  }

  .wd-hero__content > p {
    font-size: 1rem;
  }

  .wd-hero__highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wd-hero__highlight {
    padding: 10px 14px;
  }

  .wd-hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .wd-hero__cta .btn,
  .wd-hero__cta a,
  .wd-hero__cta button {
    width: 100%;
    justify-content: center;
  }

  /* Hero cards */
  .wd-hero__card {
    padding: 20px;
    gap: 14px;
  }

  .wd-hero__card-number {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  /* Who section */
  .wd-who {
    padding: 60px 0;
  }

  .wd-who .container {
    gap: 30px;
  }

  .wd-who__content h2 {
    font-size: 1.8rem;
  }

  .wd-who__item {
    padding: 20px;
    gap: 14px;
  }

  .wd-who__icon {
    width: 42px;
    height: 42px;
  }

  .wd-who__icon svg {
    width: 20px;
    height: 20px;
  }

  /* Build section */
  .wd-build .container {
    max-width: 100%;
  }

  .wd-build__header h2 {
    font-size: 1.8rem;
  }

  .wd-build__header {
    margin-bottom: 40px;
  }

  .wd-build__feature {
    padding: 24px 18px;
  }

  .wd-build__note {
    padding: 28px 20px;
  }

  /* Process timeline */
  .wd-process__header {
    margin-bottom: 40px;
  }

  .wd-process__header h2 {
    font-size: 1.8rem;
  }

  .wd-process__timeline::before {
    left: 22px;
  }

  .wd-process__number {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .wd-process__step {
    gap: 18px;
  }

  .wd-process__step-content h3 {
    font-size: 1.05rem;
  }

  .wd-process__step-content p {
    font-size: 0.9rem;
  }

  /* Reviews */
  .wd-reviews__header h2 {
    font-size: 1.8rem;
  }

  .wd-reviews__card {
    min-width: 250px;
    max-width: 250px;
  }

  /* Included */
  .wd-included__header {
    margin-bottom: 40px;
  }

  .wd-included__header h2 {
    font-size: 1.8rem;
  }

  .wd-included__item {
    padding: 20px;
    gap: 14px;
  }

  .wd-included__icon {
    width: 38px;
    height: 38px;
  }

  /* FAQ */
  .wd-faq__header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
  }

  /* Examples */
  .wd-examples__header h2 {
    font-size: 1.8rem;
  }

  /* CTA form */
  .cta .container,
  .cta--service .container {
    gap: 35px;
  }

  .cta__content h2 {
    font-size: 1.8rem;
  }

  .cta__content > p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta__benefits li {
    font-size: 0.95rem;
  }

  .cta__form {
    padding: 30px 24px;
    border-radius: 18px;
  }

  .cta__form h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .cta__form-group {
    margin-bottom: 14px;
  }

  .cta__form-group input,
  .cta__form-group select,
  .cta__form-group textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .services-pyramid__img {
    width: 100%;
    max-width: 100%;
  }
}

/* --- Small mobile (<=480px) --- */
@media (max-width: 480px) {
  .wd-hero__content h1 {
    font-size: 1.7rem;
  }

  .wd-hero__tag {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .wd-who__content h2,
  .wd-build__header h2,
  .wd-process__header h2,
  .wd-reviews__header h2,
  .wd-included__header h2,
  .wd-faq__header h2,
  .wd-examples__header h2,
  .cta__content h2 {
    font-size: 1.5rem;
  }

  .wd-hero__card {
    padding: 16px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .wd-who__item {
    flex-direction: column;
    gap: 12px;
  }

  .wd-build__note {
    padding: 24px 16px;
  }

  .wd-process__timeline::before {
    left: 18px;
  }

  .wd-process__number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .wd-process__step {
    gap: 14px;
  }

  .cta__form {
    padding: 24px 16px;
  }

  .wd-reviews__card {
    min-width: 220px;
    max-width: 220px;
    padding: 18px;
  }
}
