/* ═══════════════════════════════════════════════════════════
   NOVAM LEGAL — SERVICE DETAIL PAGE
   CSS copied exactly from service-valuer-report.html inline styles.
   Only change: sec-nav uses sticky (better with WP admin bar).
   ═══════════════════════════════════════════════════════════ */

/*   SECTION NAV   */
.sec-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  transform: translateY(-100%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sec-nav::-webkit-scrollbar { display: none; }
.sec-nav.visible { transform: translateY(0); }

/* Account for WordPress admin bar when logged in */
.admin-bar .sec-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .sec-nav { top: 46px; }
}
.sec-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
  min-width: max-content;
}
.sec-nav-link {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.sec-nav-link:hover { color: var(--gray-900); }
.sec-nav-link.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }

/*   LAYOUT   */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 56px 0 80px;
  align-items: start;
  min-width: 0;
}
.svc-main    { min-width: 0; overflow: hidden; }
.svc-sidebar { align-self: start; position: sticky; top: 72px; min-width: 0; }

/*   HERO   */
.svc-hero {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 60%, #1a3580 100%);
  padding: 52px 0 56px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  left: -100px; bottom: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.svc-hero::after {
  content: '';
  position: absolute;
  right: 0; top: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.svc-hero-left { min-width: 0; }
.svc-hero h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.svc-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}
.svc-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.svc-badge .material-symbols-outlined { font-size: 14px; color: var(--gold-light); }

/*   HERO FORM CARD   */
.hero-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.hero-form-card-head { margin-bottom: 20px; }
.hero-form-card-head h4 { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.hero-form-card-head p { font-size: 12px; color: var(--gray-400); }
.hero-form-card .form-group { margin-bottom: 10px; }
.hero-form-card .form-input { padding: 11px 13px; font-size: 13px; }
.hero-form-card .btn-primary { width: 100%; margin-top: 2px; padding: 13px; font-size: 14px; }
.hero-form-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 12px 0 10px;
  font-size: 11px; color: var(--gray-400);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-form-divider::before, .hero-form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-200);
}
.hero-form-call {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  color: var(--navy-dark); font-size: 13px; font-weight: 700;
  transition: all 0.2s;
}
.hero-form-call:hover { border-color: var(--navy); background: #EBF4FF; }
.hero-form-call .material-symbols-outlined { font-size: 17px; color: var(--blue); }
.hero-form-trust { display: flex; justify-content: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.hft-item { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--gray-400); }
.hft-item .material-symbols-outlined { font-size: 13px; color: var(--green); }

/*   STICKY LEAD CARD (sidebar)   */
.lead-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 24px 22px;
  box-shadow: var(--shadow-lg);
}
.lead-card-head { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.lead-card-head h4 { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.lead-card-head p  { font-size: 12px; color: var(--gray-400); }
.lead-card .form-group { margin-bottom: 10px; }
.lead-card .form-input { padding: 11px 13px; font-size: 14px; }
.lead-card .btn-primary { width: 100%; margin-top: 6px; padding: 13px; font-size: 14px; border-radius: var(--r-md); }
.lead-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 14px 0; font-size: 11px; color: var(--gray-400);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.lead-divider::before, .lead-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.lead-trust { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.lead-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-500); }
.lead-trust-item .material-symbols-outlined { font-size: 15px; color: var(--green); }
.lead-call {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  color: var(--navy-dark); font-size: 13px; font-weight: 700;
  width: 100%; margin-top: 10px;
  transition: all 0.2s;
}
.lead-call:hover { border-color: var(--navy); background: #EBF4FF; }
.lead-call .material-symbols-outlined { font-size: 17px; color: var(--blue); }

/*   CONTENT SECTIONS   */
.content-section { margin-bottom: 40px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--blue); margin-bottom: 8px;
}
.content-section h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--navy-dark);
  margin-bottom: 16px; letter-spacing: -0.2px;
}
.content-section > p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/*   OVERVIEW CHECKLIST   */
.check-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--gray-700); line-height: 1.6;
}
.check-list li .material-symbols-outlined { font-size: 17px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/*   HOW IT WORKS   */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.hiw-card {
  padding: 24px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--gray-50);
  text-align: center;
  position: relative;
}
.hiw-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.hiw-num {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--white);
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(41,98,255,0.3);
}
.hiw-card h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.hiw-card p  { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

/*   ACCORDION (Contents + FAQ share same classes)   */
.accordion-list { margin-top: 20px; border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--gray-200); }
.acc-item:last-child { border-bottom: none; }
.acc-trigger {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--navy-dark); cursor: pointer; text-align: left; gap: 12px;
  transition: background 0.2s;
}
.acc-trigger:hover { background: var(--gray-50); }
.acc-trigger-left { display: flex; align-items: center; gap: 12px; }
.acc-icon-wrap {
  width: 32px; height: 32px;
  background: var(--gray-100);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s;
}
.acc-icon-wrap .material-symbols-outlined { font-size: 17px; color: var(--navy); }
.acc-item.open .acc-icon-wrap { background: var(--navy); }
.acc-item.open .acc-icon-wrap .material-symbols-outlined { color: var(--white); }
.acc-chevron {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s;
}
.acc-chevron .material-symbols-outlined { font-size: 18px; color: var(--gray-400); }
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-body {
  padding: 0 20px 16px 64px;
  font-size: 13px; color: var(--gray-500); line-height: 1.75;
  display: none;
}
.acc-item.open .acc-body { display: block; }

