/* ── Page Hero ── */
.page-hero {
  background: var(--clr-dark);
  padding: 176px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,139,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,139,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero__inner { position: relative; }
.page-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.page-hero__sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.75;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.page-hero__breadcrumb a { color: var(--clr-orange); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── Page Hero CTA row (Google Ads + Services Hub hero) ── */
.page-hero__cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Google Ads trust band ── */
.ads-trust-wrap {
  background: #1A1A1A;
  padding: 1.25rem 0;
  border-top: 1px solid #2A2A2A;
  border-bottom: 1px solid #2A2A2A;
}
.ads-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.ads-trust-item {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Page hero trust bar (services hub) ── */
.page-hero__trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.page-hero__trust-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-highlight { color: var(--clr-orange); }
.hub-why-intro { margin-bottom: var(--sp-10); }

/* ── Services Hub stat strip ── */
.hub-stat-strip {
  background: #111;
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

/* ── Services Hub why-choose grid ── */
.hub-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.hub-why-grid > div {
  text-align: center;
  padding: var(--sp-6);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,139,0,0.12);
}

/* Portfolio hero stats */
.portfolio-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.portfolio-hero-stat__num {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1.1;
}
.portfolio-hero-stat__label {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* ── About Page ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-story__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.value-card {
  padding: var(--sp-6);
  background: var(--clr-light);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  text-align: center;
}
.value-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--clr-orange);
}
.value-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.value-card__desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.team-card {
  text-align: center;
}
.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--clr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--clr-white);
  margin: 0 auto var(--sp-4);
}
.team-card__name {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--sp-1);
}
.team-card__role {
  font-size: var(--fs-sm);
  color: var(--clr-orange);
  font-weight: 500;
}

/* ── Service Pages ── */
.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

/* Generic service page — content + aside (shown only when WP content exists) */
.service-generic-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.service-generic-aside {
  position: sticky;
  top: 110px;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
.service-feature {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--clr-light);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.service-feature:hover {
  border-color: rgba(255,139,0,0.2);
  box-shadow: 0 6px 24px rgba(255,139,0,0.07);
  transform: translateY(-2px);
}
.service-feature__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,139,0,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  flex-shrink: 0;
}
.service-feature__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: var(--sp-1);
}
.service-feature__desc {
  font-size: var(--fs-xs);
  line-height: 1.7;
}
.service-sidebar-card {
  background: var(--clr-dark);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  position: sticky;
  top: 110px;
}
.service-pricing {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.service-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--clr-border-dark);
  font-size: var(--fs-sm);
}
.service-price-row:last-child { border-bottom: none; }
.service-price-row__label { color: rgba(255,255,255,0.6); }
.service-price-row__value { font-weight: 700; color: var(--clr-white); }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.blog-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--trans-normal);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--clr-light);
  overflow: hidden;
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}
.blog-card__body { padding: var(--sp-6); }
.blog-card__cat {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.blog-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.blog-card__title a { color: var(--clr-text); transition: color var(--trans-fast); }
.blog-card__title a:hover { color: var(--clr-orange); }
.blog-card__excerpt {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
}

/* ── Privacy / Terms ── */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}
.prose h3 {
  font-size: var(--fs-xl);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.prose p { margin-bottom: var(--sp-5); font-size: var(--fs-base); }
.prose ul, .prose ol {
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-5);
  list-style: disc;
}
.prose ul li, .prose ol li { margin-bottom: var(--sp-2); font-size: var(--fs-base); color: var(--clr-text-muted); }
.prose a { color: var(--clr-orange); text-decoration: underline; }
.prose strong { color: var(--clr-text); }

/* ── Services Hub Page ── */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.service-hub-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  transition: border-color var(--trans-normal), box-shadow var(--trans-normal), transform var(--trans-normal);
}
.service-hub-card:hover {
  border-color: var(--clr-orange);
  box-shadow: 0 8px 32px rgba(255,139,0,0.12);
  transform: translateY(-3px);
}
.service-hub-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,139,0,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.service-hub-card__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.service-hub-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.service-hub-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.service-hub-card__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.service-hub-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-hub-card__list a {
  font-size: var(--fs-sm);
  color: var(--clr-text);
  font-weight: 500;
  transition: color var(--trans-fast);
}
.service-hub-card__list a:hover {
  color: var(--clr-orange);
}

