/* =============================================================
   WEB DESIGN PAGE CSS — Grow Local Business Premium Redesign 2026
   ============================================================= */

/* Sub-nav Pills Bar */
.subnav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 90;
  transition: box-shadow var(--t-fast);
}

.subnav-bar.stuck {
  box-shadow: var(--sh-sm);
}

.subnav-inner {
  display: flex;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.subnav-inner::-webkit-scrollbar {
  display: none;
}

.subnav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-head);
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--cream);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all var(--t-fast);
}

.subnav-link:hover,
.subnav-link.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Web Design Type Split */
.wd-section {
  padding: 88px 0;
  scroll-margin-top: 120px;
}

.type-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.type-split.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.type-split.reverse .ts-visual {
  order: 1;
}

.type-split.reverse .ts-text {
  order: 2;
}

.ts-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-top: 24px;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 18px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-checklist li {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.55;
  position: relative;
  padding-left: 24px;
}

.feature-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 800;
}

/* Process Grid */
.wd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wdp-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  position: relative;
}

.wdp-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.wdp-step h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.wdp-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 960px) {
  .type-split,
  .type-split.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .type-split.reverse .ts-visual {
    order: 2;
  }
  .type-split.reverse .ts-text {
    order: 1;
  }
  .ts-img {
    height: 320px;
  }
  .wd-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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