/*   BENEFITS GRID   */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.benefit-card {
  padding: 22px 20px; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover { border-color: var(--navy); box-shadow: 0 6px 20px rgba(26,46,108,0.08); transform: translateY(-2px); }
.benefit-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: #EBF4FF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--navy);
}
.benefit-icon.gold  { background: var(--blue-tint); color: var(--blue); }
.benefit-icon.green { background: #F0FFF4; color: var(--green); }
.benefit-icon .material-symbols-outlined { font-size: 20px; }
.benefit-card h4 { font-size: 13px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.benefit-card p  { font-size: 12px; color: var(--gray-500); line-height: 1.55; }

/*   DELIVERABLES   */
.deliverables-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.del-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; color: var(--navy-dark); line-height: 1.6;
}
.del-item .material-symbols-outlined { font-size: 28px; color: var(--navy); flex-shrink: 0; }

/*   CTA STRIP   */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin: 40px 0;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.cta-strip::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,160,32,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip-text { position: relative; z-index: 1; }
.cta-strip-text h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cta-strip-text p  { font-size: 13px; color: rgba(255,255,255,0.6); }
.cta-strip-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; position: relative; z-index: 1; }

/*   WHY CHOOSE   */
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.why-card {
  padding: 24px 20px; border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--navy); box-shadow: 0 8px 28px rgba(26,46,108,0.1); transform: translateY(-3px); }
.why-card-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.why-card-icon.blue  { background: #EBF4FF; color: var(--navy); }
.why-card-icon.gold  { background: var(--blue-tint); color: var(--blue); }
.why-card-icon.green { background: #F0FFF4; color: var(--green); }
.why-card-icon .material-symbols-outlined { font-size: 24px; }
.why-card h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.why-card p  { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

/*   REVIEWS   */
.rating-summary {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  background: var(--blue-tint); border: 1px solid rgba(41,98,255,0.15);
  border-radius: var(--r-lg); margin-bottom: 20px;
}
.rating-big { text-align: center; flex-shrink: 0; }
.rating-big strong { display: block; font-size: 40px; font-weight: 800; color: var(--navy-dark); line-height: 1; }
.rating-big span { font-size: 12px; color: var(--gray-500); }
.rating-stars-big { font-size: 18px; color: var(--gold); letter-spacing: 3px; margin: 4px 0; }
.rating-breakdown { flex: 1; }
.rating-breakdown p { font-size: 13px; color: var(--gray-500); }
.rating-breakdown strong { color: var(--navy-dark); }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 22px 20px; }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text  { font-size: 13px; color: var(--gray-500); line-height: 1.75; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--blue); flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--navy-dark); display: block; }
.review-role { font-size: 11px; color: var(--gray-400); }