/* ── Hub page utility classes (replaces inline styles) ── */
.hub-badge-wrap { margin-bottom: 1rem; }
.hub-section-intro { margin-bottom: var(--sp-12); }
.hub-section-title--white { color: var(--clr-white); margin-top: var(--sp-4); }
.hub-section-sub--dim { color: rgba(255,255,255,0.6); }
.hub-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-orange);
}
.hub-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hub-why-icon { color: var(--clr-orange); margin-bottom: var(--sp-4); }
.hub-why-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.1;
}
.hub-why-label {
  color: var(--clr-orange);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: var(--sp-2);
}
.hub-why-sub { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ── Google Ads Investment Guide classes ── */
.service-prose-section { margin-top: var(--sp-8); }
.service-prose-block { margin-bottom: var(--sp-6); }
.service-prose-h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--clr-text);
}
.ads-budget-table-wrap { overflow-x: auto; margin-top: var(--sp-4); }
.ads-budget-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.ads-budget-table thead tr {
  background: var(--clr-dark);
  color: #fff;
}
.ads-budget-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.ads-budget-table th:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.ads-budget-table th:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.ads-budget-table tbody tr:nth-child(odd) { background: #fff; }
.ads-budget-table tbody tr:nth-child(even) { background: var(--clr-light); }
.ads-budget-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--clr-border);
}
.ads-budget-table td:nth-child(2) { font-weight: 600; color: var(--clr-orange); }
.ads-budget-note {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-top: var(--sp-3);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .services-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services-hub-grid {
    grid-template-columns: 1fr;
  }
}

/* Sub-service list inside hub cards */
.service-hub-card__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-hub-card__sub-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--fs-sm);
}
.service-hub-card__sub-list li:last-child { border-bottom: none; }
.service-hub-card__sub-list a { color: var(--clr-text-muted); }
.service-hub-card__sub-list a:hover { color: var(--clr-orange); }

/* ── 404 ── */
.error-404 {
  min-height: 100vh;
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-20);
}
.error-404__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: var(--sp-6);
}
.error-404__title { color: var(--clr-white); margin-bottom: var(--sp-4); }
.error-404__sub { color: rgba(255,255,255,0.5); margin-bottom: var(--sp-8); }

/* ── Service Hero (redesigned from page-hero) ── */
.service-hero {
  background: var(--clr-dark);
  padding: 176px 0 100px;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,139,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,139,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.service-hero__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.service-hero__content {}
.service-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.service-hero__breadcrumb a { color: var(--clr-orange); }
.service-hero__breadcrumb span { color: rgba(255,255,255,0.25); }
.service-hero__badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.service-hero__icon-badge { color: var(--clr-orange); display: flex; }
.service-portfolio-footer { text-align: center; margin-top: 2rem; }
.link-orange { color: var(--clr-orange); }
.service-hero__title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.service-hero__sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.service-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}
.service-hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.service-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.service-hero__trust-item strong { color: var(--clr-orange); }

/* Metrics card on right of service hero */
.service-hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.service-hero__card-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.service-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-hero__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1;
}
.service-hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: right;
  max-width: 140px;
  line-height: 1.4;
}
.service-hero__card-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.service-hero__card-footer strong { color: var(--clr-orange); }

/* ── What's Included Grid ── */
.service-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
  counter-reset: included;
}
.service-included-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  counter-increment: included;
  overflow: hidden;
}
.service-included-card::before {
  content: "0" counter(included);
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--clr-orange);
  opacity: 0.3;
}
.service-included-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--clr-orange);
  border-radius: 0 0 3px 3px;
  transition: height 0.3s ease;
}
.service-included-card:hover {
  border-color: rgba(255,139,0,0.25);
  box-shadow: 0 12px 40px rgba(255,139,0,0.1);
  transform: translateY(-4px);
}
.service-included-card:hover::after { height: 100%; }
.service-included-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,139,0,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  margin-bottom: var(--sp-5);
}
.service-included-card__title {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--clr-text);
  line-height: 1.3;
}
.service-included-card__desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--clr-text-muted);
}

