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

/* Web Types Grid */
.web-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.wt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.wt-card.featured {
  background: var(--navy-pale);
  border-color: rgba(27,32,101,0.18);
  box-shadow: var(--sh-sm);
}

.wt-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.wt-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--cream);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.wt-badge.highlight {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green-dark);
}

.wt-icon {
  font-size: 24px;
}

.wt-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.wt-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.wt-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.wt-features li {
  font-size: 13.5px;
  color: var(--text-body);
  font-weight: 500;
}

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split-section.reverse .split-visual {
  order: 1;
}

.split-section.reverse .split-text {
  order: 2;
}

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

/* Benefit Pills */
.benefit-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.bp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.bp-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bp-item b {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  font-family: var(--font-heading);
}

.bp-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Check List */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

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

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

/* Digital Marketing Grid */
.dm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.dm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.dm-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--green-pale);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dm-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.dm-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tool-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 26px;
}

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

.tc-icon {
  font-size: 22px;
}

.tc-header h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
}

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

@media (max-width: 960px) {
  .web-types-grid,
  .dm-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-section.reverse .split-visual {
    order: 2;
  }
  .split-section.reverse .split-text {
    order: 1;
  }
  .split-img.rounded-img {
    height: 300px;
  }
}