/*   RELATED SERVICES   */
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.related-card {
  padding: 18px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--r-lg);
  cursor: pointer; transition: all 0.2s;
  display: flex; gap: 12px; align-items: flex-start; text-decoration: none;
}
.related-card:hover { border-color: var(--navy); box-shadow: 0 4px 14px rgba(26,46,108,0.08); transform: translateY(-2px); }
.related-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: #EBF4FF; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--navy);
}
.related-icon .material-symbols-outlined { font-size: 18px; }
.related-card h4 { font-size: 13px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.related-card p  { font-size: 11px; color: var(--gray-400); }

/*   STILL HAVE QUESTIONS   */
.still-qs {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-xl);
  padding: 32px; display: flex; align-items: center; gap: 24px; margin: 40px 0 0; flex-wrap: wrap;
}
.still-qs-icon {
  width: 56px; height: 56px; border-radius: var(--r-lg);
  background: var(--blue-tint); border: 2px solid rgba(41,98,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue);
}
.still-qs-icon .material-symbols-outlined { font-size: 28px; }
.still-qs-text { flex: 1; min-width: 0; }
.still-qs-text h3 { font-size: 18px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.still-qs-text p  { font-size: 13px; color: var(--gray-500); }
.still-qs-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.still-qs-actions a, .still-qs-actions button { flex: 1; min-width: 140px; justify-content: center; }

/*   MOBILE LEAD FORM   */
.mob-lead-form { display: none; }

/*   MOBILE INLINE CTA (hidden on desktop)   */
.mob-inline-cta { display: none; }

/*   SHOW MORE / LESS   */
.truncate-wrap { position: relative; }
.truncate-wrap.collapsed .truncate-content { max-height: 220px; overflow: hidden; }
.truncate-wrap.collapsed .truncate-fade { display: block; }
.truncate-fade {
  display: none; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white)); pointer-events: none;
}
.show-more-btn {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 10px;
  background: none; border: 1.5px solid var(--gray-200); border-radius: var(--r-full);
  padding: 7px 16px; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--blue); cursor: pointer; transition: all 0.2s;
}
.show-more-btn:hover { border-color: var(--blue); background: var(--blue-tint); }
.show-more-btn .material-symbols-outlined { font-size: 16px; }