/* ── Service Content (left column of service-detail) ── */
.service-content {}
.service-content .prose { max-width: none; margin: 0; }
.service-content p { margin-bottom: 1.25rem; line-height: 1.8; color: var(--clr-text-muted); }
.service-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); margin: 2rem 0 1rem; color: var(--clr-text); }
.service-content h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin: 1.75rem 0 0.75rem; color: var(--clr-text); }
.service-content ul, .service-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.service-content li { margin-bottom: 0.5rem; line-height: 1.7; color: var(--clr-text-muted); }
.service-content a { color: var(--clr-orange); text-decoration: underline; }
.service-content strong { color: var(--clr-text); }
.service-content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
  align-items: center;
}
.service-content-tags__label {
  font-size: 0.75rem;
  color: var(--clr-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 0.25rem;
}

/* ── Service Sidebar (proper CSS instead of inline styles) ── */
.service-sidebar {}
.service-sidebar__cta {
  background: var(--clr-dark);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  margin-bottom: 1.25rem;
  position: sticky;
  top: 110px;
  border-top: 3px solid var(--clr-orange);
}
.service-sidebar__cta h3 {
  color: var(--clr-white);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.service-sidebar__cta p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.service-sidebar__cta .btn { width: 100%; justify-content: center; }
.service-sidebar__cta .btn + .btn { margin-top: 0.625rem; }
.service-sidebar__why {
  background: var(--clr-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 1.25rem;
}
.service-sidebar__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-light);
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-sidebar__why-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.service-sidebar__why-item svg { color: var(--clr-orange); flex-shrink: 0; }
.service-sidebar__results-link {
  display: block;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-orange);
  text-decoration: none;
}
.service-sidebar__subs {
  background: var(--clr-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 1.25rem;
}
.service-sidebar__sub-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
  text-decoration: none;
  transition: color 0.2s;
}
.service-sidebar__sub-link:last-child { border-bottom: none; }
.service-sidebar__sub-link:hover { color: var(--clr-orange); }

/* ── Service Process Section ── */
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  position: relative;
}
.service-process-grid::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,139,0,0.2);
  pointer-events: none;
}
.service-process-step {
  position: relative;
  text-align: center;
}
.service-process-step__num {
  width: 56px;
  height: 56px;
  background: rgba(255,139,0,0.12);
  border: 2px solid rgba(255,139,0,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-orange);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 6px rgba(255,139,0,0.06);
}
.service-process-step:hover .service-process-step__num {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
  box-shadow: 0 0 0 10px rgba(255,139,0,0.1);
  transform: scale(1.08);
}
.service-process-step__title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-process-step__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── Service FAQ Accordion ── */
.service-faq-list {
  max-width: 760px;
  margin: var(--sp-10) auto 0;
}
.service-faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.service-faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-text);
  gap: 1rem;
  font-family: var(--font-heading);
}
.service-faq-item__q:hover { color: var(--clr-orange); }
.service-faq-item.is-open { background: rgba(255,139,0,0.025); border-radius: var(--radius); }
.service-faq-item.is-open .service-faq-item__q { color: var(--clr-orange); }
.service-faq-item__icon {
  color: var(--clr-orange);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: flex;
}
.service-faq-item.is-open .service-faq-item__icon { transform: rotate(45deg); }
.service-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.service-faq-item.is-open .service-faq-item__a { max-height: 300px; }
.service-faq-item__a p {
  padding-bottom: 1.25rem;
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ── Pages Mobile Fixes ── */
@media (max-width: 768px) {
  /* ── Page Hero ── */
  /* padding already set to 110px 0 60px via responsive.css */
  .page-hero__title {
    font-size: clamp(1.7rem, 6vw, 2.25rem);
  }
  .page-hero__sub {
    max-width: 100%;
    font-size: var(--fs-base);
  }

  /* ── About Story ── */
  /* grid already 1-col at 1024px via responsive.css */
  .about-story {
    gap: var(--sp-8);
  }

  /* ── Value Cards ── */
  /* about-values already 1-col at 768px via responsive.css */
  .value-card {
    padding: var(--sp-5);
  }
  .value-card__title {
    font-size: var(--fs-md);
  }

  /* ── Team Grid ── */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Blog Cards ── */
  /* blog-grid already 1-col at 768px via responsive.css */
  .blog-card__body {
    padding: var(--sp-4);
  }
  .blog-card__title {
    font-size: var(--fs-md);
  }
  .blog-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--sp-4);
  }

  /* ── Service Detail ── */
  /* service-detail already 1-col at 1024px via responsive.css */
  /* Stack sidebar below content on mobile */
  .service-detail {
    gap: var(--sp-8);
  }
  .service-sidebar {
    order: 2;
  }
  .service-content {
    order: 1;
  }
  .service-sidebar__cta {
    /* already position:static via responsive.css */
    padding: var(--sp-5);
  }
  .service-sidebar__why {
    margin-top: var(--sp-5);
    padding: var(--sp-4);
  }
  .service-sidebar__subs {
    margin-top: var(--sp-4);
    padding: var(--sp-4);
  }

  /* ── Service Hub Cards ── */
  /* services-hub-grid already 1-col at 768px via responsive.css */
  .service-hub-card {
    padding: var(--sp-5);
  }
  .service-hub-card__title {
    font-size: var(--fs-lg);
  }

  /* ── Service Hero ── */
  /* service-hero already handled in responsive.css */
  .service-hero__sub {
    max-width: 100%;
    font-size: var(--fs-base);
  }

  /* ── 404 Page ── */
  .error-404 {
    padding: var(--sp-16) var(--sp-4);
    min-height: 70vh;
  }

  /* ── Prose ── */
  .prose h2 {
    font-size: var(--fs-xl);
  }
  .prose h3 {
    font-size: var(--fs-lg);
  }
  .prose p,
  .prose ul li,
  .prose ol li {
    font-size: var(--fs-sm);
  }

  /* ── Service FAQ ── */
  .service-faq-item__q {
    font-size: var(--fs-base);
    padding: 1rem 0;
  }
  .service-faq-item__a p {
    font-size: var(--fs-sm);
  }
}

@media (max-width: 480px) {
  /* ── Page Hero ── */
  .page-hero__title {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }
  .page-hero__breadcrumb {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  /* ── Blog Cards ── */
  .blog-card__body {
    padding: var(--sp-3);
  }
  .blog-card__title {
    font-size: var(--fs-base);
    margin-bottom: var(--sp-2);
  }
  .blog-card__excerpt {
    -webkit-line-clamp: 2;
    margin-bottom: var(--sp-3);
  }
  .blog-card__cat {
    margin-bottom: var(--sp-2);
  }

  /* ── Value Cards ── */
  .value-card {
    padding: var(--sp-4);
  }

  /* ── Service Hub Cards ── */
  .service-hub-card {
    padding: var(--sp-4);
  }
  .service-hub-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: var(--sp-4);
  }
  .service-hub-card__title {
    font-size: var(--fs-md);
  }

  /* ── Team Grid ── */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .team-card__avatar {
    width: 80px;
    height: 80px;
    font-size: var(--fs-xl);
  }

  /* ── Service Sidebar ── */
  .service-sidebar__cta {
    padding: var(--sp-4);
  }

  /* ── 404 ── */
  .error-404 {
    padding: var(--sp-12) var(--sp-4);
  }

  /* ── Portfolio hero stats ── */
  .portfolio-hero-stats {
    gap: 1rem;
  }
  .portfolio-hero-stat__num {
    font-size: 1.4rem;
  }
  .portfolio-hero-stat__label {
    font-size: 0.72rem;
  }
}