/*   PRICING CARDS (in modal or inline)   */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card {
  border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; position: relative;
}
.pricing-card-featured { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.pricing-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 3px 12px; border-radius: var(--r-full); white-space: nowrap;
}
.pricing-card-top h5 { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.pricing-card-top p  { font-size: 12px; color: var(--gray-400); line-height: 1.5; }
.pricing-card-price  { font-size: 28px; font-weight: 800; color: var(--navy-dark); }
.pricing-card-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin: 8px 0; }
.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}
.pricing-card-features .material-symbols-outlined { font-size: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Pricing modal */
.pricing-modal-head { text-align: center; margin-bottom: 28px; }
.pricing-modal-head .material-symbols-outlined { font-size: 28px; color: var(--blue); display: block; margin-bottom: 8px; }
.pricing-modal-head h3 { font-size: 22px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.pricing-modal-head p  { font-size: 13px; color: var(--gray-400); }
.pricing-modal-note {
  display: flex; align-items: center; justify-content: center;
  gap: 5px; margin-top: 18px;
  font-size: 11px; color: var(--gray-400);
}
.pricing-card { padding: 28px 22px; }
.pricing-card-top { margin-bottom: 12px; }
.pricing-card-price { margin: 10px 0; }

/*   RESPONSIVE   */
@media (max-width: 1024px) {
  .svc-layout      { grid-template-columns: 1fr 280px; gap: 32px; }
  .svc-hero-inner  { grid-template-columns: 1fr 300px; gap: 32px; }
}

@media (max-width: 768px) {
  .svc-layout       { grid-template-columns: 1fr; padding: 0 0 40px; gap: 0; }
  .svc-sidebar      { display: none; }
  .mob-lead-form    { display: block; margin-bottom: 24px; }
  .mob-lead-card    { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-lg); padding: 18px 16px; }
  .mob-lead-head    { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .mob-lead-head .material-symbols-outlined { font-size: 28px; color: var(--blue); flex-shrink: 0; }
  .mob-lead-head h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; }
  .mob-lead-head p  { font-size: 12px; color: var(--gray-400); }
  .mob-lead-fields  { display: flex; flex-direction: column; gap: 10px; }
  .mob-lead-call    { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; padding: 11px; border: 1.5px solid var(--gray-200); border-radius: var(--r-md); color: var(--navy-dark); font-size: 14px; font-weight: 600; }
  .mob-lead-call .material-symbols-outlined { font-size: 16px; color: var(--blue); }

  .svc-hero         { padding: 36px 0 32px; }
  .svc-hero-inner   { grid-template-columns: 1fr; gap: 0; }
  .hero-form-card   { display: none; }
  .svc-hero h1      { font-size: 22px; margin-bottom: 10px; }
  .svc-hero-desc    { font-size: 14px; margin-bottom: 16px; }
  .svc-hero-badges  { gap: 8px; }
  .svc-badge        { font-size: 11px; padding: 5px 11px; }

  .svc-main         { padding: 20px 0; }
  .content-section  { margin-bottom: 28px; padding: 0 2px; }

  .hiw-steps        { grid-template-columns: 1fr; gap: 12px; }
  .hiw-card         { display: flex; gap: 14px; text-align: left; padding: 18px 16px; }
  .hiw-card::after  { display: none; }
  .hiw-card .hiw-num { width: 40px; height: 40px; font-size: 15px; margin: 0; flex-shrink: 0; }

  .benefits-grid    { grid-template-columns: 1fr; gap: 10px; }
  .why-cards        { grid-template-columns: 1fr; }
  .why-card         { text-align: left; display: flex; gap: 14px; align-items: flex-start; }
  .why-card-icon    { margin: 0; flex-shrink: 0; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .related-grid     { grid-template-columns: 1fr; }
  .rating-summary   { flex-direction: column; text-align: center; padding: 18px; gap: 12px; }
  .rating-big strong { font-size: 48px; }

  .cta-strip        { flex-direction: column; text-align: center; padding: 24px 20px; margin: 28px 0; }
  .cta-strip-actions { justify-content: center; flex-direction: column; width: 100%; }

  .still-qs         { flex-direction: column; text-align: center; padding: 20px 16px; }
  .still-qs-actions { justify-content: center; width: 100%; flex-wrap: wrap; }

  .acc-body         { padding-left: 20px; }
  .acc-trigger      { font-size: 13px; }
  .content-section h2 { font-size: 20px; }
  .sec-nav-link     { font-size: 11px; padding: 11px 10px; flex: none; }
  .pricing-cards    { grid-template-columns: 1fr; }
  .del-item         { padding: 12px 14px; font-size: 13px; }

  .mob-inline-cta {
    background: linear-gradient(90deg, var(--navy-dark), var(--navy));
    border-radius: var(--r-lg); padding: 16px 18px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 24px 0;
  }
  .mob-inline-cta p { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }
  .mob-inline-cta p strong { display: block; color: var(--white); font-size: 14px; }
  .mob-inline-cta .btn-primary { padding: 10px 16px; font-size: 13px; white-space: nowrap; flex-shrink: 0; }
}
